/* ============================================================
   PAUSE — Midnight Sky theme system (LOCKED palette)
   Warm near-black + amber moon · DM Sans + Cormorant Garamond
   Shared across the marketing hub. Stage 1 foundation.
   ============================================================ */

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

:root {
  /* — surfaces (deep navy night sky, aligned to the app) — */
  --ink:    #0A1428;
  --ink-2:  #15243F;
  --ink-3:  #1C3050;

  /* — text (warm off-white → dimmed warm grey; never harsh pure white) — */
  --cream:    #F4ECE0;
  --cream-80: rgba(244,236,224,0.80);
  --cream-60: rgba(244,236,224,0.60);
  --cream-45: rgba(244,236,224,0.45);
  --cream-30: rgba(244,236,224,0.30);
  --cream-16: rgba(244,236,224,0.16);
  --cream-08: rgba(244,236,224,0.08);

  /* — moonlight accent (soft warm-cream; aligned to the app moon) — */
  --amber:      #E3D8B4;   /* soft moonlight gold — CTA / accents */
  --amber-soft: #F4EFDD;   /* pale moonlight highlight */
  --amber-deep: #9A8C5E;   /* muted deep gold */
  --amber-60:   rgba(231,219,182,0.55);
  --amber-30:   rgba(231,219,182,0.26);

  /* — type — */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', -apple-system, system-ui, sans-serif;

  /* — layout — */
  --maxw: 920px;
  --pad:  24px;
  --radius: 20px;

  /* — motion — */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  background: var(--ink); /* solid fallback; night-sky gradient lives on the fixed .sky layer (iOS-safe) */
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Sky layers (populated by moon.js) ── */
.sky        { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
              background:
                radial-gradient(120% 85% at 76% 6%, #1F325A 0%, transparent 56%),
                linear-gradient(165deg, var(--ink) 0%, var(--ink-2) 58%, var(--ink) 100%); }
.star       { position: absolute; border-radius: 50%; background: var(--cream); }
.bokeh      { position: absolute; border-radius: 50%; filter: blur(42px); opacity: 0.16;
              background: radial-gradient(circle, var(--amber-soft) 0%, transparent 70%); }

/* ── Moon (amber) — motion via moon.js / Web Animations ── */
.moon-wrap  { position: fixed; z-index: 1; pointer-events: none; will-change: transform, opacity;
              top: 0; left: 0; }
/* Reads as a MOON: real lunar texture, amber tint, restrained glow, limb-darkening.
   Mirrors MoonOrb.tsx (moon photo + thin edge shadow), warmed to amber. */
.moon       { width: 72px; height: 72px; border-radius: 50%; position: relative;
              /* restrained moonlight halo — NOT a solar glow */
              box-shadow: 0 0 8px 1px rgba(231,222,190,0.26),
                          0 0 24px 7px rgba(231,222,190,0.12); }
.moon::before { content:''; position:absolute; inset:0; border-radius:50%;
              background:#6E6A55 url('/assets/moon.jpg') center/cover;
              /* gray NASA moon -> soft warm moonlight, craters intact */
              filter: sepia(0.30) saturate(1.15) brightness(1.06) contrast(1.03) hue-rotate(-4deg); }
.moon::after { content:''; position:absolute; inset:0; border-radius:50%;
              /* soft highlight + limb darkening = lit sphere on navy */
              background:
                radial-gradient(circle at 36% 32%, rgba(248,244,224,0.18) 0%, transparent 42%),
                radial-gradient(circle at 60% 60%, transparent 45%, rgba(8,14,30,0.58) 100%); }

/* ── Layout ── */
.page    { position: relative; z-index: 2; }
section  { padding: 84px var(--pad); max-width: var(--maxw); margin: 0 auto; }

.section-label {
  font-size: 11px; letter-spacing: 4px; color: var(--cream-45);
  text-transform: uppercase; margin-bottom: 22px; text-align: center;
}

/* ── Hero ── */
.hero {
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; gap: 20px; padding-top: 72px; padding-bottom: 64px;
}
.hero-wordmark {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(58px, 13vw, 104px); letter-spacing: 0.2em; line-height: 1;
  color: var(--cream); margin-left: 0.2em; /* optical centering for tracking */
}
.hero-acronym { font-family: var(--sans); font-weight: 300; font-size: clamp(11px, 2.4vw, 14px);
  letter-spacing: 0.16em; color: var(--cream-45); margin-top: -8px; margin-left: 0.16em; }
.hero-acronym b { color: var(--amber); font-weight: 500; }
.hero-rule { width: 44px; height: 1px; background: var(--amber-60); }
.hero-tagline {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(24px, 5.5vw, 40px); color: var(--cream); line-height: 1.25;
}
.hero-promise {
  font-size: clamp(16px, 3.2vw, 20px); color: var(--cream);
  letter-spacing: 0.03em; max-width: 34ch; line-height: 1.7;
  margin: 4px auto 0; text-align: center;
}
.cta-primary {
  display: inline-block; margin-top: 14px;
  font-family: var(--sans); font-weight: 400; font-size: 15px; letter-spacing: 0.08em;
  color: var(--ink); background: var(--amber);
  padding: 16px 34px; border-radius: 999px; text-decoration: none;
  box-shadow: 0 0 30px rgba(231,222,190,0.22); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.cta-primary:hover { transform: translateY(-2px); box-shadow: 0 0 42px rgba(231,222,190,0.34); }
.hero-scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--cream-45);
  text-decoration: none; animation: cueFloat 2.6s ease-in-out infinite;
}
.hero-scroll-cue:hover { color: var(--cream-60); }
@keyframes cueFloat { 0%,100%{ transform: translate(-50%,0); opacity:.5 } 50%{ transform: translate(-50%,6px); opacity:.9 } }

/* ── The Moment (recognition — see yourself, not the method) ── */
.moment { border-top: 1px solid var(--cream-08); text-align: center; }
.moment-heading { font-family: var(--serif); font-weight: 300; font-size: clamp(30px, 6.5vw, 46px); color: var(--cream); margin-bottom: 6px; line-height: 1.08; }
.moment-list { list-style: none; display: grid; grid-template-columns: 1fr; gap: 18px 48px; max-width: 760px; margin: 42px auto 0; }
@media (min-width: 680px) { .moment-list { grid-template-columns: 1fr 1fr; } }
.moment-item { position: relative; padding-left: 26px; text-align: left;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(18px, 3.4vw, 23px); color: var(--cream-80); line-height: 1.4; }
.moment-item::before { content: ''; position: absolute; left: 0; top: 0.6em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--amber);
  box-shadow: 0 0 9px var(--amber-60); }
