:root {
  color-scheme: dark;
  --white: #ffffff;
  --ink: #0f111a;
  --charcoal: #000000;
  --cream: #f5efe3;
  --muted-warm: #b6afa4;
  --quiet-warm: #7d766d;
  --gold: #f5a524;
  --gold-deep: #c77d12;
  --gold-gradient: linear-gradient(90deg, #c77d12 0%, #f5a524 58%, #f8d88a 100%);
  --page-max: 1180px;
  --radius: 8px;
  --radius-xl: 12px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  background: var(--charcoal);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

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

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(var(--page-max), calc(100% - 40px));
  min-height: 64px;
  margin: 0 auto;
  padding: 10px 12px;
  border: 1px solid rgba(245,165,36,0.18);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(90deg, rgba(18,18,18,0.92), rgba(22,17,11,0.86)),
    rgba(15,17,26,0.88);
  color: var(--white);
  font-size: 14px;
  backdrop-filter: blur(22px) saturate(1.14);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.10);
}

.brand-mark img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.nav {
  justify-self: center;
  display: flex;
  gap: 10px;
  color: rgba(245,239,227,0.76);
}

.nav a {
  padding: 8px 9px;
  border-radius: var(--radius);
}

.nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  font-weight: 650;
  line-height: 1.2;
}

.header-cta {
  min-height: 38px;
  padding: 8px 16px;
  background: var(--gold-gradient);
  color: #090909;
}

/* ── HERO ── */
.hero {
  position: relative;
  display: grid;
  align-items: start;
  min-height: 82vh;
  padding: 118px 20px 42px;
  isolation: isolate;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.62)),
    radial-gradient(circle at 50% 12%, rgba(245,165,36,0.18), rgba(245,165,36,0) 28%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.04), rgba(255,255,255,0) 32%),
    linear-gradient(180deg, rgba(24,24,24,0.20), rgba(5,5,5,0.95)),
    #141414;
}

.city-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.9));
}

.city-silhouette {
  position: absolute;
  left: -4vw;
  right: -8vw;
  bottom: 0;
  height: 42vh;
  opacity: 0.34;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.14) 0 3px, transparent 3px 22px),
    linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.02));
  clip-path: polygon(0 100%, 0 42%, 8% 42%, 8% 28%, 16% 28%, 16% 62%, 24% 62%, 24% 18%, 33% 18%, 33% 46%, 43% 46%, 43% 5%, 55% 5%, 55% 38%, 64% 38%, 64% 24%, 72% 24%, 72% 58%, 81% 58%, 81% 14%, 90% 14%, 90% 35%, 100% 35%, 100% 100%);
}

.hero-inner {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
}

h1 {
  max-width: 960px;
  margin: 0 auto 24px;
  color: var(--white);
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(58px, 9vw, 112px);
  font-weight: 500;
  line-height: 0.91;
}

h2 {
  margin-bottom: 22px;
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(38px, 6vw, 78px);
  font-weight: 500;
  line-height: 0.96;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.1;
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,0.78);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.disclaimer-callout {
  display: grid;
  gap: 7px;
  padding: 15px 16px;
  border: 1px solid rgba(245,165,36,0.38);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(245,165,36,0.14), rgba(245,165,36,0.03)),
    rgba(0,0,0,0.30);
}

.disclaimer-callout strong {
  color: var(--gold);
  font-size: 13px;
  line-height: 1.15;
}

.disclaimer-callout p {
  margin: 0;
  color: rgba(245,239,227,0.74);
  font-size: 13px;
  line-height: 1.48;
}

.hero-disclaimer {
  width: min(740px, 100%);
  margin: 22px auto 0;
  text-align: left;
  backdrop-filter: blur(18px);
}

.button {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 14px;
}

.button.primary {
  background: var(--gold-gradient);
  color: #080808;
}

.button.ghost {
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.button.button-xl {
  min-height: 60px;
  padding: 16px 30px;
  font-size: 17px;
  font-weight: 700;
}

.hero-panel {
  position: absolute;
  left: max(20px, calc((100vw - var(--page-max)) / 2));
  right: max(20px, calc((100vw - var(--page-max)) / 2));
  bottom: -72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  background: rgba(9,9,10,0.54);
  backdrop-filter: blur(20px);
}

.panel-top,
.panel-foot {
  display: grid;
  gap: 6px;
  min-width: 140px;
}

.panel-top span,
.panel-foot span,
.signal-list span {
  color: rgba(255,255,255,0.62);
  font-size: 12px;
}

.panel-top strong {
  color: var(--white);
  font-size: 20px;
}

.signal-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.signal-list span {
  min-height: 42px;
  padding: 12px;
  border: 1px solid rgba(245,165,36,0.24);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
}

.ticker {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  width: min(var(--page-max), calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 48px;
}

.ticker span {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 128px;
  color: var(--muted-warm);
  font-size: 13px;
}

/* ── SECTIONS ── */
.section {
  width: min(var(--page-max), calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-copy { max-width: 760px; }

.section-copy p,
.access-copy p,
.audit-board p {
  color: var(--muted-warm);
  font-size: 18px;
}

/* ── AUDIT SECTION ── */
.audit-section {
  color: var(--ink);
  background: var(--white);
  width: 100%;
  padding: 110px max(20px, calc((100vw - var(--page-max)) / 2));
}

.audit-section .eyebrow { color: var(--gold-deep); }

.audit-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  border: 1px solid rgba(15,17,26,0.12);
  background: rgba(15,17,26,0.12);
}

.audit-board article {
  min-height: 260px;
  padding: 28px;
  background: #f5f5f2;
}

.audit-board span {
  display: inline-block;
  margin-bottom: 72px;
  color: var(--gold-deep);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
}

/* ── LEAK SECTION ── */
.leak-section,
.kit-section,
.access-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 60px;
  align-items: center;
}

.leak-visual {
  min-height: 560px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(135deg, rgba(245,165,36,0.12), transparent 36%),
    #101012;
}

.ledger {
  width: min(420px, calc(100% - 48px));
  border: 1px solid rgba(255,255,255,0.14);
  background: #060607;
}

.ledger div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
}

.ledger div:last-child { border-bottom: 0; }

.ledger strong { color: var(--gold); }

/* ── KIT SECTION ── */
.kit-section {
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1fr);
}

