/*
  StrataSnap marketing site
  ─────────────────────────
  Direction: refined minimalism — white blueprint paper, Attio-class
  restraint, royal blue reserved for primary actions only.
  Type: Plus Jakarta Sans (UI voice) · Instrument Serif italic (one
  accent word per headline, ties to Strata Match) · JetBrains Mono
  (eyebrows, data labels).
  Devices: CSS-built MacBook + iPhone frames around real app captures.
*/

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('fonts/plus-jakarta-sans-latin-wght-normal.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/instrument-serif-latin-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url('fonts/jetbrains-mono-latin-wght-normal.woff2') format('woff2-variations');
}

:root {
  --blue: #1E50C8;
  --blue-deep: #163C99;
  --blue-wash: #EEF3FC;
  --ink: #0E1726;
  --slate: #445062;
  --slate-soft: #6B7689;
  --hairline: #E3E8F0;
  --hairline-blue: rgba(30, 80, 200, 0.14);
  --paper: #FFFFFF;
  --paper-warm: #FAFBFD;
  --device-dark: #0B0D12;
  --amber: #B45309;
  --green: #15803D;
  --radius-card: 16px;
  --shadow-device: 0 2px 6px rgba(14, 23, 38, 0.08), 0 36px 90px -28px rgba(14, 23, 38, 0.4);
  --shadow-lift: 0 2px 6px rgba(14, 23, 38, 0.05), 0 18px 50px -16px rgba(30, 80, 200, 0.28);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font-ui: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: rgba(30, 80, 200, 0.16); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
section, .cta-band { scroll-margin-top: 84px; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ── Eyebrow / section label ───────────────────────── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 560;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 9px;
  height: 9px;
  border-left: 2px solid var(--blue);
  border-top: 2px solid var(--blue);
  transform: translateY(1px);
}

.serif-accent { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: 0.005em; }
.nobr { white-space: nowrap; }

/* ── Buttons ───────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 15.5px;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  overflow: hidden;
  transition: transform 0.18s var(--ease-out), box-shadow 0.22s var(--ease-out), background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform 0.2s var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 1px 2px rgba(14, 23, 38, 0.12), 0 6px 18px -6px rgba(30, 80, 200, 0.45);
}
/* one-pass sheen on hover */
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.22) 50%, transparent 62%);
  transform: translateX(-110%);
}
.btn-primary:hover::after { transition: transform 0.7s ease; transform: translateX(110%); }
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-1px); box-shadow: var(--shadow-lift); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--hairline);
}
.btn-ghost:hover { border-color: #C6CFDD; transform: translateY(-1px); box-shadow: 0 6px 20px -10px rgba(14, 23, 38, 0.18); }
.btn:focus-visible, a:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }
.btn:focus-visible { border-radius: 999px; }
.btn-sm { height: 42px; padding: 0 20px; font-size: 14.5px; }

/* ── Nav: floating pill ────────────────────────────── */
.nav {
  position: fixed;
  inset: 16px 16px auto;
  z-index: 50;
  pointer-events: none;
}
.nav-pill {
  pointer-events: auto;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border: 1px solid rgba(14, 23, 38, 0.06);
  border-radius: 999px;
  padding: 9px 9px 9px 24px;
  box-shadow: 0 1px 2px rgba(14, 23, 38, 0.05), 0 14px 34px -16px rgba(14, 23, 38, 0.16);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled .nav-pill {
  box-shadow: 0 2px 4px rgba(14, 23, 38, 0.06), 0 18px 44px -16px rgba(14, 23, 38, 0.26);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { width: auto; height: 26px; display: block; }
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  font-size: 14.5px;
  font-weight: 550;
  color: var(--slate);
  text-decoration: none;
  padding-bottom: 3px;
  background: linear-gradient(var(--blue), var(--blue)) left bottom / 0% 1.5px no-repeat;
  transition: color 0.15s ease, background-size 0.28s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); background-size: 100% 1.5px; }
.nav-cta { display: flex; gap: 10px; }

