@font-face {
  font-family: "Cinzel";
  src: url("/assets/fonts/Cinzel-VariableFont.woff2") format("woff2");
  font-display: swap;
  font-weight: 400 900;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/Manrope-VariableFont.woff2") format("woff2");
  font-display: swap;
  font-weight: 200 800;
}

@font-face {
  font-family: "Amiri";
  src: url("/assets/fonts/Amiri-Regular.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Amiri";
  src: url("/assets/fonts/Amiri-Bold.woff2") format("woff2");
  font-display: swap;
  font-weight: 700;
}

:root {
  --navy-950: #010812;
  --navy-900: #020d20;
  --navy-850: #031635;
  --navy-800: #061d3c;
  --navy-700: #092448;
  --ink: #f8f4e9;
  --muted: #aeb9c9;
  --muted-dark: #7f8ca0;
  --gold-100: #f8e7b1;
  --gold-200: #f1d18a;
  --gold-400: #ddb24d;
  --gold-500: #ba8427;
  --cyan: #45b9ff;
  --red: #ff544d;
  --green: #54d5a4;
  --container: min(1180px, calc(100vw - 44px));
  --serif: "Amiri", Georgia, serif;
  --display: "Cinzel", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--navy-950);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% 28%, rgba(24, 65, 112, .18), transparent 26rem),
    linear-gradient(180deg, var(--navy-950), var(--navy-900) 40%, #010711);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .17;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--gold-200);
  color: var(--navy-950);
  font-weight: 800;
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }
.container { width: var(--container); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  border-color: rgba(221, 178, 77, .25);
  background: rgba(1, 9, 23, .9);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .28);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: var(--container);
  min-height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -.03em;
}

.brand img {
  width: 48px;
  height: 45px;
  object-fit: cover;
  border-radius: 12px;
  filter: drop-shadow(0 5px 14px rgba(221, 178, 77, .24));
}

.brand span span { color: var(--gold-200); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 32px);
}

.primary-nav a {
  position: relative;
  color: rgba(248, 244, 233, .76);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: color .2s ease;
}

.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--gold-200);
  transition: right .25s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible { color: var(--gold-100); }
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after { right: 0; }

.primary-nav .nav-cta {
  padding: 9px 15px;
  border: 1px solid rgba(241, 209, 138, .7);
  border-radius: 999px;
  color: var(--gold-100);
  background: rgba(221, 178, 77, .08);
}

.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 900px;
  height: 100svh;
  max-height: 1120px;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(221, 178, 77, .35);
}

.hero-art,
.hero-vignette,
.hero-pattern {
  position: absolute;
  inset: 0;
}