.moment-close { margin-top: 48px; font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(21px, 4.6vw, 30px); color: var(--cream); }

/* ── Shared story primitives (used by daily + storyboard; reworked in later stages) ── */
.story-title { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 23px; color: var(--cream); margin-bottom: 18px; line-height: 1.2; }
.story-row { margin-bottom: 13px; }
.story-row:last-child { margin-bottom: 0; }
.story-key { display: block; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--cream-60); margin-bottom: 4px; }
.story-val { font-size: 14px; color: var(--cream-80); line-height: 1.6; }
.story-row.outcome { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--cream-08); }
.story-row.outcome .story-key { color: var(--amber-60); }
.story-row.outcome .story-val { color: var(--cream); font-style: italic; }

.daily { border-top: 1px solid var(--cream-08); }
.daily-card { background: rgba(28,18,10,0.55); border: 1px solid var(--cream-16); border-radius: var(--radius); padding: 34px 30px; max-width: 620px; margin: 0 auto; }
.daily-card .story-title { font-size: clamp(26px, 5vw, 32px); margin-bottom: 22px; }
.daily-card .story-val { font-size: 15px; }

.storyboard { border-top: 1px solid var(--cream-08); }
.storyboard-heading { font-family: var(--serif); font-weight: 300; font-size: clamp(26px, 5vw, 38px); margin-bottom: 12px; text-align: center; }
.storyboard-intro { font-size: clamp(13px, 2.4vw, 15px); color: var(--cream-60); max-width: 520px; margin: 0 auto 40px; line-height: 1.8; text-align: center; }
.story-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 700px) { .story-grid { grid-template-columns: 1fr 1fr; } }
.story-card { background: var(--cream-08); border: 1px solid var(--cream-08); border-radius: 18px; padding: 26px 24px; }
.storyboard-note { margin-top: 34px; text-align: center; font-size: 11px; color: var(--cream-45); line-height: 1.7; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── How it works (reworked in Stage 2) ── */
.how { border-top: 1px solid var(--cream-08); text-align: center; }
.how-heading { font-family: var(--serif); font-weight: 300; font-size: clamp(24px, 5vw, 34px); margin-bottom: 32px; }
.flow { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 14px; margin-bottom: 40px; }
.flow-step { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(18px, 4vw, 26px); color: var(--cream); }
.flow-arrow { color: var(--amber-60); font-size: 16px; }
.flow-grid { display: grid; grid-template-columns: 1fr; gap: 22px; text-align: center; }
@media (min-width: 640px) { .flow-grid { grid-template-columns: repeat(auto-fit, minmax(116px, 1fr)); gap: 18px 14px; } }
.flow-item-name { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--cream); margin-bottom: 8px; }
.flow-item-text { font-size: 13px; color: var(--cream-60); line-height: 1.6; max-width: 220px; margin: 0 auto; }

