/* LEELALU design system v1 · Style variant C: Golden Hour (Lu's Own Light) */
/* Every surface is a tint of Lu's core diluted into cream; the hero sunrise radiates from Lu. */

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-var-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Literata';
  src: url('../fonts/literata-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Golden Hour tokens */
  --page: #FFF9EF;          /* page_bg */
  --surface: #FFFDF6;       /* cards, plans */
  --surface-alt: #FFF2DC;   /* alternating warm bands */
  --text: #2A1F16;          /* 15.35:1 on page */
  --text-soft: #5C4C3B;     /* 7.86:1 on page */
  --gold-link: #8A4E0C;     /* eyebrow + links, 5.13:1 even on deepest hero gold */
  --accent: #EFB15A;        /* accent_primary */
  --accent-deep: #D89033;   /* accent_secondary */
  --cta-text: #3A2418;      /* 10.69:1 / 7.68:1 on CTA gradient stops */
  --core-glow: #FFF2C7;
  --warm-core: #FFD97A;
  --shell: #EFB15A;
  --line: rgba(58, 36, 24, 0.30);
  /* C+ : sage marks verified/review status (evidence = safe), per founder decision 2026-08-02 */
  --verified: #41604B;      /* 6.9:1 on surface, 6.4:1 on page */
  /* Compatibility aliases so page-scoped styles resolve on the light theme */
  --text-on-dark: var(--text);
  --text-on-dark-soft: var(--text-soft);
  --text-on-light: var(--text);
  --text-on-light-soft: var(--text-soft);
  --amber: var(--accent-deep);
  --amber-text: var(--gold-link);
  --paper: var(--surface);
  --ivory: var(--page);
  --halo: #F2B24E;
  --eye: #3A2418;
  --ink: var(--night-bg);
  --ink-soft: #1A130E;
  --line-dark: var(--line-night);
  --line-light: var(--line);
  --shell-highlight: #F7E2B4;
  /* Night moment (the phone demo keeps 3am) */
  --night-bg: #0F0B09;
  --night-text: #F3ECDC;
  --night-text-soft: #CBBFA8;
  --night-source: #F2B24E;
  --line-night: rgba(242, 178, 78, 0.22);
  /* Layout (unchanged) */
  --shell-max: 1180px;
  --gutter: 24px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --s-1: 8px; --s-2: 12px; --s-3: 16px; --s-4: 24px;
  --s-5: 32px; --s-6: 48px; --s-7: 64px; --s-8: 96px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Literata', Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.005em;
}
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: clamp(20px, 2.6vw, 26px); line-height: 1.2; }
p { max-width: 68ch; }

a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.shell { max-width: var(--shell-max); margin: 0 auto; padding: 0 var(--gutter); }
@media (max-width: 640px) { .shell { padding: 0 16px; } }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-link);
}
.dark .eyebrow, .band-dark .eyebrow { color: var(--gold-link); }

