/* ============================================================
   Psst — getpsst.app landing (Direction B "Whisper")
   Mascot-led, centered, big orange brand moments.
   Ported from the desktop-1440 prototype, made responsive.
   ============================================================ */

:root {
  /* PSST palette */
  --bg:      #15171C;
  --panel:   #1C1F26;
  --raised:  #22262F;
  --ink:     #F2F1EF;
  --sub:     #7C828E;
  --line:    #262A32;
  --faint:   #3A3F49;
  --orange:  #D4582D;   /* how-it-works band / pro card */
  --cream:   #F9D7A3;   /* closing CTA card */
  --accent:  #D97757;   /* CTAs / UI highlights (default) */
  --good:    #3FA86B;   /* live / done green */
  --brown:   #3A1F10;   /* dark text/button on cream */

  /* fonts */
  --sans: 'IBM Plex Sans', -apple-system, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;

  /* avatar colors */
  --av-Y: #3B7DD8;
  --av-M: #6B5BD2;
  --av-T: #1F8A5B;
  --av-S: #C2543F;
  --av-J: #B08A2E;

  /* layout */
  --maxw: 1080px;
  --pad: 48px;

  --t: 160ms ease;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; }

a { color: inherit; }

.mono {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 11.5px;
  color: var(--sub);
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* shared focus ring */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ── buttons / badges ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  transition: transform var(--t), background var(--t), opacity var(--t), filter var(--t);
}
.btn--cream {
  background: var(--cream);
  color: var(--brown);
  font-size: 14px;
  padding: 9px 20px;
  border-radius: 99px;
}
.btn--cream:hover { filter: brightness(0.96); }
.btn--accent {
  background: var(--accent);
  color: #fff;
}
.btn--accent:hover { filter: brightness(1.07); }

.badges { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: center; }
.badge { display: inline-flex; transition: transform var(--t), opacity var(--t); }
.badge img { height: 42px; display: block; }
.badge:hover { transform: translateY(-2px); }
.badge:active { transform: translateY(0); }

