/* ============================================================
   WorkWitness landing page styles
   Chunk 1 — skeleton + design tokens
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Sienna — primary accent (matches portal) */
  --sienna-50:  #FDF4EE;
  --sienna-100: #FBE5D3;
  --sienna-200: #F6C7A2;
  --sienna-400: #E68A4D;
  --sienna-500: #D8682B;
  --sienna-600: #C2410C;   /* portal accent */
  --sienna-700: #9A3412;
  --sienna-800: #7C2D12;
  --sienna-900: #54200D;

  /* Warm neutrals (paired with sienna, never pure grays) */
  --paper:      #FFFFFF;
  --paper-tint: #FAFAF9;
  --ink:        #1C1917;
  --ink-soft:   #44403C;
  --ink-mute:   #78716C;
  --ink-quiet:  #A8A29E;
  --rule:       #E7E5E4;
  --rule-soft:  #F5F5F4;

  /* Semantic — privacy-positive callouts */
  --trust:      #15803D;
  --trust-soft: #DCFCE7;

  /* Typography */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

  /* Type scale */
  --fs-display-1: clamp(2.5rem, 5vw + 1rem, 4.75rem);
  --fs-display-2: clamp(1.875rem, 3vw + 0.75rem, 3rem);
  --fs-display-3: clamp(1.375rem, 1.5vw + 0.75rem, 1.875rem);
  --fs-lead:      clamp(1.125rem, 0.5vw + 1rem, 1.375rem);
  --fs-body:      1.0625rem;
  --fs-small:     0.9375rem;
  --fs-eyebrow:   0.8125rem;

  /* Spacing rhythm */
  --section-y:    clamp(4rem, 8vw, 8rem);
  --section-y-sm: clamp(2.5rem, 5vw, 5rem);

  /* Layout */
  --container-w:  1180px;
  --narrow-w:     760px;

  /* Radii */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  24px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
p, li { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--sienna-600);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container.narrow { max-width: var(--narrow-w); }
.center { text-align: center; }

/* ---------- Typography ---------- */
.display-1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-display-1);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 1.25rem;
  font-variation-settings: 'opsz' 144;
  text-wrap: balance;
}
.display-accent {
  color: var(--sienna-600);
  position: relative;
  white-space: nowrap;
}
.display-accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.05em;
  height: 0.12em;
  background: var(--sienna-200);
  border-radius: 999px;
  z-index: -1;
}
.display-2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-display-2);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 1rem;
  font-variation-settings: 'opsz' 96;
  text-wrap: balance;
}
.display-3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-display-3);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 0.75rem;
}
.lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 2rem;
  max-width: 56ch;
  text-wrap: balance;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sienna-600);
  margin: 0 0 1.25rem;
}
.section-lede {
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 3rem;
  text-wrap: balance;
}
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header.center .section-lede { margin-inline: auto; }

