/* IRONOATH — landing + legal pages
   Dark forge aesthetic. One stylesheet, three pages.

   SECTIONS:
   1.  Tokens + reset + base typography
   2.  Legacy shared chrome (.nav, .nav-brand, .nav-links, .container, .footer)
       — preserved so privacy.html and terms.html still render correctly.
   3.  Legal page (.legal)
   4.  Landing — film grain
   5.  Landing — top nav
   6.  Landing — hero + device mockup
   7.  Landing — anchors (what you swear to)
   8.  Landing — feature pillars
   9.  Landing — manifesto
   10. Landing — FAQ
   11. Landing — final CTA
   12. Landing — rich footer
   13. Landing — reveal animation + reduced-motion
   14. Mobile
*/

/* ===================================================================
   1. Tokens + reset
=================================================================== */

:root {
  --bg:        #0B0908;
  --bg-soft:   #14100E;
  --bg-card:   #161210;
  --ink:       #F2E8D8;
  --ink-soft:  #A89B86;
  --ink-mute:  #6B6055;
  --ember-1:   #FFD78F;
  --ember-2:   #D4A24B;
  --ember-3:   #E66B2A;
  --ember-4:   #4A2410;
  --line:      #211A14;
  --line-2:    #2A1E14;
  --serif: "Cinzel", "Trajan Pro", "Times New Roman", serif;
  --sans:  -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", system-ui, sans-serif;
  --shadow-deep: 0 30px 80px rgba(0,0,0,0.55), 0 4px 12px rgba(0,0,0,0.4);
  --shadow-card: 0 12px 32px rgba(0,0,0,0.45);
}

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

html { scroll-behavior: smooth; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(900px 700px at 50% -10%, rgba(230, 107, 42, 0.10), transparent 70%),
    radial-gradient(700px 500px at 100% 100%, rgba(212, 162, 75, 0.05), transparent 70%),
    var(--bg);
  background-attachment: fixed;
}

a { color: var(--ember-2); text-decoration: none; }
a:hover { color: var(--ember-1); }

/* ===================================================================
   2. Legacy shared chrome — used by privacy.html / terms.html
=================================================================== */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-brand {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 18px;
  color: var(--ink);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav-brand:hover { color: var(--ink); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--ink-soft);
  font-size: 14px;
  letter-spacing: 0.05em;
}
.nav-links a:hover { color: var(--ink); }

.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 40px;
}
.container-wide {
  max-width: 1120px;
}

/* ===================================================================
   3. Legal pages
=================================================================== */

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 32px 120px;
}
.legal h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 42px;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  background: linear-gradient(180deg, #FFD78F 0%, #D4A24B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.legal .updated {
  color: var(--ink-mute);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.legal h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember-2);
  margin-top: 48px;
  margin-bottom: 16px;
}
.legal p {
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.legal strong { color: var(--ink); }
.legal a { border-bottom: 1px solid var(--ember-4); }

/* Footer used by legal pages (simple variant) */
.footer:not(.footer-rich) {
  border-top: 1px solid var(--line);
  padding: 40px;
  text-align: center;
  color: var(--ink-mute);
  font-size: 13px;
  letter-spacing: 0.08em;
}
.footer:not(.footer-rich) .footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 16px;
}
.footer:not(.footer-rich) .footer-links a {
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}
.footer:not(.footer-rich) .footer-links a:hover { color: var(--ember-2); }
.footer:not(.footer-rich) .footer-mark {
  font-family: var(--serif);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ===================================================================
   LANDING — PARCHMENT THEME (scoped to body.landing)

   Round 2 redesign: cream/parchment field-manual aesthetic. Deep ink
   text on warm paper. Ember accents reserved for the orb, the primary
   CTA, and a single inverted "manifesto" band where the dark forge
   gets to make a guest appearance against the page.

   Legal pages (privacy.html / terms.html) DO NOT carry .landing on the
   body, so they continue to render against the legacy dark tokens
   defined in section 1 above. Nothing in this block leaks to them.
=================================================================== */

body.landing {
  /* Parchment palette */
  --paper:      #F4EFE5;
  --paper-2:    #EAE3D3;
  --paper-3:    #DDD3BD;
  --ink:        #1A1410;
  --ink-soft:   #4A3F33;
  --ink-mute:   #8A7E6E;
  --rule:       #D8CFBE;
  --rule-soft:  #E4DCC8;
  /* Ember (kept identical — earns its way against the cream) */
  --ember-1:    #FFD78F;
  --ember-2:    #D4A24B;
  --ember-3:    #E66B2A;
  --ember-4:    #4A2410;
  --shadow-paper: 0 1px 0 rgba(255,255,255,0.6) inset, 0 10px 28px rgba(60, 45, 25, 0.10), 0 2px 6px rgba(60, 45, 25, 0.06);
  --shadow-device: 0 30px 60px rgba(40, 25, 10, 0.28), 0 12px 24px rgba(40, 25, 10, 0.18), 0 2px 6px rgba(40, 25, 10, 0.12);

  background: var(--paper);
  color: var(--ink);
}

/* Subtle horizontal paper striations + warm noise. */
body.landing .paper-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.55;
  mix-blend-mode: multiply;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(120, 95, 60, 0.025) 0px,
      rgba(120, 95, 60, 0.025) 1px,
      transparent 1px,
      transparent 3px
    ),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.45  0 0 0 0 0.35  0 0 0 0 0.22  0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: auto, 200px 200px;
}