/* ---------- Surfaces ---------- */
/* In Golden Hour the former dark sections live on Lu's light. */
.dark { background: var(--page); color: var(--text); }
.paper { background: #FFF7E9; }
.ivory { background: var(--page); }

/* ---------- Header ---------- */
.site-head {
  position: relative;
  z-index: 10;
  background: var(--page);
  color: var(--text);
  border-bottom: 1px solid var(--line);
}
.site-head .shell {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  min-height: 72px;
}
.brand {
  font-family: 'Literata', Georgia, serif;
  font-size: 21px;
  letter-spacing: 0.16em;
  color: var(--gold-link);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
}
.brand img { width: 28px; height: 28px; }
.nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
  align-items: center;
}
.nav a {
  text-decoration: none;
  font-size: 15px;
  color: var(--text-soft);
  padding: 10px 14px;
  border-radius: var(--r-sm);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav a:hover, .nav a:focus-visible { color: var(--text); background: rgba(239, 177, 90, 0.16); }
.nav a[aria-current="page"] { color: var(--gold-link); text-decoration: underline; text-underline-offset: 6px; }
.nav .cta { margin-left: 10px; }
.nav a.cta, .nav a.cta:hover, .nav a.cta:focus-visible {
  color: var(--cta-text);
  background: linear-gradient(180deg, var(--warm-core), var(--shell));
}
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: 15px;
  padding: 10px 16px;
  min-height: 44px;
  cursor: pointer;
}
@media (max-width: 860px) {
  .no-js .nav { display: flex; position: static; flex-direction: column; align-items: stretch; }
  .no-js .nav-toggle { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; }
  .nav {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--page);
    flex-direction: column;
    align-items: stretch;
    padding: var(--s-3) var(--gutter) var(--s-4);
    border-bottom: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px; }
  .nav .cta { margin-left: 0; margin-top: var(--s-2); justify-content: center; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
.btn:focus-visible, .nav a:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold-link);
  outline-offset: 2px;
}
.btn-primary {
  background: linear-gradient(180deg, var(--warm-core), var(--shell));
  color: var(--cta-text);
}
/* Light-driven motion: hovers brighten instead of moving. */
.btn-primary:hover { box-shadow: 0 6px 28px rgba(239, 177, 90, 0.5); }
.btn-ghost-dark {
  border-color: var(--line);
  color: var(--text);
  background: transparent;
}
.btn-ghost-dark:hover { border-color: var(--accent-deep); box-shadow: 0 4px 20px rgba(239, 177, 90, 0.3); }
.btn-ghost-light {
  border-color: var(--line);
  color: var(--text);
  background: transparent;
}
.btn-ghost-light:hover { border-color: var(--accent-deep); box-shadow: 0 4px 20px rgba(239, 177, 90, 0.3); }

/* ---------- Hero: dawn light emanating from Lu ---------- */
.hero {
  position: relative;
  overflow: hidden;
  /* Sunrise radiates from Lu's position in the right column. */
  background: radial-gradient(90% 80% at 68% 42%, #FFF6E3 0%, #FFEDCD 55%, #FCDFAE 100%);
}
.hero .shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: var(--s-6);
  padding-top: var(--s-7);
  padding-bottom: var(--s-7);
  min-height: 78vh;
}
.hero h1 {
  font-size: clamp(34px, 5.4vw, 66px);
  color: var(--text);
  margin: var(--s-3) 0 var(--s-4);
}
.hero .lede {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-soft);
  margin-bottom: var(--s-5);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-bottom: var(--s-4); }
.trust-line {
  font-size: 14px;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}
.trust-line span { color: var(--gold-link); }

.lu-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Halo recolored to sit on light: warmer, denser core so the glow reads on cream. */
.lu-stage .lu-halo { display: none; }
/* v3.0 §2-3: soft neutral contact shadow BENEATH Lu only. Separate element, never a
   filter on Lu itself, never around the silhouette. */
.lu-stage .lu-ground {
  width: min(200px, 40%);
  height: 18px;
  margin-top: -10px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(60, 50, 40, 0.18) 0%, rgba(60, 50, 40, 0.07) 55%, rgba(60, 50, 40, 0) 100%);
  pointer-events: none;
}
.lu-stage img {
  position: relative;
  width: min(340px, 62%);
  animation: lu-breath 4.75s ease-in-out infinite;
  transform-origin: 50% 88%;
  /* v2.1 zero-halo law: no filters, shadows or glow may touch Lu's silhouette. */
  filter: none;
}
@keyframes lu-breath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}
@keyframes halo-pulse {
  0%, 100% { opacity: 0.82; }
  50% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .lu-stage img { animation: none; }
  * { transition: none !important; }
}
@media (max-width: 860px) {
  .hero {
    /* Lu stacks on top on mobile; the dawn re-centers above the fold. */
    background: radial-gradient(120% 46% at 50% 18%, #FFF6E3 0%, #FFEDCD 55%, #FCDFAE 100%);
  }
  .hero .shell {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: var(--s-6);
    text-align: left;
  }
  .lu-stage { order: -1; }
  .lu-stage img { width: min(240px, 58%); }
}

/* ---------- Sections ---------- */
.section { padding: var(--s-8) 0; }
@media (max-width: 640px) { .section { padding: var(--s-7) 0; } }
.section-head { max-width: 720px; margin-bottom: var(--s-6); }
.section-head p { color: var(--text-soft); margin-top: var(--s-3); }
.dark .section-head p, .band-dark .section-head p { color: var(--text-soft); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--s-4);
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--s-5) var(--s-4);
}
.card .num {
  font-family: 'Literata', Georgia, serif;
  font-size: 15px;
  color: var(--gold-link);
  letter-spacing: 0.1em;
}
.card h3 { margin: var(--s-2) 0 var(--s-2); }
.card p { font-size: 15.5px; color: var(--text-soft); }
.card a { color: var(--gold-link); font-weight: 600; text-decoration: none; font-size: 15px; display: inline-flex; align-items: center; min-height: 44px; }
.card a:hover { text-decoration: underline; }

