/* =============================================================================
   Sojournal — marketing site
   Faithful recreation of the "Sojournal Site" design (Editorial theme + layout,
   the state the design landed on: theme/direction switchers removed).

   Tokens mirror the Editorial theme in packages/shared/src/theme/themes.ts and
   the design source. Keep them in sync if the app's Editorial palette changes.
   ============================================================================ */

:root {
  --bg:        #f3ebdd;
  --surface:   #fbf6ec;
  --surface2:  #efe5d3;
  --ink:       #241d15;
  --ink-soft:  rgba(36,29,21,0.62);
  --ink-faint: rgba(36,29,21,0.42);
  --line:      rgba(36,29,21,0.13);
  --accent:    #bd5f3f;
  --accent-soft: rgba(189,95,63,0.12);
  --on-accent: #fdf6ec;

  --display: 'Newsreader', Georgia, serif;
  --body:    'Newsreader', Georgia, serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  --ph1: #e7dcc7;
  --ph2: #f0e7d6;

  --title-weight: 500;
  --title-spacing: -0.5px;
  --card-radius: 18px;
  --photo-radius: 11px;

  --striped: repeating-linear-gradient(135deg, var(--ph1) 0 7px, var(--ph2) 7px 14px);
  --dot-grid: radial-gradient(circle, var(--ink-faint) 1px, transparent 1.4px);

  --maxw: 1180px;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  min-height: 100vh;
  overflow-x: hidden;
}

@keyframes drawRoute { to { stroke-dashoffset: 0; } }
@keyframes pulse { 0%,100%{ transform:translate(-50%,-50%) scale(1);} 50%{ transform:translate(-50%,-50%) scale(1.18);} }
@keyframes floaty { 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-9px);} }

a { color: inherit; }

/* ---- shared bits ---------------------------------------------------------- */
.kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.8px;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.sub { font-style: italic; }

.section { max-width: var(--maxw); margin: 0 auto; padding: 82px 28px; }
.section-head { margin-bottom: 46px; max-width: 620px; }
.section-title {
  font-family: var(--display);
  font-weight: var(--title-weight);
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.05;
  letter-spacing: var(--title-spacing);
  color: var(--ink);
  margin: 14px 0 0;
}
.section-lede {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 16px 0 0;
  font-style: italic;
  max-width: 560px;
  text-wrap: pretty;
}