/* ── Device frames ─────────────────────────────────── */
/* MacBook */
.macbook { position: relative; will-change: transform; }
.mb-screen {
  position: relative;
  background: var(--device-dark);
  border-radius: clamp(12px, 1.6vw, 22px) clamp(12px, 1.6vw, 22px) 0 0;
  padding: clamp(11px, 1.7vw, 24px) clamp(11px, 1.7vw, 24px) clamp(13px, 2vw, 28px);
  box-shadow: inset 0 0 0 1.5px #272B33;
}
.mb-screen::before {
  /* camera dot */
  content: '';
  position: absolute;
  top: clamp(4px, 0.7vw, 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1D2129;
}
.mb-screen img { border-radius: clamp(3px, 0.4vw, 6px); background: #fff; width: 100%; }
.mb-base {
  position: relative;
  margin: 0 -4.5%;
  height: clamp(12px, 1.6vw, 21px);
  background: linear-gradient(180deg, #EDF0F5 0%, #D4DAE3 55%, #AEB6C3 100%);
  border-radius: 2px 2px clamp(8px, 1vw, 14px) clamp(8px, 1vw, 14px);
  box-shadow: var(--shadow-device);
}
.mb-base::before {
  /* thumb notch */
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 11%;
  height: 45%;
  background: linear-gradient(180deg, #B9C0CC, #CDD3DD);
  border-radius: 0 0 10px 10px;
}

/* iPhone */
.iphone {
  position: relative;
  width: var(--ipw, 264px);
  background: var(--device-dark);
  border-radius: clamp(34px, calc(var(--ipw, 264px) * 0.165), 46px);
  padding: 9px;
  box-shadow: inset 0 0 0 2px #2A2E37, inset 0 0 0 3.5px #14171D, var(--shadow-device);
  will-change: transform;
}
.iphone::before {
  /* dynamic island, scaled to device width, with camera lens */
  content: '';
  position: absolute;
  top: calc(9px + var(--ipw, 264px) * 0.042);
  left: 50%;
  transform: translateX(-50%);
  width: calc(var(--ipw, 264px) * 0.33);
  height: calc(var(--ipw, 264px) * 0.096);
  background:
    radial-gradient(circle at 76% 50%, rgba(96, 122, 168, 0.5) 0 13%, #05070B 15% 34%, transparent 35%),
    #000;
  border-radius: 999px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.22), inset 0 0.5px 0 rgba(255, 255, 255, 0.07);
  z-index: 2;
}
.iphone::after {
  /* power button */
  content: '';
  position: absolute;
  right: -2.5px;
  top: 24%;
  width: 2.5px;
  height: 9%;
  background: #2A2E37;
  border-radius: 0 3px 3px 0;
}
.iphone .ip-vol {
  position: absolute;
  left: -2.5px;
  top: 20%;
  width: 2.5px;
  height: 6%;
  background: #2A2E37;
  border-radius: 3px 0 0 3px;
  box-shadow: 0 26px 0 #2A2E37;
}
.iphone .ip-screen {
  border-radius: clamp(26px, calc(var(--ipw, 264px) * 0.13), 38px);
  overflow: hidden;
  background: #fff;
}
.iphone .ip-screen img { width: 100%; }

/* ── Hero ──────────────────────────────────────────── */
.hero { position: relative; padding: 152px 0 0; overflow: hidden; background: #fff; }
/* Lunera-style sky: full-bleed clouds fading into white before the next section */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Brand-blue sky tint over the photo (was reading grey), with the clouds +
     house pushed up the page via a higher background anchor. */
  background:
    linear-gradient(180deg, rgba(38, 92, 222, 0.50) 0%, rgba(52, 113, 249, 0.26) 26%, rgba(122, 165, 255, 0.10) 46%, rgba(255, 255, 255, 0) 64%),
    url('art/site/sky-hero.jpg') center -70px / cover no-repeat;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 52%, #fff 96%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 880px; margin: 0 auto; padding: 0 28px; }
.hero h1 {
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 660;
  margin: 20px auto 0;
  max-width: 720px;
  text-wrap: balance;
}
/* Instrument Serif runs optically small next to Jakarta — let the
   accent word breathe a touch larger */
.hero h1 .serif-accent { font-size: 1.06em; letter-spacing: -0.012em; }
.hero .tagline { margin-top: 16px; font-family: var(--font-serif); font-style: italic; font-size: 21px; color: var(--slate-soft); }
.hero .sub { margin: 15px auto 0; max-width: 560px; font-size: 17.5px; line-height: 1.6; color: var(--slate); text-wrap: pretty; }
.hero-cta { display: flex; gap: 14px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
.hero-trust { margin-top: 26px; display: flex; align-items: center; justify-content: center; gap: 9px; font-size: 14px; color: var(--slate-soft); flex-wrap: wrap; }
.hero-trust svg { flex: none; color: var(--blue); }
.hero-powered { margin-top: 10px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #9AA4B5; }
.hero-powered a { color: #7C879B; text-decoration: none; }
.hero-powered a:hover { color: var(--blue); }

/* hero stage: close-up tilted phone, cropped at the section edge,
   floating proof around it (Lunera treatment) */
.hero-stage {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 54px auto 0;
  height: clamp(410px, 42vw, 560px);
  padding: 0 28px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}
.hero-stage .hero-phone-wrap { margin-top: 4px; }
.hero-phone-img {
  width: clamp(330px, 34vw, 430px);
  height: auto;
  filter: drop-shadow(0 36px 60px rgba(14, 23, 38, 0.34));
}
/* Lunera-style proof bubbles: pill chips + stat cards */
.float-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 19px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(14, 23, 38, 0.07);
  box-shadow: 0 12px 30px -12px rgba(14, 23, 38, 0.24);
  font-size: 14.5px;
  font-weight: 640;
  color: var(--ink);
}
.float-chip svg { color: var(--blue); flex: none; }
.float-chip.chip-dark {
  background: var(--ink);
  border-color: transparent;
  color: #fff;
}
.float-chip.chip-dark svg { color: #6EE7A0; }
.fc-track { right: clamp(8px, 9%, 160px); bottom: 18%; }
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 24px 18px 18px;
  background: #fff;
  border: 1px solid rgba(14, 23, 38, 0.07);
  border-radius: 18px;
  box-shadow: 0 28px 64px -22px rgba(14, 23, 38, 0.3);
  text-align: left;
}
.fc-qr { left: 6%; top: 8%; }
.fc-report { left: 1.5%; top: 44%; }
.fc-stat { right: 2.5%; top: 12%; }
.fc-thumb {
  width: 56px;
  height: 56px;
  border-radius: 13px;
  object-fit: cover;
  flex: none;
}
.fc-thumb-qr {
  object-fit: contain;
  border: 1px solid var(--hairline);
  padding: 4px;
  background: #fff;
}
.fc-body { display: flex; flex-direction: column; gap: 3px; }
.fc-label { font-size: 13px; font-weight: 550; color: var(--slate-soft); }
.fc-title { font-size: 16.5px; font-weight: 720; letter-spacing: -0.012em; }
.fc-meta { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--slate-soft); }
.fc-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex: none; }
.fc-ic {
  width: 56px;
  height: 56px;
  border-radius: 13px;
  background: var(--blue-wash);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex: none;
}
@media (max-width: 900px) {
  .float-card { display: none; }
  .fc-track { right: 2%; }
}

/* ── Proof strip ───────────────────────────────────── */
.proof { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); background: var(--paper-warm); }
.proof-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 26px 0; }
.proof-item { text-align: center; padding: 6px 10px; }
.proof-item b { display: block; font-size: 19px; font-weight: 740; letter-spacing: -0.015em; font-variant-numeric: tabular-nums; }
.proof-item span { font-size: 13px; color: var(--slate-soft); }

/* ── Sections ──────────────────────────────────────── */
section { padding: 104px 0; }
.sec-head { max-width: 660px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head h2 { font-size: clamp(30px, 3.6vw, 44px); line-height: 1.12; letter-spacing: -0.026em; font-weight: 730; margin-top: 18px; text-wrap: balance; }
.sec-head p { margin-top: 16px; font-size: 17.5px; color: var(--slate); text-wrap: pretty; }

/* problem scatter */
.problem { background: var(--paper-warm); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.scatter { position: relative; min-height: 340px; }
.chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--slate);
  box-shadow: 0 6px 22px -10px rgba(14, 23, 38, 0.14);
  max-width: 230px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.chip:hover { transform: translateY(-3px) rotate(0deg) !important; box-shadow: 0 14px 34px -12px rgba(14, 23, 38, 0.2); }
.chip b { display: block; font-size: 11px; font-family: var(--font-mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate-soft); margin-bottom: 3px; font-weight: 600; }
.chip:nth-child(1) { top: 4%; left: 2%; transform: rotate(-2.4deg); }
.chip:nth-child(2) { top: 16%; right: 4%; transform: rotate(1.8deg); }
.chip:nth-child(3) { top: 44%; left: 10%; transform: rotate(1.2deg); }
.chip:nth-child(4) { top: 58%; right: 10%; transform: rotate(-1.6deg); }
.scatter .no-record {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  color: var(--ink);
  white-space: nowrap;
}
.problem .fix-line { margin-top: 22px; font-weight: 650; color: var(--ink); }

/* outcome rows — horizontal 2×2 on the soft band, deliberately a
   different shape from the 4-up photo journey that follows */
.outcomes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 920px;
  margin: 56px auto 0;
}
.outcome {
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: 22px 28px 22px 20px;
  background: #fff;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.2s ease;
}
.outcome:hover { transform: translateY(-3px); box-shadow: 0 14px 36px -16px rgba(14, 23, 38, 0.16); border-color: #D4DCE8; }
.outcome .out-art {
  width: 112px;
  flex: none;
  margin: 0;
  transition: transform 0.35s var(--ease-out);
}
.outcome:hover .out-art { transform: translateY(-4px); }
.outcome h3 { font-size: 16.5px; font-weight: 700; letter-spacing: -0.01em; }
.outcome p { font-size: 14.5px; color: var(--slate-soft); margin-top: 7px; line-height: 1.55; }

/* how it works — the journey */
.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 60px;
}
.j-stage { position: relative; }
/* connector arrow between stages */
.j-stage:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 110px;
  right: -23px;
  width: 20px;
  height: 20px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E50C8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / 16px no-repeat,
    #fff;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  box-shadow: 0 3px 10px -4px rgba(14, 23, 38, 0.18);
  z-index: 2;
}
.j-card {
  height: 240px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  background: var(--paper-warm);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.2s ease;
}
.j-stage:hover .j-card { transform: translateY(-4px); box-shadow: 0 18px 44px -18px rgba(14, 23, 38, 0.2); border-color: #CBD5E3; }
.j-card img { width: 100%; height: 100%; object-fit: cover; }
.j-card-poster {
  display: grid;
  place-items: center;
  padding: 16px;
  background:
    repeating-linear-gradient(0deg, rgba(30, 80, 200, 0.05) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(30, 80, 200, 0.05) 0 1px, transparent 1px 28px),
    var(--paper-warm);
}
.j-card-poster img {
  width: auto;
  height: 206px;
  object-fit: contain;
  transform: rotate(-2deg);
  filter: drop-shadow(0 10px 22px rgba(14, 23, 38, 0.22));
  transition: transform 0.3s var(--ease-out);
}
.j-stage:hover .j-card-poster img { transform: rotate(0deg) scale(1.03); }
.j-meta { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.j-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  display: grid;
  place-items: center;
}
.j-who {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 620;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-soft);
  background: var(--paper-warm);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 4px 11px;
}
.j-stage h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.012em; margin-top: 12px; }
.j-stage p { font-size: 14.2px; color: var(--slate-soft); margin-top: 6px; line-height: 1.55; }
/* left-to-right stagger */
.journey .j-stage:nth-child(1) { transition-delay: 0ms !important; }
.journey .j-stage:nth-child(2) { transition-delay: 110ms !important; }
.journey .j-stage:nth-child(3) { transition-delay: 220ms !important; }
.journey .j-stage:nth-child(4) { transition-delay: 330ms !important; }

/* records */
.records-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 64px; align-items: center; }
.records-bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 26px; margin-top: 30px; }
.records-bullets li { list-style: none; display: flex; gap: 10px; align-items: flex-start; font-size: 14.8px; color: var(--slate); }
.records-bullets svg { flex: none; margin-top: 4px; color: var(--green); }

