/* ============== Maxwell — Coming Soon ============== */

@font-face {
  font-family: 'Hanken Grotesk';
  src: url('fonts/HankenGrotesk.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --paper:      #F4EDE3;
  --paper-2:    #FBF7F1;
  --card:       #FFFFFF;
  --ink:        #1C1A16;
  --ink-2:      #645B4F;
  --ink-3:      #978D7E;
  --terra:      #BD6B54;
  --terra-deep: #A4543F;
  --terra-tint: #EFD9CD;
  --terra-soft: #F6E8E0;
  --line:       #E6DACA;
  --line-2:     #EFE7DA;
  --ok:         #5B8C6E;
}

* { box-sizing: border-box; }

.font-display { font-family: 'Hanken Grotesk', sans-serif; }
.font-body    { font-family: 'Geist', sans-serif; }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo svg { display: block; }
.logo .wordmark {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1;
}

/* ---------- Eyebrow pill ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra-deep);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--terra); }
.eyebrow--pill {
  padding: 8px 14px;
  border: 1px solid var(--terra-tint);
  border-radius: 999px;
  background: var(--terra-soft);
}

/* ---------- Headline / copy ---------- */
.display {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
  margin: 0;
}
.lede {
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: pretty;
}

/* ---------- Signup form ---------- */
.signup { display: flex; flex-direction: column; gap: 14px; width: 100%; }

.seg {
  display: inline-flex;
  padding: 4px;
  gap: 4px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  align-self: flex-start;
}
.seg button {
  appearance: none; border: none; cursor: pointer;
  font-family: 'Geist', sans-serif;
  font-weight: 600; font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  padding: 9px 18px;
  border-radius: 999px;
  background: transparent;
  transition: all .18s ease;
}
.seg button.is-active {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 2px 8px rgba(28,26,22,.18);
}

.field-row { display: flex; gap: 10px; width: 100%; }
.field {
  flex: 1;
  display: flex; align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 16px;
  height: 56px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field:focus-within { border-color: var(--terra); box-shadow: 0 0 0 4px rgba(189,107,84,.14); }
.field input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: 'Geist', sans-serif;
  font-size: 16px; color: var(--ink); letter-spacing: -0.01em;
}
.field input::placeholder { color: var(--ink-3); }

.btn {
  appearance: none; border: none; cursor: pointer;
  font-family: 'Geist', sans-serif;
  font-weight: 600; font-size: 16px; letter-spacing: -0.01em;
  color: var(--paper);
  background: var(--terra);
  border-radius: 14px;
  height: 56px;
  padding: 0 26px;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
  transition: background .18s ease, transform .12s ease;
  box-shadow: 0 6px 18px rgba(189,107,84,.28);
}
.btn:hover { background: var(--terra-deep); }
.btn:active { transform: translateY(1px); }

.form-note {
  font-family: 'Geist', sans-serif;
  font-size: 13px; color: var(--ink-3); letter-spacing: -0.01em;
  margin: 0;
}

.success {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Geist', sans-serif;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
}
.success .tick {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--ok); color: #fff;
  display: grid; place-items: center; flex: none;
}
.success b { color: var(--ink); font-weight: 600; font-size: 15px; }
.success span { color: var(--ink-2); font-size: 13.5px; }

/* ---------- Feature chips / list ---------- */
.feat-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Geist', sans-serif;
  font-weight: 500; font-size: 13.5px; letter-spacing: -0.01em;
  color: var(--ink-2);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px 8px 10px;
}
.chip .ic {
  width: 24px; height: 24px; border-radius: 7px;
  display: grid; place-items: center; flex: none;
  background: var(--terra-soft); color: var(--terra-deep);
}

.feat-list { display: flex; flex-direction: column; gap: 18px; }
.feat-item { display: flex; gap: 14px; align-items: flex-start; }
.feat-item .ic {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  display: grid; place-items: center;
  background: var(--terra-soft); color: var(--terra-deep);
}
.feat-item h4 {
  margin: 2px 0 3px; font-family: 'Geist', sans-serif;
  font-weight: 600; font-size: 15.5px; color: var(--ink); letter-spacing: -0.01em;
}
.feat-item p {
  margin: 0; font-family: 'Geist', sans-serif;
  font-size: 13.5px; color: var(--ink-2); line-height: 1.45; letter-spacing: -0.01em;
}

/* ================= PHONE MOCKUP ================= */
.phone {
  width: 300px; height: 612px;
  border-radius: 44px;
  background: var(--ink);
  padding: 11px;
  box-shadow:
    0 2px 4px rgba(28,26,22,.12),
    0 30px 60px -18px rgba(28,26,22,.42);
  position: relative;
}
.phone__screen {
  width: 100%; height: 100%;
  border-radius: 34px;
  background: var(--paper-2);
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
}
.phone__notch {
  position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 116px; height: 28px; background: var(--ink);
  border-radius: 0 0 16px 16px; z-index: 5;
}
.statusbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px 6px;
  font-family: 'Geist', sans-serif; font-weight: 600; font-size: 13px; color: var(--ink);
}
.statusbar .icons { display: flex; align-items: center; gap: 6px; }

