/* Velora marketing site (veloracoach.com) */

@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('/fonts/figtree-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}

:root {
  --violet: #7C3AED;
  --violet-dark: #6D28D9;
  --violet-deep: #4C1D95;
  --lilac: #EDE9FE;
  --lilac-mid: #C4B5FD;
  --ink: #0F172A;
  --slate: #64748B;
  --slate-light: #94A3B8;
  --bg: #FBFAFE;
  --card: #FFFFFF;
  --border: #EDE9F7;
  --protein: #4F86F7;
  --carbs: #F97316;
  --fat: #EC4899;
  --fiber: #22C55E;
  --radius: 28px;
  --shadow-card: 0 2px 10px rgba(15, 23, 42, 0.04), 0 12px 40px rgba(124, 58, 237, 0.07);
  --shadow-phone: 0 24px 60px rgba(76, 29, 149, 0.28);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Figtree', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--violet); text-decoration: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 254, 0.94);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.nav-brand img { width: 34px; height: 34px; border-radius: 9px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  font-size: 0.92rem;
}
.nav-links a { color: var(--slate); transition: color 0.15s; }
.nav-links a:hover { color: var(--violet); }
/* `.nav-links a` (0,1,1) outranks `.btn` (0,1,0), so without this the CTA
   label inherits slate on violet and all but disappears. Hover needs it too,
   or the label turns violet-on-violet. */
.nav-links a.btn,
.nav-links a.btn:hover { color: #fff; }
.btn {
  display: inline-block;
  background: var(--violet);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 11px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
}
.btn:hover { background: var(--violet-dark); transform: translateY(-1px); }
.btn-nav {
  padding: 10px 20px;
  font-size: 0.88rem;
  box-shadow: 0 2px 10px rgba(124, 58, 237, 0.35);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 72px 0 40px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -240px;
  right: -180px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.14), transparent 65%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -160px;
  left: -160px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 181, 253, 0.22), transparent 65%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lilac);
  color: var(--violet-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
h1 .grad {
  background: linear-gradient(100deg, var(--violet) 20%, #A855F7 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1.14rem;
  color: var(--slate);
  max-width: 480px;
  margin-bottom: 30px;
}
.hero-sub strong { color: var(--ink); font-weight: 700; }

/* Waitlist form */
.waitlist {
  display: flex;
  gap: 10px;
  max-width: 460px;
  flex-wrap: wrap;
}
.waitlist input {
  flex: 1;
  min-width: 220px;
  font: inherit;
  font-size: 0.98rem;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.waitlist input:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
}
.waitlist .btn { padding: 13px 26px; }
.waitlist-note {
  font-size: 0.82rem;
  color: var(--slate-light);
  margin-top: 12px;
}
.waitlist-msg {
  font-size: 0.92rem;
  font-weight: 600;
  margin-top: 12px;
  display: none;
}
.waitlist-msg.ok { display: block; color: #059669; }
.waitlist-msg.err { display: block; color: #DC2626; }

/* Hero phones */
.hero-visual {
  position: relative;
  min-height: 700px;
}
.phone {
  border-radius: 34px;
  overflow: hidden;
  border: 6px solid #1D1B26;
  background: #09090B;
  box-shadow: var(--shadow-phone);
}
.phone img { width: 100%; height: auto; }
.hero-visual .phone-main {
  position: absolute;
  width: 62%;
  max-width: 290px;
  right: 16%;
  top: 0;
  z-index: 2;
  transform: rotate(2deg);
}
.hero-visual .phone-back {
  position: absolute;
  width: 52%;
  max-width: 240px;
  right: 58%;
  top: 90px;
  z-index: 1;
  transform: rotate(-6deg);
  opacity: 0.96;
}
.float-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  animation: floaty 5s ease-in-out infinite;
}
.float-chip .swatch {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.chip-1 { top: 40px; right: 2%; animation-delay: 0s; }
.chip-2 { bottom: 120px; right: 4%; animation-delay: 1.2s; }
.chip-3 { bottom: 40px; left: 4%; animation-delay: 2.4s; }
/* Sits in the clear band on the left, between chip-1 and chip-3. */
.chip-4 { top: 42%; left: -1%; animation-delay: 3.6s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Ticker ---------- */
.ticker {
  padding: 26px 0 10px;
}
.ticker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.tick {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate);
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 999px;
}

/* ---------- Sections ---------- */
.section { padding: 76px 0; }
.section-label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 12px;
}
h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--slate);
  font-size: 1.05rem;
  max-width: 620px;
}
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* Feature rows */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
}
.feature .phone {
  width: min(300px, 78%);
  margin: 0 auto;
}
.feature-copy .pitch {
  font-size: 1.08rem;
  color: var(--slate);
  margin-bottom: 22px;
}
.feature-copy .pitch strong { color: var(--ink); }
.feature-list { list-style: none; }
.feature-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.97rem;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lilac);
}
.feature-list li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 10px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--violet);
  border-bottom: 2px solid var(--violet);
  transform: rotate(-45deg);
}
.macro-dots { display: flex; gap: 8px; margin-top: 20px; }
.macro-dots .pill {
  font-size: 0.76rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
}
.pill-protein { background: #EEF3FF; color: var(--protein); }
.pill-carbs { background: #FFF7ED; color: var(--carbs); }
.pill-fat { background: #FDF2F8; color: var(--fat); }
.pill-fiber { background: #F0FDF4; color: #16A34A; }

/* ---------- Icons (inline SVG, replaces emoji for cross-platform consistency) ---------- */
.icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}
.tick .icon {
  width: 18px;
  height: 18px;
  color: var(--violet);
  vertical-align: -4px;
  margin-right: 7px;
}
.float-chip .icon {
  width: 15px;
  height: 15px;
  vertical-align: -3px;
  margin-right: 2px;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 40px auto 0; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--violet);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 24px 20px;
  color: var(--slate);
  font-size: 0.95rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    linear-gradient(120deg, rgba(76, 29, 149, 0.78), rgba(109, 40, 217, 0.55) 55%, rgba(139, 92, 246, 0.4)),
    url('/img/bg-premium.webp') center / cover no-repeat,
    linear-gradient(120deg, var(--violet-deep), var(--violet-dark) 55%, #8B5CF6);
  border-radius: var(--radius);
  padding: 64px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}
.cta-band h2 { color: #fff; }
.cta-band p {
  color: var(--lilac);
  max-width: 520px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
}
.cta-band .waitlist { margin: 0 auto; justify-content: center; }
.cta-band .waitlist input { border-color: transparent; }
.cta-band .btn {
  background: #fff;
  color: var(--violet-dark);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}
.cta-band .btn:hover { background: var(--lilac); }
.cta-band .waitlist-note { color: var(--lilac-mid); }
.cta-band .waitlist-msg.ok { color: #A7F3D0; }
.cta-band .waitlist-msg.err { color: #FECACA; }

/* ---------- Footer ---------- */
.footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--border);
  margin-top: 76px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
}
.footer-brand img { width: 30px; height: 30px; border-radius: 8px; }
.footer p { color: var(--slate-light); font-size: 0.85rem; margin-top: 10px; max-width: 320px; }
.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-links h4 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-light);
  margin-bottom: 12px;
}
.footer-links a {
  display: block;
  color: var(--slate);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 9px;
}
.footer-links a:hover { color: var(--violet); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--slate-light);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Legal pages ---------- */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
.legal h1 { font-size: 2rem; margin-bottom: 8px; }
.legal .updated { color: var(--slate-light); font-size: 0.88rem; margin-bottom: 36px; }
.legal h2 { font-size: 1.3rem; margin: 36px 0 12px; }
.legal p, .legal li { color: var(--slate); font-size: 0.97rem; margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.legal strong { color: var(--ink); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-chip { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding-top: 48px; }
  .hero-visual { min-height: 620px; max-width: 480px; margin: 0 auto; width: 100%; }
  .hero-visual .phone-main { right: 6%; }
  .hero-visual .phone-back { right: 54%; }
  .feature { grid-template-columns: 1fr; gap: 36px; padding: 40px 0; }
  .feature.flip .feature-visual { order: -1; }
  .steps { grid-template-columns: 1fr; }
  .nav-links .nav-hide { display: none; }
}

/* ================================================================
   RAILS
   One set of markup, two behaviours: a horizontal scroll-snap rail
   on phones (native, thumb-friendly), an auto-fit grid on desktop
   (scannable, nothing hidden off-axis, copy stays crawlable).
   ================================================================ */

.rail-wrap { position: relative; margin-top: 34px; }

.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(264px, 78vw);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 24px;
  padding: 4px 24px 20px;
  margin: 0 -24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }

/* Right-edge fade: tells the thumb there is more to swipe. */
.rail-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: -24px;
  width: 56px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to right, rgba(251, 250, 254, 0), var(--bg));
}

