/* =============================================================
   Arise & Shine — Marketing Site
   Design system: navy gradient + champagne gold, Spectral + Sofia Pro
   ============================================================= */

/* ----------  Fonts  ----------
   Spectral (scripture / headings) loads from Google Fonts in the <head>.
   Sofia Pro is a licensed font. If you own it, drop the files in
   /assets/fonts and the @font-face below will pick them up automatically.
   Until then we gracefully fall back to Poppins (also loaded in <head>),
   which shares Sofia Pro's warm, geometric, feminine character.            */

@font-face {
  font-family: "Sofia Pro";
  src: url("/assets/fonts/SofiaPro-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sofia Pro";
  src: url("/assets/fonts/SofiaPro-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sofia Pro";
  src: url("/assets/fonts/SofiaPro-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sofia Pro";
  src: url("/assets/fonts/SofiaPro-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ----------  Design tokens  ---------- */
:root {
  /* Backgrounds — navy → midnight blue */
  --bg-top: #1a1a1a;
  --bg-mid: #141a2c;
  --bg-deep: #0f1424;
  --bg-night: #0b0f1c;

  /* Champagne gold accents */
  --gold: #E8C389;
  --gold-soft: #DDB87F;
  --gold-bright: #F2D399;
  --gold-deep: #c9a36a;
  --gold-glow: rgba(232, 195, 137, 0.22);

  /* Text — cream / white */
  --cream: #F6F1E7;
  --white: #FFFFFF;
  --text: #ECE7DC;
  --muted: #B7B2A7;
  --faint: #8a8678;

  /* Glass surfaces */
  --glass-bg: rgba(255, 255, 255, 0.045);
  --glass-bg-strong: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(232, 195, 137, 0.18);
  --glass-border-soft: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 18px 50px -20px rgba(0, 0, 0, 0.65);
  --shadow-card: 0 10px 40px -16px rgba(0, 0, 0, 0.6);

  /* Type */
  --font-ui: "Sofia Pro", "Poppins", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Spectral", Georgia, "Times New Roman", serif;

  /* Rhythm */
  --maxw: 1140px;
  --maxw-narrow: 760px;
  --radius: 20px;
  --radius-lg: 28px;
  --space-section: clamp(4rem, 9vw, 8rem);

  --gold-gradient: linear-gradient(135deg, #F2D399 0%, #E8C389 45%, #DDB87F 100%);
}

/* ----------  Reset  ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(1200px 700px at 78% -8%, rgba(232, 195, 137, 0.10), transparent 60%),
    radial-gradient(900px 600px at 8% 12%, rgba(120, 130, 200, 0.10), transparent 55%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 32%, var(--bg-deep) 70%, var(--bg-night) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--gold-bright);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
a:hover {
  color: var(--gold);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cream);
  margin: 0 0 0.5em;
  letter-spacing: 0.2px;
}

p {
  margin: 0 0 1.1em;
}

ul, ol {
  margin: 0 0 1.1em;
  padding-left: 1.3em;
}
li {
  margin-bottom: 0.5em;
}

/* ----------  Accessibility helpers  ---------- */
.skip-link {
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  background: var(--gold);
  color: #1a1a1a;
  padding: 0.65rem 1.2rem;
  border-radius: 0 0 12px 12px;
  font-weight: 600;
  z-index: 1000;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  color: #1a1a1a;
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ----------  Layout primitives  ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}

.section {
  padding-block: var(--space-section);
}

.narrow {
  max-width: var(--maxw-narrow);
}

.center {
  text-align: center;
}

.eyebrow {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-block;
}

.section-title {
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  margin-bottom: 0.6rem;
}

.section-intro {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 640px;
  margin-inline: auto;
}

/* gold text accent */
.gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}

/* ----------  Glass card  ---------- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid var(--glass-border-soft);
  box-shadow: var(--shadow-card);
  /* slightly imperfect, hand-drawn border radii */
  border-radius: 26px 22px 28px 20px;
}

/* ----------  Buttons  ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.25s ease;
  text-align: center;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #20180c;
  box-shadow: 0 12px 30px -12px var(--gold-glow), 0 0 0 1px rgba(242, 211, 153, 0.4) inset;
}
.btn-primary:hover {
  color: #20180c;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px var(--gold-glow), 0 0 0 1px rgba(242, 211, 153, 0.6) inset;
}

.btn-ghost {
  background: var(--glass-bg-strong);
  color: var(--cream);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ----------  Header / Nav  ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(15, 20, 36, 0.82), rgba(15, 20, 36, 0.35));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 8px 30px -16px rgba(0, 0, 0, 0.8);
  background: rgba(11, 15, 28, 0.92);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.85rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.3px;
}
.brand:hover { color: var(--white); }
.brand svg { flex: none; }
.brand .amp { color: var(--gold); font-style: italic; }
.brand-mark {
  width: 32px;
  height: 32px;
  flex: none;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 500;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: 0.5rem; }
.nav-cta .btn { padding: 0.6rem 1.25rem; font-size: 0.92rem; }

/* Language switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
}
.lang-switch a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--muted);
  padding: 0.32rem 0.55rem;
  border-radius: 9px;
  text-transform: uppercase;
  white-space: nowrap;
}
.lang-switch a:hover { color: var(--cream); }
.lang-switch a[aria-current="page"] {
  color: #20180c;
  background: var(--gold-gradient);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--cream);
  cursor: pointer;
  padding: 0.4rem;
}

/* ----------  Hero  ---------- */
.hero {
  position: relative;
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: -10% 0 auto 0;
  height: 540px;
  background: radial-gradient(620px 320px at 50% 0%, rgba(232, 195, 137, 0.20), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-copy { max-width: 600px; }

.hero-sun {
  display: inline-block;
  width: 78px;
  height: 78px;
  margin-bottom: 1.4rem;
  filter: drop-shadow(0 6px 20px var(--gold-glow));
}

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height: 1.02;
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
}
.hero h1 .amp {
  font-style: italic;
  font-weight: 500;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1.3rem;
}
.hero-desc {
  color: var(--muted);
  font-size: 1.12rem;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero-note {
  margin-top: 1.1rem;
  font-size: 0.9rem;
  color: var(--faint);
}

/* phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}
.phone {
  position: relative;
  width: min(290px, 78vw);
  aspect-ratio: 9 / 19.3;
  border-radius: 44px;
  padding: 12px;
  background: linear-gradient(160deg, rgba(242, 211, 153, 0.5), rgba(120, 130, 200, 0.25));
  box-shadow: var(--shadow-soft), 0 0 60px -20px var(--gold-glow);
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(232, 195, 137, 0.18), transparent 60%),
    linear-gradient(180deg, #161b2e, #0d1120);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  gap: 0.4rem;
}
.phone-book {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.45rem;
  color: var(--gold);
  letter-spacing: 0.3px;
}
.phone-time {
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--cream);
  line-height: 1.05;
}
.phone-verse {
  color: var(--muted);
  font-size: 0.84rem;
  margin-top: 0.8rem;
  line-height: 1.5;
}
.phone-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 42%;
  height: 22px;
  background: #0b0f1c;
  border-radius: 0 0 16px 16px;
}

/* ----------  Verse banner  ---------- */
.verse-banner {
  text-align: center;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.verse-banner blockquote {
  margin: 0 auto;
  max-width: 800px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--cream);
}
.verse-banner cite {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--font-ui);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
}

/* ----------  Features grid  ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.feature-card {
  padding: 2rem 1.8rem;
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px 14px 18px 13px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  background: rgba(232, 195, 137, 0.12);
  border: 1px solid var(--glass-border);
  color: var(--gold-bright);
}
.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.feature-card p {
  color: var(--muted);
  font-size: 0.98rem;
  margin: 0;
}

/* ----------  Audience  ---------- */
.audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.audience-card {
  padding: clamp(2rem, 4vw, 3rem);
}
.audience ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.audience ul li {
  position: relative;
  padding-left: 2rem;
  color: var(--text);
  margin-bottom: 1rem;
}
.audience ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-gradient);
  box-shadow: 0 0 12px var(--gold-glow);
}

/* ----------  Voice spotlight  ---------- */
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.voice-card {
  padding: clamp(1.3rem, 3vw, 1.8rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.voice-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 16px 14px 17px 13px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--glass-border-soft);
}
.voice-play {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold-gradient);
  color: #20180c;
  box-shadow: 0 6px 18px -8px var(--gold-glow);
}
.voice-info {
  flex: 1;
  min-width: 0;
}
.voice-info strong {
  display: block;
  color: var(--cream);
  font-size: 0.98rem;
}
.voice-info span {
  color: var(--muted);
  font-size: 0.8rem;
}
.voice-wave {
  flex: none;
  color: var(--gold);
  opacity: 0.85;
}
.voice-record {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem;
  border-radius: 16px 14px 17px 13px;
  border: 1px dashed var(--glass-border);
  color: var(--muted);
  font-size: 0.9rem;
}
.rec-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e5736b;
  animation: recpulse 2.2s infinite;
}
@keyframes recpulse {
  0% { box-shadow: 0 0 0 0 rgba(229, 115, 107, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(229, 115, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 115, 107, 0); }
}

/* ----------  Screenshots  ---------- */
.screens-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.screen-placeholder {
  aspect-ratio: 9 / 18;
  border-radius: 32px;
  border: 1px dashed var(--glass-border);
  background:
    radial-gradient(100% 60% at 50% 0%, rgba(232, 195, 137, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--faint);
  text-align: center;
  padding: 1.5rem;
}
.screen-placeholder svg { opacity: 0.5; }
.screen-placeholder span { font-size: 0.85rem; letter-spacing: 0.05em; }

/* ----------  Waitlist  ---------- */
.waitlist-card {
  padding: clamp(2.2rem, 5vw, 3.5rem);
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}
.waitlist-form {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
  justify-content: center;
}
.waitlist-form .field {
  flex: 1 1 280px;
  min-width: 0;
}
.input {
  width: 100%;
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.input::placeholder { color: var(--faint); }
.input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232, 195, 137, 0.18);
}
.waitlist-form .btn { flex: none; }
.form-status {
  margin-top: 1.1rem;
  font-size: 0.95rem;
  min-height: 1.4em;
}
.form-status.success { color: var(--gold-bright); }
.form-status.error { color: #f3a39a; }
.form-privacy {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: var(--faint);
}

/* ----------  Download badges  ---------- */
.download {
  text-align: center;
}
.badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.badge-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 1.5rem;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--cream);
  min-width: 200px;
}
.badge-placeholder .small { font-size: 0.7rem; color: var(--muted); display: block; line-height: 1.2; }
.badge-placeholder .big { font-size: 1.15rem; font-weight: 600; line-height: 1.2; }

/* ----------  Social  ---------- */
.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border-soft);
  background: var(--glass-bg);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  transition: transform 0.18s ease, border-color 0.2s ease, color 0.2s ease;
}
.social-link:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  color: var(--white);
}
.social-link svg { color: var(--gold); }