.quiet-strip {
  margin-top: var(--s-5);
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-link);
  background: rgba(239, 177, 90, 0.12);
  border-radius: 999px;
  padding: 12px var(--s-4);
}

/* ---------- Calm Loop demo: the 3am night moment ---------- */
/* The section stays in daylight; the phone alone holds the night. */
.demo-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: var(--s-6);
  align-items: center;
}
@media (max-width: 860px) { .demo-wrap { grid-template-columns: 1fr; } }
.phone {
  width: min(320px, 100%);
  margin: 0 auto;
  background: var(--night-bg);
  border: 1px solid var(--line-night);
  border-radius: 34px;
  padding: 18px 16px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  color: var(--night-text);
  position: relative;
  overflow: hidden;
  /* At 3am the world goes dark. Lu stays lit: the phone glows on the cream page. */
  box-shadow: 0 24px 64px rgba(58, 36, 24, 0.22), 0 0 72px rgba(242, 178, 78, 0.28);
}
.phone .phone-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--night-text-soft);
  margin-bottom: 14px;
}
.phone .phone-top img { width: 22px; height: auto; }
.scene { display: none; flex: 1; flex-direction: column; gap: 12px; }
.scene.active { display: flex; animation: scene-in 0.6s ease; }
@keyframes scene-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .scene.active { animation: none; } }
.bubble {
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-size: 14.5px;
  line-height: 1.5;
  max-width: 92%;
}
.bubble-parent { background: rgba(247, 242, 232, 0.12); align-self: flex-end; }
.bubble-lu { background: rgba(255, 217, 122, 0.14); border: 1px solid var(--line-night); align-self: flex-start; }
.bubble-source {
  font-size: 12.5px;
  color: var(--night-source);
  border-top: 1px dashed var(--line-night);
  margin-top: 10px;
  padding-top: 8px;
}
.scene .scene-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--night-text-soft);
}
.scene-end {
  margin-top: auto;
  text-align: center;
  font-size: 13px;
  color: var(--night-text-soft);
  padding: 12px 0 4px;
}
/* Focus inside the night phone stays visible on dark. */
.phone :focus-visible { outline-color: var(--night-source); }
.demo-caption { min-height: 52px; margin-top: var(--s-3); font-size: 15px; color: var(--text-soft); }
.demo-controls { display: flex; gap: var(--s-2); margin-top: var(--s-2); flex-wrap: wrap; }
.demo-progress { display: flex; gap: 6px; margin-top: var(--s-3); }
.demo-progress i {
  width: 34px; height: 4px; border-radius: 2px;
  background: var(--line);
}
.demo-progress i.on { background: var(--gold-link); }

/* Static storyboard fallback (reduced motion / no JS) */
.storyboard { display: none; }
.no-js .storyboard, .rm .storyboard { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--s-3); grid-column: 1 / -1; }
.no-js .demo-live, .rm .demo-live, .no-js .demo-side, .rm .demo-side { display: none; }