.hero-art {
  z-index: -4;
  background-image: url("/assets/images/seerahquest-hero.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-vignette {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(1, 8, 18, .98) 0%, rgba(2, 13, 32, .92) 25%, rgba(2, 13, 32, .5) 50%, rgba(1, 8, 18, .1) 76%),
    linear-gradient(180deg, rgba(1, 8, 18, .72) 0%, transparent 22%, transparent 68%, rgba(1, 8, 18, .92) 100%);
}

.hero-pattern {
  z-index: -2;
  opacity: .28;
  background-image:
    linear-gradient(30deg, transparent 47%, rgba(221,178,77,.13) 48%, rgba(221,178,77,.13) 49%, transparent 50%),
    linear-gradient(-30deg, transparent 47%, rgba(221,178,77,.13) 48%, rgba(221,178,77,.13) 49%, transparent 50%);
  background-size: 76px 132px;
  mask-image: linear-gradient(90deg, black, transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 94px;
}

.hero-content::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 50%;
  width: 2px;
  height: 320px;
  transform: translateY(-44%);
  background: linear-gradient(transparent, var(--gold-400), transparent);
  box-shadow: 0 0 18px rgba(221, 178, 77, .55);
}

.eyebrow,
.kicker {
  margin: 0 0 16px;
  color: var(--gold-200);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(64px, 7.2vw, 108px);
  line-height: .86;
  font-weight: 700;
  letter-spacing: -.055em;
  text-wrap: balance;
  text-shadow: 0 8px 28px rgba(0, 0, 0, .75);
}

.hero h1 span {
  color: var(--gold-200);
  background: linear-gradient(180deg, #fff3ca 10%, #e1b958 55%, #9e681d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lede {
  max-width: 640px;
  margin: 32px 0 0;
  color: rgba(239, 242, 247, .78);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .025em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover,
.button:focus-visible { transform: translateY(-2px); }

.button-gold {
  color: #06142b;
  background: linear-gradient(135deg, #f7dea0, #d8a944 56%, #a76c1e);
  box-shadow: 0 10px 30px rgba(202, 148, 47, .28), inset 0 1px rgba(255, 255, 255, .65);
}

.button-gold:hover,
.button-gold:focus-visible { box-shadow: 0 14px 38px rgba(202, 148, 47, .42), inset 0 1px rgba(255, 255, 255, .7); }

.button-ghost {
  border-color: rgba(241, 209, 138, .42);
  color: var(--gold-100);
  background: rgba(3, 22, 53, .48);
  backdrop-filter: blur(9px);
}

.release-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: rgba(248, 244, 233, .58);
  font-size: 12px;
  font-weight: 650;
}

.release-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(84, 213, 164, .1), 0 0 16px rgba(84, 213, 164, .6);
  animation: breathe 2s ease-in-out infinite;
}

@keyframes breathe { 50% { opacity: .45; transform: scale(.8); } }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  width: 34px;
  height: 52px;
  transform: translateX(-50%);
  border: 1px solid rgba(241, 209, 138, .48);
  border-radius: 999px;
}

.scroll-cue span {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 4px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: var(--gold-200);
  animation: scrollHint 1.8s ease-in-out infinite;
}

@keyframes scrollHint { 70%, 100% { transform: translate(-50%, 20px); opacity: 0; } }

.proof-strip {
  position: relative;
  z-index: 5;
  background: linear-gradient(180deg, #061a37, #031126);
  border-bottom: 1px solid rgba(221, 178, 77, .25);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.proof-grid div {
  position: relative;
  min-height: 124px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.proof-grid div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  height: 46%;
  background: linear-gradient(transparent, rgba(221, 178, 77, .4), transparent);
}

.proof-grid strong {
  font-family: var(--serif);
  color: var(--gold-100);
  font-size: 35px;
  line-height: 1;
}

.proof-grid span {
  margin-top: 5px;
  color: var(--muted-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section { position: relative; padding: 130px 0; }

.section-ornament {
  position: absolute;
  left: 50%;
  top: -28px;
  width: 56px;
  height: 56px;
  transform: translateX(-50%) rotate(45deg);
  border: 1px solid rgba(221, 178, 77, .55);
  background: var(--navy-850);
  box-shadow: inset 0 0 0 9px var(--navy-850), inset 0 0 0 10px rgba(221, 178, 77, .35), 0 8px 22px rgba(0,0,0,.4);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, .72fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: center;
}

.copy-block h2,
.section-heading h2,
.battle-copy h2,
.faq-intro h2,
.download-content h1,
.download-content h2,
.legal-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.copy-block > p:not(.kicker),
.section-heading > p:not(.kicker),
.battle-copy > p:not(.kicker),
.faq-intro > p:not(.kicker) {
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.feature-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(221, 178, 77, .18);
}

.feature-list li:last-child { border-bottom: 1px solid rgba(221, 178, 77, .18); }
.feature-list li > span { color: var(--gold-400); font-family: var(--display); font-size: 12px; }
.feature-list strong { display: block; margin-bottom: 5px; font-family: var(--display); font-size: 14px; letter-spacing: .01em; }
.feature-list small { display: block; color: var(--muted-dark); font-size: 13px; line-height: 1.7; }

.journey-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 42%, rgba(30, 81, 128, .2), transparent 28rem),
    linear-gradient(180deg, #010812, #020d20);
}

.journey-window {
  position: relative;
  width: min(100%, 480px);
  justify-self: end;
  aspect-ratio: .59;
  padding: 7px;
  border: 1px solid rgba(241, 209, 138, .56);
  border-radius: 240px 240px 30px 30px;
  background: linear-gradient(145deg, rgba(241, 209, 138, .18), rgba(3, 22, 53, .72));
  box-shadow: 0 40px 90px rgba(0, 0, 0, .55), 0 0 55px rgba(31, 104, 168, .12);
}

.journey-window::before,
.journey-window::after {
  content: "";
  position: absolute;
  z-index: 4;
  pointer-events: none;
}

.journey-window::before {
  inset: -15px;
  border: 1px solid rgba(221, 178, 77, .2);
  border-radius: inherit;
}

.journey-window::after {
  left: 50%;
  top: -34px;
  width: 68px;
  height: 68px;
  transform: translateX(-50%) rotate(45deg);
  border: 2px solid var(--gold-400);
  background: var(--navy-850);
  box-shadow: inset 0 0 0 8px var(--navy-850), inset 0 0 0 9px rgba(221,178,77,.45), 0 0 24px rgba(221,178,77,.2);
}

.journey-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 233px 233px 24px 24px;
  filter: saturate(.9) contrast(1.02);
}

.journey-window .journey-glow {
  position: absolute;
  inset: auto 8% 5%;
  height: 32%;
  background: radial-gradient(ellipse, rgba(224, 172, 69, .27), transparent 65%);
  pointer-events: none;
}

.floating-seal {
  position: absolute;
  z-index: 5;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-200);
  border-radius: 50%;
  background: radial-gradient(circle, #123769, #031635 70%);
  color: var(--gold-100);
  font-family: var(--serif);
  font-size: 26px;
  box-shadow: 0 12px 30px rgba(0,0,0,.5), 0 0 0 7px rgba(3,22,53,.8), 0 0 0 8px rgba(221,178,77,.28);
}

.seal-one { left: -48px; top: 28%; }
.seal-two { right: -36px; bottom: 21%; }

.experience-section {
  background:
    linear-gradient(rgba(221,178,77,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(221,178,77,.045) 1px, transparent 1px),
    #031126;
  background-size: 76px 76px;
}

.section-heading { max-width: 760px; margin: 0 auto 86px; text-align: center; }
.section-heading .kicker { margin-bottom: 13px; }
.section-heading > p:not(.kicker) { max-width: 620px; margin-inline: auto; }

.phone-stage { display: grid; gap: 120px; }

.phone-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 450px);
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
}

.phone-feature-library { grid-template-columns: minmax(320px, 450px) minmax(0, 1fr); }
.phone-copy { max-width: 520px; }
.phone-copy h3 { margin: 6px 0 18px; font-family: var(--serif); font-size: clamp(38px, 4vw, 56px); line-height: 1; letter-spacing: -.035em; }
.phone-copy p { color: var(--muted); font-size: 16px; line-height: 1.85; }
.feature-number { color: var(--gold-400); font-family: var(--display); font-size: 12px; letter-spacing: .15em; }

.mini-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
.mini-tags span { padding: 6px 11px; border: 1px solid rgba(221,178,77,.24); border-radius: 999px; color: var(--gold-100); background: rgba(221,178,77,.06); font-size: 11px; font-weight: 700; }

.phone-shell {
  position: relative;
  width: min(100%, 410px);
  justify-self: center;
  aspect-ratio: 9 / 20;
  padding: 10px;
  border: 2px solid rgba(241, 209, 138, .78);
  border-radius: 52px;
  background: linear-gradient(145deg, #b87925, #f7dda0 16%, #6b4316 33%, #e4bc5f 65%, #724613);
  box-shadow: 0 36px 80px rgba(0,0,0,.58), 0 0 0 7px #020812, 0 0 0 8px rgba(221,178,77,.25);
}

.phone-shell::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 41px;
}

.phone-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 41px;
  background: var(--navy-850);
}

.phone-speaker {
  position: absolute;
  z-index: 5;
  top: 18px;
  left: 50%;
  width: 90px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #02050a;
  box-shadow: inset 0 -1px rgba(255,255,255,.1);
}

.tilt-left { transform: perspective(1100px) rotateY(-5deg) rotateZ(-1deg); }
.phone-shell-featured { transform: perspective(1100px) rotateY(5deg) rotateZ(1deg); }

.battle-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 58%, rgba(25, 134, 255, .16), transparent 31rem),
    radial-gradient(circle at 86% 58%, rgba(255, 54, 48, .13), transparent 31rem),
    linear-gradient(180deg, #010713, #020b1a);
  border-block: 1px solid rgba(221, 178, 77, .18);
}

