:root {
  color-scheme: dark;
  --bg: #07101d;
  --panel: #0c1728;
  --panel-2: #111f34;
  --text: #eef4ff;
  --muted: #a9b6c9;
  --faint: #7d8ca3;
  --line: rgba(255, 255, 255, 0.12);
  --gold: #d8a83f;
  --gold-2: #f0cc73;
  --red: #d26464;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(216, 168, 63, 0.12), transparent 34rem),
    radial-gradient(circle at top right, rgba(43, 108, 176, 0.2), transparent 30rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

a {
  color: var(--gold-2);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

code {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: #ffe0a1;
  padding: 0.08rem 0.35rem;
}

pre {
  background: #050b14;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: auto;
  padding: 1rem;
}

pre code {
  background: transparent;
  border: 0;
  color: #dce8f7;
  padding: 0;
}

.siteHeader {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(7, 16, 29, 0.82);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  color: var(--text);
  display: inline-flex;
  gap: 0.75rem;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brandLogo {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  height: 48px;
  object-fit: contain;
  padding: 3px;
  width: 48px;
}

.brand small {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  margin-top: -0.2rem;
}

.topNav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.9rem;
  justify-content: flex-end;
}

.topNav a {
  color: var(--muted);
  font-size: 0.94rem;
}

.topNav a:hover {
  color: var(--text);
}

main {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 clamp(1rem, 3vw, 2rem) 4rem;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  min-height: calc(100vh - 82px);
  padding: 4rem 0;
}

.eyebrow {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0;
}

h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.8rem);
  letter-spacing: -0.055em;
  max-width: 820px;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.28rem;
  margin-bottom: 0.75rem;
}

.lede {
  color: #d4dfed;
  font-size: clamp(1.06rem, 1.8vw, 1.28rem);
  margin: 1.2rem 0 0;
  max-width: 680px;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.button {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  display: inline-flex;
  font-weight: 700;
  padding: 0.78rem 1.15rem;
  text-decoration: none;
}

.button:hover {
  border-color: rgba(240, 204, 115, 0.55);
  text-decoration: none;
}

.button.primary {
  background: var(--gold);
  border-color: transparent;
  color: #07101d;
}

.heroShot,
.featureBlock figure {
  margin: 0;
}

.heroShot img,
.featureBlock img {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

figcaption {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.section,
.notice {
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.notice {
  background: linear-gradient(135deg, rgba(216, 168, 63, 0.13), rgba(216, 168, 63, 0.04));
  border: 1px solid rgba(240, 204, 115, 0.2);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  padding: clamp(1.4rem, 4vw, 2rem);
}

.notice ul {
  margin-bottom: 0;
}

.sectionIntro {
  margin-bottom: 2rem;
  max-width: 780px;
}

.sectionIntro p:not(.eyebrow),
.card p,
.callout p,
.featureBlock p,
.notice li,
.faqList p,
.steps li {
  color: var(--muted);
}

.tinted {
  background: rgba(255, 255, 255, 0.035);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  box-shadow: 0 0 0 100vmax rgba(255, 255, 255, 0.035);
  clip-path: inset(0 -100vmax);
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.card,
.callout,
.steps,
.faqList details {
  background: rgba(12, 23, 40, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.1rem, 3vw, 1.5rem);
}

.card.wide {
  margin-top: 1rem;
}

.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li {
  color: var(--muted);
  margin: 0.55rem 0;
  padding-left: 1.7rem;
  position: relative;
}

.checklist li::before {
  color: var(--gold-2);
  content: "✓";
  font-weight: 800;
  left: 0;
  position: absolute;
}

.fineprint {
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  margin-top: 1rem;
  padding-top: 1rem;
}

.steps {
  margin-top: 1rem;
}

.tableWrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: auto;
}

table {
  border-collapse: collapse;
  min-width: 740px;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 1rem;
  text-align: left;
}

th {
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold-2);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.callout {
  margin-top: 1rem;
}

.callout.warning {
  border-color: rgba(210, 100, 100, 0.5);
}

.featureBlock {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  margin: 2rem 0;
}

.featureBlock.flip {
  grid-template-columns: minmax(320px, 1.15fr) minmax(0, 0.85fr);
}

.featureBlock.flip > div {
  order: 2;
}

.featureBlock.flip > figure {
  order: 1;
}

.faqList {
  display: grid;
  gap: 0.8rem;
}

.faqList details {
  padding: 0;
}

.faqList summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  padding: 1rem 1.25rem;
}

.faqList summary::-webkit-details-marker {
  display: none;
}

.faqList summary::after {
  color: var(--gold-2);
  content: "+";
  float: right;
}

.faqList details[open] summary::after {
  content: "–";
}

.faqList p {
  border-top: 1px solid var(--line);
  margin: 0;
  padding: 1rem 1.25rem 1.2rem;
}

footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 1.5rem clamp(1rem, 3vw, 2rem) 3rem;
}

@media (max-width: 900px) {
  .siteHeader,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .topNav {
    justify-content: flex-start;
  }

  .hero,
  .featureBlock,
  .featureBlock.flip,
  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }

  .featureBlock.flip > div,
  .featureBlock.flip > figure {
    order: initial;
  }
}
