@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=DM+Mono:wght@400;500&family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --bg: #090908;
  --surface: #10100f;
  --surface-2: #161614;
  --surface-3: #1d1d19;
  --border: #252520;
  --border-2: #32322d;
  --text: #ebe8de;
  --muted: #a39f93;
  --faint: #6e6a5f;
  --accent: #d7ff5d;
  --accent-2: #9fe4ff;
  --warning: #ffaf5a;
  --danger: #ff8f8f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --sans: 'Inter', system-ui, sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;
  --mono: 'DM Mono', monospace;
  --max: 1120px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(159, 228, 255, 0.12), transparent 26%),
    radial-gradient(circle at 18% 18%, rgba(215, 255, 93, 0.10), transparent 18%),
    linear-gradient(180deg, #0b0b0a 0%, #090908 100%);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
}

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

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

.page-shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding-bottom: 100px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.nav-brand,
.nav-meta,
.eyebrow,
.label,
.pill,
.chip,
.footer-kicker {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.nav-brand,
.nav-meta {
  font-size: 11px;
}

.nav-brand {
  color: var(--muted);
}

.nav-brand span,
.nav-meta {
  color: var(--accent);
}

.hero {
  padding: 78px 0 64px;
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 28px;
  align-items: end;
}

.eyebrow {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 24px;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 400;
}

h1,
h2 {
  font-family: var(--serif);
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(48px, 8vw, 94px);
  line-height: 0.96;
  max-width: 820px;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.01;
  margin-bottom: 18px;
}

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

h4 {
  font-size: 18px;
  line-height: 1.2;
}

em {
  color: var(--accent);
  font-style: italic;
}

.lead {
  max-width: 720px;
  font-size: 19px;
  color: var(--muted);
  margin-bottom: 34px;
}

.hero-panel,
.panel,
.card,
.path-card,
.quote-card,
.price-card,
.copy-block,
.step-card,
.footer-card,
.note {
  background: rgba(16, 16, 15, 0.84);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 24px;
}

.meta-stack {
  display: grid;
  gap: 12px;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}

.meta-row span:first-child {
  color: var(--faint);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid var(--border-2);
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #0a0d04;
  background: var(--accent);
  border-color: var(--accent);
}

.btn-secondary {
  background: rgba(16, 16, 15, 0.9);
  color: var(--text);
}

.btn-ghost {
  color: var(--muted);
}

.hero-proof,
.stats,
.card-grid,
.path-grid,
.quote-grid,
.three-grid,
.step-grid,
.footer-grid {
  display: grid;
  gap: 16px;
}

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

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

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

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

.card,
.path-card,
.quote-card,
.step-card,
.footer-card {
  padding: 22px;
}

.label {
  font-size: 10px;
  color: var(--accent-2);
  margin-bottom: 14px;
}

.card p,
.path-card p,
.quote-card p,
.footer-card p,
.step-card p,
.panel p,
.note p,
li,
td {
  color: var(--muted);
}

section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 460px;
  color: var(--muted);
}

.pill {
  font-size: 10px;
  color: var(--accent);
  border: 1px solid rgba(215, 255, 93, 0.28);
  background: rgba(68, 93, 10, 0.16);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 22px;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.path-card {
  display: grid;
  gap: 16px;
}

.path-card strong,
.price {
  font-family: var(--serif);
  font-weight: 400;
}

.path-card strong {
  font-size: 34px;
  line-height: 1;
}

.price-card {
  padding: 30px;
  display: grid;
  gap: 22px;
}

.price {
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.95;
}

.price small {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}

.kpi {
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1;
  margin-bottom: 6px;
}

.quote-card blockquote {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.muted {
  color: var(--muted);
}

.danger {
  color: var(--danger);
}

.warning {
  color: var(--warning);
}

.accent {
  color: var(--accent);
}

.copy-block {
  padding: 24px;
  display: grid;
  gap: 14px;
}

.copy-block pre {
  margin: 0;
  white-space: pre-wrap;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 18px;
}

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

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

th,
td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

th {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(16, 16, 15, 0.84);
  font-size: 11px;
  color: var(--muted);
}

.footer {
  padding: 40px 0 0;
}

.footer-card {
  padding: 26px;
}

.footer-kicker {
  font-size: 10px;
  color: var(--accent);
  margin-bottom: 10px;
}

.route-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
  color: var(--muted);
}

.note {
  padding: 18px 20px;
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .section-head {
    grid-template-columns: 1fr;
  }

  .hero-proof,
  .stats,
  .card-grid,
  .path-grid,
  .quote-grid,
  .three-grid,
  .step-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
  }
}

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

  .nav {
    flex-direction: column;
    align-items: start;
  }

  .hero {
    padding-top: 56px;
  }

  h1 {
    font-size: clamp(40px, 15vw, 62px);
  }

  .lead {
    font-size: 17px;
  }

  .btn {
    width: 100%;
  }
}
