/* ─────────────────────────────────────────────────────────────
   Workfied site v2 — pure white · teal accent · Geist + Geist Mono
   ───────────────────────────────────────────────────────────── */
:root {
  --bg:    #FFFFFF;
  --bg2:   #F7FAF9;
  --bg3:   #F1F5F4;

  --ink:   #0E1513;
  --ink2:  #4C5754;
  --ink3:  #808B88;
  --ghost: #ADB6B3;

  --line:  #E9EDEC;
  --line2: #DEE4E2;

  /* Brand indigo-blue, extracted from the logo (#757BFA / #464DE1 / #2A30C1) */
  --t50:  #EEEFFE;
  --t100: #E0E2FD;
  --t200: #C3C6FB;
  --t300: #9DA2F8;
  --t400: #757BFA;
  --t500: #565DEC;
  --t600: #464DE1;
  --t700: #2A30C1;
  --t800: #21267A;
  --tInk: #171A52;

  --amber: #D26E1C;   /* app accent — only ever next to screenshots */

  --font: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono: var(--font); /* one font — Geist everywhere */

  --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 24px;

  --sh-1: 0 1px 2px rgba(14,21,19,.05), 0 1px 3px rgba(14,21,19,.05);
  --sh-2: 0 2px 8px rgba(14,21,19,.06), 0 12px 32px rgba(14,21,19,.07);
  --sh-phone: drop-shadow(0 24px 48px rgba(14,21,19,.16)) drop-shadow(0 6px 14px rgba(14,21,19,.08));

  --wrap: 1128px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--font); font-size: 16px; line-height: 1.55;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
::selection { background: var(--t100); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ── Type ───────────────────────────────────────────────── */
.display {
  font-size: clamp(42px, 6.2vw, 72px); font-weight: 600;
  letter-spacing: -0.038em; line-height: 1.04; text-wrap: balance; margin: 0;
}
.h1 { font-size: clamp(32px, 4vw, 46px); font-weight: 600; letter-spacing: -0.032em; line-height: 1.1; text-wrap: balance; margin: 0; }
.h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 600; letter-spacing: -0.026em; line-height: 1.16; text-wrap: balance; margin: 0; }
.h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.016em; line-height: 1.3; margin: 0; }
.lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink2); line-height: 1.6; text-wrap: pretty; margin: 0; }
.body-text { font-size: 16px; color: var(--ink2); text-wrap: pretty; margin: 0; }
.small { font-size: 13.5px; color: var(--ink3); margin: 0; }
.teal { color: var(--t600); }

.eyebrow {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--t600);
}
.eyebrow.muted { color: var(--ink3); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0 18px; height: 42px; border-radius: 10px;
  font-size: 14.5px; font-weight: 550; letter-spacing: -0.01em;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .1s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #243230; }
.btn-teal { background: var(--t600); color: #fff; }
.btn-teal:hover { background: var(--t700); }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--line2); }
.btn-outline:hover { border-color: var(--ghost); background: var(--bg2); }
.btn-ghost { background: transparent; color: var(--ink2); }
.btn-ghost:hover { color: var(--ink); background: var(--bg3); }
.btn-lg { height: 48px; padding: 0 22px; font-size: 15.5px; border-radius: 12px; }

/* ── Nav ────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-in { display: flex; align-items: center; gap: 28px; height: 60px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 26px; width: auto; display: block; }
.nav-links { display: flex; gap: 4px; flex: 1; }
.nav-links a {
  padding: 7px 11px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: var(--ink2); transition: color .12s, background .12s; white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); background: var(--bg3); }
.nav-links a.on { color: var(--ink); }
.nav-cta { display: flex; gap: 8px; align-items: center; }

/* nav dropdowns */
.nav-dd { position: relative; }
.nav-dd > a {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 11px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: var(--ink2); white-space: nowrap; transition: color .12s, background .12s;
}
.nav-dd > a svg { opacity: .55; transition: transform .15s; }
.nav-dd:hover > a, .nav-dd:focus-within > a { color: var(--ink); background: var(--bg3); }
.nav-dd:hover > a svg, .nav-dd:focus-within > a svg { transform: rotate(180deg); }
.nav-menu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 252px;
  background: #fff; border: 1px solid var(--line2); border-radius: 14px;
  box-shadow: var(--sh-2); padding: 7px; z-index: 120;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.nav-dd:hover .nav-menu, .nav-dd:focus-within .nav-menu { opacity: 1; visibility: visible; transform: none; }
.nav-dd::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 10px; }
.nav-menu a { display: flex; flex-direction: column; gap: 1px; padding: 9px 12px; border-radius: 9px; }
.nav-menu a:hover { background: var(--bg2); }
.nav-menu .mi-t { font-size: 14px; font-weight: 550; color: var(--ink); letter-spacing: -0.01em; }
.nav-menu .mi-d { font-size: 12.5px; color: var(--ink3); }
@media (max-width: 860px) { .nav-links { display: none; } .nav-in { justify-content: space-between; } }

/* mobile nav */
.nav-burger {
  display: none; align-items: center; justify-content: center;
  width: 42px; height: 42px; padding: 0; border-radius: 10px;
  background: transparent; border: 1px solid var(--line2); color: var(--ink);
  cursor: pointer; transition: background .15s, border-color .15s;
}
.nav-burger:hover { background: var(--bg3); }
.nav-burger svg path { transition: transform .2s ease, opacity .15s ease; transform-origin: 12px 12px; }
.nav.open .nav-burger .nb-top { transform: translateY(5px) rotate(45deg); }
.nav.open .nav-burger .nb-mid { opacity: 0; }
.nav.open .nav-burger .nb-bot { transform: translateY(-5px) rotate(-45deg); }
.nav-mobile {
  display: none; border-top: 1px solid var(--line);
  background: #fff; max-height: calc(100vh - 60px); overflow-y: auto;
  padding: 10px 24px 22px;
}
.nav.open .nav-mobile { display: block; }
.nm-group { padding: 12px 0 4px; }
.nm-group + .nm-group { border-top: 1px solid var(--line); }
.nm-group h6 {
  margin: 6px 0 4px; font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink3);
}
.nav-mobile a {
  display: block; padding: 10px 0; font-size: 15px; font-weight: 500;
  color: var(--ink2); border-radius: 8px;
}
.nav-mobile a:active { color: var(--ink); }
@media (max-width: 860px) {
  .nav-burger { display: inline-flex; }
}
@media (max-width: 400px) {
  .nav-cta .btn-teal { padding: 0 13px; font-size: 13.5px; }
}

/* ── Sections ───────────────────────────────────────────── */
.section { padding: 92px 0; }
.section.tight { padding: 56px 0; }
.section.alt { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 680px; }
.section-head.center { margin: 0 auto; text-align: center; }
.stack-6 { display: flex; flex-direction: column; gap: 6px; }

/* ── Hero ───────────────────────────────────────────────── */
.hero { padding: 84px 0 56px; position: relative; overflow: hidden; }
.hero-glow {
  position: absolute; inset: auto 0 -40% 0; height: 90%; pointer-events: none;
  background: radial-gradient(48% 55% at 50% 100%, var(--t50) 0%, rgba(239,249,246,0) 100%);
}
.pill {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  padding: 6px 14px 6px 8px; border-radius: 999px;
  border: 1px solid var(--line2); background: #fff;
  font-size: 13px; font-weight: 500; color: var(--ink2); box-shadow: var(--sh-1);
}
.pill .tag {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
  background: var(--t50); color: var(--t700); border: 1px solid var(--t100);
  padding: 2.5px 8px; border-radius: 999px; white-space: nowrap;
}
@media (max-width: 600px) {
  .pill { white-space: normal; flex-wrap: wrap; justify-content: center; row-gap: 4px; padding: 6px 14px; max-width: calc(100vw - 48px); }
}