/* ===================================================================
   Landing — top nav (sticky, parchment)
=================================================================== */

body.landing .topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 229, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--rule);
}
body.landing .topnav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
body.landing .nav-brand {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 16px;
  color: var(--ink);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
body.landing .nav-brand:hover { color: var(--ink); }
body.landing .nav-brand-word { line-height: 1; }
body.landing .nav-brand-mark { display: inline-flex; }
body.landing .topnav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
body.landing .topnav-links a {
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
body.landing .topnav-links a:hover { color: var(--ink); }
body.landing .topnav-links .cta-pill {
  font-size: 11px;
  padding: 9px 18px;
  letter-spacing: 0.18em;
}

@media (max-width: 720px) {
  body.landing .topnav-inner { padding: 12px 20px; }
  body.landing .topnav-links { gap: 16px; }
  body.landing .topnav-links a:not(.cta-pill) { display: none; }
}

/* ===================================================================
   Landing — CTAs
=================================================================== */

body.landing .cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
  border: none;
  color: var(--ink);
  position: relative;
}
body.landing .cta-primary {
  color: #1A0F05;
  background: linear-gradient(180deg, #FFD78F 0%, #D4A24B 55%, #E66B2A 100%);
  box-shadow:
    0 1px 0 rgba(255, 230, 180, 0.6) inset,
    0 -1px 0 rgba(120, 50, 15, 0.4) inset,
    0 14px 32px rgba(230, 107, 42, 0.32),
    0 4px 10px rgba(230, 107, 42, 0.22);
}
body.landing .cta-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}
body.landing .cta.disabled,
body.landing .cta[aria-disabled="true"] {
  cursor: not-allowed;
  filter: saturate(0.7);
  opacity: 0.85;
}
body.landing .cta.disabled:hover,
body.landing .cta[aria-disabled="true"]:hover {
  transform: none;
  filter: saturate(0.7);
}
body.landing .cta-pill {
  background: linear-gradient(180deg, #FFD78F 0%, #D4A24B 60%, #E66B2A 100%);
  color: #1A0F05;
  box-shadow:
    0 1px 0 rgba(255, 230, 180, 0.6) inset,
    0 4px 12px rgba(230, 107, 42, 0.25);
}

/* ===================================================================
   Landing — hero
=================================================================== */

body.landing .hero {
  text-align: center;
  padding: 64px 24px 80px;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}

body.landing .hero-orb-wrap {
  width: clamp(140px, 18vw, 180px);
  height: clamp(140px, 18vw, 180px);
  margin: 0 auto 28px;
  position: relative;
  animation: orb-breathe 6s ease-in-out infinite;
}
body.landing .hero-orb {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 40px rgba(230, 107, 42, 0.28));
}

@keyframes orb-breathe {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 40px rgba(230, 107, 42, 0.24)); }
  50%      { transform: scale(1.03); filter: drop-shadow(0 0 70px rgba(230, 107, 42, 0.45)); }
}
@media (prefers-reduced-motion: reduce) {
  body.landing .hero-orb-wrap { animation: none; }
}