/* ── nav — floating pill ───────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: 28px;
}
.nav__pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 10px 12px 10px 14px;
  backdrop-filter: saturate(140%) blur(14px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand__icon { border-radius: 9px; display: block; }
.brand__word { font-size: 17px; font-weight: 700; letter-spacing: -0.3px; }

.nav__links {
  margin-left: 18px;
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav__links a:not(.btn) {
  color: var(--sub);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 99px;
  transition: color var(--t), background var(--t);
}
.nav__links a:not(.btn):hover { color: var(--ink); background: var(--raised); }
.nav__cta { margin-left: auto; }

.nav__toggle {
  display: none;
  margin-left: auto;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 99px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}

/* ── hero — centered ───────────────────────────────────────── */
.hero {
  padding-top: 76px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero__icon { border-radius: 28px; display: block; }
.hero__h {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -2.4px;
  line-height: 1.05;
  margin: 34px 0 0;
  text-wrap: balance;
}
.hero__sub {
  font-size: 18.5px;
  line-height: 1.6;
  color: var(--sub);
  margin: 24px 0 32px;
  max-width: 540px;
  text-wrap: pretty;
}
.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero__free {
  letter-spacing: 1.4px;
  margin: 20px 0 0;
}

/* ── email capture ─────────────────────────────────────────── */
.capture { width: 100%; max-width: 460px; }
.capture__row { display: flex; gap: 8px; }
.capture__input {
  flex: 1;
  min-width: 0;
  height: 54px;
  border-radius: 14px;
  padding: 0 18px;
  font-size: 15.5px;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--panel);
  border: 1.5px solid var(--faint);
  outline: none;
  transition: border-color var(--t);
}
.capture__input::placeholder { color: var(--sub); }
.capture__btn {
  height: 54px;
  border-radius: 14px;
  padding: 0 24px;
  font-size: 15.5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.capture__note {
  margin: 10px 0 0;
  letter-spacing: 0.8px;
  font-size: 11px;
  text-transform: none;
  text-align: center;
}
/* error + success states (toggled by app.js) */
.capture.is-error .capture__input { border-color: #D6553F; }
.capture.is-error .capture__note { color: #D6553F; }

.capture__success {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  min-height: 54px;
}
.capture__success-tick {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--good);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.capture__success-title { font-size: 16.5px; font-weight: 700; }
.capture__success-sub { font-size: 13px; color: var(--sub); }

/* cream variant (closing CTA card) */
.capture--cream .capture__input {
  color: var(--brown);
  background: rgba(58, 31, 16, 0.08);
  border-color: rgba(58, 31, 16, 0.35);
}
.capture--cream .capture__input::placeholder { color: rgba(58, 31, 16, 0.5); }
.capture--cream .capture__note { color: rgba(58, 31, 16, 0.55); }
.capture--cream.is-error .capture__input { border-color: #D6553F; }
.capture--cream.is-error .capture__note { color: #D6553F; }
.capture__btn--cream {
  background: var(--brown);
  color: var(--cream);
}
.capture__btn--cream:hover { filter: brightness(1.25); }
.capture--cream .capture__success-title { color: var(--brown); }
.capture--cream .capture__success-sub { color: rgba(58, 31, 16, 0.65); }

/* ── phone trio (static, tilted layout) ────────────────────── */
.phonetrio {
  display: flex;
  gap: 36px;
  align-items: flex-end;
  justify-content: center;
  margin-top: 64px;
  margin-bottom: -150px;   /* phones tuck into the orange band below */
}
/* tilted layout: side phones rotated + dropped, scaled to 0.87; centre raised */
.phone--today { transform: rotate(-3deg) translateY(26px); }
.phone--list  { transform: rotate(3deg) translateY(26px); }
.phone--today, .phone--list { --pw: 261px; }   /* 300 * 0.87 */
.phone--home { position: relative; z-index: 1; }

/* phone frame — interior sizes derive from --pw via the em trick */
.phone { --pw: 300px; }
.phone__frame {
  width: var(--pw);
  /* real 1080x2160 app screenshots are 1:2, so the frame matches that ratio */
  height: calc(var(--pw) * 2);
  border-radius: 41px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  border: 7px solid #08090C;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45), 0 4px 14px rgba(0,0,0,0.3);
}
.phone__shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.phone__island {
  position: absolute;
  top: 9em; left: 50%;
  transform: translateX(-50%);
  width: 92em; height: 27em;
  border-radius: 20em;
  background: #000;
  z-index: 5;
}
.phone__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14em 24em 0;
  font-size: 12.5em;
  font-weight: 700;
}
.phone__batt {
  width: 15em; height: 9em;
  border-radius: 2em;
  border: 1px solid var(--sub);
  position: relative;
  display: inline-block;
  font-size: 1px;
}
.phone__batt i {
  position: absolute;
  inset: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  display: block;
}
.phone__body { padding: 0 16em; }
.phone__body--col {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.phone__home {
  position: absolute;
  bottom: 7em; left: 50%;
  transform: translateX(-50%);
  width: 105em; height: 4em;
  border-radius: 99px;
  background: rgba(255,255,255,0.4);
}
.phone__fab {
  position: absolute;
  bottom: 26em; right: 18em;
  width: 48em; height: 48em;
  border-radius: 17em;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(217,119,87,0.4);
}
.phone__fab svg { width: 21em; height: 21em; }

/* phone interior pieces */
.ph-row { display: flex; align-items: center; }
.ph-row--head { justify-content: space-between; margin: 22em 0 0; }
.ph-title { font-size: 24em; font-weight: 800; letter-spacing: -0.5px; }
.ph-bell { position: relative; color: var(--ink); display: inline-flex; }
.ph-bell svg { width: 19em; height: 19em; }
.ph-bell__dot {
  position: absolute;
  top: -5em; right: -7em;
  min-width: 14em; height: 14em;
  border-radius: 99px;
  background: var(--accent);
  color: #fff;
  font-size: 8.5em;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  padding: 0 3em;
}
.ph-section {
  font-size: 10em;
  letter-spacing: 1.3px;
  color: var(--sub);
  font-family: var(--mono);
  text-transform: uppercase;
  margin: 16em 0 8em;
}
.ph-mono { font-size: 11em; color: var(--sub); font-family: var(--mono); margin-top: 2em; }

.ph-listcard {
  background: var(--panel);
  border-radius: 16em;
  padding: 13em;
  margin-bottom: 10em;
}
.ph-listcard__top { display: flex; align-items: center; gap: 11em; }
.ph-listcard__meta { flex: 1; min-width: 0; }
.ph-listcard__name {
  font-size: 14.5em;
  font-weight: 700;
  letter-spacing: -0.2px;
  display: flex;
  align-items: center;
  gap: 5em;
}
.ph-emoji {
  width: 36em; height: 36em;
  border-radius: 10em;
  background: var(--raised);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18em;
  flex-shrink: 0;
}
.ph-emoji-bare { font-size: 22em; }
.ph-live { width: 6em; height: 6em; border-radius: 50%; background: var(--good); }
.ph-progress {
  height: 4em;
  border-radius: 99px;
  background: var(--raised);
  overflow: hidden;
  margin-top: 11em;
}
.ph-progress b { display: block; height: 100%; border-radius: 99px; background: var(--accent); }

.ph-row--listhead { gap: 10em; margin: 22em 0 4em; }
.ph-listtitle { font-size: 18em; font-weight: 800; letter-spacing: -0.4px; }

.ph-item {
  display: flex;
  align-items: center;
  gap: 11em;
  padding: 11em 13em;
  background: var(--panel);
  border-radius: 13em;
  margin-bottom: 7em;
}
.ph-check {
  width: 20em; height: 20em;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.7px solid var(--faint);
  background: transparent;
  position: relative;
}
.ph-check--on {
  border: none;
  background: var(--accent);
}
.ph-check--on::after {
  content: "";
  position: absolute;
  left: 50%; top: 47%;
  width: 9em; height: 5em;
  border-left: 2.2px solid #fff;
  border-bottom: 2.2px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.ph-item__body { flex: 1; min-width: 0; }
.ph-item__t { font-size: 13.5em; font-weight: 600; letter-spacing: -0.1px; }
.ph-item--done .ph-item__t { color: var(--sub); text-decoration: line-through; }
.ph-item__time { font-size: 10.5em; color: var(--accent); font-family: var(--mono); margin-top: 1em; }
.ph-item__sub { font-size: 10.5em; color: var(--sub); font-family: var(--mono); margin-top: 1em; }

.ph-today-head { margin: 22em 0 0; }
.ph-today-date {
  font-size: 10.5em;
  color: var(--accent);
  font-family: var(--mono);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.ph-today-head .ph-title { display: block; margin-top: 3em; }

.ph-chat { margin-top: auto; margin-bottom: 18em; }
.ph-chat__bubble {
  display: flex;
  align-items: flex-end;
  gap: 7em;
  margin-bottom: 10em;
}
.ph-chat__bubble span {
  background: var(--raised);
  border-radius: 13em 13em 13em 4em;
  padding: 7em 11em;
  font-size: 12em;
  color: var(--ink);
  max-width: 78%;
}
.ph-chat__bar {
  display: flex;
  align-items: center;
  gap: 8em;
  background: var(--panel);
  border-radius: 99px;
  padding: 8em 8em 8em 15em;
}
.ph-chat__ph { flex: 1; font-size: 12em; color: var(--sub); }
.ph-chat__send {
  width: 27em; height: 27em;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph-chat__send svg { width: 13em; height: 13em; }

/* avatars (used in phones + bento) */
.av {
  width: 22px; height: 22px;
  border-radius: 50%;
  color: #fff;
  font-size: 9.7px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--panel);
  font-style: normal;
  flex-shrink: 0;
  font-family: var(--sans);
}
.av--Y { background: var(--av-Y); }
.av--M { background: var(--av-M); }
.av--T { background: var(--av-T); }
.av--S { background: var(--av-S); }
.av--J { background: var(--av-J); }
.avstack { display: inline-flex; }
.avstack .av + .av { margin-left: -7px; }
/* avatars inside phones scale with the frame em context */
.phone__frame .av { width: 20em; height: 20em; font-size: 8.8em; border-width: 2px; }
.phone__frame .avstack .av + .av { margin-left: -6em; }
.phone__frame .ph-item .av,
.phone__frame .ph-chat__bubble .av { width: 19em; height: 19em; font-size: 8.4em; }
.avstack--bg .av { border-color: var(--bg); }

/* ── orange band — how it works ────────────────────────────── */
.how {
  background: var(--orange);
  padding-top: 210px;   /* clears the phones tucking in from above */
  padding-bottom: 96px;
}
.how__head { text-align: center; margin-bottom: 56px; }
.how__eyebrow { color: var(--cream); opacity: 0.85; letter-spacing: 2.2px; margin: 0; }
.how__h {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -1.6px;
  color: var(--cream);
  margin: 14px 0 0;
  text-wrap: balance;
}
.how__rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
}
.steprow {
  display: flex;
  align-items: center;
  gap: 26px;
  border: 2px solid var(--cream);
  border-radius: 99px;
  padding: 22px 34px 22px 22px;
  color: var(--cream);
}
.steprow__n {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 700;
  flex-shrink: 0;
}
.steprow__t { font-size: 20px; font-weight: 700; letter-spacing: -0.3px; }
.steprow__d { font-size: 14.5px; line-height: 1.55; opacity: 0.88; margin: 4px 0 0; text-wrap: pretty; }

/* ── section heads (bento reuse) ───────────────────────────── */
.sec-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 44px;
}
.sec-head__h {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -2px;
  margin: 0;
  white-space: nowrap;
}
.sec-head__tag { white-space: nowrap; }

/* ── bento ─────────────────────────────────────────────────── */
.bento { padding: 84px var(--pad); }
.bento__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t), transform var(--t);
}
.card:hover { border-color: var(--faint); transform: translateY(-2px); }
.card--2 { grid-column: span 2; }
.card--3 { grid-column: span 3; }
.card__eyebrow { display: block; }
.card__h {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 10px 0 0;
}
.card__p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--sub);
  margin: 12px 0 0;
}

/* quick add */
.qa { margin-top: 22px; }
.qa__input {
  background: var(--bg);
  border: 1px solid var(--faint);
  border-radius: 13px;
  padding: 13px 16px;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.qa__caret { width: 2px; height: 17px; background: var(--accent); }
.qa__chips { display: flex; gap: 7px; margin-top: 11px; flex-wrap: wrap; }
.chip {
  font-size: 11.5px;
  font-family: var(--mono);
  border-radius: 99px;
  padding: 5px 11px;
  white-space: nowrap;
  background: var(--raised);
  color: var(--ink);
}
.chip--tag {
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
}

/* chat fragment */
.chatfrag { margin-top: 22px; display: flex; flex-direction: column; gap: 9px; }
.chatfrag__line { display: flex; align-items: flex-end; gap: 8px; }
.chatfrag__line--out { justify-content: flex-end; }
.bubble {
  padding: 8px 13px;
  font-size: 13.5px;
  white-space: nowrap;
}
.bubble--in { background: var(--raised); border-radius: 14px 14px 14px 4px; }
.bubble--out { background: var(--accent); color: #fff; border-radius: 14px 14px 4px 14px; }
.chatfrag__assigned {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: var(--sub);
  margin-top: 3px;
}
.chatfrag__tick {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* sync fragment */
.syncfrag { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.syncrow {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 9px 13px;
  font-size: 12.5px;
}
.syncrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--faint); flex-shrink: 0; }
.syncrow .dot--live { background: var(--good); }
.syncrow__t { flex: 1; color: var(--sub); }
.syncrow--now .syncrow__t { color: var(--ink); }
.syncrow__w { font-size: 10.5px; color: var(--sub); }

/* today chip */
.todaychip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 10px 13px;
  font-size: 13px;
}
.todaychip__icon { color: var(--accent); display: inline-flex; }
.todaychip__done { margin-left: auto; font-size: 11px; color: var(--good); }

/* theme swatches */
.swatches { display: flex; gap: 8px; margin-top: 20px; }
.swatch {
  width: 34px; height: 34px;
  border-radius: 11px;
  border: 1px solid var(--faint);
}
.swatch--sel { border: 2px solid var(--accent); }

/* ── pricing — centered ────────────────────────────────────── */
.pricing { padding-bottom: 96px; }
.pricing__head { text-align: center; margin-bottom: 56px; }
.pricing__eyebrow { color: var(--accent); letter-spacing: 2.2px; margin: 0; }
.pricing__h { font-size: 44px; font-weight: 700; letter-spacing: -1.6px; margin: 14px 0 0; }
.pricing__sub { font-size: 16px; color: var(--sub); margin: 14px 0 0; }
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.plan {
  background: var(--panel);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px 32px 36px;
  position: relative;
  transition: transform var(--t);
}
.plan:hover { transform: translateY(-2px); }
.plan--pro { background: var(--orange); color: var(--cream); border: none; }
.plan__pill {
  position: absolute;
  top: 24px; right: 26px;
  background: var(--cream);
  color: var(--orange);
  font-size: 10.5px;
  letter-spacing: 1.2px;
  border-radius: 99px;
  padding: 5px 13px;
  font-weight: 700;
}
.plan__name { font-size: 20px; font-weight: 700; }
.plan__pricerow { display: flex; align-items: baseline; gap: 9px; margin: 16px 0 4px; }
.plan__price { font-size: 46px; font-weight: 700; letter-spacing: -1.8px; }
.plan__cadence { font-size: 13.5px; opacity: 0.75; }
.plan__alt { font-size: 12.5px; opacity: 0.75; text-transform: none; letter-spacing: 0.4px; color: inherit; }
.plan--pro .plan__alt { color: var(--cream); }
.plan__blurb { font-size: 14px; opacity: 0.8; margin: 14px 0 24px; }
.plan__feats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan__feats li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14.5px;
}
.tick {
  width: 14px; height: 14px;
  flex-shrink: 0;
  position: relative;
}
.tick::after {
  content: "";
  position: absolute;
  left: 1px; top: 3px;
  width: 10px; height: 5px;
  border-left: 2.6px solid var(--accent);
  border-bottom: 2.6px solid var(--accent);
  transform: rotate(-45deg);
}
.tick--cream::after { border-color: var(--cream); }

/* ── faq — centered, stacked ───────────────────────────────── */
.faq { border-top: 1px solid var(--line); }
.faq__wrap { padding-top: 84px; padding-bottom: 96px; max-width: 880px; }
.faq__head { text-align: center; margin-bottom: 48px; }
.faq__eyebrow { color: var(--accent); letter-spacing: 2.2px; margin: 0; }
.faq__h { font-size: 44px; font-weight: 700; letter-spacing: -1.6px; margin: 14px 0 0; }
.faq__list { display: flex; flex-direction: column; gap: 14px; }
.qa-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 28px;
}
.qa-item__q { font-size: 16.5px; font-weight: 700; letter-spacing: -0.2px; margin-bottom: 8px; }
.qa-item__a { font-size: 14.5px; line-height: 1.65; color: var(--sub); margin: 0; text-wrap: pretty; }

