:root {
  --bg: #0e2a26;
  --panel: #163832;
  --panel-2: #1a3f38;
  --cream: #ebd5cd;
  --white: #fefaf8;
  --salmon: #ec8a5e;
  --plum: #2d1530;
  --muted: rgba(235, 213, 205, 0.7);
  --soft: rgba(235, 213, 205, 0.45);
  --line: rgba(235, 213, 205, 0.13);
  --sans: "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Fraunces, Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 14% 6%, rgba(236, 138, 94, 0.14), transparent 30rem),
    radial-gradient(circle at 86% 28%, rgba(45, 21, 48, 0.6), transparent 36rem),
    linear-gradient(145deg, var(--bg), #071713 78%);
  font-family: var(--sans);
  line-height: 1.65;
}
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 18px; top: 12px; z-index: 20; background: var(--white); color: var(--bg); padding: 10px 14px; }
.nav { position: sticky; top: 0; z-index: 10; border-bottom: 1px solid var(--line); background: rgba(14, 42, 38, 0.92); backdrop-filter: blur(16px); }
.nav .wrap { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 0; }
.brand { font-family: var(--serif); font-style: italic; font-weight: 800; color: var(--salmon); text-decoration: none; font-size: 20px; }
.navlinks { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.navlinks a { text-decoration: none; }
.navlinks a:hover, .navlinks a:focus-visible { color: var(--salmon); }
.breadcrumb { padding-top: 30px; color: var(--soft); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.breadcrumb a { text-decoration: none; }
.hero { padding: clamp(56px, 8vw, 104px) 0 46px; }
.eyebrow { color: var(--salmon); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; margin: 0 0 18px; }
h1, h2, h3 { font-family: var(--serif); font-style: italic; color: var(--white); letter-spacing: -0.025em; }
h1 { font-size: clamp(43px, 7.4vw, 82px); line-height: 0.98; max-width: 1000px; margin: 0 0 24px; }
h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.05; margin: 0 0 16px; }
h3 { font-size: 25px; line-height: 1.12; margin: 0 0 11px; }
.answer { max-width: 860px; margin: 0; font-size: clamp(18px, 2vw, 22px); color: var(--muted); }
.answer strong { color: var(--cream); }
.actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; border: 1px solid rgba(236, 138, 94, 0.48); border-radius: 4px; padding: 12px 18px; text-decoration: none; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.btn.primary { background: var(--salmon); color: var(--bg); font-weight: 800; }
.fit { display: grid; grid-template-columns: 150px 1fr; gap: 28px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 24px 0; }
.fit strong { color: var(--salmon); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
.fit span { color: var(--muted); }
.section { padding: clamp(56px, 8vw, 92px) 0; }
.section + .section { border-top: 1px solid var(--line); }
.section-head { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; margin-bottom: 34px; align-items: end; }
.section-head p { margin: 0; color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.card { border: 1px solid var(--line); background: rgba(22, 56, 50, 0.76); border-radius: 6px; padding: 24px; }
.card p { color: var(--muted); margin: 0; }
.card ul { color: var(--muted); margin: 0; padding-left: 20px; }
.card li + li { margin-top: 8px; }
.card-link { margin-top: 16px !important; }
.card-link a { color: var(--salmon); text-decoration: none; }
.two-column { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 6vw, 72px); align-items: center; }
.two-column p { color: var(--muted); }
.two-column a { color: var(--salmon); }
.authority-hero { max-width: 1040px; }
.proof-figure { margin: 0; border: 1px solid var(--line); background: rgba(22, 56, 50, 0.76); padding: 10px; }
.proof-figure.wide { margin-bottom: clamp(20px, 4vw, 46px); }
.proof-figure img { display: block; width: 100%; height: auto; max-height: 720px; object-fit: cover; object-position: top; }
.proof-figure figcaption { padding: 10px 4px 2px; color: var(--soft); font-size: 11px; letter-spacing: 0.09em; text-transform: uppercase; }
.facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); margin: 30px 0 0; }
.facts div { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.facts div:nth-child(odd) { padding-right: 24px; }
.facts div:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line); }
.facts dt { color: var(--salmon); font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase; }
.facts dd { margin: 0; color: var(--muted); }
.facts a { color: var(--cream); }
.proof-callout { max-width: 900px; }
.proof-callout > p { color: var(--muted); font-size: 18px; }
.proof-callout .disclosure { margin-top: 24px; color: var(--soft); font-size: 13px; }
.steps { counter-reset: steps; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.step { counter-increment: steps; border-left: 2px solid var(--salmon); padding: 4px 18px 4px 20px; }
.step:before { content: "0" counter(steps); display: block; color: var(--salmon); font-size: 11px; letter-spacing: 0.15em; margin-bottom: 12px; }
.step p { color: var(--muted); margin: 0; }
.faq { max-width: 900px; }
.qa { padding: 24px 0; border-top: 1px solid var(--line); }
.qa:last-child { border-bottom: 1px solid var(--line); }
.qa p { color: var(--muted); margin: 0; }
.related { display: flex; flex-wrap: wrap; gap: 10px; }
.related a { border: 1px solid var(--line); background: rgba(45, 21, 48, 0.24); border-radius: 999px; padding: 9px 14px; text-decoration: none; color: var(--muted); }
.related a:hover, .related a:focus-visible { border-color: var(--salmon); color: var(--cream); }
.cta { margin: 20px 0 80px; border: 1px solid rgba(236, 138, 94, 0.35); background: linear-gradient(135deg, rgba(45, 21, 48, 0.72), rgba(22, 56, 50, 0.8)); padding: clamp(28px, 5vw, 54px); border-radius: 8px; }
.cta p { color: var(--muted); max-width: 760px; }
.footer { border-top: 1px solid var(--line); padding: 30px 0 44px; color: var(--soft); font-size: 12px; }
.footer a { color: var(--salmon); text-decoration: none; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; }
.footer-links a { color: var(--soft); }
@media (max-width: 820px) {
  .nav .wrap { align-items: flex-start; flex-direction: column; }
  .section-head, .fit, .two-column, .facts { grid-template-columns: 1fr; gap: 12px; }
  .grid, .steps { grid-template-columns: 1fr; }
  .facts div:nth-child(odd), .facts div:nth-child(even) { padding-left: 0; padding-right: 0; border-left: 0; }
  .hero { padding-top: 46px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
