:root {
  --ocean: #07101e;
  --depth: #0d1a2e;
  --surface: #122236;
  --teal: #2dd4bf;
  --gold: #c9a860;
  --ink: #e2e8f0;
  --muted: #94a3b8;
  --faint: #52657f;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ocean);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; }
.display { font-family: Fraunces, Georgia, serif; }
.shell { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 16, 30, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.nav { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; white-space: nowrap; }
.brand img { width: 30px; height: 30px; }
.brand span { color: white; font-family: Fraunces, Georgia, serif; font-size: 17px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); font-size: 13px; text-decoration: none; }
.nav-links a:hover { color: white; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--ocean);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.button.secondary { background: transparent; color: var(--teal); border: 1px solid rgba(45, 212, 191, .4); }
.eyebrow { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.hero {
  position: relative;
  padding: 112px 0 88px;
  overflow: hidden;
  background-image: linear-gradient(rgba(45, 212, 191, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(45, 212, 191, .025) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto 30%;
  height: 520px;
  background: radial-gradient(ellipse, rgba(45, 212, 191, .09), transparent 65%);
  pointer-events: none;
}
.hero .shell { position: relative; }
.hero h1 { max-width: 900px; margin: 20px 0 24px; color: white; font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.03; letter-spacing: -.025em; font-weight: 300; }
.answer { max-width: 760px; margin: 0 0 34px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.75; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 42px; }
.fact { padding: 7px 12px; border: 1px solid rgba(45, 212, 191, .18); border-radius: 999px; color: var(--muted); font-size: 12px; }
.section { padding: 84px 0; border-top: 1px solid rgba(255, 255, 255, .055); }
.section.soft { background: rgba(13, 26, 46, .32); }
.section-heading { max-width: 720px; margin-bottom: 42px; }
.section h2 { margin: 10px 0 14px; color: white; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.12; font-weight: 300; }
.section-heading p, .prose p { color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card { padding: 30px; border: 1px solid rgba(255, 255, 255, .07); border-radius: 16px; background: rgba(18, 34, 54, .55); }
.card h3 { margin: 0 0 10px; color: white; font-family: Fraunces, Georgia, serif; font-size: 1.35rem; font-weight: 400; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }
.checklist { display: grid; gap: 14px; max-width: 820px; padding: 0; list-style: none; }
.checklist li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; color: var(--muted); }
.checklist li::before { content: "✓"; color: var(--teal); font-weight: 800; }
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { counter-increment: step; padding-top: 18px; border-top: 1px solid rgba(201, 168, 96, .28); }
.step::before { content: "0" counter(step); display: block; margin-bottom: 14px; color: var(--gold); font-size: 12px; letter-spacing: .14em; }
.step h3 { color: white; font-family: Fraunces, Georgia, serif; font-size: 1.3rem; font-weight: 400; }
.step p { color: var(--muted); font-size: 14px; }
.faq { max-width: 780px; }
.faq details { border-top: 1px solid rgba(255, 255, 255, .08); }
.faq details:last-child { border-bottom: 1px solid rgba(255, 255, 255, .08); }
.faq summary { padding: 20px 0; color: white; font-weight: 600; cursor: pointer; }
.faq p { margin: -4px 0 20px; color: var(--muted); }
.related { display: flex; flex-wrap: wrap; gap: 12px; }
.related a { padding: 10px 14px; border-radius: 10px; border: 1px solid rgba(255, 255, 255, .08); color: var(--muted); text-decoration: none; font-size: 13px; }
.related a:hover { border-color: rgba(45, 212, 191, .4); color: var(--teal); }
.cta { padding: 72px 0; text-align: center; background: rgba(45, 212, 191, .045); border-top: 1px solid rgba(45, 212, 191, .12); }
.cta h2 { margin: 0 0 14px; color: white; font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; }
.cta p { max-width: 620px; margin: 0 auto 26px; color: var(--muted); }
.footer { padding: 30px 0; border-top: 1px solid rgba(255, 255, 255, .06); color: var(--faint); font-size: 12px; }
.footer .shell { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; }
.footer a { text-decoration: none; }

@media (max-width: 760px) {
  .shell { width: min(100% - 32px, 1120px); }
  .nav-links { display: none; }
  .hero { padding: 86px 0 68px; }
  .hero h1 { font-size: clamp(2.2rem, 11vw, 3.25rem); }
  .grid, .grid.two, .steps { grid-template-columns: 1fr; }
  .section { padding: 66px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
