/* ═══════════════════════════════════════════════════════════════════════════
   SOFTBOND LANDING · v5 (v6.0 narrative refresh — 2026-05-24)
   Copy + feature highlights rewritten for the v6.0 spec on top of v4
   (which had the stage-7 polish and wordmark integration). Visual identity
   unchanged — no token edits, no layout edits, only copy + section content.
   - Hero tagline rewritten: "השיחה שאת/ה רוצה לקיים — לפני, במהלך, ואחרי"
     (per v6.0 4-surface positioning: Rephrase / Solo AI / Repair / Agreements)
   - Hero subhead integrates the D-0106 honest privacy disclosure inline
     (OpenAI named, encryption named, "no diagnosis" named)
   - Architecture section refreshed to the four v6 user surfaces
     (Rephrase · Solo AI Conversation w/ 8 intents · Repair Session · Living Agreements)
     per D-0121 / D-0122 / D-0123 / D-0124 / D-0127 / D-0128 / D-0110
   - Privacy/Trust section rewritten per D-0106: drops the "we can't read"
     overclaim; names OpenAI as processor; adds D-0133 single-screen consent
     mention; adds cross-user firewall (D-0125 / D-0128 invariant)
   - FAQ refreshed to v6 truth: 8 Q&As including new "derived insights"
     (D-0125) and "violence detection" (D-0129) questions
   - Pricing: Solo ₪24.99/month; Couple ₪44.99/month per D-0187;
     no affiliate language per D-0048
   - Footer: added content-policy + ToS placeholder links (data-doc stubs)
   Brand: warm humanist + modern tech rhythm
   Tokens sourced from docs/design/02_design_tokens.md
   Copy grounded in docs/prd/ + docs/design/03_copy_he.md + decisions.md
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --terracotta-50:#FAF1EC; --terracotta-100:#F4DECE; --terracotta-200:#E9BFA1;
  --terracotta-300:#DC9C75; --terracotta-400:#CB7B50; --terracotta-500:#B85D34;
  --terracotta-600:#9A4824; --terracotta-700:#79381C; --terracotta-800:#5A2818;
  --terracotta-900:#3D1B11;

  --deep-blue-50:#F0F3F7; --deep-blue-100:#D8E1EB; --deep-blue-200:#B5C5D6;
  --deep-blue-300:#8AA4BD; --deep-blue-400:#6383A0; --deep-blue-500:#436587;
  --deep-blue-600:#34516D; --deep-blue-700:#2A4055; --deep-blue-800:#21303F;
  --deep-blue-900:#16212B;

  --rose-50:#FAF1F0; --rose-100:#F2DCDA; --rose-200:#E5BAB6;
  --rose-300:#D49490; --rose-400:#BE706D; --rose-500:#A5524F;

  --sage-50:#F1F4EE; --sage-100:#DDE5D5; --sage-200:#BCCBAC;
  --sage-300:#93AC82; --sage-400:#6E8C5D; --sage-500:#547046; --sage-600:#425838;

  --stone-50:#FAF8F5; --stone-100:#F2EEE8; --stone-200:#E4DDD3;
  --stone-300:#CFC5B8; --stone-400:#B0A294; --stone-500:#8C7E70;
  --stone-600:#6F6457; --stone-700:#564E43; --stone-800:#3C3631; --stone-900:#221F1B;

  --ease-standard: cubic-bezier(0.2, 0.0, 0.0, 1.0);
  --ease-warm:     cubic-bezier(0.32, 0.72, 0.0, 1.0);
}

/* ─────────── reset + base ─────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
button, input, textarea { font: inherit; color: inherit; background: none; border: none; outline: none; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--terracotta-400); outline-offset: 4px; border-radius: 6px; }

html {
  font-family: "Heebo", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: var(--stone-50);
  color: var(--stone-800);
}
body { min-height: 100vh; overflow-x: hidden; }

.fraunces { font-family: "Fraunces", serif; font-optical-sizing: auto; }
.fraunces-italic { font-family: "Fraunces", serif; font-style: italic; }
.mono { font-family: "JetBrains Mono", "Inter", monospace; font-variant-numeric: tabular-nums; }
.num { font-family: "Inter", "Heebo", sans-serif; font-variant-numeric: tabular-nums; direction: ltr; unicode-bidi: embed; }
.inline-wordmark {
  display: inline-flex;
  align-items: center;
  height: 1em;
  max-width: 5.25em;
  margin-inline: 0.06em;
  vertical-align: -0.14em;
  direction: ltr;
}
.inline-wordmark img {
  display: block;
  width: auto;
  height: 0.9em;
  max-width: 100%;
  object-fit: contain;
}

/* ─────────── animations ─────────── */
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes drift-mesh {
  0%   { transform: translate(0, 0) rotate(0deg); }
  50%  { transform: translate(40px, -20px) rotate(2deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}
@keyframes pulse-soft {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}
@keyframes breath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-standard), transform 0.9s var(--ease-standard);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Cascade reveal on grid children — gallery + how-steps.
   Children themselves don't have .reveal; the parent grid gets .in via the
   observer, and the staggered animation runs on its children. */
.gallery-grid .gallery-pair,
.how-steps .how-step {
  opacity: 0;
  transform: translateY(16px);
}
.gallery-grid.in .gallery-pair,
.how-steps.in .how-step {
  animation: rise 700ms var(--ease-warm) forwards;
}
.gallery-grid.in .gallery-pair:nth-child(1) { animation-delay: 50ms; }
.gallery-grid.in .gallery-pair:nth-child(2) { animation-delay: 150ms; }
.gallery-grid.in .gallery-pair:nth-child(3) { animation-delay: 250ms; }
.gallery-grid.in .gallery-pair:nth-child(4) { animation-delay: 350ms; }
.how-steps.in .how-step:nth-child(1) { animation-delay: 50ms; }
.how-steps.in .how-step:nth-child(2) { animation-delay: 180ms; }
.how-steps.in .how-step:nth-child(3) { animation-delay: 310ms; }
.how-steps.in .how-step:nth-child(4) { animation-delay: 440ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAV — sticky frosted
   ═══════════════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 64px);
  transition:
    background 240ms var(--ease-standard),
    border-color 240ms,
    opacity 220ms var(--ease-standard),
    transform 220ms var(--ease-standard);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: var(--stone-200);
}
.nav-mark {
  display: inline-flex;
  align-items: center;
  height: 42px;
  text-decoration: none;
  direction: ltr;
}
.nav-mark img {
  height: 30px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18));
  transition: transform 240ms var(--ease-warm), filter 240ms;
}
.nav-mark:hover img {
  transform: scale(1.04);
  filter: drop-shadow(0 3px 10px rgba(184, 93, 52, 0.35));
}
/* The wordmark is brand terracotta on transparent — readable on both the
   dark transparent nav (hero) and the cream scrolled nav. No state recolor. */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.nav-primary {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  min-width: 0;
}
.nav-link {
  padding: 7px 9px;
  border: 1px solid transparent;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--stone-300);
  transition: background 200ms, border-color 200ms, color 240ms, box-shadow 200ms;
  white-space: nowrap;
}
.nav.scrolled .nav-link { color: var(--stone-700); }
.nav-link:hover {
  color: var(--terracotta-300);
  background: rgba(250, 248, 245, 0.08);
}
.nav.scrolled .nav-link:hover { color: var(--terracotta-600); }
.nav.scrolled .nav-link:hover { background: var(--terracotta-50); }
.nav-link.is-active {
  color: var(--stone-50);
  background: rgba(250, 248, 245, 0.13);
  border-color: rgba(250, 248, 245, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.nav.scrolled .nav-link.is-active {
  color: var(--terracotta-700);
  background: var(--terracotta-50);
  border-color: var(--terracotta-200);
  box-shadow: 0 8px 18px rgba(184,93,52,0.12);
}

.nav-language {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(250, 248, 245, 0.26);
  border-radius: 9999px;
  background: rgba(250, 248, 245, 0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.nav.scrolled .nav-language {
  border-color: var(--stone-300);
  background: rgba(255,255,255,0.74);
  box-shadow: 0 8px 24px rgba(34,31,27,0.08);
}
.nav-language .lang-current,
.nav-language .lang-switch {
  min-width: 62px;
  padding: 7px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
.nav-language .lang-current {
  background: var(--stone-50);
  color: var(--stone-900);
}
.nav.scrolled .nav-language .lang-current {
  background: var(--deep-blue-800);
  color: var(--stone-50);
}
.nav-language .lang-switch {
  color: var(--stone-200);
  transition: background 200ms, color 200ms, transform 200ms;
}
.nav.scrolled .nav-language .lang-switch { color: var(--stone-700); }
.nav-language .lang-switch:hover {
  background: rgba(255,255,255,0.12);
  color: var(--terracotta-200);
  transform: translateY(-1px);
}
.nav.scrolled .nav-language .lang-switch:hover {
  background: var(--terracotta-50);
  color: var(--terracotta-700);
}
.nav.scrolled .nav-language {
  display: none;
}

/* ─────────── sticky bottom CTA — appears after scrolling past hero.
   Anchored to the corner (RTL-aware via inset-inline-start), small and
   discrete. On mobile collapses to a single button with no label so it
   never wraps into a tall stack. ─────────── */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  inset-inline-start: 24px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 8px 18px;
  background: rgba(34, 31, 27, 0.92);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 9999px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.35);
  transition: transform 360ms var(--ease-warm), opacity 240ms;
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
  max-width: calc(100vw - 48px);
}
.sticky-cta.shown {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-cta .label {
  font-size: 13px;
  color: var(--stone-200);
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-cta .label strong {
  color: var(--stone-50);
  font-weight: 600;
}
.sticky-cta .label .label-sub {
  display: none;
}
.sticky-cta a.go {
  background: var(--terracotta-500);
  color: var(--stone-50);
  padding: 9px 16px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: background 200ms, transform 200ms;
}
.sticky-cta a.go:hover { background: var(--terracotta-400); transform: translateY(-1px); }
.sticky-cta button.dismiss {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: var(--stone-500);
  width: 24px; height: 24px;
  border-radius: 50%;
  display: grid; place-items: center;
  transition: color 200ms, background 200ms;
  flex-shrink: 0;
}
.sticky-cta button.dismiss:hover {
  color: var(--stone-100);
  background: rgba(255,255,255,0.06);
}
@media (max-width: 720px) {
  /* Hide the descriptive label on smaller screens so the bar collapses to
     just [×] [→ Alpha] — no wrapping, no overlap risk. */
  .sticky-cta {
    bottom: 16px;
    inset-inline-start: 16px;
    padding: 6px 8px 6px 12px;
    gap: 8px;
  }
  .sticky-cta .label { display: none; }
  .sticky-cta a.go { padding: 8px 14px; font-size: 12.5px; }
  .sticky-cta button.dismiss { width: 22px; height: 22px; font-size: 14px; }
}

/* ─────────── mid-page CTA — appears between content sections ─────────── */
.midpage-cta {
  margin: 56px auto 0;
  max-width: min(1080px, 100%);
  padding: 26px 32px;
  border-radius: 24px;
  background: linear-gradient(160deg, var(--terracotta-50), var(--stone-50));
  border: 1px solid var(--terracotta-100);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.section.dark .midpage-cta,
.section.calm .midpage-cta {
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border-color: rgba(220,156,117,0.25);
}
.midpage-cta .midpage-copy {
  flex: 1 1 auto;
  min-width: 0;
}
.midpage-cta .midpage-copy h4 {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 400;
  color: var(--terracotta-700);
  margin: 0 0 4px;
  line-height: 1.25;
  white-space: normal;
}
.section.dark .midpage-cta .midpage-copy h4,
.section.calm .midpage-cta .midpage-copy h4 {
  color: var(--terracotta-200);
}
.midpage-cta .midpage-copy p {
  font-size: 14px;
  color: var(--stone-600);
  line-height: 1.5;
  margin: 0;
  white-space: normal;
}
.section.dark .midpage-cta .midpage-copy p,
.section.calm .midpage-cta .midpage-copy p {
  color: var(--stone-300);
}
.midpage-cta a.go {
  background: var(--terracotta-500);
  color: var(--stone-50);
  padding: 12px 22px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 200ms, transform 200ms;
  flex-shrink: 0;
}
.midpage-cta a.go:hover { background: var(--terracotta-600); transform: translateY(-1px); }

@media (min-width: 861px) {
  [dir="rtl"] .midpage-cta .midpage-copy h4,
  [dir="rtl"] .midpage-cta .midpage-copy p {
    white-space: nowrap;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO — dark with warm gradient mesh
   ═══════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--stone-900);
  color: var(--stone-50);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px clamp(20px, 5vw, 64px) 80px;
}

/* animated gradient mesh — warm tones, never purple */
.hero::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse 60% 50% at 18% 30%, rgba(184, 93, 52, 0.55), transparent 60%),
    radial-gradient(ellipse 55% 60% at 82% 65%, rgba(165, 82, 79, 0.42), transparent 60%),
    radial-gradient(ellipse 70% 55% at 50% 95%, rgba(67, 101, 135, 0.30), transparent 60%),
    radial-gradient(ellipse 45% 50% at 95% 5%, rgba(220, 156, 117, 0.32), transparent 65%);
  animation: drift-mesh 18s ease-in-out infinite;
  filter: blur(40px);
}

/* warm grain texture */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.2  0 0 0 0 0.17  0 0 0 0 0.14  0 0 0 0.45 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

.hero h1 {
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  color: var(--stone-50);
}
.hero h1 em {
  font-family: "Heebo", "Inter", system-ui, sans-serif;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--terracotta-300);
}

.hero-lead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.6;
  color: var(--stone-300);
  max-width: 56ch;
  margin-bottom: 28px;
  font-weight: 400;
}

/* 3-step "how it works" strip in hero — tiny, scannable, sits above pillars */
.hero-how {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
  max-width: 64ch;
}
.hero-how li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 9999px;
  font-size: 13px;
  color: var(--stone-200);
  transition: border-color 240ms, background 240ms;
}
.hero-how li:hover {
  border-color: rgba(220,156,117,0.35);
  background: rgba(255,255,255,0.06);
}
.hero-how .step-n {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  color: var(--terracotta-300);
  letter-spacing: 0.05em;
  font-weight: 600;
}
.hero-how .step-t {
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}
.btn-primary {
  background: var(--terracotta-500);
  color: var(--stone-50);
  padding: 16px 32px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 200ms, transform 200ms, box-shadow 200ms;
  box-shadow: 0 8px 24px rgba(184, 93, 52, 0.35);
}
.btn-primary:hover {
  background: var(--terracotta-400);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(184, 93, 52, 0.5);
}
.btn-secondary {
  color: var(--stone-100);
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 200ms;
}
.btn-secondary:hover { color: var(--terracotta-300); }
.btn-secondary .arr {
  font-family: "JetBrains Mono", monospace;
  transition: transform 200ms;
}
.btn-secondary:hover .arr { transform: translateY(2px); }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--stone-400);
}
.hero-trust .sep { color: var(--stone-600); }