/* ── closing CTA — cream card ──────────────────────────────── */
.closing { padding-top: 12px; padding-bottom: 80px; }
.creamcard {
  background: var(--cream);
  border-radius: 36px;
  padding: 72px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--brown);
}
.creamcard__icon { border-radius: 22px; display: block; }
.creamcard__h { font-size: 48px; font-weight: 700; letter-spacing: -1.8px; margin: 28px 0 12px; text-wrap: balance; }
.creamcard__p { font-size: 17px; opacity: 0.75; margin: 0 0 28px; }
.creamcard__badges { display: flex; gap: 12px; margin-top: 22px; }
.storepill {
  background: var(--brown);
  color: var(--cream);
  text-decoration: none;
  font-size: 15.5px;
  font-weight: 700;
  border-radius: 99px;
  padding: 14px 28px;
  transition: filter var(--t), background var(--t);
}
.storepill:hover { filter: brightness(1.2); }
.storepill--ghost {
  background: transparent;
  border: 2px solid var(--brown);
  color: var(--brown);
  padding: 12px 26px;
}
.storepill--ghost:hover { filter: none; background: rgba(58, 31, 16, 0.08); }

/* ── footer ────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--line); }
.footer__inner {
  height: 84px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer__brand { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--sub); }
.footer__brand img { border-radius: 7px; display: block; }
.footer__links { margin-left: auto; display: flex; gap: 22px; }
.footer__links a { color: var(--sub); text-decoration: none; font-size: 13.5px; transition: color var(--t); }
.footer__links a:hover { color: var(--ink); }

/* ============================================================
   Responsive — net-new (comps were desktop-1440 only)
   ============================================================ */

