:root {
  --bg: #050506;
  --panel: #0d0d0f;
  --panel-soft: #151416;
  --gold: #c9a24a;
  --gold-soft: rgba(201, 162, 74, 0.18);
  --text: #f4efe3;
  --muted: #b9b1a2;
  --line: rgba(244, 239, 227, 0.12);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Sora", Verdana, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 80% 8%, rgba(201, 162, 74, 0.13), transparent 28rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 100%),
    var(--bg);
  background-size: auto, 28px 28px, auto;
  color: var(--text);
  font-family: var(--body);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 0.7px, transparent 0.7px);
  background-size: 5px 5px;
  opacity: 0.18;
  mix-blend-mode: screen;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  letter-spacing: 0.16em;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
}

.nav-links {
  display: none;
  gap: 22px;
  color: var(--muted);
  font-size: 0.82rem;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-links a:hover {
  color: var(--gold);
}

.section-grid {
  display: grid;
  gap: 32px;
}

.hero {
  min-height: calc(100vh - 88px);
  align-items: center;
  padding: 48px 0 80px;
}

.eyebrow,
.section-label,
.card-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 18vw, 8.8rem);
}

h1 span {
  display: block;
  color: var(--muted);
  font-size: clamp(2.5rem, 11vw, 5.6rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.45rem, 10vw, 5rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.hero-lede,
.copy-stack,
.authority-panel,
.final-cta p {
  color: var(--muted);
  font-size: clamp(1rem, 2.3vw, 1.12rem);
}

.hero-lede {
  max-width: 680px;
}

.hero-actions {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  width: fit-content;
  padding: 0 22px;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--gold), #e2c46f);
  color: #161107;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 46px rgba(201, 162, 74, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px rgba(201, 162, 74, 0.24);
  filter: saturate(1.08);
}

.privacy-note,
.final-cta small {
  max-width: 620px;
  color: #8f8778;
  font-size: 0.8rem;
}

.dossier-card,
.authority-panel,
.final-cta,
.steps article {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(21, 20, 22, 0.88), rgba(10, 10, 11, 0.9));
  box-shadow: var(--shadow);
}

.dossier-card {
  position: relative;
  padding: 26px;
  overflow: hidden;
}

.dossier-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid var(--gold-soft);
  pointer-events: none;
}

.dossier-card dl {
  position: relative;
  display: grid;
  gap: 22px;
  margin: 0;
}

.dossier-card div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
}

.dossier-card dt,
.steps span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 2.15rem;
  line-height: 1;
}

.dossier-card dd {
  margin: 0;
  color: var(--muted);
}

.content-band,
.protection,
.authority,
.final-cta {
  margin: 24px 0;
  padding: 54px 0;
}

.content-band {
  display: grid;
  gap: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.copy-stack p:last-child,
.authority-panel p:last-child,
.final-cta p:last-of-type {
  margin-bottom: 0;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 30px;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  padding: 24px;
}

.steps p,
.authority-panel li {
  color: var(--muted);
}

.authority {
  align-items: start;
}

.authority-panel {
  padding: 28px;
}

.authority-panel ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.authority-panel li {
  position: relative;
  padding-left: 22px;
}

.authority-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.final-cta {
  display: grid;
  gap: 18px;
  margin-bottom: 64px;
  padding: 32px;
}

.final-cta h2 {
  max-width: 880px;
}

.final-cta p {
  max-width: 760px;
}

.site-footer {
  display: grid;
  gap: 8px;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: #8f8778;
  font-size: 0.78rem;
}

.site-footer p {
  margin: 0;
}

.reveal {
  animation: rise 720ms ease both;
}

.delay-1 {
  animation-delay: 80ms;
}

.delay-2 {
  animation-delay: 170ms;
}

.delay-3 {
  animation-delay: 260ms;
}

.delay-4 {
  animation-delay: 350ms;
}

.delay-5 {
  animation-delay: 440ms;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 760px) {
  .page-shell {
    width: min(1180px, calc(100% - 64px));
  }

  .nav-links {
    display: flex;
  }

  .section-grid,
  .content-band {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  }

  .hero {
    padding-top: 30px;
  }

  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .final-cta {
    padding: 46px;
  }
}

@media (max-width: 520px) {
  .button-primary {
    width: 100%;
  }

  .dossier-card div {
    grid-template-columns: 44px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