/* hero device — angled phone with Translate demo */
.hero-device {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.device-wrap {
  position: relative;
  width: 320px;
  transform: perspective(1800px) rotateY(-12deg) rotateX(6deg) rotateZ(-2deg);
  transform-style: preserve-3d;
  filter: drop-shadow(0 60px 80px rgba(0, 0, 0, 0.55));
}
.device-mini {
  background: var(--stone-50);
  border-radius: 36px;
  padding: 4px;
  position: relative;
  background-image: linear-gradient(145deg, #2A2620, #1A1612);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.05);
}
.device-screen {
  background: var(--stone-50);
  border-radius: 30px;
  padding: 28px 18px 18px;
  position: relative;
  overflow: hidden;
}
.device-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px; height: 22px;
  background: #1A1612;
  border-radius: 999px;
  z-index: 2;
}
.mini-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--terracotta-600);
  margin: 12px 0 8px;
}
.mini-h {
  font-size: 16px;
  font-weight: 600;
  color: var(--stone-900);
  margin-bottom: 12px;
  line-height: 1.25;
}
.mini-orig {
  background: var(--terracotta-50);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--terracotta-900, var(--terracotta-800));
  margin-bottom: 8px;
  position: relative;
}
.mini-arrow {
  display: flex;
  justify-content: center;
  margin: 6px 0;
}
.mini-arrow .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--terracotta-400);
  margin: 0 2px;
  animation: pulse-soft 1800ms ease-in-out infinite;
}
.mini-arrow .dot:nth-child(2) { animation-delay: 200ms; }
.mini-arrow .dot:nth-child(3) { animation-delay: 400ms; }
.mini-reframed {
  background: var(--deep-blue-50);
  border: 1px solid var(--deep-blue-100);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--deep-blue-800);
}
.mini-reframed .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--deep-blue-100);
  color: var(--deep-blue-700);
  padding: 3px 10px;
  border-radius: 9999px;
  margin-bottom: 6px;
  white-space: nowrap;
}
.mini-reframed .badge-wordmark {
  display: block;
  width: auto;
  height: 12px;
}
.mini-reframed .badge .b-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--deep-blue-500);
  animation: breath 1800ms ease-in-out infinite;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--stone-400);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