/* ---------- Waitlist band: warm dawn, not night ---------- */
.band-dark {
  background:
    radial-gradient(70% 90% at 50% 120%, rgba(255, 217, 122, 0.55), transparent 70%),
    var(--surface-alt);
  color: var(--text);
  border-top: 1px solid var(--line);
}
.band-inner {
  padding: var(--s-7) 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-5);
  justify-content: space-between;
}
.band-inner h2 { max-width: 560px; }
.band-inner .sub { color: var(--text-soft); margin-top: var(--s-2); font-size: 15.5px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: var(--s-4); max-width: 520px; }
label.field { display: grid; gap: 8px; font-size: 14.5px; font-weight: 600; }
.field input[type="email"], .field select, .field input[type="text"] {
  font: inherit;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  width: 100%;
}
.check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--text-soft);
}
.check input { width: 22px; height: 22px; margin-top: 2px; accent-color: var(--accent-deep); }
.form-note { font-size: 13.5px; color: var(--text-soft); }
.form-status { font-size: 15px; font-weight: 600; min-height: 24px; }
.form-status.ok { color: #2E6B3F; }
.form-status.err { color: #A33B2E; }

/* ---------- Tables (pricing) ---------- */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--s-4); align-items: stretch; }
.plan {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.plan.reco { border-color: var(--accent-deep); box-shadow: 0 8px 32px rgba(216, 144, 51, 0.18); }
.plan .price { font-family: 'Literata', Georgia, serif; font-size: 40px; }
.plan .per { font-size: 15px; color: var(--text-soft); }
.plan ul { list-style: none; display: grid; gap: 10px; font-size: 15px; }
.plan ul li { padding-left: 26px; position: relative; }
.plan ul li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 14px; height: 14px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--core-glow), var(--shell));
}
.tag {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--verified);
  border: 1px solid var(--verified);
  border-radius: 999px;
  padding: 4px 12px;
}

/* ---------- Info tables ---------- */
.table-scroll { overflow-x: auto; }
table.info { border-collapse: collapse; width: 100%; font-size: 15px; min-width: 520px; }
table.info th, table.info td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
table.info th { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-soft); }

/* ---------- Footer: deep warm cream, all links AA ---------- */
.site-foot { background: var(--surface-alt); color: var(--text-soft); font-size: 14.5px; border-top: 1px solid var(--line); }
.site-foot .shell { padding-top: var(--s-6); padding-bottom: var(--s-6); display: grid; gap: var(--s-4); }
.foot-tag { color: var(--gold-link); letter-spacing: 0.12em; text-transform: uppercase; font-size: 12.5px; }
.foot-links { display: flex; flex-wrap: wrap; gap: var(--s-4); }
.foot-links a { color: var(--gold-link); text-decoration: none; min-height: 44px; display: inline-flex; align-items: center; }
.foot-links a:hover { color: var(--text); text-decoration: underline; }
.foot-links-2 { margin-top: calc(-1 * var(--s-3)); }
.foot-links-2 a { font-size: 14.5px; color: var(--text-soft); }
.foot-ai { border-top: 1px solid var(--line); padding-top: var(--s-3); max-width: 68ch; }
.verified { color: var(--verified); font-weight: 600; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-2 { margin-top: var(--s-2); } .mt-3 { margin-top: var(--s-3); }
.mt-4 { margin-top: var(--s-4); } .mt-5 { margin-top: var(--s-5); } .mt-6 { margin-top: var(--s-6); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--warm-core); color: var(--cta-text);
  padding: 12px 18px; border-radius: 0 0 var(--r-sm) 0;
  z-index: 100; text-decoration: none; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* Focus visibility: the deep gold ring works on every light surface in this theme
   (6.31:1 on page, 5.13:1 on the deepest hero gold; 3:1 non-text requirement met). */
.ivory :focus-visible, .paper :focus-visible, .card :focus-visible, .form-grid :focus-visible {
  outline-color: var(--gold-link);
}


/* Compact subpage intros share the golden-hour light */
.trust-hero, .price-hero, .learn-hero, .tools-hero {
  background: linear-gradient(180deg, #FFF6E3 0%, #FFEDCD 100%);
}

/* ============ C+ feature pack (founder: "Внедряй все", 2026-08-02) ============ */

@font-face {
  font-family: 'Caveat';
  src: url('../fonts/caveat-600-latin.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* 3 · Promise band under the nav */
.promise-band {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}
.promise-band .shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.promise-band .promise {
  font-family: 'Literata', Georgia, serif;
  font-size: 14.5px;
  color: var(--text);
}
.promise-band .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-soft);
}
.promise-band .chip::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--verified);
}
@media (max-width: 640px) { .promise-band .chip:nth-last-of-type(1) { display: none; } }

/* 1 · Stage pills in the hero */

