:root {
  color-scheme: dark;
  --bg: #080501;
  --ink: #fff7e2;
  --soft: #d8c28b;
  --muted: #9d8a63;
  --gold: #f7c84f;
  --deep: #151006;
  --panel: rgba(20, 13, 4, .84);
  --line: rgba(247, 200, 79, .36);
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(247, 200, 79, .18), transparent 28rem),
    radial-gradient(circle at 86% 10%, rgba(141, 86, 9, .22), transparent 34rem),
    linear-gradient(180deg, #050300 0%, #0d0802 48%, #050300 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(rgba(247, 200, 79, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 200, 79, .04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(#000, transparent 76%);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.skip {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 50;
  transform: translateY(-170%);
  padding: .7rem 1rem;
  background: var(--gold);
  color: #171006;
  font-weight: 900;
}
.skip:focus { transform: translateY(0); }
.shell {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid: auto / auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: .75rem max(1rem, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(247, 200, 79, .24);
  background: rgba(5, 3, 0, .88);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: .7rem;
  font-weight: 950;
  text-transform: uppercase;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 24px rgba(247, 200, 79, .34);
}
.menu-button { display: none; }
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .35rem;
}
.nav a,
.footer a {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: .55rem .72rem;
  color: #f4e6bd;
  font-size: .9rem;
  font-weight: 850;
  transition: border-color .2s, color .2s, background .2s, transform .2s;
}
.nav a:hover,
.nav a.active,
.footer a:hover {
  border-color: rgba(247, 200, 79, .56);
  background: rgba(247, 200, 79, .1);
  color: var(--gold);
}
.nav a:hover,
.button:hover,
.tile:hover,
.cards article:hover { transform: translateY(-2px); }
.hero {
  display: grid;
  grid: auto / minmax(0, 1fr) minmax(320px, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  min-height: 78svh;
  padding: clamp(3rem, 7vw, 6rem) 0;
}
.kicker {
  margin: 0 0 .75rem;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  line-height: .96;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(247, 200, 79, .42);
  overflow-wrap: anywhere;
}
h1 span { display: block; }
h2 {
  margin-bottom: .85rem;
  font-size: clamp(2rem, 4.2vw, 4.1rem);
  line-height: 1;
  text-transform: uppercase;
}
h3 { margin-bottom: .55rem; font-size: 1.25rem; }
.lead {
  max-width: 620px;
  color: #fff2c9;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  overflow-wrap: anywhere;
}
.hero-copy,
.hero-art,
.split > *,
.table-layout > * { min-width: 0; }
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 200, 79, .46);
  border-radius: 8px;
  padding: .82rem 1rem;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.primary {
  background: linear-gradient(135deg, #7d4b08, #d39b23 58%, #ffe18a);
  color: #170f04;
  box-shadow: 0 0 32px rgba(247, 200, 79, .28);
}
.ghost { background: rgba(20, 13, 4, .72); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.4rem;
}
.hero-art {
  position: relative;
  border: 1px solid rgba(247, 200, 79, .28);
  border-radius: 8px;
  padding: clamp(.8rem, 2vw, 1.3rem);
  background:
    radial-gradient(circle at 50% 40%, rgba(247, 200, 79, .15), transparent 58%),
    rgba(5, 3, 0, .66);
  box-shadow: 0 0 42px rgba(247, 200, 79, .16);
}
.hero-art img { border-radius: 8px; opacity: .96; }
.gold-note {
  position: absolute;
  max-width: 230px;
  border: 1px solid rgba(247, 200, 79, .5);
  border-radius: 8px;
  padding: .9rem;
  background: rgba(9, 6, 2, .9);
  box-shadow: 0 0 28px rgba(247, 200, 79, .18);
}
.gold-note b {
  display: block;
  color: #ffe58a;
  text-transform: uppercase;
}
.gold-note span { color: var(--soft); font-size: .9rem; }
.gold-note.top { right: 1rem; top: 1rem; }
.gold-note.bottom { left: 1rem; bottom: 1rem; }
.trust-strip {
  display: grid;
  grid: auto / repeat(4, 1fr);
  gap: .7rem;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.trust-strip span {
  min-height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 200, 79, .26);
  border-radius: 8px;
  background: rgba(20, 13, 4, .72);
  color: #f7e9c3;
  font-weight: 900;
  text-align: center;
}
.split {
  display: grid;
  grid: auto / minmax(0, .85fr) minmax(420px, 1.15fr);
  gap: clamp(1.2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.split p,
.cards p,
.faq p,
.body-copy p,
.body-copy li,
.footer p,
.tile span,
.signal-board small { color: var(--soft); }
.tile-grid {
  display: grid;
  grid: auto / repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.tile,
.cards article,
.body-card,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(30, 20, 7, .88), rgba(9, 6, 2, .74));
  box-shadow: 0 0 26px rgba(247, 200, 79, .1);
}
.tile {
  min-height: 170px;
  padding: 1.2rem;
  transition: transform .2s, border-color .2s;
}
.tile:hover,
.cards article:hover { border-color: rgba(255, 229, 138, .7); }
.tile b {
  display: block;
  margin-bottom: .45rem;
  color: var(--gold);
  font-size: 1.25rem;
  text-transform: uppercase;
}
.gold-table {
  margin: clamp(2rem, 5vw, 4rem) 0;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-block: 1px solid rgba(247, 200, 79, .16);
  background:
    radial-gradient(ellipse at center, rgba(247, 200, 79, .1), transparent 55%),
    linear-gradient(90deg, rgba(5, 3, 0, .92), rgba(35, 22, 6, .78), rgba(5, 3, 0, .92));
}
.table-layout {
  display: grid;
  grid: auto / minmax(0, .75fr) minmax(420px, 1.25fr);
  gap: clamp(1.2rem, 5vw, 4rem);
  align-items: center;
}
.signal-board {
  display: grid;
  grid: auto / repeat(4, minmax(0, 1fr));
  gap: .8rem;
}
.signal-board div {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid rgba(247, 200, 79, .34);
  border-radius: 8px;
  background: rgba(5, 3, 0, .78);
}
.signal-board div::after {
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(247, 200, 79, .24);
  border-radius: 999px;
  content: "";
  box-shadow: inset 0 0 26px rgba(247, 200, 79, .18);
}
.signal-board span {
  color: #ffe58a;
  font-weight: 950;
}
.signal-board b {
  display: block;
  margin: 2.2rem 0 .4rem;
  color: var(--gold);
  font-size: 1.25rem;
  text-transform: uppercase;
}
.cards {
  display: grid;
  grid: auto / repeat(3, 1fr);
  gap: 1rem;
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.cards article {
  min-height: 250px;
  padding: 1.25rem;
  transition: transform .2s, border-color .2s;
}
.cards a,
.body-copy a {
  color: #ffe58a;
  font-weight: 900;
  text-transform: uppercase;
}
.faq {
  max-width: 920px;
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(4rem, 7vw, 6rem);
}
.faq details {
  margin-top: .8rem;
  padding: 1rem 1.15rem;
}
.faq summary {
  cursor: pointer;
  color: #fff8e5;
  font-weight: 950;
}
.faq details[open] { border-color: rgba(255, 229, 138, .62); }
.page-hero {
  display: grid;
  grid: auto / minmax(0, .85fr) 220px;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
}
.page-hero img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  justify-self: end;
  box-shadow: 0 0 34px rgba(247, 200, 79, .24);
}
.body-copy {
  display: grid;
  gap: 1rem;
  padding-bottom: clamp(4rem, 7vw, 6rem);
}
.body-card { padding: 1.2rem; }
.body-card ul { margin: .6rem 0 0; padding-left: 1.2rem; }
.footer {
  border-top: 1px solid rgba(247, 200, 79, .2);
  background: rgba(5, 3, 0, .9);
}
.footer-inner {
  display: grid;
  grid: auto / minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 0;
}
.footer img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  float: left;
  margin-right: .75rem;
}
.footer b { display: block; }
.footer p { margin: .15rem 0 0; font-size: .9rem; }
.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .35rem;
}
@media (max-width: 960px) {
  .shell { width: min(calc(100% - 24px), 720px); }
  .topbar {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    padding-inline: 12px;
  }
  .brand {
    flex: 1 1 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .menu-button {
    display: inline-grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(247, 200, 79, .44);
    border-radius: 8px;
    background: rgba(20, 13, 4, .86);
  }
  .menu-button span {
    position: relative;
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(247, 200, 79, .8);
  }
  .menu-button span::before,
  .menu-button span::after {
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--gold);
    content: "";
  }
  .menu-button span::before { top: -7px; }
  .menu-button span::after { top: 7px; }
  .nav {
    display: none;
    flex: 0 0 100%;
    justify-content: stretch;
  }
  .nav.open { display: grid; grid: auto / repeat(2, 1fr); }
  .nav a { text-align: center; }
  .hero,
  .split,
  .table-layout,
  .page-hero,
  .footer-inner { grid: auto / 1fr; }
  .hero { min-height: auto; }
  .page-hero img { justify-self: start; }
  .signal-board,
  .trust-strip { grid: auto / repeat(2, 1fr); }
  .cards { grid: auto / 1fr; }
}
@media (max-width: 620px) {
  .shell { width: min(calc(100% - 24px), 720px); }
  .brand img {
    width: 40px;
    height: 40px;
  }
  .brand { font-size: .95rem; }
  .nav.open { grid: auto / 1fr; }
  h1 { font-size: clamp(2rem, 9vw, 2.35rem); line-height: 1.04; }
  h2 { font-size: clamp(1.75rem, 9vw, 2.5rem); }
  .hero {
    gap: 1rem;
    padding-top: 3rem;
  }
  .hero-actions { display: grid; width: 100%; }
  .button { width: 100%; padding-inline: .7rem; text-align: center; }
  .lead { font-size: 1rem; }
  .hero-art { padding: .75rem; }
  .tile-grid,
  .signal-board,
  .trust-strip { grid: auto / 1fr; }
  .gold-note {
    position: static;
    max-width: none;
    margin-top: .75rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