.hero-scroll-cue::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--stone-400), transparent);
  animation: pulse-soft 2400ms ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION SHELL
   ═══════════════════════════════════════════════════════════════════════════ */
.section {
  padding: clamp(96px, 12vw, 160px) clamp(20px, 5vw, 64px);
  position: relative;
}
.section-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.section-eyebrow .num-badge {
  background: var(--terracotta-500);
  color: var(--stone-50);
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 600;
}

.section h2.section-title {
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
  max-width: 22ch;
}
.section h2.section-title em {
  font-family: "Heebo", "Inter", system-ui, sans-serif;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--terracotta-500);
}
.section-lead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.65;
  color: var(--stone-600);
  max-width: 60ch;
  margin-bottom: 64px;
}

/* dark section variant */
.section.dark {
  background: var(--stone-900);
  color: var(--stone-200);
}
.section.dark .section-title { color: var(--stone-50); }
.section.dark .section-title em { color: var(--terracotta-300); }
.section.dark .section-lead { color: var(--stone-400); }
.section.dark .section-eyebrow { color: var(--terracotta-300); }
.section.dark .section-eyebrow .num-badge {
  background: var(--terracotta-400);
  color: var(--stone-900);
}

/* warm tinted variant — emotional sections (problem, shared payoff) */
.section.warm {
  background: linear-gradient(180deg, var(--terracotta-100) 0%, var(--terracotta-50) 60%, var(--stone-50) 100%);
}

/* deep-blue variant — trust block */
.section.calm {
  background: linear-gradient(160deg, var(--deep-blue-800), var(--deep-blue-900));
  color: var(--stone-200);
}
.section.calm .section-title { color: var(--stone-50); }
.section.calm .section-title em { color: var(--rose-300); }
.section.calm .section-eyebrow { color: var(--rose-300); }
.section.calm .section-eyebrow .num-badge {
  background: var(--rose-400);
  color: var(--stone-50);
}
.section.calm .section-lead { color: var(--deep-blue-100); }

/* ═══════════════════════════════════════════════════════════════════════════
   §01 PROBLEM
   ═══════════════════════════════════════════════════════════════════════════ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.problem-card {
  background: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: 20px;
  padding: 28px 24px 54px;
  position: relative;
  transition: transform 400ms var(--ease-warm), box-shadow 400ms;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(34,31,27,0.10);
}
.problem-card .quote-mark {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 64px;
  line-height: 0.5;
  color: var(--terracotta-300);
  margin-bottom: 16px;
  display: block;
}
.problem-card .quote-mark-close {
  position: absolute;
  inset-block-end: 18px;
  inset-inline-end: 22px;
  margin: 0;
  transform: rotate(180deg);
}
.problem-card p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--stone-800);
  font-weight: 400;
}
.problem-card .source {
  margin-top: 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--stone-500);
}

.problem-closing {
  position: relative;
  margin: 72px auto 0;
  padding: 30px 24px 4px;
  max-width: 34ch;
  text-align: center;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.42;
  color: var(--stone-600);
  font-weight: 400;
}
.problem-closing::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 50%;
  width: 84px;
  height: 2px;
  border-radius: 9999px;
  background: linear-gradient(90deg, transparent, var(--terracotta-400), transparent);
  transform: translateX(-50%);
}
.problem-closing strong {
  display: inline;
  font-weight: 800;
  color: var(--stone-900);
  background: linear-gradient(180deg, transparent 62%, rgba(220, 156, 117, 0.28) 0);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding-inline: 0.08em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   §02 TENSION — why existing solutions fail (dark)
   ═══════════════════════════════════════════════════════════════════════════ */