/* ── What makes it different (positioning) ── */
.different { border-top: 1px solid var(--cream-08); text-align: center; }
.diff-heading { font-family: var(--serif); font-weight: 300; font-size: clamp(26px, 5.5vw, 40px); color: var(--cream); margin-bottom: 14px; line-height: 1.15; }
.diff-sub { font-size: clamp(14px, 2.6vw, 16px); color: var(--cream-60); max-width: 560px; margin: 0 auto 48px; line-height: 1.7; }
.diff-grid { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 900px; margin: 0 auto; text-align: left; }
@media (min-width: 760px){ .diff-grid { grid-template-columns: repeat(3, 1fr); } }
.diff-card { background: var(--cream-08); border: 1px solid var(--cream-08); border-radius: 18px; padding: 30px 26px; transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease); }
.diff-card:hover { transform: translateY(-3px); border-color: var(--amber-30); background: rgba(28,48,80,0.35); }
.diff-num { font-family: var(--serif); font-size: 15px; letter-spacing: 2px; color: var(--amber); margin-bottom: 16px; }
.diff-name { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 22px; color: var(--cream); margin-bottom: 12px; line-height: 1.25; }
.diff-text { font-size: 14px; color: var(--cream-60); line-height: 1.7; }
.diff-compare { max-width: 640px; margin: 52px auto 0; display: grid; gap: 10px; }
.cmp-row { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; text-align: left;
  padding: 16px 22px; border: 1px solid var(--cream-08); border-radius: 14px; background: var(--cream-08); }
.cmp-what { font-family: var(--serif); font-style: italic; font-size: clamp(18px, 3vw, 22px); color: var(--cream-60); flex: 0 0 auto; }
.cmp-when { font-size: clamp(13px, 2.4vw, 15px); color: var(--cream-45); text-align: right; line-height: 1.5; }
.cmp-pause { border-color: var(--amber-30); background: rgba(28,48,80,0.40); }
.cmp-pause .cmp-what { color: var(--cream); font-style: normal; font-weight: 500; letter-spacing: 1px; }
.cmp-pause .cmp-when { color: var(--amber); }
.diff-pos-punch { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(19px, 3.4vw, 26px); color: var(--cream); line-height: 1.5; margin-top: 34px; }
.diff-cta { margin-top: 38px; }

/* ── Download (badge deferred) ── */
.download { border-top: 1px solid var(--cream-08); text-align: center; }
.download-soon { display: inline-block; border: 1px solid var(--cream-16); border-radius: 14px; padding: 16px 32px; color: var(--cream-60); font-family: var(--serif); font-weight: 300; font-size: 20px; letter-spacing: 0.04em; }
.download-note { margin-top: 14px; font-size: 12px; color: var(--cream-45); letter-spacing: 1px; }

/* ── Footer ── */
footer { border-top: 1px solid var(--cream-08); padding: 44px var(--pad); text-align: center; position: relative; z-index: 2; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center; margin-bottom: 18px; }
.footer-links a { font-size: 13px; color: var(--cream-45); text-decoration: none; letter-spacing: 0.5px; transition: color 0.2s; }
.footer-links a:hover { color: var(--cream-80); }
.footer-copy { font-size: 12px; color: var(--cream-45); letter-spacing: 1px; }
.footer-copy span { color: var(--cream-45); }

/* ── Eight Pillars (home grid) ── */
.pillars { border-top: 1px solid var(--cream-08); text-align: center; }
.pillars-heading { font-family: var(--serif); font-weight: 300; font-size: clamp(28px,6vw,42px); color: var(--cream); margin-bottom: 8px; line-height: 1.1; }
.pillars-intro { font-size: clamp(14px,2.6vw,16px); color: var(--cream-60); max-width: 480px; margin: 0 auto; line-height: 1.7; }
.pillar-grid { display: grid; grid-template-columns: 1fr; gap: 14px; max-width: 820px; margin: 42px auto 0; text-align: left; }
@media (min-width: 620px){ .pillar-grid { grid-template-columns: 1fr 1fr; } }
.pillar-card { display: block; text-decoration: none; background: var(--cream-08); border: 1px solid var(--cream-08);
  border-radius: 16px; padding: 22px 24px; transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease); }