/* 2 · Evidence mini-cards under Lu */
.evidence-stack {
  display: grid;
  gap: 10px;
  width: min(320px, 92%);
  margin: 14px auto 0;
}
.mini-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.45;
  box-shadow: 0 10px 30px rgba(138, 78, 12, 0.12);
}
.mini-card:first-child { transform: rotate(-2deg); }
.mini-card:last-child { transform: rotate(1.4deg); margin-left: 18px; }
.mini-card .mini-src {
  display: block;
  margin-top: 6px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--verified);
}
@media (max-width: 860px) {
  .mini-card:first-child, .mini-card:last-child { transform: none; margin-left: 0; }
}

/* 4 · One handwritten line beside Lu */
.script-note {
  position: absolute;
  top: 4%;
  left: -13%;
  font-family: 'Caveat', cursive;
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--gold-link);
  transform: rotate(-5deg);
  white-space: nowrap;
}
.script-note svg { display: block; margin: 2px auto 0; width: 46px; height: 26px; }
@media (max-width: 860px) {
  .script-note { position: static; transform: rotate(-3deg); text-align: center; margin-top: 4px; }
}

/* 5 · Keepsake polaroids */
.keepsake-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5);
  justify-content: center;
  align-items: stretch;
}
.polaroid {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 14px 18px;
  width: 240px;
  box-shadow: 0 14px 40px rgba(138, 78, 12, 0.14);
}
.polaroid:nth-child(1) { transform: rotate(-3deg); }
.polaroid:nth-child(2) { transform: rotate(1.5deg) translateY(8px); }
.polaroid:nth-child(3) { transform: rotate(3.5deg); }
.polaroid .ph {
  background:
    radial-gradient(70% 60% at 50% 45%, #FFF2C7, #FFE3AE 78%, #FCDFAE 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 0 10px;
}
.polaroid .ph img { width: 96px; height: auto; }
.polaroid .cap {
  font-family: 'Caveat', cursive;
  font-size: 21px;
  color: var(--text);
  text-align: center;
  margin-top: 10px;
  line-height: 1.2;
}
.polaroid .cap small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-link);
  margin-top: 6px;
}
@media (prefers-reduced-motion: no-preference) {
  .polaroid { transition: transform 0.25s ease, box-shadow 0.25s ease; }
  .polaroid:hover { transform: rotate(0deg) translateY(-4px); box-shadow: 0 18px 48px rgba(138, 78, 12, 0.2); }
}

/* ============ v1 final order · CTA-001 additions (2026-08-02, additive only) ============ */

/* Honest state chip near the demo heading: "Preview today · Billing closed". */
.status-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(58, 36, 24, 0.05);
  color: var(--text-soft);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-head p.status-chip { color: var(--text-soft); }

/* One-line lead-in above the stage cards ("Choose your stage."). */
.section-head p.stage-leadin {
  color: var(--text);
  font-weight: 600;
  font-size: 15.5px;
}

/* ============ claim drawers (EVIDENCE-002) · shared pattern, additive only ============ */
/* Markup: <details class="claim mini-card"><summary>chip</summary><div class="claim-drawer">…</div></details>
   Works without JS via native details/summary. The summary keeps the mini-card look;
   the drawer opens below on the cream paper background. */
.claim > summary {
  display: block;
  cursor: pointer;
  list-style: none;
}
.claim > summary::-webkit-details-marker { display: none; }
.claim .claim-text { display: block; }
/* Small disclosure hint: a caret that flips when the drawer is open. */
.claim > summary::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 8px 2px 0;
  border-right: 2px solid var(--gold-link);
  border-bottom: 2px solid var(--gold-link);
  transform: rotate(45deg);
}
.claim[open] > summary::after { transform: rotate(-135deg); margin-top: 10px; }
/* Keyboard focus stays visible on the summary chip. */
.claim > summary:focus-visible {
  outline: 2px solid var(--gold-link);
  outline-offset: 2px;
}
/* An open drawer straightens the tilted hero chip so the layout never skews. */
.claim[open] { transform: none; margin-left: 0; }
.claim-drawer {
  margin-top: 10px;
  padding: 12px 14px;
  background: #FFF7E9; /* cream paper, same as .paper sections */
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: left;
}
.claim-drawer .cd-passage {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 8px;
}
.claim-drawer .cd-meta {
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-soft);
  overflow-wrap: anywhere;
}
.claim-drawer .cd-meta a { color: var(--gold-link); font-weight: 600; }