.tension-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 64px;
}
.tension-col {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px;
  background: rgba(255,255,255,0.02);
  transition: border-color 400ms;
  display: flex;
  flex-direction: column;
}
.tension-col:hover { border-color: rgba(220,156,117,0.4); }
.tension-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta-300);
  margin-bottom: 12px;
}
.tension-col h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--stone-50);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.tension-col p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--stone-400);
}
.tension-col .verdict {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 15px;
  color: var(--rose-300);
}
.tension-col p {
  margin-bottom: 24px;
}

.tension-conclusion {
  margin-top: 96px;
  text-align: center;
}
.tension-conclusion p {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--stone-50);
  max-width: 24ch;
  margin: 0 auto;
}
.tension-conclusion p em {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta-300);
}

/* ═══════════════════════════════════════════════════════════════════════════
   §03 SOLUTION REVEAL
   ═══════════════════════════════════════════════════════════════════════════ */
.solution-reveal {
  text-align: center;
  padding: 0 clamp(12px, 3vw, 48px);
}
.solution-reveal .brand-reveal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 48px;
  position: relative;
}
.solution-reveal .brand-reveal img {
  max-width: 460px;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(184, 93, 52, 0.18));
  animation: brand-float 6s ease-in-out infinite;
}
.solution-reveal .brand-reveal::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120%; height: 120%;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(184, 93, 52, 0.12), transparent 65%);
  z-index: -1;
  pointer-events: none;
}
@keyframes brand-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.solution-reveal .anti {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  font-weight: 600;
  color: var(--stone-500);
  text-decoration: line-through;
  text-decoration-color: var(--rose-400);
  text-decoration-thickness: 3px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.solution-reveal .pro {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 4.2vw, 60px);
  line-height: 1.18;
  color: var(--terracotta-700);
  letter-spacing: -0.025em;
  margin-bottom: 48px;
  text-wrap: balance;
}
.solution-reveal .pro strong {
  font-family: "Heebo", sans-serif;
  font-style: normal;
  font-weight: 700;
  color: var(--stone-900);
}
.solution-reveal .definition {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.7;
  color: var(--stone-700);
  max-width: 56ch;
  margin: 0 auto;
}
/* v6 alignment — solo-toolkit note acknowledging solo users get value too.
   Sits visually after the main definition with subtle separation. */
.solution-reveal .definition.solo-note {
  margin-top: 18px;
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--stone-600);
}

/* ═══════════════════════════════════════════════════════════════════════════
   §04 TRANSLATE — interactive demo
   ═══════════════════════════════════════════════════════════════════════════ */
.rephrase-stage {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 48px;
}
.t-card {
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: transform 400ms var(--ease-warm);
}
.t-card .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.t-card .name {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
}
.t-card .meta {
  font-size: 11px;
  font-family: "JetBrains Mono", monospace;
  color: var(--stone-500);
}

.t-card.original {
  background: var(--terracotta-50);
  border: 1px solid var(--terracotta-200);
}
.t-card.original .name { color: var(--terracotta-700); }
.t-card.original textarea {
  flex: 1;
  resize: none;
  width: 100%;
  font-size: 20px;
  line-height: 1.65;
  color: var(--terracotta-900, var(--terracotta-800));
  background: transparent;
  font-family: inherit;
  font-weight: 400;
}
.t-card.original textarea::placeholder {
  color: var(--terracotta-400);
}
.t-card .foot {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.t-rephrase-btn {
  background: var(--terracotta-500);
  color: var(--stone-50);
  padding: 12px 28px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 500;
  transition: background 200ms, transform 200ms;
  box-shadow: 0 4px 14px rgba(184,93,52,0.25);
}
.t-rephrase-btn:hover { background: var(--terracotta-600); transform: translateY(-1px); }
.t-rephrase-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.t-connector {
  align-self: center;
  display: grid; place-items: center;
  position: relative;
}
.t-connector svg { stroke: var(--terracotta-300); stroke-width: 1.5; fill: none; }
.t-connector .dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terracotta-500);
  opacity: 0;
}
.t-connector.thinking .dot {
  opacity: 1;
  animation: pulse-soft 2400ms ease-in-out infinite;
}

.t-card.reframed {
  background: var(--deep-blue-50);
  border: 1px solid var(--deep-blue-100);
}
.t-card.reframed .name { color: var(--deep-blue-700); }
.t-card.reframed .ai-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: transparent;
  padding: 0;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.92);
  transition: opacity 200ms var(--ease-standard), transform 200ms var(--ease-standard);
}
.t-card.reframed.has-result .ai-badge {
  opacity: 1;
  transform: scale(1);
}
.t-card.reframed .ai-badge .badge-icon {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(184, 93, 52, 0.18));
}
.t-card.reframed .ai-badge .b-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--deep-blue-500);
  animation: breath 1800ms ease-in-out infinite;
}
.t-reframed-text {
  flex: 1;
  font-size: 20px;
  line-height: 1.7;
  color: var(--deep-blue-800);
  min-height: 120px;
}
.t-reframed-text .placeholder {
  font-family: "Fraunces", serif;
  font-style: italic;
  color: var(--deep-blue-300);
  font-size: 18px;
  animation: pulse-soft 2400ms ease-in-out infinite;
}
.t-why {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(250,248,245,0.7);
  border: 1px solid var(--deep-blue-100);
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--deep-blue-700);
  display: none;
}
.t-why.shown { display: block; }
.t-why-label {
  display: block;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 13px;
  color: var(--deep-blue-500);
  margin-bottom: 4px;
}
.t-actions {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.t-actions.shown { display: flex; }
.t-actions button {
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 9999px;
  font-weight: 500;
}
.t-actions .use {
  background: var(--terracotta-500);
  color: var(--stone-50);
}
.t-actions .why-btn {
  border: 1px solid var(--deep-blue-200);
  color: var(--deep-blue-700);
}
.t-actions .regen { color: var(--deep-blue-600); }
.t-actions .why-btn:hover { background: var(--deep-blue-100); }
.t-actions .regen:hover { text-decoration: underline; }

.t-share-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.t-share-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 16px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  transition: background 180ms var(--ease-standard), border-color 180ms var(--ease-standard), color 180ms var(--ease-standard), transform 180ms var(--ease-standard), opacity 180ms var(--ease-standard);
}
.t-share-actions button:not(:disabled):hover {
  transform: translateY(-1px);
}
.t-share-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}
.t-share-actions .share-whatsapp {
  background: var(--sage-500);
  color: var(--stone-50);
  box-shadow: 0 4px 12px rgba(84,112,70,0.18);
}
.t-share-actions .share-whatsapp:not(:disabled):hover {
  background: var(--sage-600);
}
.t-share-actions .share-copy {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--deep-blue-200);
  color: var(--deep-blue-700);
}
.t-share-actions .share-copy:not(:disabled):hover {
  background: var(--deep-blue-100);
  border-color: var(--deep-blue-300);
}