body.landing .hero-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(48px, 8vw, 88px);
  letter-spacing: 0.14em;
  line-height: 1;
  margin-bottom: 20px;
  color: var(--ink);
}
body.landing .hero-tagline {
  font-family: var(--serif);
  font-size: clamp(17px, 2.2vw, 21px);
  letter-spacing: 0.10em;
  color: var(--ink-soft);
  margin-bottom: 24px;
  font-style: italic;
}
body.landing .hero-sub {
  max-width: 560px;
  margin: 0 auto 36px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}
body.landing .cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
body.landing .cta-note {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 56px;
}

/* Device — real screenshot floated on parchment. Thin black bezel adds
   just enough chrome to read as "a screen" without faking iPhone hardware
   (the screenshots already include the iOS status bar / home indicator). */
body.landing .device {
  max-width: 320px;
  margin: 0 auto;
}
body.landing .device-frame {
  background: #0B0908;
  border-radius: 44px;
  padding: 8px;
  box-shadow: var(--shadow-device);
  border: 1px solid rgba(0, 0, 0, 0.4);
}
body.landing .device-frame-sm {
  max-width: 280px;
  border-radius: 38px;
  padding: 7px;
}
body.landing .device-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 36px;
}
body.landing .device-frame-sm .device-shot {
  border-radius: 32px;
}

/* ===================================================================
   Landing — sections, containers, eyebrows
=================================================================== */

body.landing .section {
  padding: 96px 0;
}
body.landing .section-tight { padding: 72px 0; }

body.landing .container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}
body.landing .container-wide {
  max-width: 1120px;
}

body.landing .eyebrow {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ember-3);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
body.landing .eyebrow::before,
body.landing .eyebrow-center::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--ember-3);
  opacity: 0.55;
}
body.landing .eyebrow-center {
  display: flex;
  justify-content: center;
  text-align: center;
}
body.landing .eyebrow-center::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--ember-3);
  opacity: 0.55;
  margin-right: 10px;
  display: inline-block;
}

body.landing .section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 48px;
  max-width: 760px;
}
body.landing #pillars .section-title,
body.landing #faq .section-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================================================
   Landing — anchors (What you swear to)
=================================================================== */

body.landing .anchors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-paper);
}
body.landing .anchor {
  background: var(--paper);
  padding: 28px 24px;
  position: relative;
  transition: background 0.2s ease;
}
body.landing .anchor::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 24px;
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, var(--ember-3), transparent);
}
body.landing .anchor:hover {
  background: var(--paper-2);
}
body.landing .anchor-label {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 18px;
  margin-bottom: 10px;
}
body.landing .anchor p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 880px) {
  body.landing .anchors { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  body.landing .anchors { grid-template-columns: 1fr; }
}

/* ===================================================================
   Landing — feature pillars (alternating)
=================================================================== */

body.landing .feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 96px;
}
body.landing .feature:last-child { margin-bottom: 0; }
body.landing .feature-reverse .feature-copy { order: 2; }
body.landing .feature-reverse .feature-art  { order: 1; }

body.landing .feature-glyph {
  margin-bottom: 16px;
}
body.landing .feature-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
}
body.landing .feature-body {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}
body.landing .feature-list {
  list-style: none;
  padding: 0;
}
body.landing .feature-list li {
  position: relative;
  padding: 8px 0 8px 22px;
  color: var(--ink-soft);
  font-size: 15px;
  border-top: 1px solid var(--rule-soft);
}
body.landing .feature-list li:last-child { border-bottom: 1px solid var(--rule-soft); }
body.landing .feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 1px;
  background: var(--ember-3);
}

body.landing .feature-art {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 880px) {
  body.landing .feature {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 72px;
  }
  body.landing .feature-reverse .feature-copy { order: 1; }
  body.landing .feature-reverse .feature-art  { order: 2; }
}

/* ===================================================================
   Landing — manifesto (the ONE dark band on a parchment page)
=================================================================== */