.prose p { margin: 0 0 1.25rem; max-width: 60ch; color: var(--ink-soft); }
.prose .emphasis {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.aside {
  font-size: var(--fs-body);
  color: var(--ink-mute);
  max-width: 64ch;
  margin: 3rem auto 0;
  text-align: center;
  font-style: italic;
}

/* ---------- Sections & bands ---------- */
section { padding: var(--section-y) 0; position: relative; }
.band-tint { background: var(--paper-tint); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.625rem; }
.brand-mark { flex-shrink: 0; display: block; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.site-nav {
  display: flex;
  gap: 1.875rem;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}
.site-nav a { transition: color 0.15s ease; }
.site-nav a:hover { color: var(--ink); }
.header-cta { display: flex; align-items: center; gap: 1rem; }
.link-quiet {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.link-quiet:hover { color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  padding: 0.875rem 1.25rem;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: transform 0.1s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 0.625rem 1rem; font-size: 0.9375rem; }
.btn-lg { padding: 1rem 1.5rem; font-size: 1.0625rem; }
.btn-primary {
  background: var(--sienna-600);
  color: var(--paper);
  border-color: var(--sienna-600);
  box-shadow: 0 1px 0 var(--sienna-700) inset;
}
.btn-primary:hover { background: var(--sienna-700); border-color: var(--sienna-700); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn-ghost:hover { background: var(--paper-tint); border-color: var(--ink-quiet); }

/* ---------- CTA row ---------- */
.cta-row {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.5rem;
}
.cta-row.center { justify-content: center; }
.cta-caption {
  font-size: var(--fs-small);
  color: var(--ink-mute);
  margin: 0;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(3rem, 6vw, 5.5rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}
/* Soft warm gradient blob behind hero (decorative) */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 110%;
  background: radial-gradient(ellipse at center,
                              var(--sienna-100) 0%,
                              var(--sienna-50) 35%,
                              transparent 70%);
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
  filter: blur(8px);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse at center,
                              var(--sienna-50) 0%,
                              transparent 65%);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
  filter: blur(12px);
}
.hero-inner { max-width: 880px; }
.hero .eyebrow { margin-bottom: 1rem; }

/* ---------- Hero proof pills ---------- */
.proof-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 0.875rem;
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
}
.proof-pills li {
  font-size: var(--fs-small);
  color: var(--ink-soft);
  background: var(--sienna-50);
  border: 1px solid var(--sienna-100);
  border-radius: 999px;
  padding: 0.4rem 0.875rem;
  line-height: 1.2;
  white-space: nowrap;
}

/* ---------- Early-access proof bar ---------- */
.proof-bar {
  padding: 1rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.proof-bar-text {
  margin: 0;
  font-size: var(--fs-small);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  flex-wrap: wrap;
  text-align: center;
}
.proof-bar-text a {
  color: var(--sienna-600);
  font-weight: 500;
  border-bottom: 1px solid var(--sienna-200);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.proof-bar-text a:hover {
  color: var(--sienna-700);
  border-bottom-color: var(--sienna-600);
}
.proof-bar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--trust);
  box-shadow: 0 0 0 4px var(--trust-soft);
  flex-shrink: 0;
  animation: proof-pulse 2.4s ease-in-out infinite;
}
@keyframes proof-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

/* ============================================================
   Hero illustration animations
   ============================================================ */

/* AI orb — gentle scale pulse + dashed ring rotation + halo breathing */
@keyframes orb-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}
@keyframes orb-halo-breathe {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50%      { opacity: 0.85; transform: scale(1.1); }
}
@keyframes orb-ring-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.ai-orb { animation: orb-pulse 4s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.orb-halo { animation: orb-halo-breathe 3.5s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.orb-ring { animation: orb-ring-rotate 22s linear infinite; transform-box: fill-box; transform-origin: center; }

/* Activity bars — soft pulse on the "current focus" bar of each card */
@keyframes bar-pulse {
  0%, 100% { opacity: 0.65; }
  50%      { opacity: 1; }
}
.bar-pulse { animation: bar-pulse 2.4s ease-in-out infinite; }
.bar-pulse-1 { animation-delay: 0s;   }
.bar-pulse-2 { animation-delay: 0.6s; }
.bar-pulse-3 { animation-delay: 1.2s; }

/* Phone — subtle floating motion */
@keyframes phone-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.phone-stack { animation: phone-float 6s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }

/* Notification cards — staggered slide-in on first paint */
@keyframes notif-slide-in {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}
.notif-card { animation: notif-slide-in 0.6s ease-out backwards; transform-box: fill-box; transform-origin: left center; }
.notif-card-1 { animation-delay: 0.4s; }
.notif-card-2 { animation-delay: 0.7s; }
.notif-card-3 { animation-delay: 1.0s; }

/* Chart bars — staggered grow on first paint */
@keyframes chart-bar-grow {
  from { transform: scaleY(0); opacity: 0; }
  to   { transform: scaleY(1); opacity: 1; }
}
.chart-bar { animation: chart-bar-grow 0.55s ease-out backwards; transform-box: fill-box; transform-origin: bottom; }
.chart-bar-1 { animation-delay: 1.2s; }
.chart-bar-2 { animation-delay: 1.32s; }
.chart-bar-3 { animation-delay: 1.44s; }
.chart-bar-4 { animation-delay: 1.56s; }
.chart-bar-5 { animation-delay: 1.68s; }
.chart-bar-6 { animation-delay: 1.80s; }

/* Floating decorative dots */
@keyframes float-dot {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.float-dot { transform-box: fill-box; transform-origin: center; }
.float-dot-1 { animation: float-dot 4.5s ease-in-out infinite; }
.float-dot-2 { animation: float-dot 5.5s ease-in-out infinite; animation-delay: 1s; }
.float-dot-3 { animation: float-dot 6.5s ease-in-out infinite; animation-delay: 2s; }

/* (Scroll-triggered fade-in removed — caused sections to stay hidden in
   some browser conditions. All sections render visibly by default.) */

/* ---------- Section 1.7 — Data Flow illustration ---------- */
.data-flow {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 30%, var(--sienna-50) 0%, transparent 65%),
    var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.data-flow::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center,
                              var(--sienna-100) 0%,
                              transparent 60%);
  opacity: 0.4;
  filter: blur(10px);
  pointer-events: none;
  z-index: -1;
}
.data-flow-visual {
  margin: 1rem auto 0;
  max-width: 1180px;
}
.data-flow-illustration {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Section 3 — How it works ---------- */
.three-step {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  position: relative;
}
.step-index {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--sienna-600);
  background: var(--sienna-50);
  padding: 0.25rem 0.5rem;
  border-radius: var(--r-sm);
  margin-bottom: 1rem;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0 0 0.625rem;
  color: var(--ink);
}
.step p { margin: 0; color: var(--ink-soft); font-size: 1rem; line-height: 1.6; }

/* ---------- Section 3.5 — Owner outcomes ---------- */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.outcome-grid.outcome-grid-4 {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.outcome-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.outcome-card:hover {
  border-color: var(--sienna-200);
  transform: translateY(-2px);
}
.outcome-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 0.75rem;
  color: var(--ink);
  line-height: 1.3;
}
.outcome-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ---------- Section 3.6 — Coaching roadmap ---------- */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.roadmap-card {
  position: relative;
  padding: 1.875rem 1.75rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--rule);
  background: var(--paper);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.roadmap-card:hover {
  transform: translateY(-2px);
}
.roadmap-card .roadmap-stage {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.625rem;
  border-radius: var(--r-sm);
  margin: 0 0 1.25rem;
}
.roadmap-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 0.625rem;
  color: var(--ink);
  line-height: 1.25;
}
.roadmap-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Now — live today */
.roadmap-now {
  border-color: var(--sienna-600);
  background: linear-gradient(180deg, var(--sienna-50) 0%, var(--paper) 60%);
  box-shadow: 0 1px 0 var(--sienna-100), 0 12px 32px -20px rgba(194, 65, 12, 0.25);
}
.roadmap-now .roadmap-stage {
  background: var(--sienna-600);
  color: var(--paper);
}

/* Next — coming soon */
.roadmap-soon .roadmap-stage {
  background: var(--sienna-50);
  color: var(--sienna-700);
  border: 1px solid var(--sienna-200);
}
.roadmap-soon:hover { border-color: var(--sienna-200); }

/* Later — directional */
.roadmap-later {
  background: var(--paper-tint);
}
.roadmap-later .roadmap-stage {
  background: var(--rule-soft);
  color: var(--ink-mute);
  border: 1px solid var(--rule);
}
.roadmap-later h3 { color: var(--ink-soft); }
.roadmap-later p { color: var(--ink-mute); }

/* ---------- Section 4 — Product showcase ---------- */
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2.5rem;
}
.screenshot { margin: 0; }
.screenshot-frame {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 8px 24px -12px rgba(0, 0, 0, 0.1);
}
.screenshot-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--rule-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule-soft) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.5;
}
.placeholder-label {
  position: relative;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--ink-mute);
  background: var(--paper);
  padding: 0.5rem 0.875rem;
  border-radius: var(--r-md);
  border: 1px dashed var(--rule);
}
.screenshot figcaption {
  margin-top: 0.875rem;
  font-size: var(--fs-small);
  color: var(--ink-mute);
  line-height: 1.5;
}