.t-footnote {
  margin-top: 32px;
  text-align: center;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 17px;
  color: var(--stone-600);
}

/* ─────────── rewrite gallery — multiple before/after pairs ─────────── */
.rewrite-gallery {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--stone-200);
}
.gallery-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta-600);
  margin-bottom: 32px;
}
.gallery-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terracotta-400);
  animation: breath 2400ms ease-in-out infinite;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-pair {
  --gallery-copy-box-height: 124px;
  position: relative;
  background: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: 20px;
  padding: 24px 22px;
  transition: transform 400ms var(--ease-warm), border-color 400ms, box-shadow 400ms;
  display: grid;
  grid-template-rows: auto var(--gallery-copy-box-height) 42px var(--gallery-copy-box-height);
  align-items: start;
}
html[lang="en"] .gallery-pair {
  --gallery-copy-box-height: 152px;
}
.gallery-pair:hover {
  transform: translateY(-4px);
  border-color: var(--terracotta-200);
  box-shadow: 0 14px 36px -16px rgba(184,93,52,0.25);
}
.gallery-pair .pair-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta-700);
  background: transparent;
  padding: 0 0 8px;
  border-bottom: 1px solid var(--terracotta-200);
  border-radius: 0;
  margin-bottom: 16px;
}
.gallery-pair .pair-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terracotta-400);
}
.gallery-pair .pair-orig,
.gallery-pair .pair-new {
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 14px 16px;
  min-height: 0;
  height: var(--gallery-copy-box-height);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 0;
  display: block;
  text-align: start;
  overflow-wrap: break-word;
}
.gallery-pair .pair-orig {
  background: var(--terracotta-50);
  color: var(--terracotta-900, var(--terracotta-800));
}
.gallery-pair .pair-arrow {
  display: grid;
  place-items: center;
  align-self: center;
  color: var(--terracotta-500);
  min-height: 42px;
}
.gallery-pair .pair-arrow-icon {
  width: 24px;
  height: 42px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 1px 0 rgba(250, 248, 245, 0.7));
}
.gallery-pair .pair-new {
  background: var(--deep-blue-50);
  border-color: var(--deep-blue-100);
  color: var(--deep-blue-800);
}
.gallery-foot {
  margin-top: 40px;
  text-align: center;
  font-size: 15px;
  color: var(--stone-600);
  line-height: 1.6;
}
.gallery-foot strong {
  color: var(--stone-900);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════════════
   §04b HOW IT WORKS — 4-step mental model
   ═══════════════════════════════════════════════════════════════════════════ */
.how-section {
  background: var(--stone-50);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 56px;
  counter-reset: how;
}
.how-step {
  position: relative;
  padding: 32px 26px 28px;
  background: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: 20px;
  transition: transform 400ms var(--ease-warm), border-color 400ms;
}
.how-step:hover {
  transform: translateY(-4px);
  border-color: var(--terracotta-200);
}
.how-step .how-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--terracotta-500);
  margin-bottom: 16px;
  display: inline-block;
  padding: 4px 12px;
  background: var(--terracotta-50);
  border-radius: 9999px;
}
.how-step h4 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--stone-900);
  line-height: 1.25;
  margin-bottom: 10px;
}
.how-step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--stone-600);
}

/* ═══════════════════════════════════════════════════════════════════════════
   §05 ARCHITECTURE — 5 spaces
   ═══════════════════════════════════════════════════════════════════════════ */
.arch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.arch-card {
  background: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: 24px;
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 400ms var(--ease-warm), border-color 400ms;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.arch-card:hover {
  transform: translateY(-6px);
  border-color: var(--terracotta-200);
}
.arch-card .num {
  position: absolute;
  top: 22px;
  inset-inline-end: 22px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--stone-400);
}
.arch-card .glyph {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: grid; place-items: center;
  margin-bottom: 28px;
}
.arch-card.journal .glyph   { background: var(--terracotta-100); }
.arch-card.rephrase .glyph { background: var(--deep-blue-100); }
.arch-card.sounding .glyph  { background: var(--sage-100); }
.arch-card.repair .glyph    { background: var(--rose-100); }
.arch-card.settings .glyph  { background: var(--stone-200); }
.arch-card .glyph svg {
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.arch-card.journal .glyph svg   { stroke: var(--terracotta-700); }
.arch-card.rephrase .glyph svg { stroke: var(--deep-blue-700); }
.arch-card.sounding .glyph svg  { stroke: var(--sage-600); }
.arch-card.repair .glyph svg    { stroke: var(--rose-500); }
.arch-card.settings .glyph svg  { stroke: var(--stone-700); }

.arch-card h4 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--stone-900);
  margin-bottom: 4px;
}
.arch-card .arch-title:has(.inline-wordmark) {
  overflow-wrap: normal;
}
[dir="rtl"] .arch-card .arch-title:has(.inline-wordmark) {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2em;
  white-space: nowrap;
}
.arch-card .arch-title .inline-wordmark {
  flex: 0 0 auto;
  height: 0.8em;
  max-width: 4.5em;
  vertical-align: -0.08em;
}
.arch-card .arch-title .inline-wordmark img {
  height: 0.82em;
}
.arch-card .arch-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--stone-500);
  margin-bottom: 18px;
}
.arch-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--stone-600);
}

/* ═══════════════════════════════════════════════════════════════════════════
   §05b PRODUCT MOSAIC — removed 2026-05-26 (orphan CSS, no HTML referenced
   it). Was stylised phone mockups for Repair / Solo / Ambient / Living
   Agreements. Restore via git history when M1 ships real product
   screenshots — or skip this block entirely if real screenshots will be
   inlined into existing sections instead.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════
   §06 REPAIR PROTOCOL
   ═══════════════════════════════════════════════════════════════════════════ */
.repair-section {
  background: linear-gradient(180deg, var(--rose-50), var(--stone-50));
}
.repair-stages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 56px auto 0;
  max-width: 1040px;
  position: relative;
  counter-reset: stage;
}
.repair-stages::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, var(--rose-200), var(--rose-400), var(--rose-200));
  z-index: 0;
}
.repair-stage {
  background: var(--stone-50);
  border: 1px solid var(--rose-100);
  border-radius: 20px;
  padding: 72px 20px 32px 20px;
  min-height: 220px;
  position: relative;
  text-align: center;
  transition: transform 400ms var(--ease-warm);
  counter-increment: stage;
}
.repair-stage:hover { transform: translateY(-4px); }
.repair-stage::before {
  content: counter(stage, decimal-leading-zero);
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--rose-500);
  color: var(--stone-50);
  display: grid; place-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--stone-50);
}
.repair-stage h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--stone-900);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.repair-stage p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--stone-600);
}

.repair-promise {
  margin-top: 64px;
  text-align: center;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.45;
  color: var(--rose-500);
  max-width: 28ch;
  margin-inline: auto;
}