/* warm band sections */
.band { background: var(--paper-warm); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.posters-mac { max-width: 880px; margin: 64px auto 0; }

/* poster network locations strip — blue-line brand illustrations */
.locations {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 72px auto 0;
  align-items: end;
}
.loc { margin: 0; text-align: center; }
.loc img {
  width: 100%;
  max-width: 168px;
  margin: 0 auto;
  transition: transform 0.35s var(--ease-out);
}
.loc:hover img { transform: translateY(-5px); }
.loc figcaption {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-soft);
}
/* artwork is pre-normalized to a shared bottom baseline inside each square,
   so captions and illustration bases align across the strip */

/* FAQ */
.faq-list { max-width: 760px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item:first-child { border-top: 1px solid var(--hairline); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition: color 0.15s ease;
}
.faq-item summary:hover { color: var(--blue-deep); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { flex: none; position: relative; width: 16px; height: 16px; color: var(--slate-soft); transition: transform 0.3s var(--ease-out); }
.faq-item summary .plus::before, .faq-item summary .plus::after {
  content: ''; position: absolute; inset: 50% auto auto 50%; width: 14px; height: 2px;
  background: currentColor; border-radius: 2px; transform: translate(-50%, -50%);
}
.faq-item summary .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] summary .plus { transform: rotate(45deg); }
/* smooth open/close via grid rows */
.faq-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s var(--ease-out); }
.faq-item[open] .faq-body { grid-template-rows: 1fr; }
.faq-body > div { overflow: hidden; }
.faq-a { padding: 0 4px 24px; font-size: 15.5px; color: var(--slate); max-width: 640px; }