.kit-preview {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #111113;
}

.kit-preview img {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.10);
}

/* ── ACCESS / COMING SOON FORM ── */
.access-section {
  align-items: start;
  padding-bottom: 120px;
  position: relative;
}

.access-form {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.05);
}

.access-form label {
  color: rgba(255,255,255,0.68);
  font-size: 13px;
}

.access-form input,
.access-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  background: rgba(0,0,0,0.22);
  color: var(--white);
}

.access-form button { margin-top: 8px; }

.form-note {
  margin: 2px 0 0;
  color: var(--quiet-warm);
  font-size: 13px;
}

.access-section.coming-soon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  pointer-events: none;
  border-radius: var(--radius-xl);
}

.access-section.coming-soon > *:not(.coming-soon-badge) {
  opacity: 0.35;
  filter: grayscale(0.4);
  pointer-events: none;
  user-select: none;
}

.access-section.coming-soon .coming-soon-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(15,15,15,0.92);
  border: 1px solid rgba(245, 165, 36, 0.5);
  border-radius: 999px;
  padding: 12px 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

/* ── BUY SECTION ── */
.buy-section {
  display: flex;
  justify-content: center;
}

.buy-card {
  width: 100%;
  max-width: 880px;
  padding: clamp(32px, 4vw, 48px);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(22,22,22,0.95), rgba(12,12,12,0.95));
  border: 1px solid rgba(245, 165, 36, 0.28);
  display: grid;
  grid-template-columns: 1.1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
}

.buy-disclaimer {
  grid-column: 1 / -1;
}

.buy-card .eyebrow { margin-bottom: 10px; }

.buy-card h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 12px;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.buy-lede {
  font-size: 16px;
  color: var(--muted-warm);
  margin: 0;
}

.buy-card-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  white-space: nowrap;
}

.buy-foot {
  font-size: 12px;
  color: var(--quiet-warm);
}

/* ── POLICY PAGES ── */
.policy {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 96px;
  color: var(--cream);
}

.policy .eyebrow { margin-bottom: 24px; }

.policy h1 {
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 12px;
}

.policy h2 {
  font-size: 22px;
  margin: 40px 0 12px;
  color: var(--white);
}

.policy p,
.policy li {
  color: var(--muted-warm);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 12px;
}

.policy .meta {
  color: var(--quiet-warm);
  font-size: 14px;
  margin-bottom: 32px;
}

.policy ul {
  padding-left: 20px;
  margin: 0 0 12px;
}

.policy a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy .back {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.policy .back a {
  color: var(--muted-warm);
  text-decoration: none;
}

/* ── FOOTER ── */
.site-footer {
  display: grid;
  gap: 14px;
  width: min(var(--page-max), calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 48px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: var(--muted-warm);
}

.site-footer span {
  color: var(--white);
  font-weight: 650;
}

.site-footer p { margin-bottom: 0; }

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav { display: none; }

  .hero {
    min-height: 740px;
    align-items: start;
    padding-top: 84px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    bottom: 34px;
  }

  .panel-foot { display: none; }

  .signal-list { grid-template-columns: 1fr; }
  .signal-list span:nth-child(n+4) { display: none; }

  .audit-board,
  .leak-section,
  .kit-section,
  .access-section {
    grid-template-columns: 1fr;
  }

  .audit-board {
    margin-top: 32px;
  }

  .audit-board article {
    min-height: auto;
    padding: 22px 24px;
  }

  .audit-board span { margin-bottom: 18px; }

  .leak-visual { display: none; }

  .kit-section .section-copy { order: -1; }
}

@media (max-width: 720px) {
  .buy-card {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .buy-card-cta { align-items: stretch; }
  .buy-card-cta .button { justify-content: center; }
}

@media (max-width: 560px) {
  .site-header {
    width: calc(100% - 28px);
    top: 10px;
  }

  .brand span:last-child { display: none; }

  .hero {
    min-height: auto;
    padding: 92px 14px 26px;
  }

  h1 { font-size: clamp(44px, 11.5vw, 58px); line-height: 0.96; }
  h2 { font-size: clamp(34px, 10vw, 46px); }

  .hero-copy { font-size: 18px; line-height: 1.36; }

  .hero-actions { margin-top: 24px; }

  .hero-panel {
    position: relative;
    left: 0;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 20px;
    padding: 16px;
  }

  .panel-top {
    grid-template-columns: 1fr auto;
    align-items: baseline;
  }

  .signal-list {
    gap: 8px;
    margin-top: 10px;
    grid-template-columns: 1fr;
  }

  .signal-list span {
    min-height: 38px;
    padding: 10px 12px;
  }

  .signal-list span:nth-child(n+4) { display: none; }

  .ticker { display: none; }

  .section {
    width: calc(100% - 28px);
    padding: 56px 0;
  }

  .audit-section {
    padding: 64px 14px;
  }

  .audit-board { margin-top: 28px; }

  .audit-board article {
    min-height: 168px;
    padding: 22px;
  }

  .audit-board span { margin-bottom: 34px; }

  .kit-preview { display: none; }
}