/* ---------- Rail card ---------- */
.rail-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-card);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.rail-card:hover {
  transform: translateY(-3px);
  border-color: var(--lilac-mid);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05), 0 20px 50px rgba(124, 58, 237, 0.14);
}
@media (prefers-reduced-motion: reduce) {
  .rail-card, .rail-card:hover { transition: none; transform: none; }
}
.rail-tile {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.rail-tile .icon { width: 23px; height: 23px; }
.rail-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 7px;
}
.rail-card p {
  color: var(--slate);
  font-size: 0.93rem;
  margin: 0;
}
.rail-card .rail-kicker {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 9px;
}

/* Semantic tile tints, mirroring the app's icon-tile language. */
.t-violet { background: var(--lilac); color: var(--violet-dark); }
.t-blue   { background: #EEF3FF; color: var(--protein); }
.t-green  { background: #F0FDF4; color: #16A34A; }
.t-orange { background: #FFF7ED; color: var(--carbs); }
.t-pink   { background: #FDF2F8; color: var(--fat); }
.t-slate  { background: #F1F5F9; color: var(--slate); }

/* ---------- Promise sections (white band behind a rail) ---------- */
.promise { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.promise .rail-wrap::after { background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff); }
.promise .rail-card {
  background: linear-gradient(170deg, #FCFBFF, #fff 60%);
  border-color: #E9E3FB;
}

/* ---------- Coming-soon strip ---------- */
.soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #F1F5F9;
  color: var(--slate);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.soon-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--slate-light); }
.soon-strip {
  padding: 26px 0 34px;
  text-align: center;
}
.soon-strip p {
  color: var(--slate);
  font-size: 1.02rem;
  max-width: 620px;
  margin: 0 auto;
}
.soon-strip p strong { color: var(--ink); font-weight: 800; }

@media (min-width: 900px) {
  .rail {
    grid-auto-flow: row;
    grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
    grid-auto-columns: auto;
    overflow: visible;
    scroll-snap-type: none;
    padding: 0;
    margin: 0;
    gap: 20px;
  }
  .rail-wrap::after { display: none; }

}

/* Four floating chips crowd a narrow hero. Drop the least distinctive one
   (the fiber goal) so the allergen chip keeps its space on small phones. */
@media (max-width: 620px) {
  .float-chip { font-size: 0.76rem; padding: 8px 13px; }
  .chip-2 { display: none; }
  .chip-4 { top: 38%; left: -3%; }
}

/* ---------- Six-card grid: force 3 + 3 rather than auto-fit's 4 + 2 ---------- */
@media (min-width: 900px) {
  .rail-3up { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Cycle preview (illustration, not a screenshot) ----------
   Lives inside a .phone frame so it reads as the app, like the other
   feature rows. Swap for a real screenshot once the feature ships. */
.phone svg { width: 100%; height: auto; display: block; }
/* Marks a phone frame whose contents are drawn, not captured. If this ever
   becomes a real screenshot, drop the class and the inline <svg> together. */
.phone-mock { background: #09090B; }

.phase-list { list-style: none; margin-top: 4px; }
.phase-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 11px;
  font-size: 0.96rem;
  color: var(--slate);
}
.phase-list li strong {
  color: var(--ink);
  font-weight: 800;
  margin-right: 6px;
}
.phase-dot {
  position: absolute;
  left: 0;
  top: 9px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.phase-note {
  margin-top: 18px;
  font-size: 0.86rem;
  color: var(--slate-light);
  max-width: 440px;
}
.feature-copy .soon-badge { margin-bottom: 16px; }

/* ---------- The one dark band ----------
   Every other section sits between #FBFAFE and #FFF, a 1% difference that
   gave the page no rhythm. Privacy is the right place to break it: dark
   reads as serious, and it lands just before pricing. */
.band-dark {
  background: linear-gradient(160deg, #171331 0%, #100E20 55%, #1C1536 100%);
  color: #fff;
}
.band-dark h2 { color: #fff; }
.band-dark .section-label { color: var(--lilac-mid); }
.band-dark .rail-card {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow: none;
}
.band-dark .rail-card h3 { color: #fff; }
.band-dark .rail-card p { color: #B9B4C7; }
.band-dark .rail-card:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(196, 181, 253, 0.45);
  box-shadow: none;
}
.band-dark .rail-tile { background: rgba(255, 255, 255, 0.09); }
.band-dark .t-violet { color: #C4B5FD; }
.band-dark .t-blue   { color: #93B4FF; }
.band-dark .t-pink   { color: #F9A8D4; }
.band-dark .t-green  { color: #6EE7A8; }
.band-dark .t-orange { color: #FBBF77; }
.band-dark .t-slate  { color: #B9B4C7; }
.band-dark .rail-wrap::after {
  background: linear-gradient(to right, rgba(16, 14, 32, 0), #100E20);
}

/* ---------- Founder note ----------
   Reads as a letter, not a marketing block: narrow measure, roomy padding,
   one heavier opening line. Sits after the dark privacy band so the page
   goes serious, then human, then asks for money. */
.story {
  max-width: 720px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 46px 48px;
}
.story p {
  color: var(--slate);
  font-size: 1.02rem;
  margin-bottom: 16px;
}
.story p:last-child { margin-bottom: 0; }
.story strong { color: var(--ink); font-weight: 800; }
/* Two classes (0,2,0) so this beats `.story p` (0,1,1) without !important. */
.story .story-lead {
  font-size: 1.36rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.34;
  margin-bottom: 22px;
}
.story .story-sign {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.story-name {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.story-role {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--slate-light);
}

@media (max-width: 620px) {
  .story { padding: 32px 26px; }
  .story .story-lead { font-size: 1.18rem; }
}
