/* ─────────────────────────────────────────────────────────────
   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;

  --t50:  #EFF9F6;
  --t100: #D8F0EA;
  --t200: #AEE0D5;
  --t300: #6FC6B4;
  --t500: #149E86;
  --t600: #0D8A75;
  --t700: #0A6E5E;
  --t800: #07564A;
  --tInk: #04332B;

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

  --font: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --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: flex; align-items: center; gap: 9px; font-weight: 650; font-size: 16.5px; letter-spacing: -0.02em; }
.brand-mark {
  width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(150deg, var(--t500), var(--t700));
  display: flex; align-items: center; justify-content: center;
}
.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; }
@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 {
  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(20,158,134,.4), rgba(20,158,134,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(20,158,134,.25); }
.cta-band .wl-done { background: rgba(20,158,134,.18); border-color: rgba(110,198,180,.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 .65s cubic-bezier(.2,.7,.2,1), transform .65s cubic-bezier(.2,.7,.2,1); }
  .reveal.in { opacity: 1; transform: none; }
}