.battle-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: radial-gradient(circle, rgba(221,178,77,.5) 1px, transparent 1.2px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, black, transparent 38%, transparent 62%, black);
}

.battle-layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, 430px); gap: clamp(70px, 9vw, 150px); align-items: center; }
.battle-copy > p:not(.kicker) { max-width: 640px; }
.battle-copy h2 { color: var(--gold-100); }

.mode-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 34px; }
.mode-grid div { position: relative; padding: 16px 17px 15px 20px; overflow: hidden; border: 1px solid rgba(221,178,77,.22); border-radius: 10px; background: linear-gradient(135deg, rgba(9,36,72,.85), rgba(3,22,53,.55)); }
.mode-grid div::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--gold-400); box-shadow: 0 0 12px var(--gold-400); }
.mode-grid strong { display: block; font-family: var(--display); font-size: 11px; line-height: 1.4; }
.mode-grid span { display: block; margin-top: 4px; color: var(--muted-dark); font-size: 10px; }
.battle-footnote { color: var(--gold-200) !important; font-size: 12px !important; font-weight: 700; }

.battle-phone-wrap { position: relative; display: grid; place-items: center; }
.battle-phone { z-index: 2; width: min(100%, 390px); }
.versus-ring { position: absolute; z-index: 1; width: 520px; height: 520px; border: 1px solid rgba(221,178,77,.22); border-radius: 50%; background: conic-gradient(from 180deg, rgba(30,153,255,.18), transparent 27%, transparent 49%, rgba(255,57,50,.17), transparent 77%); animation: slowSpin 36s linear infinite; }
.versus-ring::before, .versus-ring::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(221,178,77,.14); }
.versus-ring::before { inset: 34px; }
.versus-ring::after { inset: 72px; }
.versus-ring span { position: absolute; inset: 50% auto auto 50%; width: 12px; height: 12px; transform: translate(-50%, -50%) rotate(45deg); background: var(--gold-400); box-shadow: 0 0 20px rgba(221,178,77,.7); }
@keyframes slowSpin { to { transform: rotate(360deg); } }