/* large laptop: trim padding, shrink headline + phones a touch */
@media (max-width: 1100px) {
  :root { --pad: 40px; }
  .hero__h { font-size: 56px; letter-spacing: -2px; }
  .phone { --pw: 270px; }
  .phone--today, .phone--list { --pw: 235px; }
  .phonetrio { margin-bottom: -120px; }
  .how { padding-top: 180px; }
}

/* tablet */
@media (max-width: 880px) {
  :root { --pad: 32px; }

  .hero { padding-top: 56px; }
  .hero__icon { width: 88px; height: 88px; border-radius: 24px; }
  .hero__h { font-size: 46px; letter-spacing: -1.6px; line-height: 1.06; }

  .how__h { font-size: 34px; letter-spacing: -1.2px; }
  .sec-head__h { font-size: 40px; letter-spacing: -1.4px; }
  .pricing__h, .faq__h { font-size: 34px; letter-spacing: -1.2px; }

  /* bento reflows to a simpler 2-col; quick-add + chat go full width */
  .bento__grid { grid-template-columns: repeat(2, 1fr); }
  .card--2, .card--3 { grid-column: span 1; }
  .card--3 { grid-column: span 2; }

  .pricing__grid { grid-template-columns: 1fr; }

  /* phone trio: tighten, reduce overlap */
  .phonetrio { gap: 18px; margin-top: 48px; margin-bottom: -90px; }
  .phone { --pw: 220px; }
  .phone--today, .phone--list { --pw: 192px; }
  .how { padding-top: 150px; }

  /* collapse nav pill into a toggle menu */
  .nav__links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 22px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t), transform var(--t);
  }
  .nav__pill { position: relative; }
  .nav__links a:not(.btn) { padding: 12px 14px; font-size: 16px; text-align: center; }
  /* CTA stays in the pill (it's no longer inside the dropdown), pushed right with the toggle
     after it: [brand] … [Get the app] [☰] */
  .nav__cta { order: 2; margin-left: auto; }
  .nav__toggle { display: flex; order: 3; margin-left: 10px; }
  .nav.is-open .nav__links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* step pills stack their text under the number on tight rows */
  .steprow { gap: 18px; padding: 20px 22px; }
}