/* ----------  Footer  ---------- */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
  padding-block: 3.5rem 2.5rem;
  margin-top: 2rem;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-brand { max-width: 320px; }
.footer-brand p { color: var(--muted); font-size: 0.95rem; margin-top: 0.8rem; }
.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: var(--text); font-size: 0.95rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--faint);
  font-size: 0.85rem;
}
.footer-bottom a { color: var(--faint); }
.footer-bottom a:hover { color: var(--gold); }

/* ----------  Legal / article pages  ---------- */
.page-hero {
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
}
.page-hero .updated {
  color: var(--faint);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.legal {
  padding-bottom: var(--space-section);
}
.legal-card {
  padding: clamp(1.8rem, 5vw, 3.5rem);
}
.legal h2 {
  font-size: 1.5rem;
  margin-top: 2.4rem;
  padding-top: 0.5rem;
}
.legal h2:first-of-type { margin-top: 0; }
.legal h3 {
  font-size: 1.15rem;
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--gold);
  margin-top: 1.6rem;
}
.legal p, .legal li { color: var(--text); }
.legal a { text-decoration: underline; text-underline-offset: 3px; }
.legal .toc {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border-soft);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  margin-bottom: 2.5rem;
}
.legal .toc h2 { margin: 0 0 0.8rem; font-size: 1.1rem; }
.legal .toc ol { margin: 0; columns: 2; column-gap: 2rem; }
.legal .toc a { text-decoration: none; }