.repair-scenarios {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  margin-bottom: 8px;
}
.repair-scenarios .label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-500);
  margin-inline-end: 6px;
}
.repair-scenarios .scenario-pill {
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--rose-200);
  border-radius: 9999px;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--stone-700);
  transition: background 200ms, border-color 200ms;
}
.repair-scenarios .scenario-pill:hover {
  background: var(--rose-100);
  border-color: var(--rose-300);
}

.repair-walkthrough {
  margin-top: 96px;
  max-width: 920px;
  margin-inline: auto;
}
.walkthrough-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-500);
  margin-bottom: 14px;
  padding: 6px 14px;
  border: 1px solid var(--rose-200);
  border-radius: 9999px;
  background: rgba(255,255,255,0.6);
}
.walkthrough-eyebrow .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
  animation: breath 2400ms ease-in-out infinite;
}
.walkthrough-scenario-card {
  background: var(--stone-50);
  border: 1px solid var(--rose-100);
  border-radius: 18px;
  padding: 22px 26px;
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--stone-700);
}
.walkthrough-scenario-card .scn-label {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-500);
  margin-bottom: 6px;
}
.walkthrough-stages {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.walk-stage {
  background: var(--stone-50);
  border: 1px solid var(--rose-100);
  border-radius: 22px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
}
.walk-stage .walk-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--rose-500);
  color: var(--stone-50);
  display: grid; place-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 600;
}
.walk-stage h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--stone-900);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.walk-exchange {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.walk-bubble {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.55;
  max-width: 86%;
}
.walk-bubble .who {
  display: block;
  font-family: "Heebo", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.walk-bubble.her {
  background: var(--terracotta-100);
  color: var(--terracotta-800);
  align-self: flex-start;
  border-radius: 14px 14px 14px 4px;
}
.walk-bubble.her .who { color: var(--terracotta-700); }
.walk-bubble.him {
  background: var(--deep-blue-100);
  color: var(--deep-blue-800);
  align-self: flex-end;
  border-radius: 14px 14px 4px 14px;
}
.walk-bubble.him .who { color: var(--deep-blue-700); }
.walk-bubble.her.private {
  background: rgba(184, 93, 52, 0.05);
  border: 1px dashed var(--terracotta-300);
  color: var(--stone-700);
}
.walk-bubble.her.private .who { color: var(--terracotta-600); }
.walk-bubble.ai {
  background: var(--rose-50);
  color: var(--rose-500);
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 13.5px;
  align-self: center;
  text-align: center;
  border: 1px solid var(--rose-200);
  max-width: 92%;
}
.walk-bubble.ai .who {
  font-family: "Heebo", sans-serif;
  font-style: normal;
  color: var(--rose-500);
}

.walk-gap {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 4px 0;
  font-family: "Heebo", sans-serif;
  font-size: 11.5px;
  color: var(--stone-500);
  font-style: italic;
}
.walk-gap::before,
.walk-gap::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 32px;
  background: var(--rose-200);
}
.walk-gap strong {
  color: var(--rose-500);
  font-weight: 600;
  font-style: normal;
}

.walkthrough-note {
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--stone-600);
  font-style: italic;
  max-width: 64ch;
}
.walk-bubble.outcome {
  background: var(--sage-100);
  color: var(--sage-600);
  align-self: stretch;
  text-align: center;
  font-weight: 500;
  max-width: 100%;
}
.walkthrough-outcome {
  margin-top: 32px;
  text-align: center;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: clamp(18px, 1.7vw, 22px);
  color: var(--rose-500);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════════════
   §07 SAFETY / PRIVACY — cool light trust block after dark boundaries
   ═══════════════════════════════════════════════════════════════════════════ */
.safety-section {
  background:
    linear-gradient(180deg, var(--deep-blue-50) 0%, var(--stone-50) 72%);
}
.safety-section .section-eyebrow {
  color: var(--terracotta-600);
}
.safety-section .section-title {
  color: var(--stone-900);
}
.safety-section .section-title em {
  color: var(--terracotta-600);
}
.safety-section .section-lead {
  color: var(--stone-600);
}
.safety-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  margin-top: 48px;
}
.safety-grid.single {
  grid-template-columns: 1fr;
  max-width: 720px;
}
.safety-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.safety-point {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--deep-blue-100);
}
.safety-point:last-child { border-bottom: none; }
.safety-point .icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--stone-50);
  border: 1px solid var(--deep-blue-100);
  display: grid; place-items: center;
  color: var(--deep-blue-700);
}
.safety-point .icon svg {
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 18px; height: 18px;
}
.safety-point h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--stone-900);
  margin-bottom: 4px;
}
.safety-point p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--stone-600);
}

/* ═══════════════════════════════════════════════════════════════════════════
   §02b COMPARISON TABLE — softbond vs existing solutions
   ═══════════════════════════════════════════════════════════════════════════ */
.comparison {
  background: var(--stone-900);
  color: var(--stone-100);
}
.comparison .section-title { color: var(--stone-50); }
.comparison .section-title em { color: var(--terracotta-300); }
.comparison .section-eyebrow { color: var(--terracotta-300); }
.comparison .section-eyebrow .num-badge {
  background: rgba(220,156,117,0.18);
  color: var(--terracotta-200);
}
.comparison .section-lead { color: var(--stone-400); }

.compare-table {
  margin-top: 56px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr 1fr;
  align-items: stretch;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.compare-row:last-child { border-bottom: none; }
.compare-row > * {
  padding: 18px 16px;
  font-size: 14.5px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.compare-row.head > * {
  background: rgba(255,255,255,0.04);
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--stone-300);
  font-weight: 600;
  padding: 14px 16px;
}
.compare-row.head .col-softbond {
  background: linear-gradient(180deg, rgba(184,93,52,0.18), rgba(184,93,52,0.06));
  color: var(--terracotta-200);
}
.compare-row .col-attr {
  font-weight: 600;
  color: var(--stone-200);
  font-family: "Heebo", sans-serif;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
}
.compare-row .col-softbond {
  background: rgba(184,93,52,0.07);
  color: var(--stone-50);
  font-weight: 500;
  border-inline: 1px solid rgba(184,93,52,0.20);
}
.compare-row .cell-good {
  color: var(--sage-300);
  font-weight: 500;
}
.compare-row .cell-meh {
  color: var(--stone-400);
}
.compare-row .cell-bad {
  color: var(--rose-300);
}
.compare-row .cell-mark {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  margin-inline-end: 4px;
  width: 16px;
  text-align: center;
}
.cell-mark.good { color: var(--sage-400); }
.cell-mark.meh  { color: var(--stone-400); }
.cell-mark.bad  { color: var(--rose-400); }
.compare-footnote {
  margin-top: 24px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--stone-400);
  text-align: center;
  max-width: 60ch;
  margin-inline: auto;
}
.compare-table-mobile {
  display: none;
}
.compare-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 12px;
}
.compare-card.softbond {
  background: linear-gradient(180deg, rgba(184,93,52,0.10), rgba(184,93,52,0.04));
  border-color: rgba(184,93,52,0.30);
}
.compare-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--stone-50);
  margin-bottom: 12px;
}
.compare-card.softbond h4 { color: var(--terracotta-200); }
.compare-card-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 13.5px;
}
.compare-card-row:last-child { border-bottom: none; }
.compare-card-row .row-attr {
  color: var(--stone-400);
  flex-shrink: 0;
  font-size: 12px;
}
.compare-card-row .row-val {
  color: var(--stone-100);
  text-align: end;
}
.compare-card.softbond .compare-card-row .row-val { color: var(--stone-50); font-weight: 500; }