.pillar-card:hover { transform: translateY(-3px); border-color: var(--amber-30); background: rgba(28,48,80,0.35); }
.pillar-card .pc-name { display:block; font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 21px; color: var(--cream); }
.pillar-card .pc-hook { display:block; font-size: 14px; color: var(--cream-60); margin-top: 5px; line-height: 1.5; }
.pillar-card .pc-go { display:inline-block; margin-top: 12px; font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--amber); }

/* ── Pillar page ── */
.back-link { position: fixed; top: 20px; left: 20px; z-index: 3; font-size: 13px; letter-spacing: 0.5px; color: var(--cream-45); text-decoration: none; transition: color .2s; }
.back-link:hover { color: var(--cream-80); }
.pillar-head { min-height: 60vh; min-height: 60svh; display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; gap:14px; padding: 100px var(--pad) 40px; }
.pillar-eyebrow { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--cream-45); }
.pillar-name { font-family: var(--serif); font-weight: 300; font-size: clamp(34px,8vw,62px); color: var(--cream); line-height: 1.04; letter-spacing: 0.01em; }
.pillar-hook { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(18px,4vw,26px); color: var(--cream-80); }
.pillar-sec { border-top: 1px solid var(--cream-08); text-align: center; }
.film-slot { max-width: 300px; margin: 8px auto 0; aspect-ratio: 9/16; border: 1px dashed var(--cream-16); border-radius: 18px;
  display:flex; align-items:center; justify-content:center; text-align:center; color: var(--cream-45); font-size: 13px; letter-spacing: 0.5px; padding: 22px; line-height: 1.6; }
.film-frame { max-width: 300px; margin: 8px auto 0; aspect-ratio: 9/16; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--cream-16); box-shadow: 0 26px 72px rgba(0,0,0,0.55), 0 0 50px rgba(231,222,190,0.05); background: var(--ink); }
.film-video { width: 100%; height: 100%; object-fit: cover; display: block; }
/* tap-to-switch film gallery */
.film-gallery { max-width: 300px; margin: 0 auto; }
.film-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 18px; }
.film-tab { font-family: var(--sans); font-weight: 400; font-size: 13px; letter-spacing: 0.03em; color: var(--cream-60);
  background: var(--cream-08); border: 1px solid var(--cream-16); border-radius: 999px; padding: 9px 16px;
  cursor: pointer; transition: color .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease); }
.film-tab:hover { color: var(--cream); border-color: var(--amber-30); }
.film-tab.active { color: var(--ink); background: var(--amber); border-color: var(--amber); font-weight: 500; }
.film-caption { margin: 18px auto 0; max-width: 300px; text-align: center; font-family: var(--serif);
  font-style: italic; font-weight: 300; font-size: clamp(16px, 3.4vw, 20px); line-height: 1.4; color: var(--cream); }
.pillar-moments { list-style: none; max-width: 560px; margin: 36px auto 0; display: grid; gap: 15px; text-align: left; }
.pillar-moments li { position: relative; padding-left: 24px; font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(17px,3.4vw,21px); color: var(--cream-80); line-height: 1.4; }
.pillar-moments li::before { content:''; position:absolute; left:0; top:0.6em; width:6px; height:6px; border-radius:50%; background: var(--amber); box-shadow:0 0 8px var(--amber-60); }

/* ── Pricing ── */
.pricing { border-top: 1px solid var(--cream-08); text-align: center; }
.pricing-heading { font-family: var(--serif); font-weight: 300; font-size: clamp(28px,6vw,42px); color: var(--cream); margin-bottom: 8px; line-height: 1.1; }
.pricing-intro { font-size: clamp(14px,2.6vw,16px); color: var(--cream-60); }
.tier-grid { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 1000px; margin: 46px auto 0; }
@media (min-width: 560px){ .tier-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px){ .tier-grid { grid-template-columns: repeat(4, 1fr); align-items: stretch; } }
.tier { background: var(--cream-08); border: 1px solid var(--cream-08); border-radius: 18px; padding: 28px 22px; text-align: left; display: flex; flex-direction: column; }
.tier.hero { border-color: var(--amber-30); background: rgba(28,48,80,0.40); box-shadow: 0 0 44px rgba(231,222,190,0.09); position: relative; }
.tier-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); white-space: nowrap;
  background: var(--amber); color: var(--ink); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; padding: 5px 13px; border-radius: 999px; }