/* ---- NAV ------------------------------------------------------------------ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 95%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 15px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand svg { flex-shrink: 0; display: block; }
.brand-name {
  font-family: var(--display); font-weight: var(--title-weight);
  font-size: 21px; letter-spacing: -0.3px; color: var(--ink);
}
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-link {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--ink-soft); text-decoration: none;
}
.nav-link:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-cta {
  font-family: var(--body); font-weight: 500; font-size: 14px;
  color: var(--on-accent); background: var(--accent);
  padding: 10px 18px; border-radius: 10px; text-decoration: none;
  box-shadow: 0 6px 16px var(--accent-soft); white-space: nowrap;
}

/* ---- HERO ----------------------------------------------------------------- */
.hero {
  position: relative; max-width: var(--maxw); margin: 0 auto;
  padding: 74px 28px 60px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: var(--dot-grid); background-size: 17px 17px; opacity: 0.32;
  -webkit-mask-image: radial-gradient(ellipse at 70% 40%, #000 0%, transparent 72%);
  mask-image: radial-gradient(ellipse at 70% 40%, #000 0%, transparent 72%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }
.hero-title {
  font-family: var(--display); font-weight: var(--title-weight);
  font-size: clamp(44px, 5.6vw, 76px); line-height: 0.98;
  letter-spacing: var(--title-spacing); color: var(--ink); margin: 22px 0 0;
}
.hero-sub {
  font-family: var(--body); font-size: 18px; line-height: 1.55;
  color: var(--ink-soft); max-width: 480px; margin: 22px 0 0;
  font-style: italic; text-wrap: pretty;
}
.hero-meta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.5px;
  color: var(--ink-faint); margin-top: 22px;
}
.hero-preview {
  position: relative; z-index: 2; display: flex; justify-content: center;
  animation: floaty 7s ease-in-out infinite;
}

/* ---- store badges --------------------------------------------------------- */
.badge-row { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.badge {
  display: flex; align-items: center; gap: 13px;
  background: var(--ink); color: var(--bg);
  padding: 12px 20px; border-radius: 12px; text-decoration: none; min-width: 168px;
}
.badge-bar { width: 3px; height: 30px; border-radius: 999px; background: var(--accent); flex-shrink: 0; }
.badge-txt { display: flex; flex-direction: column; line-height: 1.2; white-space: nowrap; }
.badge-small {
  font-family: var(--mono); font-size: 8.5px; letter-spacing: 1.2px;
  text-transform: uppercase; opacity: 0.72; white-space: nowrap;
}
.badge-big { font-family: var(--display); font-weight: var(--title-weight); font-size: 18px; letter-spacing: -0.2px; }
.badge.lg { gap: 14px; padding: 15px 24px; border-radius: 13px; min-width: 184px; }
.badge.lg .badge-bar { height: 34px; }
.badge.lg .badge-big { font-size: 20px; }

/* ---- PHONE MOCKUP --------------------------------------------------------- */
.phone {
  width: 320px; height: 640px; border-radius: 42px; background: var(--ink);
  padding: 11px; position: relative;
  box-shadow: 0 30px 70px rgba(0,0,0,0.28), 0 6px 18px rgba(0,0,0,0.14);
}
.phone-notch {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 104px; height: 26px; background: var(--ink); border-radius: 999px; z-index: 5;
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 32px; background: var(--bg);
  color: var(--ink); font-family: var(--body); padding: 44px 18px 18px;
  overflow: hidden; position: relative;
}
.ph-status { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.ph-status-time { font-weight: var(--title-weight); font-size: 13px; }
.ph-status-icons { font-size: 10px; letter-spacing: 1px; }
.ph-top { display: flex; justify-content: space-between; align-items: center; }
.ph-kicker { font-family: var(--mono); font-size: 9.5px; letter-spacing: 2.5px; color: var(--ink-soft); }
.ph-dots { display: flex; gap: 6px; }
.ph-dot { width: 10px; height: 10px; border-radius: 50%; border: 1px solid var(--line); }
.ph-dot.a { width: 11px; height: 11px; background: var(--accent); border: 2px solid var(--ink); }
.ph-dot.b { background: #5d7d68; }
.ph-dot.c { background: #d9a441; }
.ph-greeting { font-size: 12px; color: var(--ink-soft); margin-top: 14px; font-style: italic; }
.ph-title { font-family: var(--display); font-weight: var(--title-weight); font-size: 30px; line-height: 1; letter-spacing: var(--title-spacing); margin-top: 2px; }
.ph-world {
  position: relative; height: 148px; border-radius: var(--card-radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--surface2); margin-top: 16px;
}
.ph-world-grid {
  position: absolute; inset: 0;
  background: radial-gradient(circle, var(--ink-faint) 1px, transparent 1.4px);
  background-size: 13px 13px; opacity: 0.4;
}
.ph-world-pin {
  position: absolute; transform: translate(-50%,-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.ph-world-top { position: absolute; top: 11px; left: 13px; right: 13px; display: flex; justify-content: space-between; align-items: center; }
.ph-world-kicker { font-family: var(--mono); font-size: 8.5px; letter-spacing: 2px; color: var(--ink-soft); }
.ph-arrow { font-family: var(--mono); font-size: 14px; color: var(--ink); }
.ph-world-bottom { position: absolute; left: 13px; bottom: 12px; right: 13px; }
.ph-world-numrow { display: flex; align-items: baseline; gap: 7px; }
.ph-world-num { font-family: var(--display); font-weight: var(--title-weight); font-size: 34px; line-height: 0.9; }
.ph-world-of { font-family: var(--mono); font-size: 10px; color: var(--ink-soft); }
.ph-world-sub { font-family: var(--mono); font-size: 9px; color: var(--ink-faint); margin-top: 6px; }
.ph-label { font-family: var(--mono); font-size: 9px; letter-spacing: 2.5px; color: var(--ink-faint); margin: 18px 0 9px; }
.ph-current {
  background: var(--surface); border-radius: var(--card-radius); padding: 13px;
  border: 1.5px solid var(--accent); box-shadow: 0 8px 20px var(--accent-soft);
}
.ph-current-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.ph-current-name { font-family: var(--display); font-weight: var(--title-weight); font-size: 19px; letter-spacing: -0.3px; line-height: 1.05; }
.ph-current-sub { font-family: var(--mono); font-size: 9px; color: var(--ink-soft); margin-top: 6px; }
.ph-current-thumb { width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--photo-radius); border: 1px solid var(--line); background: var(--striped); }
.ph-track { height: 4px; border-radius: 999px; background: var(--accent-soft); margin-top: 12px; overflow: hidden; }
.ph-fill { width: 56%; height: 100%; border-radius: 999px; background: var(--accent); }
.ph-current-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }
.ph-current-meta { font-family: var(--mono); font-size: 8.5px; color: var(--ink-faint); }
.ph-resume { font-family: var(--mono); font-size: 9px; color: var(--accent); }
.ph-primary {
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px;
  padding: 14px; border-radius: 13px; background: var(--accent); color: var(--on-accent);
  font-family: var(--body); font-weight: 500; font-size: 14px; box-shadow: 0 8px 18px var(--accent-soft);
}
.ph-plus { font-size: 18px; font-weight: 300; line-height: 1; }

/* ---- FEATURES (editorial list) ------------------------------------------- */
.feat-list { display: flex; flex-direction: column; }
.feat-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 26px; align-items: baseline;
  padding: 28px 0; border-top: 1px solid var(--line);
}
.feat-num { font-family: var(--mono); font-size: 13px; color: var(--accent); letter-spacing: 1px; }
.feat-title { font-family: var(--display); font-weight: var(--title-weight); font-size: 27px; color: var(--ink); letter-spacing: -0.3px; }
.feat-desc { font-family: var(--body); font-size: 16px; line-height: 1.55; color: var(--ink-soft); margin-top: 9px; max-width: 560px; font-style: italic; text-wrap: pretty; }
.feat-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 1.4px; color: var(--ink-faint); text-transform: uppercase; white-space: nowrap; align-self: center; }

/* ---- INTERACTIVE DEMO ----------------------------------------------------- */
.demo { background: var(--surface2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.demo-head { max-width: var(--maxw); margin: 0 auto; padding: 82px 28px 0; }
.demo-stage {
  max-width: var(--maxw); margin: 0 auto; padding: 0 28px 84px;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 30px; align-items: stretch;
}
.demo-map {
  position: relative; border-radius: var(--card-radius); overflow: hidden; min-height: 420px;
  border: 1px solid var(--line); background: var(--surface);
}
.demo-map-grid { position: absolute; inset: 0; background-image: var(--dot-grid); background-size: 16px 16px; opacity: 0.45; }
.demo-map-label { position: absolute; left: 18px; top: 16px; font-family: var(--mono); font-size: 11px; letter-spacing: 3px; color: var(--ink-faint); }
.demo-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.demo-route { stroke-dasharray: 200; animation: drawRoute 2.2s ease-out forwards; }
.demo-pin-wrap {
  position: absolute; transform: translate(-50%,-50%); z-index: 5; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
}
.demo-pin {
  width: 11px; height: 11px; border-radius: 50%; background: var(--accent);
  border: 2px solid var(--surface); box-shadow: 0 0 0 3px var(--accent-soft); transition: all .18s;
}
.demo-pin-wrap.on .demo-pin { width: 16px; height: 16px; box-shadow: 0 0 0 5px var(--accent-soft); }
.demo-pin-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.5px; color: var(--ink-soft);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  padding: 2px 7px; border-radius: 6px; white-space: nowrap; transition: all .18s;
}
.demo-pin-wrap.on .demo-pin-label { font-size: 11px; color: var(--ink); font-weight: 500; }
.demo-panel {
  background: var(--surface); border-radius: var(--card-radius); border: 1.5px solid var(--accent);
  padding: 22px; box-shadow: 0 14px 34px var(--accent-soft); display: flex; flex-direction: column;
}
.demo-panel-kick { font-family: var(--mono); font-size: 10.5px; letter-spacing: 2px; color: var(--accent); text-transform: uppercase; }
.demo-panel-city { font-family: var(--display); font-weight: var(--title-weight); font-size: 34px; color: var(--ink); letter-spacing: -0.4px; line-height: 1; margin-top: 10px; }
.demo-panel-date { font-family: var(--mono); font-size: 11px; letter-spacing: 0.6px; color: var(--ink-soft); margin-top: 8px; }
.demo-panel-photo {
  position: relative; height: 150px; border-radius: var(--photo-radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--striped); margin: 18px 0;
}
.demo-panel-photo-grid { position: absolute; inset: 0; background-image: var(--dot-grid); background-size: 13px 13px; opacity: 0.3; }
.demo-panel-note { font-family: var(--body); font-size: 16.5px; line-height: 1.55; color: var(--ink); margin: 0; font-style: italic; text-wrap: pretty; flex: 1; }
.demo-panel-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); }
.demo-panel-meta { font-family: var(--mono); font-size: 10px; letter-spacing: 0.6px; color: var(--ink-faint); }
.demo-dots { display: flex; gap: 7px; }
.demo-dot { width: 8px; height: 8px; border-radius: 50%; cursor: pointer; transition: all .15s; background: var(--line); }
.demo-dot.on { background: var(--accent); transform: scale(1.25); }

.thumb-cap {
  position: absolute; left: 8px; bottom: 7px; font-family: var(--mono); font-size: 8.5px;
  color: var(--ink-faint); background: var(--surface); padding: 2px 6px; border-radius: 4px;
}

/* ---- STORY ---------------------------------------------------------------- */
.story { max-width: var(--maxw); margin: 0 auto; padding: 82px 28px; }
.story-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; border-bottom: 1px solid var(--line); padding-bottom: 34px; margin-bottom: 40px; }
.story-title { font-family: var(--display); font-weight: var(--title-weight); font-size: clamp(40px, 4.6vw, 60px); letter-spacing: var(--title-spacing); line-height: 1; margin: 12px 0 0; }
.story-sub { font-family: var(--body); font-size: 17px; color: var(--ink-soft); margin: 12px 0 0; font-style: italic; }
.story-stats { display: flex; gap: 26px; }
.story-stat { text-align: right; }
.story-stat-num { font-family: var(--display); font-weight: var(--title-weight); font-size: 28px; line-height: 1; }
.story-stat-label { font-family: var(--mono); font-size: 9px; letter-spacing: 1.4px; color: var(--ink-faint); text-transform: uppercase; margin-top: 6px; }
.story-entries { display: flex; flex-direction: column; gap: 30px; }
.story-entry { display: grid; grid-template-columns: 300px 1fr; gap: 30px; align-items: start; }
.story-photo { position: relative; height: 200px; border-radius: var(--card-radius); overflow: hidden; border: 1px solid var(--line); background: var(--striped); }
.story-photo-grid { position: absolute; inset: 0; background-image: var(--dot-grid); background-size: 15px 15px; opacity: 0.3; }
.story-day { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; color: var(--accent); text-transform: uppercase; }
.story-entry-title { font-family: var(--display); font-weight: var(--title-weight); font-size: 28px; letter-spacing: -0.3px; margin: 10px 0 0; }
.story-text { font-family: var(--body); font-size: 17px; line-height: 1.6; color: var(--ink-soft); margin: 12px 0 0; font-style: italic; text-wrap: pretty; max-width: 580px; }
.story-pins { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.story-pin { font-family: var(--mono); font-size: 10px; letter-spacing: 0.5px; color: var(--ink-soft); border: 1px solid var(--line); padding: 5px 11px; border-radius: 999px; white-space: nowrap; }

/* ---- STATS BAND ----------------------------------------------------------- */
.stats-band { position: relative; overflow: hidden; background: var(--accent); color: var(--on-accent); }
.stats-band-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, color-mix(in srgb, var(--on-accent) 33%, transparent) 1px, transparent 1.4px);
  background-size: 18px 18px; opacity: 0.25;
}
.stats-band-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 58px 28px; }
.stats-band .kicker { color: var(--on-accent); opacity: 0.9; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 26px; }
.big-stat-num { font-family: var(--display); font-weight: var(--title-weight); font-size: clamp(40px, 4.4vw, 58px); line-height: 1; letter-spacing: -0.5px; }
.big-stat-label { font-family: var(--mono); font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; margin-top: 11px; opacity: 0.85; }