/* ---------- Section 5 — Demo video ---------- */
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px -16px rgba(28, 25, 23, 0.4);
}
.video-play {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--sienna-600);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.video-play:hover { transform: scale(1.06); }
.video-play svg { margin-left: 4px; }
.video-label {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
}

/* ---------- Section 6 — Features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 0.625rem;
  color: var(--ink);
}
.feature-card p { margin: 0; color: var(--ink-soft); font-size: 0.9375rem; line-height: 1.6; }

/* ---------- Section 7 — Audiences ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.audience-card {
  padding: 1.75rem 1.5rem;
  border-left: 3px solid var(--sienna-600);
  background: var(--paper-tint);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}
.audience-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.625rem;
  letter-spacing: -0.01em;
}
.audience-card p { margin: 0; color: var(--ink-soft); font-size: 0.9375rem; line-height: 1.55; }

/* ---------- Section 8 — Trust ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.trust-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 1.875rem 1.75rem;
  position: relative;
}
.trust-card::before {
  content: '';
  position: absolute;
  top: 1.875rem;
  left: 0;
  width: 3px;
  height: 32px;
  background: var(--trust);
  border-radius: 0 3px 3px 0;
}
.trust-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 0.75rem;
}
.trust-card p { margin: 0; color: var(--ink-soft); line-height: 1.6; }
.trust-closer {
  margin: 3rem auto 0;
  max-width: 56ch;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.375rem;
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
  letter-spacing: -0.01em;
}

/* ---------- Section 9 — Comparison table ---------- */
.comparison-wrap {
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.comparison-table th,
.comparison-table td {
  text-align: left;
  padding: 1.125rem 1.25rem;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
  line-height: 1.5;
}
.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}
.comparison-table thead th {
  background: var(--paper-tint);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--rule);
}
.comparison-table .dim-header { width: 28%; }
.comparison-table .us-header { color: var(--sienna-600); }
.comparison-table tbody th[scope="row"] {
  font-weight: 500;
  color: var(--ink);
  background: var(--paper-tint);
  font-size: 0.9375rem;
}
.comparison-table tbody td { color: var(--ink-soft); }
.comparison-table tbody td:last-child {
  color: var(--ink);
  background: var(--sienna-50);
}