@media (max-width: 760px) {
  .compare-table { display: none; }
  .compare-table-mobile { display: block; margin-top: 36px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   §03b ANTI-PROMISES — what softbond is NOT
   Background comes from .section.calm.
   This class now only carries grid + card styling.
   ═══════════════════════════════════════════════════════════════════════════ */
.anti-promises-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
  align-items: stretch;
}
.anti-card {
  position: relative;
  min-height: 294px;
  background: rgba(250, 248, 245, 0.035);
  border: 1px solid rgba(250, 248, 245, 0.13);
  border-radius: 18px;
  padding: 30px 26px 24px;
  transition: border-color 240ms var(--ease-warm), transform 240ms, background 240ms;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.anti-card:hover {
  background: rgba(250, 248, 245, 0.055);
  border-color: rgba(220,156,117,0.38);
  transform: translateY(-3px);
}
.anti-card .anti-logo {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--rose-300);
  justify-self: end;
  align-self: flex-end;
}
.anti-card .anti-logo svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.anti-card .anti-logo circle {
  fill: currentColor;
  stroke: none;
}
.anti-card .anti-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--terracotta-600);
  margin-bottom: 10px;
}
.anti-card h4 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--stone-50);
  margin-bottom: 14px;
  line-height: 1.3;
  max-width: none;
}
.anti-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--stone-300);
}
.anti-card .anti-good {
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(250, 248, 245, 0.12);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--stone-300);
}
.anti-card .anti-good strong {
  color: var(--terracotta-200);
  font-weight: 600;
  margin-inline-end: 4px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   §06b AMBIENT SIGNALS callout
   ═══════════════════════════════════════════════════════════════════════════ */
.ambient {
  background: linear-gradient(180deg, var(--stone-50), var(--sage-50));
}
.ambient-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.ambient-card {
  background: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: 18px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ambient-card .ambient-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--sage-100);
  color: var(--sage-600);
  font-size: 22px;
  margin-bottom: 4px;
}
.ambient-card.heart .ambient-icon { background: var(--rose-100); color: var(--rose-500); }
.ambient-card.mood .ambient-icon { background: var(--terracotta-100); color: var(--terracotta-600); }
.ambient-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--stone-900);
  letter-spacing: -0.01em;
}
.ambient-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--stone-600);
}
.ambient-foot {
  margin-top: 32px;
  text-align: center;
  font-family: "Fraunces", serif;
  font-style: italic;
  color: var(--stone-600);
  font-size: 15px;
  max-width: 56ch;
  margin-inline: auto;
}

/* ═══════════════════════════════════════════════════════════════════════════
   §07b FAQ
   ═══════════════════════════════════════════════════════════════════════════ */
.faq-section {
  background: var(--stone-50);
}
.faq-grid {
  margin-top: 48px;
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 200ms;
}
.faq-item[open] { border-color: var(--terracotta-300); }
.faq-item summary {
  padding: 22px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--stone-900);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 200ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: "JetBrains Mono", monospace;
  font-size: 20px;
  font-weight: 400;
  color: var(--terracotta-500);
  transition: transform 200ms, content 200ms;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: "−";
  color: var(--terracotta-600);
}
.faq-item summary:hover { color: var(--terracotta-700); }
.faq-item .faq-body {
  padding: 0 24px 22px;
  color: var(--stone-600);
  font-size: 15px;
  line-height: 1.65;
}
.faq-item .faq-body strong { color: var(--stone-900); font-weight: 600; }
.faq-item .faq-body a {
  color: var(--terracotta-600);
  text-decoration: underline;
  text-decoration-color: var(--terracotta-200);
  text-underline-offset: 3px;
}
.faq-foot {
  margin-top: 36px;
  text-align: center;
  color: var(--stone-500);
  font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   waitlist email capture (inside §08 CTA)
   ═══════════════════════════════════════════════════════════════════════════ */
.waitlist-form {
  display: flex;
  gap: 8px;
  margin-top: 22px;
  background: var(--stone-50);
  border: 1px solid var(--stone-300);
  border-radius: 9999px;
  padding: 6px;
  transition: border-color 200ms, box-shadow 200ms;
}
.waitlist-form:focus-within {
  border-color: var(--terracotta-400);
  box-shadow: 0 0 0 4px rgba(184, 93, 52, 0.12);
}
.waitlist-input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 12px 16px;
  font-size: 15px;
  font-family: "Heebo", sans-serif;
  color: var(--stone-900);
  outline: none;
}
.waitlist-input::placeholder { color: var(--stone-400); }
.waitlist-submit {
  background: var(--terracotta-500);
  color: var(--stone-50);
  min-width: 96px;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  border: 0;
  cursor: pointer;
  transition: background 200ms, transform 200ms;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
[dir="rtl"] .waitlist-submit {
  order: -1;
}
.waitlist-submit:hover {
  background: var(--terracotta-600);
  transform: translateY(-1px);
}
.waitlist-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--stone-500);
  text-align: center;
}
.waitlist-success {
  display: none;
  background: var(--sage-50);
  border: 1px solid var(--sage-200);
  border-radius: 14px;
  padding: 18px 22px;
  color: var(--sage-600);
  font-size: 15px;
  line-height: 1.5;
}
.waitlist-success.shown { display: block; }

/* ═══════════════════════════════════════════════════════════════════════════
   §08 FINAL CTA
   ═══════════════════════════════════════════════════════════════════════════ */
.cta-section {
  background:
    radial-gradient(ellipse 70% 60% at 25% 30%, rgba(184,93,52,0.12), transparent 65%),
    radial-gradient(ellipse 60% 60% at 80% 70%, rgba(165,82,79,0.10), transparent 65%),
    var(--stone-50);
  text-align: center;
}
.cta-mark {
  display: inline-flex;
  margin: 0 auto 32px;
  position: relative;
}
.cta-mark img {
  width: 96px;
  height: 96px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(184, 93, 52, 0.35));
}
.cta-mark::after {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 32px;
  background: radial-gradient(circle, rgba(184, 93, 52, 0.18), transparent 70%);
  z-index: -1;
}