/* ----------  FAQ  ---------- */
.faq-list {
  max-width: 820px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  border-radius: 18px 16px 20px 15px;
  border: 1px solid var(--glass-border-soft);
  background: var(--glass-bg);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.3rem 1.6rem;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chevron {
  flex: none;
  transition: transform 0.25s ease;
  color: var(--gold);
}
.faq-item[open] summary .chevron { transform: rotate(180deg); }
.faq-item .faq-body {
  padding: 0 1.6rem 1.4rem;
  color: var(--muted);
}
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ----------  Contact (support)  ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.contact-card { padding: clamp(1.8rem, 4vw, 2.6rem); }
.contact-card h3 { font-size: 1.3rem; }
.contact-card .lead { color: var(--muted); }
.contact-form { margin-top: 1.5rem; }
.contact-form .field { margin-bottom: 1rem; }
.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.45rem;
  letter-spacing: 0.02em;
}
.contact-form .input { border-radius: 14px; }
.contact-form textarea.input {
  border-radius: 16px;
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}
.contact-form .btn { width: 100%; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-detail .ic {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(232, 195, 137, 0.12);
  border: 1px solid var(--glass-border);
  color: var(--gold-bright);
}
.contact-detail strong { color: var(--cream); display: block; }
.contact-detail span { color: var(--muted); font-size: 0.95rem; }

/* ----------  Reveal animation  ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ----------  Responsive  ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; margin-bottom: 1rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .audience { grid-template-columns: 1fr; }
  .spotlight-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links,
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem clamp(1.25rem, 5vw, 2.5rem) 2rem;
    background: rgba(11, 15, 28, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--glass-border-soft);
  }

  .features-grid { grid-template-columns: 1fr; }
  .screens-row { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; }
  .legal .toc ol { columns: 1; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form .btn { width: 100%; }
}

/* ----------  Reduced motion  ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
