:root {
  --bg: #ffffff;
  --text: #141414;
  --muted: #6b7280;
  --line: #e5e7eb;
  --accent: #0f766e;
  --btn: #111827;
  --btn-text: #ffffff;
  --font: "Sora", "Trebuchet MS", sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background: #ffffff;
}
.wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 20px;
  background: #ffffff;
}
.logo {
  display: block;
  width: min(280px, 70vw);
  height: auto;
  margin: 0 auto 20px;
  object-fit: contain;
}
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 12px;
}
h1 {
  font-size: clamp(48px, 14vw, 72px);
  font-weight: 700;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
}
.lead { color: var(--muted); font-size: 17px; margin-bottom: 36px; }
.actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(360px, 100%);
}
.btn {
  appearance: none;
  border: 0;
  background: var(--btn);
  color: var(--btn-text);
  font-family: inherit;
  font-size: 20px;
  font-weight: 700;
  padding: 20px 28px;
  border-radius: 10px;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn.secondary {
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn:disabled { opacity: 0.55; cursor: default; }
.btn.sent { background: var(--accent); color: #ffffff; }
.msg {
  margin-top: 22px;
  color: var(--muted);
  min-height: 1.4em;
  max-width: 320px;
  line-height: 1.45;
  font-size: 15px;
}
.msg.ok { color: var(--accent); }