/* mobile */
@media (max-width: 560px) {
  :root { --pad: 20px; }

  .hero { padding-top: 44px; }
  .hero__icon { width: 76px; height: 76px; border-radius: 20px; }
  .hero__h { font-size: 34px; letter-spacing: -1.2px; line-height: 1.08; }
  .hero__sub { font-size: 16px; }
  .capture__row { flex-direction: column; gap: 10px; }
  .capture__btn { width: 100%; }

  .how { padding-top: 110px; padding-bottom: 64px; }
  .how__h { font-size: 28px; }
  .steprow {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    border-radius: 26px;
    padding: 22px 24px;
  }
  .steprow__n { width: 46px; height: 46px; font-size: 15px; }

  .sec-head { gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
  .sec-head__h { font-size: 30px; letter-spacing: -1px; white-space: normal; }

  .bento { padding-top: 56px; padding-bottom: 56px; }
  .bento__grid { grid-template-columns: 1fr; }
  .card--3 { grid-column: span 1; }

  .pricing { padding-bottom: 56px; }
  .pricing__h, .faq__h { font-size: 28px; }
  .plan { padding: 24px 24px 28px; }

  .faq__wrap { padding-top: 56px; padding-bottom: 64px; }

  /* phone trio: a single centered, upright phone */
  .phonetrio {
    margin-top: 40px;
    margin-bottom: -70px;
    gap: 0;
  }
  .phone--today, .phone--list { display: none; }
  .phone--home { --pw: 260px; transform: none; }

  .creamcard { padding: 48px 24px; border-radius: 28px; }
  .creamcard__icon { width: 72px; height: 72px; border-radius: 20px; }
  .creamcard__h { font-size: 32px; letter-spacing: -1.2px; }
  .creamcard__badges { flex-direction: column; width: 100%; max-width: 320px; }
  .storepill { text-align: center; }

  .footer__inner { height: auto; flex-direction: column; align-items: flex-start; gap: 14px; padding-top: 28px; padding-bottom: 28px; }
  .footer__links { margin-left: 0; }
}

/* respect reduced motion: kill the smooth scroll + transitions */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