/* ---------- Section 10 — Founder note ---------- */
.founder-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.founder-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.founder-content blockquote {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.375rem;
  line-height: 1.5;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.founder-content blockquote p { margin: 0 0 1rem; }
.founder-content blockquote p:last-child { margin-bottom: 0; }
.founder-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sienna-600);
  margin: 0 0 1rem;
  font-weight: 500;
}
.founder-sign {
  margin: 1.5rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.founder-sign span {
  font-weight: 400;
  color: var(--ink-mute);
  font-size: 0.9375rem;
}

/* ---------- Section 11 — Pricing ---------- */
.pricing-card {
  background: var(--paper);
  border: 2px solid var(--sienna-600);
  border-radius: var(--r-xl);
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
}
.pricing-tag {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--sienna-600);
  margin: 0 0 1.5rem;
}
.pricing-explain {
  font-size: var(--fs-lead);
  color: var(--ink);
  margin: 0 0 1.5rem;
  max-width: 50ch;
  margin-inline: auto;
}
.pricing-why {
  font-size: 1rem;
  color: var(--ink-mute);
  margin: 0 0 2.25rem;
  max-width: 56ch;
  margin-inline: auto;
  line-height: 1.65;
}
.pricing-card .cta-row { justify-content: center; }

/* ---------- Section 12 — FAQ ---------- */
.faq-list {
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  transition: color 0.15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--sienna-600);
  line-height: 1;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { color: var(--sienna-700); }
.faq-answer {
  padding: 0 0 1.75rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.faq-answer p { margin: 0 0 0.875rem; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ---------- Footer CTA ---------- */
.footer-cta {
  position: relative;
  padding: var(--section-y) 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(194, 65, 12, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 75%, rgba(154, 52, 18, 0.30) 0%, transparent 50%),
    linear-gradient(135deg, #1C1917 0%, #2C2825 55%, #3D2618 100%);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: -1;
}
.footer-cta .display-2 { color: var(--paper); }
.footer-cta .lead { color: rgba(255, 255, 255, 0.72); margin-inline: auto; }
.footer-cta .btn-ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.25);
}
.footer-cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--paper-tint);
  border-top: 1px solid var(--rule);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .brand { margin-bottom: 0.875rem; }
.footer-tagline {
  font-size: var(--fs-small);
  color: var(--ink-mute);
  margin: 0;
  max-width: 32ch;
  line-height: 1.55;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-nav h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  margin: 0 0 1rem;
}
.footer-nav ul { list-style: none; margin: 0; padding: 0; }
.footer-nav li { margin-bottom: 0.625rem; }
.footer-nav a {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.footer-nav a:hover { color: var(--ink); }
.footer-meta {
  font-size: 0.8125rem;
  color: var(--ink-mute);
  margin: 0;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}

/* ============================================================
   Responsive — tablet
   ============================================================ */
@media (max-width: 960px) {
  .site-nav { display: none; }
  .three-step,
  .feature-grid,
  .audience-grid,
  .outcome-grid,
  .outcome-grid.outcome-grid-4,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }
  .screenshot-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-nav { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   Responsive — mobile
   ============================================================ */
@media (max-width: 640px) {
  .header-inner { gap: 1rem; }
  .header-cta .link-quiet { display: none; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { width: 100%; }
  .cta-row.center .btn { width: auto; }
  .proof-pills li { font-size: 0.875rem; padding: 0.35rem 0.75rem; }
  .proof-bar { padding: 0.875rem 0; }
  .proof-bar-text { font-size: 0.875rem; gap: 0.5rem; }
  .founder-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
  }
  .founder-photo { width: 96px; height: 96px; }
  .founder-content blockquote { font-size: 1.125rem; }
  .pricing-card { padding: 2rem 1.5rem; }
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .comparison-table th,
  .comparison-table td { padding: 0.875rem 0.875rem; font-size: 0.875rem; }
  .comparison-table .dim-header { width: 32%; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