body.landing .manifesto {
  background:
    radial-gradient(900px 600px at 50% 50%, rgba(230, 107, 42, 0.10), transparent 70%),
    linear-gradient(180deg, #0F0B09 0%, #161210 100%);
  color: #E8DCC4;
  padding: 120px 24px;
  text-align: center;
  position: relative;
  border-top: 1px solid #2A1E14;
  border-bottom: 1px solid #2A1E14;
}
body.landing .manifesto::before,
body.landing .manifesto::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 162, 75, 0.4), transparent);
}
body.landing .manifesto::before { top: 12px; }
body.landing .manifesto::after  { bottom: 12px; }

body.landing .manifesto .container {
  max-width: 760px;
  position: relative;
}
body.landing .manifesto-mark {
  font-family: var(--serif);
  font-size: 100px;
  line-height: 0.5;
  color: var(--ember-2);
  opacity: 0.7;
  display: block;
}
body.landing .manifesto-mark-close {
  text-align: right;
}
body.landing .manifesto-body {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: #E8DCC4;
  padding: 8px 0;
}
body.landing .manifesto-body em {
  font-style: normal;
  color: var(--ember-1);
  letter-spacing: 0.08em;
}

/* ===================================================================
   Landing — FAQ
=================================================================== */

body.landing .faq {
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid var(--rule);
}
body.landing .faq details {
  border-bottom: 1px solid var(--rule);
  padding: 22px 4px;
  transition: background 0.2s ease;
}
body.landing .faq details[open] {
  background: var(--paper-2);
}
body.landing .faq summary {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0 8px;
}
body.landing .faq summary::-webkit-details-marker { display: none; }
body.landing .faq summary::after {
  content: "+";
  font-family: var(--serif);
  color: var(--ember-3);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease;
}
body.landing .faq details[open] summary::after { content: "−"; }
body.landing .faq details p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  padding: 14px 8px 4px;
}
body.landing .faq details a { color: var(--ember-3); border-bottom: 1px solid rgba(230, 107, 42, 0.35); }
body.landing .faq details a:hover { color: var(--ember-4); }

/* ===================================================================
   Landing — final CTA
=================================================================== */

body.landing .final-cta {
  text-align: center;
  padding: 96px 24px 120px;
  position: relative;
}
body.landing .final-orb {
  width: 88px;
  height: 88px;
  margin-bottom: 24px;
  opacity: 0.95;
  filter: drop-shadow(0 0 24px rgba(230, 107, 42, 0.25));
}
body.landing .final-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 36px);
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 16px;
}
body.landing .final-sub {
  max-width: 520px;
  margin: 0 auto 36px;
  color: var(--ink-soft);
  font-size: 16px;
}

/* ===================================================================
   Landing — rich footer (parchment)
=================================================================== */

body.landing .footer-rich {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  padding: 64px 32px 40px;
  color: var(--ink-soft);
}
body.landing .footer-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
body.landing .footer-col-brand .footer-brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.22em;
  color: var(--ink);
  margin-bottom: 12px;
}
body.landing .footer-tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 24px;
}
body.landing .footer-mark-line {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--ink-mute);
}
body.landing .footer-head {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember-3);
  margin-bottom: 16px;
}
body.landing .footer-col a {
  display: block;
  color: var(--ink-soft);
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.15s ease;
}
body.landing .footer-col a:hover { color: var(--ink); }
body.landing .footer-rule {
  max-width: 1120px;
  margin: 0 auto;
  height: 1px;
  background: var(--rule);
  margin-bottom: 24px;
}
body.landing .footer-base {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.10em;
  color: var(--ink-mute);
}

@media (max-width: 880px) {
  body.landing .footer-grid { grid-template-columns: 1fr 1fr; }
  body.landing .footer-base { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
  body.landing .footer-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   13. Reveal animation (IntersectionObserver toggles .is-visible)
=================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===================================================================
   14. Mobile tweaks
=================================================================== */

@media (max-width: 720px) {
  body.landing .hero { padding: 48px 20px 56px; }
  body.landing .section { padding: 64px 0; }
  body.landing .section-tight { padding: 48px 0; }
  body.landing .container { padding: 0 24px; }
  body.landing .manifesto { padding: 80px 20px; }
  body.landing .final-cta { padding: 72px 20px 88px; }
  body.landing .device { max-width: 260px; }
}