.tier-name { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 22px; color: var(--cream); }
.tier-price { font-family: var(--serif); font-weight: 300; font-size: 34px; color: var(--cream); margin: 8px 0 2px; }
.tier-price span { font-size: 14px; color: var(--cream-45); font-family: var(--sans); }
.tier-tag { font-size: 12px; color: var(--amber); letter-spacing: 0.5px; margin-bottom: 18px; }
.tier-feats { list-style: none; display: grid; gap: 9px; margin: 4px 0 24px; }
.tier-feats li { font-size: 13.5px; color: var(--cream-80); line-height: 1.5; padding-left: 18px; position: relative; }
.tier-feats li::before { content: ''; position: absolute; left: 2px; top: 0.55em; width: 5px; height: 5px; border-radius: 50%; background: var(--amber-60); }
.tier-cta { margin-top: auto; text-align: center; padding: 12px 16px; border-radius: 999px; text-decoration: none;
  font-size: 14px; letter-spacing: 0.04em; border: 1px solid var(--cream-16); color: var(--cream); transition: border-color .25s var(--ease), background .25s var(--ease); }
.tier-cta:hover { border-color: var(--amber-30); }
.tier-cta.primary { background: var(--amber); color: var(--ink); border-color: var(--amber); }
.tier-cta.primary:hover { box-shadow: 0 0 30px rgba(231,222,190,0.30); }
.pricing-note { margin-top: 30px; font-size: 12px; color: var(--cream-45); letter-spacing: 0.5px; }

/* ── Values ── */
.values { border-top: 1px solid var(--cream-08); text-align: center; }
.values-heading { font-family: var(--serif); font-weight: 300; font-size: clamp(26px,5.5vw,38px); color: var(--cream); margin-bottom: 8px; }
.value-grid { display: grid; grid-template-columns: 1fr; gap: 26px 40px; max-width: 760px; margin: 44px auto 0; text-align: left; }
@media (min-width: 680px){ .value-grid { grid-template-columns: 1fr 1fr; } }
.value-name { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 22px; color: var(--cream); margin-bottom: 6px; }
.value-text { font-size: 14px; color: var(--cream-60); line-height: 1.6; }

/* ── The Experience (app embed slot) ── */
.experience { border-top: 1px solid var(--cream-08); text-align: center; }
.exp-heading { font-family: var(--serif); font-weight: 300; font-size: clamp(28px,6vw,42px); color: var(--cream); margin-bottom: 8px; line-height: 1.1; }
.exp-sub { font-size: clamp(14px,2.6vw,16px); color: var(--cream-60); max-width: 440px; margin: 0 auto; line-height: 1.7; }
.device { max-width: 300px; margin: 44px auto 0; aspect-ratio: 9 / 19.5; border-radius: 40px; padding: 10px;
  background: linear-gradient(165deg, #1d2e4e, #0b1320); border: 1px solid var(--cream-16);
  box-shadow: 0 34px 90px rgba(0,0,0,0.55), 0 0 60px rgba(231,222,190,0.06); }
.device-screen { width: 100%; height: 100%; border-radius: 31px; overflow: hidden; background: var(--ink);
  display: flex; align-items: center; justify-content: center; position: relative; }
.device-screen iframe { width: 100%; height: 100%; border: 0; }
.device-stub { color: var(--cream-45); font-size: 14px; letter-spacing: 0.4px; padding: 24px; line-height: 1.7; }
.exp-note { margin-top: 26px; font-size: 12px; color: var(--cream-45); letter-spacing: 0.5px; }

/* ── Footer (full) ── */
.footer-wordmark { font-family: var(--serif); font-weight: 300; font-size: 30px; letter-spacing: 0.2em; color: var(--cream); margin: 0 0 4px 0.2em; }
.footer-tag { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--cream-45); margin-bottom: 26px; }
.footer-contact { display: inline-block; margin: 4px 0 18px; font-size: 14px; color: var(--amber); text-decoration: none; letter-spacing: 0.3px; }
.footer-contact:hover { color: var(--amber-soft); }

/* ── Auth gate (inside the device) + closing CTA ── */
.device-gate { text-align: center; padding: 30px 22px; }
.dg-title { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 23px; color: var(--cream); margin-bottom: 6px; }
.dg-sub { font-size: 13px; color: var(--cream-60); margin-bottom: 24px; }
.dg-btn { display: inline-block; background: var(--amber); color: var(--ink); font-size: 14px; letter-spacing: 0.04em; padding: 12px 28px; border-radius: 999px; text-decoration: none; box-shadow: 0 0 26px rgba(231,222,190,0.20); }
.dg-note { margin-top: 18px; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cream-45); }
.closing-cta { border-top: 1px solid var(--cream-08); text-align: center; }
.cc-note { margin-top: 14px; font-size: 13px; color: var(--cream-45); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-scroll-cue { animation: none; }
}