/* pricing */
.pricing-card {
  max-width: 680px;
  margin: 52px auto 0;
  border: 1px solid var(--hairline);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(14, 23, 38, 0.04), 0 12px 40px -12px rgba(14, 23, 38, 0.18);
  padding: 44px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}
.pricing-card .badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--amber);
  background: #FEF6EC;
  border: 1px solid #F5E3CB;
  padding: 6px 14px;
  border-radius: 999px;
}
.pricing-card h3 { font-size: 30px; font-weight: 740; letter-spacing: -0.024em; margin-top: 18px; }
.pricing-card p { color: var(--slate); margin-top: 12px; font-size: 16px; }
.pricing-card .btn { margin-top: 26px; }
.pricing-card .fine { margin-top: 16px; font-size: 13px; color: var(--slate-soft); }
.pricing-card .pilot-incl {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  gap: 9px 36px;
  margin-top: 18px;
  text-align: left;
}
.pricing-card .pilot-incl li {
  font-size: 14.5px;
  color: var(--slate);
  padding-left: 22px;
  background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%231E50C8" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpath d="M20 6 9 17l-5-5"/%3E%3C/svg%3E') left center / 14px no-repeat;
}
.pricing-card .pilot-trust {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  font-size: 13.5px;
  color: var(--slate-soft);
}
.pricing-card .pilot-trust a { color: var(--slate); }
@media (max-width: 640px) {
  .pricing-card .pilot-incl { grid-template-columns: 1fr; justify-content: start; }
}