/* ---- FAQ ------------------------------------------------------------------ */
.faq { max-width: 860px; margin: 0 auto; padding: 82px 28px; }
.faq-head { margin-bottom: 34px; }
.faq-list { display: flex; flex-direction: column; }
.faq-row { border-top: 1px solid var(--line); cursor: pointer; }
.faq-row:last-child { border-bottom: 1px solid var(--line); }
.faq-q-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; }
.faq-q { font-family: var(--display); font-weight: var(--title-weight); font-size: 21px; color: var(--ink); letter-spacing: -0.2px; }
.faq-icon { font-family: var(--body); font-size: 24px; color: var(--accent); font-weight: 300; line-height: 1; transition: transform .2s; }
.faq-row.on .faq-icon { transform: rotate(45deg); }
.faq-a-wrap { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-row.on .faq-a-wrap { max-height: 260px; }
.faq-a { font-family: var(--body); font-size: 16px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 22px; max-width: 660px; font-style: italic; text-wrap: pretty; }

/* ---- CTA ------------------------------------------------------------------ */
.cta { position: relative; overflow: hidden; background: var(--surface2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-grid {
  position: absolute; inset: 0; background-image: var(--dot-grid); background-size: 18px 18px; opacity: 0.4;
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000, transparent 70%);
  mask-image: radial-gradient(ellipse at 50% 0%, #000, transparent 70%);
}
.cta-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; padding: 84px 28px 90px; text-align: center; }
.cta-title { font-family: var(--display); font-weight: var(--title-weight); font-size: clamp(34px, 4.4vw, 56px); line-height: 1.02; letter-spacing: var(--title-spacing); margin: 16px 0 0; }
.cta .badge-row { justify-content: center; }
.newsletter { margin: 44px auto 0; padding-top: 30px; border-top: 1px solid var(--line); max-width: 460px; }
.newsletter-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.6px; color: var(--ink-soft); margin-bottom: 14px; }
.newsletter-form { display: flex; gap: 9px; }
.newsletter-input { flex: 1; font-family: var(--body); font-size: 15px; color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 13px 15px; outline: none; }
.newsletter-input:focus { border-color: var(--accent); }
.newsletter-btn { font-family: var(--body); font-weight: 500; font-size: 15px; color: var(--on-accent); background: var(--accent); padding: 13px 22px; border-radius: 10px; cursor: pointer; white-space: nowrap; border: none; }

/* ---- FOOTER --------------------------------------------------------------- */
.footer { max-width: var(--maxw); margin: 0 auto; padding: 58px 28px 40px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.footer-tag { font-family: var(--body); font-size: 15px; line-height: 1.55; color: var(--ink-soft); margin: 16px 0 0; max-width: 300px; font-style: italic; }
.footer-col { display: flex; flex-direction: column; gap: 13px; }
.footer-col-head { font-family: var(--mono); font-size: 10px; letter-spacing: 1.6px; color: var(--ink-faint); text-transform: uppercase; margin-bottom: 3px; }
.footer-link { font-family: var(--body); font-size: 15px; color: var(--ink-soft); text-decoration: none; }
.footer-link:hover { color: var(--ink); }
.footer-base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 24px; }
.footer-copy { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.5px; color: var(--ink-faint); }

/* ---- legal / content pages ------------------------------------------------ */
.prose { max-width: 760px; margin: 0 auto; padding: 64px 28px 90px; }
.prose .kicker { display: block; margin-bottom: 14px; }
.prose h1 { font-family: var(--display); font-weight: var(--title-weight); font-size: clamp(34px, 4.4vw, 52px); letter-spacing: var(--title-spacing); line-height: 1.04; margin: 0 0 10px; }
.prose .updated { font-family: var(--mono); font-size: 11px; letter-spacing: 0.5px; color: var(--ink-faint); margin-bottom: 40px; }
.prose h2 { font-family: var(--display); font-weight: var(--title-weight); font-size: 26px; letter-spacing: -0.3px; margin: 40px 0 0; }
.prose p, .prose li { font-family: var(--body); font-size: 17px; line-height: 1.62; color: var(--ink-soft); text-wrap: pretty; }
.prose p { margin: 14px 0 0; }
.prose ul { margin: 14px 0 0; padding-left: 22px; }
.prose li { margin-top: 6px; }
.prose a { color: var(--accent); }

/* ---- responsive ----------------------------------------------------------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 30px; padding-top: 48px; }
  .hero-preview { order: -1; }
  .demo-stage { grid-template-columns: 1fr; }
  .story-entry { grid-template-columns: 1fr; }
  .story-photo { height: 220px; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .section, .demo-head, .demo-stage, .story, .stats-band-inner, .faq, .footer { padding-left: 20px; padding-right: 20px; }
  .feat-row { grid-template-columns: auto 1fr; }
  .feat-tag { display: none; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .story-head { align-items: flex-start; }
  .story-stats { gap: 20px; }
  .footer-base { flex-direction: column; }
  .phone { transform: scale(0.92); }
}