.pricing-card {
  max-width: 520px;
  margin: 64px auto 0;
  background: var(--stone-50);
  border: 1px solid var(--terracotta-200);
  border-radius: 28px;
  padding: 40px 36px;
  box-shadow: 0 30px 80px -30px rgba(184,93,52,0.25);
  text-align: start;
}
.pricing-card .trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 600;
  background: var(--terracotta-100);
  color: var(--terracotta-700);
  padding: 5px 12px;
  border-radius: 9999px;
  margin-bottom: 20px;
}
.pricing-card .trial-len {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--stone-900);
  margin-bottom: 12px;
}
.pricing-card .trial-len em {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta-600);
}
.pricing-card .trial-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--stone-600);
  margin-bottom: 28px;
}
.pricing-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-list li {
  display: flex;
  align-items: start;
  gap: 12px;
  font-size: 15px;
  color: var(--stone-700);
  line-height: 1.55;
}
.pricing-list li .check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--sage-600);
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 600;
  margin-top: 2px;
}
.pricing-card .price-line {
  font-size: 13px;
  color: var(--stone-500);
  padding-top: 20px;
  border-top: 1px solid var(--stone-200);
  margin-top: 4px;
}
.pricing-card .price-line strong {
  font-weight: 600;
  color: var(--stone-800);
}

/* L2-22 — documented disabled state for pricing CTA buttons */
.waitlist-submit.is-disabled,
.waitlist-submit:disabled,
.btn-primary.is-disabled,
.btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  pointer-events: none;
}

.cta-honest {
  margin-top: 56px;
  font-size: 14px;
  color: var(--stone-500);
  max-width: 48ch;
  margin-inline: auto;
  font-family: "Fraunces", serif;
  font-style: italic;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.footer {
  padding: 64px clamp(20px, 5vw, 64px) 48px;
  background: var(--stone-900);
  color: var(--stone-400);
  font-size: 13px;
  line-height: 1.7;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) minmax(180px, 1fr) minmax(180px, 1fr);
  gap: 48px;
}
.footer-mark {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 28px;
  color: var(--stone-50);
  direction: ltr;
  display: block;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.footer-mark .dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rose-400);
  vertical-align: 0.35em;
  margin-inline: 2px;
}
.footer-desc { max-width: 32ch; color: var(--stone-400); margin-bottom: 24px; }
.footer h6 {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--stone-50);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { padding: 4px 0; }
.footer ul li a:hover { color: var(--terracotta-300); }
.footer-bottom {
  max-width: 1240px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--stone-500);
}

/* ═══════════════════════════════════════════════════════════════════════════
   responsive
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1240px) {
  .nav-primary .nav-link:nth-of-type(2),
  .nav-primary .nav-link:nth-of-type(5),
  .nav-primary .nav-link:nth-of-type(6) {
    display: none;
  }
}

@media (max-width: 1040px) {
  .nav {
    padding-inline: clamp(18px, 4vw, 48px);
  }
  .nav-primary .nav-link:nth-of-type(1),
  .nav-primary .nav-link:nth-of-type(7) {
    display: none;
  }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-device { order: 2; }
  .device-wrap { transform: perspective(1800px) rotateY(-6deg) rotateX(2deg); }
  .rephrase-stage { grid-template-columns: 1fr; }
  .t-connector { transform: rotate(90deg); }
  .repair-stages { grid-template-columns: 1fr 1fr; gap: 16px; }
  .repair-stages::before { display: none; }
  .anti-promises-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .safety-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .nav-primary .nav-link { display: none; }
  .nav.scrolled {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
  }
  .nav-right { gap: 10px; }
  .midpage-cta {
    flex-wrap: wrap;
  }
  .midpage-cta .midpage-copy h4,
  .midpage-cta .midpage-copy p {
    white-space: normal;
  }
}
@media (max-width: 720px) {
  .walk-stage { grid-template-columns: 1fr; gap: 14px; }
  .walk-bubble { max-width: 100%; }
  .gallery-pair {
    --gallery-copy-box-height: 136px;
  }
  html[lang="en"] .gallery-pair { --gallery-copy-box-height: 172px; }
}
@media (max-width: 600px) {
  .nav { padding: 12px 14px; }
  .nav-mark { height: 36px; }
  .nav-mark img { height: 24px; }
  .nav-primary { gap: 8px; }
  .nav-language { padding: 3px; }
  .nav-language .lang-current,
  .nav-language .lang-switch {
    min-width: 48px;
    padding: 6px 8px;
    font-size: 11.5px;
  }
  .repair-stages { grid-template-columns: 1fr; }
  .anti-promises-grid { grid-template-columns: 1fr; }
  .anti-card .anti-good { height: auto; min-height: 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
@media (max-width: 380px) {
  .nav-language .lang-current { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ─────────── §02c CREDIBILITY STRIP — pre-launch honest signals ─────────── */
.cred-strip {
  background: var(--stone-100);
  border-top: 1px solid var(--stone-200);
  border-bottom: 1px solid var(--stone-200);
  padding: 32px clamp(20px, 5vw, 64px);
}
.cred-strip .cred-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  align-items: center;
}
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--stone-700);
}
.cred-item .cred-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--terracotta-50);
  color: var(--terracotta-600);
  display: grid; place-items: center;
  font-size: 14px;
  font-weight: 600;
  margin-top: -2px;
}
.cred-item strong {
  display: block;
  color: var(--stone-900);
  font-weight: 600;
  font-size: 13.5px;
  margin-bottom: 1px;
}
.cred-item .cred-pending {
  color: var(--stone-500);
  font-style: italic;
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: 12.5px;
}
@media (max-width: 600px) {
  .cred-strip { padding: 24px 20px; }
  .cred-strip .cred-inner { grid-template-columns: 1fr; gap: 16px; }
}

/* ─────────── HERO outcome strip — directions, not guarantees ─────────── */
.hero-outcomes {
  display: block;
  margin: -16px 0 28px;
  max-width: 64ch;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.005em;
  color: var(--terracotta-200);
  line-height: 1.55;
}

/* L2-05 — explicit category one-liner (per D-0033) */
.hero-category {
  display: block;
  margin: -8px 0 16px;
  max-width: 64ch;
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--stone-400);
  line-height: 1.55;
}

/* L2-32 — anti-promise visible in hero (per D-0033) */
.hero-anti-promise {
  display: block;
  margin: 0 0 28px;
  max-width: 64ch;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 14px;
  font-weight: 300;
  color: var(--stone-300);
  line-height: 1.55;
  border-inline-start: 2px solid var(--terracotta-500);
  padding-inline-start: 14px;
}

/* ─────────── §02b "FOR WHOM" — explicit self-identification block ─────────── */
.forwhom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
  margin-top: 44px;
}
.forwhom-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 22px;
  background: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: 14px;
  transition: border-color 240ms, transform 240ms var(--ease-warm);
}
.forwhom-item:hover {
  border-color: var(--terracotta-200);
  transform: translateY(-2px);
}
.forwhom-mark {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--sage-600);
  display: grid; place-items: center;
  font-size: 14px;
  font-weight: 600;
  margin-top: 1px;
}
.forwhom-item p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--stone-700);
  margin: 0;
}
.forwhom-item p strong { color: var(--stone-900); font-weight: 600; }
.forwhom-foot {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  color: var(--stone-500);
  font-style: italic;
  font-family: "Fraunces", serif;
  font-weight: 300;
}
@media (max-width: 600px) {
  .forwhom-grid { grid-template-columns: 1fr; }
}