.trust-section { background: linear-gradient(180deg, #04152d, #020c1c); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.trust-card { position: relative; min-height: 300px; padding: 34px 27px; overflow: hidden; border: 1px solid rgba(221,178,77,.23); border-radius: 14px; background: linear-gradient(155deg, rgba(12,43,82,.92), rgba(3,22,53,.72)); box-shadow: inset 0 1px rgba(255,255,255,.03), 0 20px 45px rgba(0,0,0,.2); }
.trust-card::after { content: ""; position: absolute; right: -50px; bottom: -60px; width: 150px; height: 150px; border: 1px solid rgba(221,178,77,.1); transform: rotate(45deg); }
.trust-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 30px; border: 1px solid rgba(241,209,138,.45); transform: rotate(45deg); color: var(--gold-200); background: #04162f; box-shadow: 0 0 24px rgba(221,178,77,.08); }
.trust-icon span { display: block; transform: rotate(-45deg); }
.trust-card h3 { margin: 0 0 13px; font-family: var(--display); font-size: 14px; line-height: 1.5; }
.trust-card p { margin: 0; color: var(--muted-dark); font-size: 13px; line-height: 1.75; }

.principles-section { padding-top: 40px; background: #020c1c; }
.principles-shell { position: relative; display: grid; grid-template-columns: 260px 1fr; gap: 65px; align-items: center; padding: 55px 70px; overflow: hidden; border: 1px solid rgba(221,178,77,.35); border-radius: 20px; background: radial-gradient(circle at 12% 50%, rgba(48,99,158,.25), transparent 22rem), linear-gradient(130deg, #061d3c, #03142d); }
.principles-shell::before { content: ""; position: absolute; inset: 12px; pointer-events: none; border: 1px solid rgba(221,178,77,.13); border-radius: 12px; }
.principles-mark img { width: 230px; height: auto; mix-blend-mode: screen; filter: drop-shadow(0 10px 30px rgba(0,0,0,.35)); }
.principles-shell blockquote { position: relative; margin: 0; font-family: var(--serif); font-size: clamp(30px, 3.2vw, 46px); line-height: 1.2; letter-spacing: -.025em; color: var(--gold-100); }
.principles-note { margin: 18px 0 0; color: var(--muted-dark); font-size: 13px; }

.faq-section { background: linear-gradient(180deg, #020c1c, #010812); }
.faq-layout { display: grid; grid-template-columns: .7fr 1fr; gap: clamp(60px, 9vw, 150px); align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.accordion details { border-top: 1px solid rgba(221,178,77,.24); }
.accordion details:last-child { border-bottom: 1px solid rgba(221,178,77,.24); }
.accordion summary { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 4px; cursor: pointer; list-style: none; font-family: var(--display); font-size: 13px; font-weight: 650; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { position: relative; flex: 0 0 28px; width: 28px; height: 28px; border: 1px solid rgba(221,178,77,.34); border-radius: 50%; }
.accordion summary span::before, .accordion summary span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 1px; background: var(--gold-200); transition: transform .2s ease; }
.accordion summary span::before { transform: translate(-50%, -50%); }
.accordion summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion details[open] summary span::after { transform: translate(-50%, -50%) rotate(0); }
.accordion details p { margin: -2px 48px 25px 4px; color: var(--muted); font-size: 14px; line-height: 1.8; }

.download-section { position: relative; min-height: 660px; display: grid; place-items: center; overflow: hidden; border-top: 1px solid rgba(221,178,77,.28); background: #031126; }
.download-art { position: absolute; inset: 0; opacity: .25; background-image: url("/assets/images/seerahquest-hero.webp"); background-size: cover; background-position: center right; filter: saturate(.7); }
.download-section::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(3,22,53,.52), rgba(1,8,18,.97) 70%); }
.download-content { position: relative; z-index: 2; max-width: 760px; padding: 110px 20px; text-align: center; }
.download-content > img { width: 108px; height: auto; margin: 0 auto 22px; border-radius: 24px; mix-blend-mode: screen; }
.download-content h2 { color: var(--gold-100); }
.download-content p:not(.kicker) { max-width: 650px; margin: 22px auto 28px; color: var(--muted); }
.button-disabled { cursor: not-allowed; opacity: .72; }
.button-disabled:hover { transform: none; }
.download-content small { display: block; margin-top: 17px; color: var(--muted-dark); }

.notice-open { overflow: hidden; }
.auth-notice { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 24px; background: rgba(1,8,18,.86); backdrop-filter: blur(18px); }
.auth-notice-card { position: relative; width: min(560px, 100%); padding: 58px 52px 50px; overflow: hidden; border: 1px solid rgba(241,209,138,.58); border-radius: 18px; text-align: center; background: radial-gradient(circle at 50% 0%, rgba(43,95,154,.3), transparent 18rem), linear-gradient(145deg, #082044, #03142d); box-shadow: 0 30px 90px rgba(0,0,0,.65), inset 0 1px rgba(255,255,255,.05); }
.auth-notice-card::after { content: ""; position: absolute; inset: 10px; pointer-events: none; border: 1px solid rgba(221,178,77,.16); border-radius: 11px; }
.auth-notice-mark { position: relative; z-index: 1; width: 68px; height: 68px; display: grid; place-items: center; margin: 0 auto 27px; border: 1px solid var(--gold-200); border-radius: 50%; color: var(--gold-100); font-family: var(--serif); font-size: 35px; background: #031635; box-shadow: 0 0 28px rgba(221,178,77,.2); }
.auth-notice-success .auth-notice-mark { color: #8eebc7; border-color: rgba(84,213,164,.7); box-shadow: 0 0 28px rgba(84,213,164,.18); }
.auth-notice-error .auth-notice-mark { color: #ffaaa6; border-color: rgba(255,84,77,.65); box-shadow: 0 0 28px rgba(255,84,77,.16); }
.auth-notice-card h2 { position: relative; z-index: 1; margin: 0; color: var(--gold-100); font-family: var(--serif); font-size: clamp(34px, 5vw, 46px); line-height: 1.08; }
.auth-notice-card > p:not(.kicker) { position: relative; z-index: 1; margin: 20px auto 28px; color: var(--muted); line-height: 1.75; }
.auth-notice-card .button { position: relative; z-index: 1; cursor: pointer; }

.site-footer { border-top: 1px solid rgba(221,178,77,.22); background: #010711; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .7fr .9fr; gap: 60px; padding-block: 80px 65px; }
.footer-brand img { width: 170px; height: 170px; object-fit: contain; object-position: top; margin: -32px 0 -28px; }
.footer-brand p { max-width: 300px; color: var(--muted-dark); font-size: 13px; }
.site-footer h2 { margin: 0 0 20px; color: var(--gold-200); font-family: var(--display); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.site-footer a { display: block; width: max-content; margin: 9px 0; color: var(--muted-dark); text-decoration: none; font-size: 12px; transition: color .2s ease; }
.site-footer a:hover, .site-footer a:focus-visible { color: var(--gold-100); }
.footer-status p { display: flex; align-items: center; gap: 9px; margin: 0; font-size: 13px; font-weight: 700; }
.footer-status p span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 13px rgba(84,213,164,.7); }
.footer-status small { color: var(--muted-dark); }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(221,178,77,.12); color: var(--muted-dark); font-size: 11px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* Legal pages */
.legal-page { background: #020c1c; }
.legal-hero { position: relative; padding: 180px 0 85px; overflow: hidden; border-bottom: 1px solid rgba(221,178,77,.2); background: radial-gradient(circle at 70% 0%, rgba(42,90,148,.25), transparent 30rem), #031126; }
.legal-hero::after { content: ""; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(30deg, transparent 48%, rgba(221,178,77,.4) 49%, transparent 50%); background-size: 62px 108px; }
.legal-hero .container { position: relative; z-index: 2; }
.legal-hero p { max-width: 620px; color: var(--muted); }
.legal-content { width: min(820px, calc(100vw - 44px)); margin: 0 auto; padding: 85px 0 120px; }
.legal-content section { margin-bottom: 44px; }
.legal-content h2 { margin: 0 0 12px; color: var(--gold-100); font-family: var(--serif); font-size: 30px; }
.legal-content p, .legal-content li { color: var(--muted); font-size: 14px; line-height: 1.85; }
.legal-content a { color: var(--gold-200); }
.legal-updated { color: var(--gold-400) !important; font-size: 12px !important; font-weight: 700; }

@media (max-width: 980px) {
  :root { --container: min(calc(100% - 34px), 760px); }
  .nav-toggle { width: 44px; height: 44px; display: grid; place-content: center; gap: 5px; border: 1px solid rgba(221,178,77,.38); border-radius: 10px; background: rgba(3,22,53,.72); color: white; }
  .nav-toggle span:not(.sr-only) { width: 20px; height: 1px; display: block; background: var(--gold-100); transition: transform .2s ease, opacity .2s ease; }
  .site-header.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .site-header.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .primary-nav { position: absolute; inset: 82px 0 auto; display: grid; gap: 0; padding: 14px 25px 24px; border-bottom: 1px solid rgba(221,178,77,.25); background: rgba(1,9,23,.97); transform: translateY(-130%); opacity: 0; visibility: hidden; transition: transform .3s ease, opacity .3s ease, visibility .3s; }
  .site-header.menu-open .primary-nav { transform: none; opacity: 1; visibility: visible; }
  .primary-nav a { padding: 13px 4px; }
  .primary-nav .nav-cta { margin-top: 8px; text-align: center; }
  .primary-nav.legal-nav { position: static; display: flex; padding: 0; border: 0; background: none; transform: none; opacity: 1; visibility: visible; }
  .hero { min-height: 780px; }
  .hero-vignette { background: linear-gradient(90deg, rgba(1,8,18,.98), rgba(2,13,32,.82) 60%, rgba(1,8,18,.35)), linear-gradient(180deg, rgba(1,8,18,.7), transparent 30%, rgba(1,8,18,.9)); }
  .hero h1 { font-size: clamp(58px, 11vw, 86px); }
  .hero-content::before { display: none; }
  .proof-grid { grid-template-columns: repeat(3, 1fr); padding-block: 15px; }
  .proof-grid div { min-height: 90px; }
  .proof-grid div:nth-child(3)::after { display: none; }
  .split-grid, .battle-layout { grid-template-columns: 1fr; }
  .journey-window { justify-self: center; width: min(80vw, 460px); margin-top: 35px; }
  .phone-feature, .phone-feature-library { grid-template-columns: 1fr 340px; gap: 45px; }
  .phone-feature-library .phone-shell { order: 2; }
  .phone-feature-library .phone-copy { order: 1; }
  .battle-phone-wrap { margin-top: 20px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .principles-shell { grid-template-columns: 190px 1fr; padding: 45px; gap: 35px; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-status { grid-column: 2 / 4; }
}

@media (max-width: 700px) {
  :root { --container: calc(100% - 30px); }
  body { line-height: 1.6; }
  .nav-shell { min-height: 72px; }
  .primary-nav { top: 72px; }
  .hero { min-height: 760px; height: 100svh; max-height: 900px; align-items: end; }
  .hero-art { background-position: 61% center; }
  .hero-vignette { background: linear-gradient(180deg, rgba(1,8,18,.72), rgba(1,8,18,.34) 32%, rgba(1,8,18,.92) 64%, #010812 100%); }
  .hero-pattern { display: none; }
  .hero-content { padding: 110px 0 100px; }
  .hero h1 { font-size: clamp(52px, 16vw, 72px); line-height: .9; }
  .hero-lede { margin-top: 24px; font-size: 15px; line-height: 1.7; }
  .hero-actions { margin-top: 27px; }
  .button { width: 100%; }
  .scroll-cue { display: none; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid div:nth-child(2n)::after { display: none; }
  .proof-grid div:last-child { grid-column: 1 / -1; }
  .section { padding: 92px 0; }
  .copy-block h2, .section-heading h2, .battle-copy h2, .faq-intro h2, .download-content h1, .download-content h2, .legal-hero h1 { font-size: clamp(41px, 13vw, 56px); }
  .copy-block > p:not(.kicker), .section-heading > p:not(.kicker), .battle-copy > p:not(.kicker), .faq-intro > p:not(.kicker) { font-size: 15px; }
  .split-grid { gap: 54px; }
  .journey-window { width: calc(100vw - 70px); }
  .floating-seal { width: 62px; height: 62px; font-size: 21px; }
  .seal-one { left: -22px; }
  .seal-two { right: -20px; }
  .section-heading { margin-bottom: 58px; }
  .phone-stage { gap: 100px; }
  .phone-feature, .phone-feature-library { grid-template-columns: 1fr; }
  .phone-feature .phone-copy, .phone-feature-library .phone-copy { order: 1; }
  .phone-feature .phone-shell, .phone-feature-library .phone-shell { order: 2; }
  .phone-shell { width: min(82vw, 350px); transform: none; }
  .mode-grid { grid-template-columns: 1fr; }
  .versus-ring { width: 112vw; height: 112vw; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-card { min-height: auto; }
  .principles-section { padding-top: 5px; }
  .principles-shell { grid-template-columns: 1fr; padding: 45px 28px; text-align: center; }
  .principles-mark img { width: 140px; margin: 0 auto -20px; }
  .principles-shell blockquote { font-size: 31px; }
  .auth-notice-card { padding: 46px 24px 38px; }
  .accordion summary { min-height: 74px; font-size: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand, .footer-status { grid-column: 1 / -1; }
  .footer-bottom { min-height: 95px; flex-direction: column; justify-content: center; text-align: center; }
  .legal-hero { padding-top: 135px; }
}

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

:focus-visible { outline: 2px solid var(--gold-200); outline-offset: 4px; }