.app { flex: 1; overflow: hidden; padding: 6px 18px 0; display: flex; flex-direction: column; gap: 14px; }
.app__eyebrow {
  font-family: 'Geist', sans-serif; font-weight: 600; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3);
}
.app__greet {
  font-family: 'Hanken Grotesk', sans-serif; font-weight: 700;
  font-size: 26px; line-height: 1.05; letter-spacing: -0.03em; color: var(--ink);
  margin: 3px 0 2px;
}

.talk {
  background: var(--terra); border-radius: 22px; padding: 18px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 12px 22px -10px rgba(189,107,84,.6);
}
.talk__mic {
  width: 50px; height: 50px; border-radius: 50%; flex: none;
  background: rgba(255,255,255,.18); color: #fff;
  display: grid; place-items: center;
  border: 1.5px solid rgba(255,255,255,.5);
}
.talk h3 { margin: 0; font-family: 'Hanken Grotesk', sans-serif; font-weight: 700; font-size: 18px; color: #fff; letter-spacing: -0.02em; }
.talk p  { margin: 3px 0 0; font-family: 'Geist', sans-serif; font-size: 12.5px; color: rgba(255,255,255,.86); line-height: 1.35; }

.med {
  background: var(--card); border: 1px solid var(--line-2); border-radius: 18px;
  padding: 14px; display: flex; align-items: center; gap: 13px;
}
.med__ic { width: 42px; height: 42px; border-radius: 12px; background: var(--terra-soft); color: var(--terra-deep); display: grid; place-items: center; flex: none; }
.med__txt { flex: 1; }
.med__txt h4 { margin: 0; font-family: 'Geist', sans-serif; font-weight: 600; font-size: 14.5px; color: var(--ink); letter-spacing: -0.01em; }
.med__txt p { margin: 2px 0 0; font-family: 'Geist', sans-serif; font-size: 12.5px; color: var(--ink-2); }
.med__check { width: 28px; height: 28px; border-radius: 50%; background: var(--ok); color: #fff; display: grid; place-items: center; flex: none; }

.tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.tile {
  background: var(--card); border: 1px solid var(--line-2); border-radius: 16px;
  padding: 13px; display: flex; flex-direction: column; gap: 10px;
}
.tile .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; }
.tile span { font-family: 'Geist', sans-serif; font-weight: 600; font-size: 13.5px; color: var(--ink); letter-spacing: -0.01em; }
.tile.t-blue .ic  { background: #E4ECF4; color: #4A6B8A; }
.tile.t-green .ic { background: #E2EEE6; color: #4E7C61; }
.tile.t-amber .ic { background: #F6EAD6; color: #9C7430; }
.tile.t-terra .ic { background: var(--terra-soft); color: var(--terra-deep); }

.tabbar {
  display: flex; justify-content: space-around; align-items: center;
  padding: 12px 14px 18px; border-top: 1px solid var(--line-2); background: var(--card);
}
.tabbar .tab { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--ink-3); }
.tabbar .tab.active { color: var(--terra); }
.tabbar .tab span { font-family: 'Geist', sans-serif; font-weight: 600; font-size: 10px; letter-spacing: 0.01em; }

/* ================= PAGE — Split hero (A) ================= */
.va { display: grid; grid-template-columns: 1.04fr 0.96fr; width: 100%; min-height: 100vh; background: var(--paper); }
.va__left { padding: 64px 60px; display: flex; flex-direction: column; }
.va__topbar { display: flex; align-items: center; justify-content: space-between; }
.va__hero { margin-top: auto; margin-bottom: auto; display: flex; flex-direction: column; gap: 22px; max-width: 520px; padding: 40px 0; }
.va__right { position: relative; background: linear-gradient(160deg, var(--terra-soft), var(--terra-tint)); overflow: hidden; display: grid; place-items: center; }
.va__blob { position: absolute; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle at 38% 34%, rgba(255,255,255,.55), rgba(255,255,255,0) 62%); }
.va__ring { position: absolute; width: 540px; height: 540px; border-radius: 50%; border: 1.5px dashed rgba(164,84,63,.32); }
.va__phone-wrap { position: relative; transform: rotate(-3deg); }

.va__foot {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px 18px;
  margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line);
}
.va__foot span { font-family: 'Geist', sans-serif; font-size: 13px; color: var(--ink-3); letter-spacing: -0.01em; }
.va__foot a {
  font-family: 'Geist', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--ink-2); text-decoration: none;
}
.va__foot a:hover { color: var(--terra-deep); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .va { grid-template-columns: 1fr; }
  .va__hero { margin: 0; max-width: 560px; }
  .va__hero .display { font-size: 46px !important; }
  .va__right { min-height: 520px; padding: 40px 0; }
  .va__phone-wrap { transform: rotate(-3deg) scale(0.9); }
}
@media (max-width: 560px) {
  .va__left { padding: 40px 26px 56px; }
  .va__topbar { flex-direction: column; align-items: flex-start; gap: 16px; }
  .va__hero .display { font-size: 38px !important; }
  .field-row { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .va__right { display: none; }
}
