:root {
  --bg: #050505;
  --bg-2: #0a0a0a;
  --panel: rgba(12,12,12,0.94);
  --panel-2: rgba(18,18,18,0.96);
  --line: rgba(212, 175, 55, 0.20);
  --line-strong: rgba(212, 175, 55, 0.34);
  --line-soft: rgba(255,255,255,0.07);
  --text: #f5f1e8;
  --muted: #c8bcaa;
  --gold: #d4af37;
  --gold-2: #f1d27a;
  --gold-soft: rgba(212, 175, 55, 0.12);
  --gold-soft-2: rgba(212, 175, 55, 0.20);
  --paper: #fff8e7;
  --paper-2: #f4e5bd;
  --shadow: 0 24px 70px rgba(0,0,0,0.45);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  overflow-y: scroll;
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top center, rgba(212,175,55,0.14), transparent 24%),
    linear-gradient(180deg, #040404 0%, #080808 42%, #0a0a0a 100%);
}

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

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

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-shell {
  padding: 18px 0 56px;
}

main {
  display: grid;
  gap: 18px;
}

.panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(14,14,14,0.97), rgba(8,8,8,0.98));
  box-shadow: var(--shadow);
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(212,175,55,0.10), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0));
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  margin-bottom: 18px;
}

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

.brand-icon {
  width: 50px;
  height: 50px;
  padding: 7px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(212,175,55,0.08), rgba(212,175,55,0.02)),
    rgba(0,0,0,0.55);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.brand-copy {
  min-width: 0;
}

.brand-kicker {
  margin-top: 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 13px;
  background: rgba(255,255,255,0.01);
  transition: 0.18s ease;
}

.nav a:hover,
.nav a.active {
  border-color: var(--line-strong);
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(212,175,55,0.16), rgba(212,175,55,0.07));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.hero,
.page-hero {
  display: grid;
  gap: 24px;
  padding: 32px;
  margin-bottom: 18px;
  position: relative;
}

.hero {
  grid-template-columns: 1.15fr 0.85fr;
}

.page-hero {
  grid-template-columns: 1fr auto;
  align-items: end;
  min-height: 236px;
  padding: 32px;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -80px -100px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.16), transparent 66%);
  pointer-events: none;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(212,175,55,0.14), rgba(212,175,55,0.08));
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

h1 {
  margin: 18px 0 14px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero p,
.lead {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: 0.18s ease;
}

.btn-primary {
  color: #15120a;
  border-color: rgba(255,255,255,0.10);
  background:
    linear-gradient(180deg, #f3d98e 0%, #d4af37 52%, #b88b1d 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    0 10px 24px rgba(0,0,0,0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.btn-secondary {
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    rgba(0,0,0,0.35);
  border-color: var(--line);
}

.btn-secondary:hover {
  background:
    linear-gradient(180deg, rgba(212,175,55,0.12), rgba(212,175,55,0.06)),
    rgba(0,0,0,0.35);
}

.hero-stats,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  align-self: end;
}

.stat-card,
.metric-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(212,175,55,0.06), rgba(212,175,55,0.015)),
    rgba(0,0,0,0.36);
  backdrop-filter: blur(4px);
}

.stat-label,
.metric-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.stat-value,
.metric-value {
  margin-top: 8px;
  font-size: 30px;
  font-weight: 800;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.section {
  padding: 24px;
  margin-top: 0;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
}

h2 {
  margin: 10px 0 0;
  font-size: 32px;
  letter-spacing: -0.03em;
}

.section-copy {
  margin-top: 12px;
  max-width: 780px;
  color: var(--muted);
  line-height: 1.72;
  font-size: 16px;
}

.card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(212,175,55,0.05), rgba(212,175,55,0.015)),
    rgba(0,0,0,0.30);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.card p,
.card li,
.muted {
  color: var(--muted);
  line-height: 1.68;
  font-size: 15px;
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(212,175,55,0.06), rgba(212,175,55,0.015)),
    rgba(0,0,0,0.30);
}

.step-number {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(212,175,55,0.20), rgba(212,175,55,0.08));
  color: var(--gold-2);
  font-weight: 800;
  font-size: 14px;
  border: 1px solid var(--line);
}

.step strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  color: var(--text);
}

.list {
  margin: 0;
  padding-left: 18px;
}

.packet-preview {
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  border: 1px solid rgba(212,175,55,0.28);
  border-radius: var(--radius-xl);
  padding: 26px;
  color: #222014;
  box-shadow: 0 20px 55px rgba(0,0,0,0.22);
}

.packet-preview .packet-kicker {
  color: #7d6322;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 800;
}

.packet-preview h3 {
  margin: 12px 0 18px;
  font-size: 32px;
  color: #18150d;
}

.packet-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0,1fr));
}

.packet-box {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(125,99,34,0.14);
  background: rgba(255,255,255,0.48);
}

.packet-box strong {
  display: block;
  margin-bottom: 8px;
  color: #1b1810;
  font-size: 15px;
}

.packet-box p {
  margin: 0;
  color: #4b4330;
  font-size: 14px;
  line-height: 1.7;
}

.table-wrap {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 14px;
}

.table th {
  color: var(--gold-2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(212,175,55,0.16), rgba(212,175,55,0.08));
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 700;
}

.badge.soft {
  border-color: rgba(255,214,102,0.18);
  background: rgba(255,214,102,0.10);
  color: #f6df9e;
}

.footer {
  margin-top: 18px;
  padding: 22px 24px;
}

.footer-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}

.footer p,
.footer li {
  color: var(--muted);
  line-height: 1.68;
}

.footer-title {
  margin-bottom: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-2);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero,
  .grid-2,
  .grid-3,
  .footer-grid,
  .packet-grid,
  .page-hero,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 640px) {
  .wrap {
    width: min(var(--max), calc(100% - 20px));
  }

  .hero,
  .section,
  .footer,
  .page-hero {
    padding: 20px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 28px;
  }

  .hero p,
  .lead {
    font-size: 16px;
  }
}