/* final CTA band */
.cta-band {
  position: relative;
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 110px 0;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 90% at 50% 0%, rgba(255, 255, 255, 0.1), transparent 70%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.07) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.07) 0 1px, transparent 1px 64px);
  pointer-events: none;
}
.cta-band .cta-art {
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: clamp(260px, 28vw, 420px);
  opacity: 0.16;
  pointer-events: none;
}
.cta-band h2 { position: relative; font-size: clamp(30px, 4vw, 46px); letter-spacing: -0.026em; font-weight: 740; line-height: 1.12; text-wrap: balance; }
.cta-band .btn-primary { background: #fff; color: var(--blue); margin-top: 32px; box-shadow: 0 14px 40px -10px rgba(10, 22, 52, 0.5); }
.cta-band .btn-primary::after { background: linear-gradient(105deg, transparent 38%, rgba(30, 80, 200, 0.1) 50%, transparent 62%); }
.cta-band .btn-primary:hover { background: #F4F7FE; }
.cta-band .risk { position: relative; margin-top: 20px; font-size: 14px; color: rgba(255,255,255,0.72); }

/* footer */
footer { padding: 56px 0 64px; }
.foot-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.foot-brand .foot-logo { width: auto; height: 26px; }
.foot-brand p { font-size: 13.5px; color: var(--slate-soft); font-weight: 400; margin-top: 12px; max-width: 300px; }
.foot-links { display: flex; gap: 56px; }
.foot-links div { display: flex; flex-direction: column; gap: 10px; }
.foot-links b { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--slate-soft); font-weight: 600; margin-bottom: 4px; }
.foot-links a { font-size: 14px; color: var(--slate); text-decoration: none; transition: color 0.15s ease; }
.foot-links a:hover { color: var(--blue); }
.foot-base { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--hairline); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: #9AA4B5; }
.foot-base a { color: #7C879B; text-decoration: none; }
.foot-base a:hover { color: var(--blue); }

/* ── Reveal motion ─────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal-frame { opacity: 0; transform: translateY(26px) scale(0.97); transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out); }
.reveal-frame.in { opacity: 1; transform: none; }

/* hero load stagger */
.hero-load { opacity: 0; transform: translateY(14px); animation: heroIn 0.62s var(--ease-out) forwards; }
@keyframes heroIn { to { opacity: 1; transform: none; } }
.hl-1 { animation-delay: 0.05s; } .hl-2 { animation-delay: 0.13s; } .hl-3 { animation-delay: 0.21s; }
.hl-4 { animation-delay: 0.29s; } .hl-5 { animation-delay: 0.37s; } .hl-6 { animation-delay: 0.45s; }
.hl-7 { animation-delay: 0.58s; animation-duration: 0.85s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-frame { opacity: 1; transform: none; transition: none; }
  .hero-load { opacity: 1; transform: none; animation: none; }
  .hero-visual .iphone { animation: none; }
  [data-parallax] { transform: none !important; }
  .btn, .outcome, .step, .chip, .faq-body { transition: none; }
  .btn-primary::after { display: none; }
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 1020px) {
  .outcomes { grid-template-columns: repeat(2, 1fr); }
  .proof-inner { grid-template-columns: repeat(2, 1fr); }
  .records-grid, .problem-grid { grid-template-columns: 1fr; gap: 48px; }
  .journey { grid-template-columns: repeat(2, 1fr); gap: 34px 26px; }
  .j-stage:nth-child(even)::after { display: none; }
  .nav-links { display: none; }
  .records-grid .macbook { order: 2; }
}
@media (max-width: 640px) {
  section { padding: 72px 0; }
  .hero { padding-top: 128px; }
  .outcomes { grid-template-columns: 1fr; }
  .outcome { gap: 16px; padding: 16px 18px 16px 14px; }
  .outcome .out-art { width: 88px; }
  .records-bullets { grid-template-columns: 1fr; }
  .float-chip { display: none; }
  .hero-phone-img { width: 340px; }
  .hero h1 { font-size: 34px; letter-spacing: -0.03em; }
  .hero .sub { font-size: 16.5px; }
  .hero-cta .btn { width: 100%; }
  .pricing-card { padding: 34px 26px; }
  .journey { grid-template-columns: 1fr; gap: 36px; }
  .j-stage::after { display: none !important; }
  .journey .j-stage { transition-delay: 0ms !important; }
  .locations { grid-template-columns: repeat(3, 1fr); gap: 22px 14px; }
  .loc { padding-bottom: 0 !important; }
  .loc:nth-child(4) { grid-column: 1 / 2; }
  .cta-band .cta-art { width: 220px; right: -50px; bottom: -40px; opacity: 0.12; }
  .scatter { min-height: 420px; }
  .chip { position: static; transform: none !important; margin-bottom: 12px; max-width: none; }
  .scatter .no-record { position: static; transform: none; display: block; margin-top: 18px; text-align: center; }
  .nav-cta .btn-ghost { display: none; }
  .mb-base { margin: 0 -2.5%; }
}