/* waitlist form */
.wl-form { display: flex; gap: 10px; max-width: 460px; width: 100%; }
.wl-form input {
  flex: 1; min-width: 0; height: 48px; padding: 0 16px;
  border: 1px solid var(--line2); border-radius: 12px;
  font: 500 15px var(--font); letter-spacing: -0.01em; color: var(--ink);
  background: #fff; outline: none; transition: border-color .15s, box-shadow .15s;
}
.wl-form input::placeholder { color: var(--ink3); font-weight: 400; }
.wl-form input:focus { border-color: var(--t500); box-shadow: 0 0 0 3px var(--t100); }
.wl-form.err input { border-color: #C8442E; box-shadow: 0 0 0 3px #FBEBE8; }
.wl-done {
  display: none; align-items: center; gap: 10px; height: 48px; padding: 0 18px;
  border-radius: 12px; background: var(--t50); border: 1px solid var(--t200);
  color: var(--t800); font-size: 15px; font-weight: 550; max-width: 460px;
}
.wl-block.done .wl-form { display: none; }
.wl-block.done .wl-done { display: inline-flex; }
.wl-note { margin-top: 12px; }
.wl-err { margin-top: 12px; font-size: 13.5px; font-weight: 500; color: #C8442E; max-width: 460px; }
.cta-band--bold .wl-err { color: #FFE2DB; }
@media (max-width: 480px) {
  .wl-form { flex-direction: column; }
  .wl-form input { width: 100%; }
  .wl-form .btn { width: 100%; }
  .wl-done { height: auto; min-height: 48px; padding: 10px 16px; text-align: left; }
}

/* store badges */
.stores { display: flex; gap: 12px; flex-wrap: wrap; }
.store {
  display: flex; align-items: center; gap: 11px;
  padding: 8px 20px 8px 15px; border-radius: 12px; min-height: 54px;
  background: var(--ink); color: #fff; cursor: default;
  border: 1px solid var(--ink);
}
.store .s-ic { display: flex; align-items: center; flex-shrink: 0; }
.store .s-txt { display: flex; flex-direction: column; gap: 0; }
.store .s-top { font-size: 10px; font-family: var(--mono); letter-spacing: .1em; text-transform: uppercase; opacity: .6; white-space: nowrap; line-height: 1.4; }
.store .s-name { font-size: 16px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.25; white-space: nowrap; }
.stores-cap { margin-top: 10px; font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink3); }

/* hero component collage */
.hero-flow {
  margin: 64px auto 0; max-width: 1060px; width: 100%;
  display: grid; grid-template-columns: 1fr 34px 1.02fr 34px 1fr; gap: 14px;
  align-items: center; text-align: left;
}
.hf-col { min-width: 0; display: flex; flex-direction: column; gap: 12px; }
.hf-k {
  font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink3); text-align: center;
}
.hf-arrow { display: flex; align-items: center; justify-content: center; color: var(--t400, #2DB39A); }
@media (max-width: 900px) {
  .hero-flow { grid-template-columns: 1fr; max-width: 460px; }
  .hf-arrow { transform: rotate(90deg); padding: 2px 0; }
}

/* marquee */
.marquee {
  overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track { display: flex; width: max-content; }
.mq-set { display: flex; gap: 9px; padding-right: 9px; }
@media (prefers-reduced-motion: no-preference) {
  .marquee-track { animation: mq-scroll 34s linear infinite; }
  .marquee:hover .marquee-track { animation-play-state: paused; }
}
@keyframes mq-scroll { to { transform: translateX(-50%); } }
.hero-cards {
  margin: 72px auto 0; max-width: 1080px; width: 100%;
  display: grid; grid-template-columns: 1fr 1.12fr 1fr; gap: 22px;
  align-items: start; text-align: left;
}
.hc-col { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.hc-mid { transform: translateY(-14px); }
.hc-left, .hc-right { transform: translateY(18px); }
@media (max-width: 900px) {
  .hero-cards { grid-template-columns: 1fr; max-width: 480px; }
  .hc-mid, .hc-left, .hc-right { transform: none; }
  .hc-right { display: none; }
}

/* ── Ritual strip ───────────────────────────────────────── */
.chips { display: flex; gap: 9px; flex-wrap: wrap; justify-content: center; }
.chip {
  padding: 7px 14px; border-radius: 999px; border: 1px solid var(--line2);
  background: #fff; font-size: 13.5px; font-weight: 500; color: var(--ink2); white-space: nowrap;
}

/* ── Evolution journey ──────────────────────────────────── */
.journey { display: grid; grid-template-columns: minmax(0,1fr) 380px; gap: clamp(40px, 7vw, 110px); align-items: stretch; }
.j-steps { display: flex; flex-direction: column; }
.j-step { padding: 18vh 0; border-bottom: 0; max-width: 480px; }
.j-step:first-child { padding-top: 8vh; }
.j-step:last-child { padding-bottom: 14vh; }
.j-k {
  font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink3); display: flex; align-items: center; gap: 10px; transition: color .3s;
}
.j-k::before { content: ""; width: 22px; height: 1.5px; background: var(--line2); transition: background .3s; }
.j-step h3 { font-size: clamp(22px, 2.4vw, 28px); font-weight: 600; letter-spacing: -0.024em; line-height: 1.16; margin: 14px 0 0; }
.j-step p { margin: 12px 0 0; color: var(--ink2); font-size: 16.5px; line-height: 1.6; text-wrap: pretty; }
.j-step.on .j-k { color: var(--t600); }
.j-step.on .j-k::before { background: var(--t500); }

.j-sticky { position: relative; display: flex; flex-direction: column; align-items: stretch; }
.j-scenes { position: sticky; top: 86px; width: 100%; display: grid; }
.j-scene {
  grid-area: 1 / 1; min-width: 0;
  display: flex; flex-direction: column; gap: 14px;
  opacity: 0; transform: translateY(14px) scale(.985);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}
.j-scene.on { opacity: 1; transform: none; pointer-events: auto; }
@media (max-width: 880px) {
  .journey { grid-template-columns: 1fr; }
  .j-sticky { display: none; }
  .j-step { padding: 40px 0; }
  .j-step:first-child { padding-top: 8px; }
}

/* ── Bento features ─────────────────────────────────────── */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.b-card {
  border: 1px solid var(--line); border-radius: var(--r-xl); background: #fff;
  padding: 28px; overflow: hidden; position: relative;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.b-card:hover { border-color: var(--line2); box-shadow: var(--sh-2); }
.b-card h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.016em; margin: 0; }
.b-card p { margin: 0; color: var(--ink2); font-size: 15px; line-height: 1.55; text-wrap: pretty; }
.b-3 { grid-column: span 3; }
.b-2 { grid-column: span 2; }
.b-shot { margin: 22px -28px -28px; display: flex; justify-content: center; overflow: hidden; }
.b-shot.tall { max-height: 330px; }
.b-shot img { width: min(282px, 80%); border-radius: 28px 28px 0 0; }
.b-shot.glow { background: radial-gradient(70% 90% at 50% 100%, var(--t50), rgba(239,249,246,0)); }
@media (max-width: 920px) { .b-3, .b-2 { grid-column: span 6; } }

/* ── Use cases ──────────────────────────────────────────── */
.uc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.uc {
  border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff;
  padding: 24px; display: flex; flex-direction: column; gap: 8px;
  transition: border-color .2s, box-shadow .2s;
}
.uc:hover { border-color: var(--t200); box-shadow: var(--sh-2); }
.uc .ic {
  width: 38px; height: 38px; border-radius: 10px; margin-bottom: 8px;
  background: var(--t50); color: var(--t700); border: 1px solid var(--t100);
  display: flex; align-items: center; justify-content: center;
}
.uc h3 { font-size: 16.5px; font-weight: 600; letter-spacing: -0.014em; margin: 0; }
.uc p { margin: 0; font-size: 14.5px; color: var(--ink2); line-height: 1.55; text-wrap: pretty; }
@media (max-width: 880px) { .uc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .uc-grid { grid-template-columns: 1fr; } }

/* ── Audience ───────────────────────────────────────────── */
.aud-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.aud {
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px;
  background: #fff; display: flex; flex-direction: column; gap: 10px;
}
.aud .who { font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--t600); }
.aud h3 { font-size: 18px; margin: 0; font-weight: 600; letter-spacing: -0.016em; }
.aud p { margin: 0; font-size: 14.5px; color: var(--ink2); line-height: 1.55; }
.aud ul { margin: 4px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 7px; }
.aud li { font-size: 14px; color: var(--ink2); display: flex; gap: 9px; align-items: baseline; }
.aud li::before { content: "→"; color: var(--t500); font-size: 13px; flex-shrink: 0; }
@media (max-width: 880px) { .aud-grid { grid-template-columns: 1fr; } }

/* ── Privacy band ───────────────────────────────────────── */
.priv {
  border: 1px solid var(--line2); border-radius: var(--r-xl);
  background: linear-gradient(170deg, #FBFDFC, var(--bg2));
  padding: clamp(32px, 5vw, 56px);
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.priv-list { display: flex; flex-direction: column; gap: 0; }
.priv-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.priv-item:last-child { border-bottom: 0; }
.priv-item .ic { width: 34px; height: 34px; border-radius: 9px; background: #fff; border: 1px solid var(--line2); color: var(--t700); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.priv-item h4 { margin: 0; font-size: 15px; font-weight: 600; letter-spacing: -0.012em; }
.priv-item p { margin: 3px 0 0; font-size: 13.5px; color: var(--ink2); line-height: 1.5; }
@media (max-width: 820px) { .priv { grid-template-columns: 1fr; } }

/* ── Pricing ────────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 780px; margin: 0 auto; }
.price-grid--single { grid-template-columns: 1fr; max-width: 420px; }
.price {
  border: 1px solid var(--line); border-radius: var(--r-xl); background: #fff; padding: 30px;
  display: flex; flex-direction: column;
}
.price.hot { border-color: var(--t300); box-shadow: 0 0 0 3px var(--t50), var(--sh-2); }
.price .tier { font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink3); }
.price.hot .tier { color: var(--t600); }
.price .amt { font-size: 44px; font-weight: 600; letter-spacing: -0.035em; margin: 14px 0 2px; }
.price .amt span { font-size: 16px; font-weight: 500; color: var(--ink3); letter-spacing: -0.01em; }
.price ul { list-style: none; margin: 20px 0 26px; padding: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.price li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink2); align-items: baseline; }
.price li::before { content: "✓"; color: var(--t600); font-weight: 700; font-size: 13px; flex-shrink: 0; }
@media (max-width: 720px) { .price-grid { grid-template-columns: 1fr; } }

/* ── FAQ ────────────────────────────────────────────────── */
.faq { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 0;
  font-size: 16.5px; font-weight: 550; letter-spacing: -0.014em;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--ink3); font-size: 20px; font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 0 22px; color: var(--ink2); font-size: 15px; line-height: 1.65; max-width: 620px; text-wrap: pretty; }

/* ── CTA band ───────────────────────────────────────────── */
.cta-band {
  border-radius: var(--r-xl); background: var(--tInk); color: #fff;
  padding: clamp(40px, 6vw, 72px); text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(55% 90% at 50% 115%, rgba(70,77,225,.4), rgba(70,77,225,0));
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: rgba(255,255,255,.72); }
.cta-band .wl-form input { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.18); color: #fff; }
.cta-band .wl-form input::placeholder { color: rgba(255,255,255,.45); }
.cta-band .wl-form input:focus { border-color: var(--t300); box-shadow: 0 0 0 3px rgba(70,77,225,.25); }
.cta-band .wl-done { background: rgba(70,77,225,.18); border-color: rgba(157,162,248,.4); color: #DDF3EE; }
.cta-band .store { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.22); }
.cta-band .stores-cap { color: rgba(255,255,255,.5); }

/* ── Split feature rows (features / use-case pages) ── */
.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(36px, 6vw, 90px); align-items: center; }
.split.rev .sp-text { order: 2; } .split.rev .sp-media { order: 1; }
.sp-media { display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.sp-list { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.sp-list li { display: flex; gap: 12px; font-size: 15.5px; color: var(--ink2); align-items: baseline; }
.sp-list li::before { content: "✓"; color: var(--t600); font-weight: 700; font-size: 13px; flex-shrink: 0; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } .split.rev .sp-text { order: 1; } .split.rev .sp-media { order: 2; } }

/* ── Footer ─────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--line); padding: 56px 0 40px; background: var(--bg2); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.footer h5 { margin: 0 0 14px; font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink3); font-weight: 500; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; color: var(--ink2); }
.footer ul a:hover { color: var(--ink); }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ── Legal / prose pages ────────────────────────────────── */
.prose-head { padding: 72px 0 36px; border-bottom: 1px solid var(--line); }
.prose { max-width: 760px; padding: 48px 0 96px; }
.prose h2 { font-size: 21px; font-weight: 600; letter-spacing: -0.018em; margin: 40px 0 12px; }
.prose h3 { font-size: 16.5px; font-weight: 600; margin: 26px 0 8px; }
.prose p, .prose li { font-size: 15.5px; color: var(--ink2); line-height: 1.7; }
.prose ul { padding-left: 22px; margin: 10px 0; }
.prose li { margin: 6px 0; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose .updated { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink3); }
.prose .callout {
  border: 1px solid var(--t100); background: var(--t50); border-radius: var(--r-md);
  padding: 16px 20px; margin: 18px 0; font-size: 14.5px; color: var(--t800);
}

/* ── Reveal on scroll ───────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
  .reveal.in { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════
   Motion & polish pass — staggered reveals, ambient life,
   hover micro-interactions. All motion respects reduced-motion.
   ═══════════════════════════════════════════════════════════ */
@keyframes wf-pulse {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%      { transform: scale(1.55); opacity: .5; }
}
@keyframes wf-breathe {
  0%, 100% { opacity: .82; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.06); }
}
@keyframes wf-nudge {
  0%, 100% { transform: translateX(0);   opacity: .7; }
  50%      { transform: translateX(3px); opacity: 1; }
}
@keyframes wf-faq-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: none; }
}

/* nav mount-point must carry the sticky so the bar stays pinned while scrolling
   (the .nav child alone can only stick within its own height) */
#nav { position: sticky; top: 0; z-index: 100; }
/* nav elevates once you scroll off the top (no motion = fine to keep) */
.nav { transition: box-shadow .28s ease, background .28s ease; }
.nav.scrolled { box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(14,21,19,.07); background: rgba(255,255,255,.9); }

@media (prefers-reduced-motion: no-preference) {
  /* grouped reveals cascade — per-element delay set in site.js via --d */
  .reveal { transition-delay: var(--d, 0s); }

  /* ambient life */
  .hero-glow { animation: wf-breathe 9s ease-in-out infinite; transform-origin: 50% 100%; }
  .ac-rec .live::before { animation: wf-pulse 1.8s ease-in-out infinite; }
  .hf-arrow svg { animation: wf-nudge 2.4s ease-in-out infinite; }
  .faq details[open] .a { animation: wf-faq-in .32s cubic-bezier(.2,.7,.2,1); }

  /* card hover lift — smooth and subtle */
  .b-card, .uc, .aud, .price {
    transition: border-color .2s ease, box-shadow .28s ease, transform .28s cubic-bezier(.2,.7,.2,1);
  }
  .b-card:hover, .uc:hover { transform: translateY(-4px); }
  .aud:hover { transform: translateY(-4px); border-color: var(--t200); box-shadow: var(--sh-2); }
  .price:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
  .price.hot:hover { transform: translateY(-3px); box-shadow: 0 0 0 3px var(--t50), var(--sh-2); }

  /* small touches */
  .store { transition: transform .2s cubic-bezier(.2,.7,.2,1), background .15s ease, border-color .15s ease; }
  .store:hover { transform: translateY(-2px); }
  .pill { transition: transform .2s cubic-bezier(.2,.7,.2,1), box-shadow .2s ease; }
  .pill:hover { transform: translateY(-1px); box-shadow: var(--sh-2); }
  .brand-mark { transition: transform .25s cubic-bezier(.2,.7,.2,1); }
  .brand:hover .brand-mark { transform: rotate(-6deg) scale(1.06); }
  .btn-teal, .btn-primary { transition: background .15s ease, border-color .15s ease, color .15s ease, transform .12s ease, box-shadow .22s ease; }
  .btn-teal:hover { box-shadow: 0 6px 18px rgba(70,77,225,.28); transform: translateY(-1px); }
  .btn-teal:active { transform: translateY(1px); box-shadow: none; }
}

/* ═══════════════════════════════════════════════════════════
   Infographic motion — scroll progress, animated counters &
   progress bars, hero pipeline flow. Makes the product's
   claims legible. All gated on reduced-motion where it moves.
   ═══════════════════════════════════════════════════════════ */

/* reading-progress bar pinned to the very top of the page */
.scroll-prog {
  position: fixed; top: 0; left: 0; height: 2.5px; width: 0; z-index: 200;
  background: linear-gradient(90deg, var(--t500), var(--t700));
  box-shadow: 0 0 8px rgba(70,77,225,.4); pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  /* progress bars (readiness %, goals) fill from zero once revealed —
     width itself is driven inline from site.js so it beats inline targets */
  .ac-bar.fillable i { transition: width 1.2s cubic-bezier(.2,.7,.2,1); }

  /* hero pipeline reads left→right: the two connectors pulse in sequence */
  .hf-arrow svg { animation: wf-flow 2.6s ease-in-out infinite; }
  .hero-flow .hf-arrow ~ .hf-arrow svg { animation-delay: .7s; }

  /* streak calendar cells settle in with a soft stagger */
  .ac-streak.run .ac-day { animation: wf-cell .5s cubic-bezier(.2,.7,.2,1) backwards; }
}

@keyframes wf-flow {
  0%, 100% { opacity: .45; transform: translateX(0); }
  45%      { opacity: 1;   transform: translateX(4px) scale(1.12); }
}
@keyframes wf-cell {
  from { opacity: 0; transform: scale(.4); }
  to   { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════
   Premium visual layer — Aurora hero (brand teal only),
   faint product grid, flow nodes, depth. Tuned restrained for a
   serious corporate audience: low opacity, slow motion.
   ═══════════════════════════════════════════════════════════ */

/* keep hero content above the new background layers */
.hero > .wrap { position: relative; z-index: 2; }

/* product grid that fades toward the edges */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(to right,  rgba(70,77,225,.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(70,77,225,.10) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 82% 66% at 50% 34%, #000 22%, transparent 78%);
          mask-image: radial-gradient(ellipse 82% 66% at 50% 34%, #000 22%, transparent 78%);
}

/* aurora mesh — bold layered teal clouds for real depth */
.hero-glow {
  inset: -16% -10% auto -10%; height: 135%; z-index: 0;
  background:
    radial-gradient(40% 46% at 15% 18%, rgba(117,123,250,.50),  transparent 64%),
    radial-gradient(44% 50% at 86% 12%, rgba(70,77,225,.42),  transparent 64%),
    radial-gradient(48% 44% at 72% 80%, rgba(86,97,236,.40),  transparent 68%),
    radial-gradient(40% 40% at 35% 70%, rgba(70,77,225,.30),  transparent 66%),
    radial-gradient(62% 66% at 50% 112%, var(--t100),          rgba(239,249,246,0) 68%);
  filter: saturate(1.15);
}

/* hero pipeline arrows become flow nodes */
.hf-arrow {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--t50); border: 1px solid var(--t100); color: var(--t600);
  margin: 0 auto; box-shadow: 0 2px 8px rgba(70,77,225,.12);
}

/* gradient accent on the hero headline word */
.hero .teal {
  background: linear-gradient(115deg, var(--t500) 0%, var(--t700) 55%, var(--t500) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-glow { animation: wf-aurora 14s ease-in-out infinite alternate; transform-origin: 50% 50%; }
  .cta-band::before { animation: wf-cta-glow 12s ease-in-out infinite alternate; }
  .hero .teal { animation: wf-sheen 7s ease-in-out infinite; }
}

@keyframes wf-aurora {
  0%   { transform: translate3d(0, 0, 0)        scale(1);    }
  50%  { transform: translate3d(4%, -3%, 0)     scale(1.10); }
  100% { transform: translate3d(-4%, 2.5%, 0)   scale(1.06); }
}
@keyframes wf-sheen {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes wf-cta-glow {
  0%   { opacity: .7;  transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.12); }
}

/* ═══════════════════════════════════════════════════════════
   Hero — asymmetric split (copy left, phone right). Mobile-first
   product, so the showpiece is a real phone, not a web window.
   ═══════════════════════════════════════════════════════════ */
.hero--split { padding: 84px 0 96px; }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero-copy { text-align: left; }
.hero--split .display { font-size: clamp(40px, 5.4vw, 66px); letter-spacing: -0.04em; line-height: 1.02; }
.hero--split .wl-form { max-width: 480px; }
.hero-device { display: flex; justify-content: center; align-items: center; }
@media (max-width: 920px) {
  .hero--split { padding: 64px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { text-align: center; }
  .hero-copy .pill { margin-left: auto; margin-right: auto; }
  .hero--split .wl-form { margin-left: auto; margin-right: auto; }
  .hero-copy .stores { justify-content: center; }
  .hero-device { margin-top: 8px; }
}

/* ── Phone mockup (brand blue, reusable) ───────────────────── */
.phone {
  position: relative; width: 300px; flex-shrink: 0;
  background: #15161B; border-radius: 46px; padding: 11px;
  box-shadow:
    0 2px 4px rgba(14,21,19,.18),
    0 32px 64px -22px rgba(33,38,122,.42),
    0 70px 120px -50px rgba(14,21,19,.42);
}
.phone-island {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 26px; background: #000; border-radius: 999px; z-index: 5;
}
.phone-screen {
  position: relative; border-radius: 36px; overflow: hidden;
  background: linear-gradient(180deg, #FBFAF8, #F4F2EE);
  padding: 16px 15px 20px; min-height: 564px;
  display: flex; flex-direction: column; gap: 13px;
}
.ps-status { display: flex; justify-content: space-between; align-items: center; padding: 4px 8px 2px; font-size: 12.5px; font-weight: 600; color: var(--ink); }
.ps-sig { display: inline-flex; gap: 3px; align-items: flex-end; }
.ps-sig i { width: 3px; background: var(--ink); border-radius: 1px; }
.ps-sig i:nth-child(1) { height: 6px; } .ps-sig i:nth-child(2) { height: 9px; } .ps-sig i:nth-child(3) { height: 12px; }
.ps-head { display: flex; align-items: flex-start; justify-content: space-between; padding: 2px 4px; }
.ps-day { font-size: 11.5px; font-weight: 500; color: var(--ink3); }
.ps-greet { font-size: 19px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); margin-top: 2px; }
.ps-streak {
  display: inline-flex; align-items: center; gap: 4px; flex-shrink: 0;
  font-size: 13px; font-weight: 600; color: var(--t700);
  background: var(--t50); border: 1px solid var(--t100); border-radius: 999px; padding: 4px 10px;
}
.ps-capture {
  position: relative; border-radius: 22px; padding: 22px 18px 18px; text-align: center;
  background: linear-gradient(165deg, var(--t600), var(--t800));
  color: #fff; box-shadow: 0 10px 24px rgba(70,77,225,.34); overflow: hidden;
}
.ps-mic {
  width: 56px; height: 56px; border-radius: 18px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.22);
}
.ps-cap-t { margin-top: 13px; font-size: 16.5px; font-weight: 600; letter-spacing: -0.015em; }
.ps-cap-s { margin-top: 3px; font-size: 12px; color: rgba(255,255,255,.7); }
.ps-wave { display: flex; align-items: center; justify-content: center; gap: 3px; height: 30px; margin-top: 14px; }
.ps-wave i { width: 3px; border-radius: 2px; background: rgba(255,255,255,.55); height: 30%; }
.ps-wave i:nth-child(3n) { height: 80%; background: rgba(255,255,255,.85); }
.ps-wave i:nth-child(4n) { height: 55%; }
.ps-wave i:nth-child(5n) { height: 100%; background: #fff; }
.ps-label { font-family: var(--mono); font-size: 10.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--ink3); padding: 2px 4px; }
.phone-screen .ac-items { gap: 8px; }
.phone-screen .ac-item { border-radius: 13px; padding: 10px 12px; }
.phone-screen .ac-item .t { font-size: 13.5px; }

@media (prefers-reduced-motion: no-preference) {
  .phone--float { animation: wf-phone 7s ease-in-out infinite; }
  .ps-wave i { animation: wf-bar 1.2s ease-in-out infinite; transform-origin: center; }
  .ps-wave i:nth-child(2n) { animation-delay: .15s; }
  .ps-wave i:nth-child(3n) { animation-delay: .3s; }
  .ps-wave i:nth-child(4n) { animation-delay: .45s; }
}
@keyframes wf-phone { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes wf-bar { 0%,100% { transform: scaleY(.5); } 50% { transform: scaleY(1); } }

.hero-flow { display: none; }

/* ═══════════════════════════════════════════════════════════
   Problem — dark full-bleed statement (Apple-style drama)
   ═══════════════════════════════════════════════════════════ */
.statement {
  position: relative; overflow: hidden;
  background: var(--tInk); color: #fff;
  padding: clamp(80px, 11vw, 150px) 0;
}
.statement::before {
  content: ""; position: absolute; inset: -30% -10% auto -10%; height: 150%; pointer-events: none;
  background:
    radial-gradient(40% 50% at 18% 12%, rgba(117,123,250,.34), transparent 62%),
    radial-gradient(42% 52% at 88% 6%, rgba(70,77,225,.3), transparent 60%),
    radial-gradient(50% 60% at 60% 120%, rgba(86,97,236,.26), transparent 66%);
}
.statement::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(to right,  rgba(157,162,248,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(157,162,248,.08) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000, transparent 78%);
          mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000, transparent 78%);
}
.statement .wrap { position: relative; z-index: 2; }
.statement .eyebrow { color: var(--t300); }
.stmt-h {
  margin: 18px 0 0; max-width: 880px;
  font-size: clamp(32px, 4.6vw, 56px); font-weight: 600;
  letter-spacing: -0.034em; line-height: 1.08; text-wrap: balance; color: #fff;
}
.stmt-h em {
  font-style: normal;
  background: linear-gradient(110deg, var(--t300), var(--t400) 60%, #B9BDFB);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.stmt-p { margin: 24px 0 0; max-width: 580px; font-size: clamp(17px, 1.7vw, 20px); line-height: 1.6; color: rgba(255,255,255,.66); text-wrap: pretty; }
.stmt-stats {
  margin-top: clamp(44px, 6vw, 72px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px);
}
.stmt-stat { border-top: 1px solid rgba(157,162,248,.26); padding-top: 20px; }
.stmt-stat b { display: block; font-size: clamp(40px, 5vw, 60px); font-weight: 600; letter-spacing: -0.04em; line-height: 1; color: #fff; }
.stmt-stat span { display: block; margin-top: 12px; font-size: 14.5px; line-height: 1.5; color: rgba(255,255,255,.6); }
@media (max-width: 760px) { .stmt-stats { grid-template-columns: 1fr; gap: 24px; } }

/* ═══════════════════════════════════════════════════════════
   Phone showcase rows — alternating device/text (Apple style),
   replaces the old bento grid for the feature story.
   ═══════════════════════════════════════════════════════════ */
.showcase { display: flex; flex-direction: column; gap: clamp(72px, 10vw, 132px); }
.show-row {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: clamp(36px, 6vw, 96px); align-items: center;
}
.show-row.rev .show-media { order: 2; }
.show-row.rev .show-text { order: 1; }
.show-media { display: flex; justify-content: center; position: relative; }
.show-media::before {
  content: ""; position: absolute; inset: 6% 12%; z-index: 0; pointer-events: none;
  background: radial-gradient(60% 60% at 50% 45%, var(--t100), transparent 70%);
  filter: blur(8px);
}
.show-media .phone { position: relative; z-index: 1; }
.show-text .num {
  font-family: var(--mono); font-size: 13px; font-weight: 500; letter-spacing: .14em;
  color: var(--t500); display: inline-flex; align-items: center; gap: 10px;
}
.show-text .num::before { content: ""; width: 26px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--t500), var(--t700)); }
.show-text h3 { font-size: clamp(26px, 3vw, 36px); font-weight: 600; letter-spacing: -0.028em; line-height: 1.12; margin: 18px 0 0; text-wrap: balance; }
.show-text p { margin: 16px 0 0; font-size: 17px; color: var(--ink2); line-height: 1.6; max-width: 440px; text-wrap: pretty; }
.show-list { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.show-list li { display: flex; gap: 11px; font-size: 15px; color: var(--ink2); align-items: baseline; }
.show-list li::before { content: "✓"; color: var(--t600); font-weight: 700; font-size: 13px; flex-shrink: 0; }
@media (max-width: 880px) {
  .show-row { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .show-row.rev .show-media { order: 1; } .show-row.rev .show-text { order: 2; }
  .show-text .num { justify-content: center; }
  .show-text p { margin-left: auto; margin-right: auto; }
  .show-list { display: inline-flex; text-align: left; }
}

/* ── Whole-page depth: designed sections, not flat panels ── */

/* alternating sections get a soft teal wash + faded grid texture */
.section.alt { position: relative; background: linear-gradient(180deg, #F3FAF8, var(--bg2)); }
.section.alt::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(to right,  rgba(70,77,225,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(70,77,225,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 0%, #000, transparent 70%);
          mask-image: radial-gradient(ellipse 70% 70% at 50% 0%, #000, transparent 70%);
}
.section.alt > .wrap { position: relative; z-index: 1; }

/* richer, layered card shadows so the page reads as designed */
.b-card, .uc, .aud, .price {
  box-shadow: 0 1px 2px rgba(14,21,19,.04), 0 12px 30px rgba(14,21,19,.05);
}

/* the highlighted pricing tier gets a teal gradient body + lift */
.price.hot {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--t50) 100%);
  box-shadow: 0 0 0 3px var(--t50), 0 16px 40px rgba(70,77,225,.14);
}

/* section eyebrows lead with a short accent rule for rhythm */
.section-head:not(.center) .eyebrow,
.sp-text .eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
}
.section-head:not(.center) .eyebrow::before,
.sp-text .eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--t500), var(--t700));
}

/* ═══════════════════════════════════════════════════════════
   Sub-page treatment — give .prose-head headers the aurora, and
   animate split rows / contact cards that had no motion before.
   ═══════════════════════════════════════════════════════════ */

/* page headers get the same aurora + grid as the hero */
.prose-head { position: relative; overflow: hidden; }
.prose-head > .wrap { position: relative; z-index: 2; }
.prose-head::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(to right,  rgba(70,77,225,.09) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(70,77,225,.09) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 30% 10%, #000 18%, transparent 80%);
          mask-image: radial-gradient(ellipse 90% 80% at 30% 10%, #000 18%, transparent 80%);
}
.prose-head::after {
  content: ""; position: absolute; inset: -25% -10% auto -10%; height: 170%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(38% 60% at 12% 8%,  rgba(117,123,250,.36), transparent 60%),
    radial-gradient(40% 58% at 90% 0%,  rgba(70,77,225,.30), transparent 60%),
    radial-gradient(46% 66% at 64% 118%, rgba(86,97,236,.24), transparent 68%);
  filter: saturate(1.12);
}

/* directional reveals for split rows (set in site.js) */
@media (prefers-reduced-motion: no-preference) {
  .reveal.rx-l:not(.in) { transform: translateX(-32px); }
  .reveal.rx-r:not(.in) { transform: translateX(32px); }

  /* checklist items rise in after their row */
  .sp-list li { opacity: 0; transform: translateY(8px); transition: opacity .5s ease, transform .5s cubic-bezier(.2,.7,.2,1); }
  .reveal.in .sp-list li { opacity: 1; transform: none; }

  .prose-head::after { animation: wf-aurora 16s ease-in-out infinite alternate; transform-origin: 50% 50%; }

  /* contact cards lift + icon nudges on hover */
  .contact-card { transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease, border-color .2s ease; }
  .contact-card:hover { transform: translateY(-4px); border-color: var(--t200); box-shadow: var(--sh-2); }
  .contact-card .ic { transition: transform .25s cubic-bezier(.2,.7,.2,1); }
  .contact-card:hover .ic { transform: scale(1.08) rotate(-5deg); }
}

/* ═══════════════════════════════════════════════════════════
   ░░ EDITORIAL LAYER ░░  white-led · blue as accent only ·
   left-aligned · device-less floating components (Harvey.ai
   / terra.one / consumerapp.studio direction). Overrides the
   earlier heavier treatment.
   ═══════════════════════════════════════════════════════════ */

/* — restrained hero: drop the grid, single soft blue wash, solid accent — */
.hero::before { display: none; }
.hero-glow {
  inset: -8% -6% auto auto; width: 62%; height: 92%; z-index: 0;
  background: radial-gradient(46% 52% at 82% 16%, rgba(86,97,236,.13), transparent 72%);
  filter: none; animation: none;
}
.hero .teal { background: none; -webkit-text-fill-color: var(--t600); color: var(--t600); animation: none; }

/* — left-aligned section heads everywhere (editorial) — */
.section-head.center { margin: 0; text-align: left; max-width: 760px; }
.section-head.center .lead { margin-left: 0 !important; margin-right: 0 !important; }
.section-head .eyebrow { display: inline-flex; align-items: center; gap: 9px; }
.section-head .eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--t500), var(--t700));
}

/* — alternating sections become a soft neutral, no grid texture — */
.section.alt { background: var(--bg2); }
.section.alt::before { display: none; }

/* — universal floating UI card (the "component RCTs" shown directly) — */
.ui-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 18px 20px; text-align: left; font-family: var(--font); color: var(--ink);
  box-shadow: 0 1px 2px rgba(14,21,19,.04), 0 18px 44px -20px rgba(33,38,122,.22);
}

/* hero floating cluster — staggered for depth, no device frame */
.float-cluster { position: relative; width: 100%; max-width: 432px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; }
.float-cluster .ui-card:nth-child(1) { transform: translateX(-16px); }
.float-cluster .ui-card:nth-child(2) { transform: translateX(18px); z-index: 2; }
.float-cluster .ui-card:nth-child(3) { transform: translateX(-4px); }
@media (max-width: 920px) { .float-cluster { max-width: 420px; } .float-cluster .ui-card { transform: none !important; } }
@media (prefers-reduced-motion: no-preference) { .float-cluster { animation: wf-cluster 9s ease-in-out infinite; } }
@keyframes wf-cluster { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* capture card */
.fc-cap-row { display: flex; align-items: center; gap: 14px; }
.fc-mic {
  width: 48px; height: 48px; border-radius: 15px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--t500), var(--t700));
  box-shadow: 0 6px 16px rgba(70,77,225,.30);
}
.fc-cap-t { font-size: 16px; font-weight: 600; letter-spacing: -0.015em; color: var(--ink); }
.fc-cap-s { font-size: 12.5px; color: var(--ink3); margin-top: 2px; }
.fc-wave { display: flex; align-items: center; justify-content: space-between; gap: 2px; height: 26px; margin-top: 14px; }
.fc-wave i { width: 3px; flex: 0 0 3px; border-radius: 2px; background: var(--t200); height: 32%; }
.fc-wave i:nth-child(3n) { height: 88%; background: var(--t500); }
.fc-wave i:nth-child(4n) { height: 55%; background: var(--t300); }
.fc-wave i:nth-child(5n) { height: 100%; background: var(--t600); }
.fc-wave-lg { height: 40px; }
@media (prefers-reduced-motion: no-preference) {
  .fc-wave i { animation: wf-bar2 1.3s ease-in-out infinite; transform-origin: center; }
  .fc-wave i:nth-child(2n) { animation-delay: .12s; } .fc-wave i:nth-child(3n) { animation-delay: .26s; } .fc-wave i:nth-child(4n) { animation-delay: .4s; }
}
@keyframes wf-bar2 { 0%,100% { transform: scaleY(.55); } 50% { transform: scaleY(1); } }

/* generated-doc mini card */
.fc-doc .dhead, .ui-card.ac-doc .dhead { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.fc-tag { font-size: 11.5px; font-weight: 600; color: var(--t700); background: var(--t50); border: 1px solid var(--t100); border-radius: 999px; padding: 3px 10px; white-space: nowrap; }
.fc-doc-p { margin: 12px 0 0; font-size: 14px; line-height: 1.55; color: var(--ink2); }
.fc-doc-p b { color: var(--ink); font-weight: 600; }

/* showcase media: device-less card stack */
.card-stack { position: relative; width: 100%; max-width: 430px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.card-stack .ui-card:nth-child(1) { transform: translateX(-14px); }
.card-stack .ui-card:nth-child(2) { transform: translateX(16px); z-index: 2; }
.card-stack--two .cs-peek { transform: translateX(14px); }
.card-stack--two .cs-front { transform: translateX(-8px); }
@media (max-width: 880px) { .card-stack .ui-card { transform: none !important; } }

/* white recording card (replaces the dark transcript) */
.rec-top { display: flex; justify-content: space-between; align-items: center; }
.rec-live { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink3); }
.rec-live::before { content: ""; width: 7px; height: 7px; border-radius: 999px; background: var(--t500); }
.rec-time { font-size: 14px; font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.rec-words { margin: 16px 0 0; font-size: 14.5px; line-height: 1.6; color: var(--ink2); letter-spacing: -0.006em; }
.rec-words .hl { color: var(--t600); font-weight: 550; }
.rec-words .hg { color: #1F8A52; font-weight: 550; }
.rec-chips { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 14px; }
.rchip { font-size: 11.5px; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.rchip.blue { background: var(--t50); color: var(--t700); }
.rchip.green { background: #E8F5ED; color: #1F8A52; }
.rchip.red { background: #FBEBE8; color: #C8442E; }
@media (prefers-reduced-motion: no-preference) { .rec-live::before { animation: wf-pulse 1.8s ease-in-out infinite; } }

/* soften showcase backdrop glow to a faint blue */
.show-media::before { background: radial-gradient(58% 58% at 50% 45%, rgba(86,97,236,.10), transparent 70%); filter: none; }

/* — PROBLEM statement: dark → light editorial — */
.statement {
  background: #fff; color: var(--ink);
  padding: clamp(76px, 9vw, 122px) 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.statement::before {
  inset: 0; height: 100%;
  background: radial-gradient(42% 60% at 84% 8%, rgba(86,97,236,.09), transparent 70%);
}
.statement::after { display: none; }
.statement .eyebrow { color: var(--t600); display: inline-flex; align-items: center; gap: 9px; }
.statement .eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--t500), var(--t700)); }
.stmt-h { color: var(--ink); }
.stmt-h em { background: none; -webkit-text-fill-color: var(--t600); color: var(--t600); }
.stmt-p { color: var(--ink2); }
.stmt-stat { border-top: 1px solid var(--line2); }
.stmt-stat b { color: var(--ink); }
.stmt-stat span { color: var(--ink3); }

/* — FINAL CTA: dark navy → soft blue-tinted, dark text — */
.cta-band {
  background: linear-gradient(180deg, var(--t50), #fff);
  color: var(--ink); border: 1px solid var(--t100);
}
.cta-band::before { display: none; }
.cta-band h2 { color: var(--ink); }
.cta-band .lead { color: var(--ink2); }
.cta-band .wl-form input { background: #fff; border-color: var(--line2); color: var(--ink); }
.cta-band .wl-form input::placeholder { color: var(--ink3); }
.cta-band .wl-form input:focus { border-color: var(--t500); box-shadow: 0 0 0 3px var(--t100); }
.cta-band .wl-done { background: #fff; border-color: var(--t200); color: var(--t800); }
.cta-band .store { background: var(--ink); border-color: var(--ink); color: #fff; }
.cta-band .stores-cap { color: var(--ink3); }

/* — card hover lift on the floating components — */
@media (prefers-reduced-motion: no-preference) {
  .ui-card { transition: box-shadow .28s ease, transform .28s cubic-bezier(.2,.7,.2,1); }
  .show-row:hover .card-stack .cs-front { transform: translateX(0) translateY(-4px); }
}

/* — kill remaining amber / dark remnants in shared app cards (journey etc.)
     so the whole page is white-led with blue accents — */
.ac-capture { background: linear-gradient(165deg, var(--ac-a50), #fff); border-color: var(--ac-a100); }
.ac-rec {
  background: #fff; color: var(--ac-ink); border: 1px solid var(--ac-line);
  box-shadow: 0 1px 2px rgba(14,21,19,.04), 0 16px 40px -20px rgba(33,38,122,.20);
}
.ac-rec .live { color: var(--ac-ink3); }
.ac-rec .live::before { background: var(--ac-a500); }
.ac-rec .time { color: var(--ac-ink); }
.ac-rec .words { color: var(--ac-ink2); }
.ac-rec .words .hl { color: var(--ac-a600); }
.ac-rec .words .hg { color: #1F8A52; }
.ac-rec .ac-chip.amber { background: var(--ac-a50); color: var(--ac-a700); }
.ac-rec .ac-chip.green { background: #E8F5ED; color: #1F8A52; }
.ac-rec .ac-chip.red { background: #FBEBE8; color: #C8442E; }

/* journey: left-align the centered head, calmer sticky cards */
.journey .ac-card, .journey .ac-rec { box-shadow: 0 1px 2px rgba(14,21,19,.04), 0 16px 40px -20px rgba(33,38,122,.18); }

/* ═══════════════════════════════════════════════════════════
   ░░ FOCAL HERO ░░  one statement · vast whitespace · the only
   thing the eye lands on. Product is revealed on scroll.
   ═══════════════════════════════════════════════════════════ */
.hero--focus {
  position: relative; overflow: hidden;
  min-height: min(92vh, 920px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 124px 0 84px;
}
.hero-aura {
  position: absolute; z-index: 0; pointer-events: none;
  width: 82vw; max-width: 1120px; aspect-ratio: 16 / 10;
  left: 50%; top: 44%; transform: translate(-50%, -50%);
  background:
    radial-gradient(40% 50% at 28% 38%, rgba(117,123,250,.22), transparent 70%),
    radial-gradient(44% 54% at 74% 62%, rgba(86,97,236,.17), transparent 72%);
  filter: blur(6px);
}
.hero-focus-in { position: relative; z-index: 2; }
.kicker {
  margin: 0; font-family: var(--mono); font-size: 12.5px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink3);
  display: inline-flex; align-items: center; gap: 11px;
}
.kicker-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--t500); box-shadow: 0 0 0 4px var(--t50); }
.hero-statement {
  margin: 28px 0 0; font-weight: 600; color: var(--ink);
  font-size: clamp(52px, 9.2vw, 138px); letter-spacing: -0.05em; line-height: 0.9;
  text-wrap: balance;
}
.hero-statement .accent { color: var(--t600); }
.hero-sub { margin: 30px 0 0; max-width: 540px; font-size: clamp(18px, 1.7vw, 21px); color: var(--ink2); line-height: 1.55; text-wrap: pretty; }
.hero-cta-row { margin-top: 40px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-note { font-size: 14px; color: var(--ink3); letter-spacing: -0.005em; }
.btn-xl { height: 56px; padding: 0 32px; font-size: 16.5px; font-weight: 600; border-radius: 14px; }
.hero-scroll {
  position: absolute; left: 0; right: 0; bottom: 32px; z-index: 2;
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink3);
}
.hero-scroll svg { color: var(--t500); }
@media (prefers-reduced-motion: no-preference) {
  .hero-scroll svg { animation: wf-bob 1.9s ease-in-out infinite; }
  .hero-aura { animation: wf-aura 18s ease-in-out infinite alternate; transform-origin: 50% 50%; }
}
@keyframes wf-bob { 0%,100% { transform: translateY(0); opacity: .65; } 50% { transform: translateY(5px); opacity: 1; } }
@media (max-width: 600px) {
  .hero-scroll { display: none; }
  .hero--focus { min-height: auto; padding: 92px 0 64px; }
  .hero-statement { line-height: 0.96; }
}

/* ═══════════════════════════════════════════════════════════
   ░░ CLARIFY-STYLE HERO ░░  punchy centred statement, single
   CTA pair, animated metric row. Premium restraint.
   ═══════════════════════════════════════════════════════════ */
.hero--clarify { position: relative; overflow: hidden; padding: 116px 0 96px; text-align: center; }
.hero-clarify-in { position: relative; z-index: 2; max-width: 940px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 7px 7px 14px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line2); box-shadow: var(--sh-1);
  font-size: 13px; font-weight: 500; color: var(--ink2); white-space: nowrap;
  transition: border-color .15s, box-shadow .2s, transform .2s;
}
.hero-pill:hover { border-color: var(--t200); box-shadow: var(--sh-2); transform: translateY(-1px); }
.hero-pill .hp-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--t500); box-shadow: 0 0 0 4px var(--t50); }
.hero-pill .hp-arrow { color: var(--t600); font-weight: 600; }
.hero--clarify .hero-statement {
  margin: 26px 0 0; font-weight: 600; color: var(--ink);
  font-size: clamp(44px, 6.6vw, 86px); letter-spacing: -0.042em; line-height: 0.98; text-wrap: balance;
}
.hero--clarify .hero-statement .accent { color: var(--t600); }
.hero--clarify .hero-sub { margin: 24px auto 0; max-width: 600px; font-size: clamp(17px, 1.6vw, 20px); color: var(--ink2); line-height: 1.6; text-wrap: pretty; }
.hero--clarify .hero-cta-row { margin-top: 34px; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero--clarify .btn-ghost { color: var(--ink2); }
.hero--clarify .btn-ghost:hover { color: var(--ink); background: var(--bg3); }

/* animated metric row */
.metric-row {
  margin-top: 64px; width: 100%;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); padding-top: 36px;
}
.metric { position: relative; padding: 0 18px; }
.metric + .metric::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 8px; width: 1px; background: var(--line); }
.metric b {
  display: block; font-weight: 600; color: var(--ink);
  font-size: clamp(30px, 3.6vw, 46px); letter-spacing: -0.04em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.metric span { display: block; margin-top: 9px; font-size: 13.5px; color: var(--ink3); line-height: 1.4; letter-spacing: -0.005em; }
@media (max-width: 720px) {
  .hero--clarify { padding: 92px 0 72px; }
  .metric-row { grid-template-columns: 1fr 1fr; gap: 30px 0; border-top: 0; padding-top: 8px; }
  .metric:nth-child(3)::before, .metric:nth-child(2)::before { display: none; }
}
.stat-band .stat-cap { text-align: center; font-family: var(--mono); font-size: 12.5px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--ink3); margin: 0 0 6px; }
.stat-band .metric-row { margin-top: 30px; }

/* ═══════════════════════════════════════════════════════════
   ░░ KINETIC RITUAL BAND ░░  oversized scrolling type, outlined
   accents — an editorial drama beat between hero and product.
   ═══════════════════════════════════════════════════════════ */
.kinetic-band { padding: 60px 0 70px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; overflow: hidden; }
.kinetic-cap { max-width: var(--wrap); margin: 0 auto 26px; padding: 0 24px; font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--ink3); }
.kinetic-band .marquee { -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.kx { display: flex; align-items: center; width: max-content; }
.kw {
  display: inline-flex; align-items: center; white-space: nowrap; line-height: 1;
  font-size: clamp(34px, 5.4vw, 74px); font-weight: 600; letter-spacing: -0.035em; color: var(--ink);
}
.kw::after { content: "✦"; color: var(--t400); font-size: 0.3em; margin: 0 .52em; transform: translateY(-0.12em); }
.kw.out { color: transparent; -webkit-text-stroke: 1.4px var(--t300); text-stroke: 1.4px var(--t300); }

/* ═══════════════════════════════════════════════════════════
   ░░ BOLD BLUE CTA ░░  saturated on-brand contrast closer
   ═══════════════════════════════════════════════════════════ */
.cta-band--bold {
  position: relative; overflow: hidden; border: 0; color: #fff;
  background: linear-gradient(150deg, var(--t500) 0%, var(--t600) 45%, var(--t800) 100%);
  padding: clamp(56px, 8vw, 104px);
  box-shadow: 0 30px 70px -30px rgba(33,38,122,.6);
}
.cta-band--bold::before {
  content: ""; display: block; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(50% 70% at 82% 8%, rgba(255,255,255,.22), transparent 60%),
    radial-gradient(60% 80% at 12% 100%, rgba(117,123,250,.5), transparent 60%);
}
.cta-band--bold > * { position: relative; z-index: 1; }
.cta-band--bold .cta-big { font-size: clamp(36px, 5.2vw, 68px); font-weight: 600; letter-spacing: -0.038em; line-height: 1.02; color: #fff; text-wrap: balance; }
.cta-band--bold .lead { color: rgba(255,255,255,.82); }
.cta-band--bold .wl-form input { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.3); color: #fff; }
.cta-band--bold .wl-form input::placeholder { color: rgba(255,255,255,.62); }
.cta-band--bold .wl-form input:focus { border-color: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.25); }
.cta-band--bold .btn-teal { background: #fff; color: var(--t700); }
.cta-band--bold .btn-teal:hover { background: #fff; box-shadow: 0 10px 26px rgba(0,0,0,.18); }
.cta-band--bold .wl-done { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.42); color: #fff; }
.cta-band--bold .store { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.3); color: #fff; }
.cta-band--bold .stores-cap { color: rgba(255,255,255,.66); }

/* ═══════════════════════════════════════════════════════════
   ░░ AMPLITUDE-STYLE HERO ░░  centred rotating headline + a
   full-width product canvas (our real components, no chrome).
   ═══════════════════════════════════════════════════════════ */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.hero--amp { position: relative; overflow: hidden; padding: 104px 0 0; text-align: center; background: #fff; }
.hero--amp .hero-aura { display: none; }
.hero-amp-in { position: relative; z-index: 2; max-width: 940px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.amp-h1 { margin: 24px 0 0; font-weight: 600; color: var(--ink); font-size: clamp(40px, 6vw, 82px); letter-spacing: -0.044em; line-height: 1.0; text-wrap: balance; }
.amp-h1 .amp-dot { color: var(--t600); }
.rotator { position: relative; display: inline-block; }
.rot-word { display: none; color: var(--t600); }
.rot-word.is-on { display: inline-block; }
@media (prefers-reduced-motion: no-preference) {
  .rot-word.is-on { animation: rot-in .5s cubic-bezier(.2,.7,.2,1); }
}
@keyframes rot-in { from { opacity: 0; transform: translateY(0.18em); } to { opacity: 1; transform: none; } }
.amp-sub { margin: 24px auto 0; max-width: 600px; font-size: clamp(17px, 1.6vw, 20px); color: var(--ink2); line-height: 1.6; text-wrap: pretty; }
.hero--amp .hero-cta-row { margin-top: 34px; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero--amp .btn-ghost { color: var(--ink2); }
.hero--amp .btn-ghost:hover { color: var(--ink); background: var(--bg3); }
/* hero inline waitlist form */
.hero-wl { margin-top: 34px; display: flex; flex-direction: column; align-items: center; }
.hero-wl .wl-form { margin: 0 auto; }
.hero-wl .wl-done { margin: 0 auto; }
.hero-wl .hero-note { margin-top: 16px; }
.hero-note .hero-see { color: var(--t600); font-weight: 600; white-space: nowrap; }
.hero-note .hero-see:hover { color: var(--t700); }

/* full-width product canvas */
.amp-shot { position: relative; z-index: 2; margin: 64px auto 0; max-width: 1200px; padding: 0 24px; }
.amp-canvas {
  background: linear-gradient(180deg, var(--t50), #fff 70%);
  border: 1px solid var(--line2); border-radius: 26px; padding: 22px;
  box-shadow: 0 2px 8px rgba(14,21,19,.05), 0 44px 90px -34px rgba(33,38,122,.34);
  text-align: left;
}
.amp-canvas-head { display: flex; align-items: center; justify-content: space-between; padding: 4px 8px 18px; }
.ach-brand { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.ach-mark { width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, var(--t500), var(--t700)); color: #fff; font-size: 14px; font-weight: 700; }
.ach-streak { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--t700); background: #fff; border: 1px solid var(--t100); border-radius: 999px; padding: 5px 12px; }
.amp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: start; }
.amp-grid .ui-card { height: 100%; }
@media (max-width: 1000px) { .amp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .amp-grid { grid-template-columns: 1fr; } .hero--amp { padding: 84px 0 0; } .amp-shot { margin-top: 44px; } }

/* ── mobile phone stage (mobile app — phone frame + floating cards) ── */
.amp-stage { position: relative; display: flex; justify-content: center; align-items: center; }
.amp-stage .phone { position: relative; z-index: 3; flex-shrink: 0; }
.stage-float {
  width: 270px; flex-shrink: 0; align-self: flex-start; position: relative; z-index: 1;
  box-shadow: 0 1px 2px rgba(14,21,19,.04), 0 26px 54px -24px rgba(33,38,122,.26);
}
.stage-l { margin: 92px -56px 0 0; transform: rotate(-4deg); }
.stage-r { margin: 248px 0 0 -56px; transform: rotate(4deg); }
@media (prefers-reduced-motion: no-preference) {
  .amp-stage .phone { animation: wf-phone 7s ease-in-out infinite; }
}
@media (max-width: 900px) { .stage-float { display: none; } .amp-shot { margin-top: 48px; } }

/* refined LIGHT phone frame (replaces the heavy black bezel) */
.phone--soft {
  background: linear-gradient(160deg, #FFFFFF, #E9EBF2);
  border: 1px solid var(--line2);
  box-shadow: 0 2px 6px rgba(14,21,19,.06), 0 46px 92px -34px rgba(33,38,122,.36);
}
.phone-cam {
  position: absolute; top: 19px; left: 50%; transform: translateX(-50%);
  width: 9px; height: 9px; border-radius: 50%; background: #C3C7D2; z-index: 5;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.7);
}

/* ═══════════════════════════════════════════════════════════
   ░░ TABBED PRODUCT SHOWCASE ░░  amplitude's interactive tabs
   that swap a large product panel.
   ═══════════════════════════════════════════════════════════ */
.tabs-head { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 36px; }
.tab-btn {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
  padding: 11px 18px; border-radius: 999px; border: 1px solid var(--line2);
  background: #fff; font-family: var(--font); font-size: 14.5px; font-weight: 550; color: var(--ink2);
  transition: border-color .15s, background .15s, color .15s, box-shadow .2s;
}
.tab-btn:hover { border-color: var(--t200); color: var(--ink); }
.tab-btn .tb-num { font-family: var(--mono); font-size: 12px; color: var(--ink3); }
.tab-btn.on { background: var(--t600); border-color: var(--t600); color: #fff; box-shadow: 0 8px 20px rgba(70,77,225,.26); }
.tab-btn.on .tb-num { color: rgba(255,255,255,.7); }
.tab-panels { margin-top: 28px; position: relative; }
.tab-panel { display: none; }
.tab-panel.on { display: block; }
@media (prefers-reduced-motion: no-preference) { .tab-panel.on { animation: rot-in .4s cubic-bezier(.2,.7,.2,1); } }
.tab-stage {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.15fr);
  gap: clamp(32px, 5vw, 72px); align-items: center;
  background: linear-gradient(180deg, var(--bg2), #fff); border: 1px solid var(--line);
  border-radius: 26px; padding: clamp(28px, 4vw, 52px);
}
.tab-stage .ts-text h3 { font-size: clamp(24px, 2.6vw, 34px); font-weight: 600; letter-spacing: -0.026em; line-height: 1.14; margin: 14px 0 0; }
.tab-stage .ts-text p { margin: 14px 0 0; font-size: 16.5px; color: var(--ink2); line-height: 1.6; max-width: 420px; }
.tab-stage .ts-media { display: flex; justify-content: center; }
.tab-stage .ts-media .card-stack { max-width: 440px; }
@media (max-width: 860px) {
  .tab-stage { grid-template-columns: 1fr; gap: 28px; }
  .tab-stage .ts-media { order: -1; }
}
