/* From vault_sales_page.html */
 block goes into Appearance → Customize → Additional CSS,
       OR wrap it in a Custom HTML block above the page content

  Option B — Paste full file into a child theme page template:
    1. Copy this file to your child theme as page-vault.php
    2. Assign the "Vault" page template to your sales page in WordPress

  Option C — Elementor / Divi / Beaver Builder:
    1. Add an HTML widget / Code module
    2. Paste the content between <!-- PAGE CONTENT START --> markers
    3. Paste the <style> into the widget's CSS section or Appearance → Additional CSS

  Replace all [BRACKET] placeholders before publishing.
  Payment links: use Gumroad, Stripe Payment Links, or WooCommerce.
  ─────────────────────────────────────────────────────────────────
-->

<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Syne:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">

<style>
/* ═══════════════════════════════════════════════
   DESIGN SYSTEM
   Aesthetic: editorial dark — ink on near-black,
   amber accent, tight typography, grid discipline.
   Inspired by technical handbooks and engineering
   documentation, not SaaS landing pages.
═══════════════════════════════════════════════ */
/* uses theme :root from main.css */

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

html { scroll-behavior: smooth; }

body {
  /* body from main.css */
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Typography ── */
.serif { font-family: 'Instrument Serif', serif; }
.mono  { font-family: 'JetBrains Mono', monospace; }

h1,h2,h3,h4 { line-height: 1.15; font-weight: 700; }

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 14px;
}

/* ── Layout ── */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}
.wrap--narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: 100px 0; }
section + section { padding-top: 0; }

/* ── Horizontal rule ── */
.rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r);
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: #0C0C0C;
}
.btn-primary:hover {
  background: #E8A84A;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212,149,58,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-2);
}
.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--amber);
  padding: 0;
  font-size: 13px;
  letter-spacing: 0.06em;
}
.btn-ghost:hover { opacity: 0.75; }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }
.btn-green {
  background: var(--green);
  color: #0C0C0C;
}
.btn-green:hover {
  background: #4DC07A;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(61,170,106,0.3);
}

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  transition: border-color 0.2s;
}
.card:hover { border-color: var(--border-2); }
.card--amber { border-color: var(--amber-dim); }
.card--amber:hover { border-color: var(--amber); }

/* ── Tags / badges ── */
.tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  background: var(--bg-3);
  color: var(--ink-2);
  border: 1px solid var(--border);
}
.tag--amber { background: var(--amber-glow); color: var(--amber); border-color: var(--amber-dim); }
.tag--green { background: var(--green-dim); color: var(--green); border-color: rgba(61,170,106,0.3); }

/* ══════════════════════════════════════════
   NAV BAR
══════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12,12,12,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 28px;
}
.navbar__inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar__logo {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.navbar__logo span { color: var(--amber); }
.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.navbar__links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.15s;
}
.navbar__links a:hover { color: var(--ink); }
.navbar__cta { margin-left: 8px; }

@media (max-width: 700px) {
  .navbar__links { display: none; }
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(ellipse, rgba(212,149,58,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
}
.hero__title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--amber);
}
.hero__subtitle {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 56px;
}
.hero__stat {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 20px 24px;
}
.hero__stat:first-child { border-radius: var(--r-lg) 0 0 var(--r-lg); }
.hero__stat:last-child  { border-radius: 0 var(--r-lg) var(--r-lg) 0; }
.hero__stat-num {
  font-family: 'Instrument Serif', serif;
  font-size: 36px;
  color: var(--amber);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  font-size: 12px;
  color: var(--ink-3);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero right: stack card */
.hero__card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.hero__card-header {
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #FF5F57; }
.dot-y { background: #FFBD2E; }
.dot-g { background: #28C840; }
.hero__card-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-3);
  margin-left: auto;
  letter-spacing: 0.08em;
}
.hero__card-body { padding: 24px 20px; }
.hero__product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.hero__product-row:last-child { border-bottom: none; }
.hero__product-name { font-size: 13px; font-weight: 600; }
.hero__product-sub  { font-size: 11px; color: var(--ink-3); margin-top: 1px; }
.hero__product-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--amber);
  font-weight: 500;
  text-align: right;
}
.hero__product-price small {
  display: block;
  font-size: 10px;
  color: var(--ink-3);
  margin-top: 1px;
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__card  { display: none; }
}

/* ══════════════════════════════════════════
   SOCIAL PROOF TICKER
══════════════════════════════════════════ */
.proof-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
}
.proof-bar__track {
  display: flex;
  gap: 60px;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.proof-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
}
.proof-bar__item::before {
  content: '✦';
  color: var(--amber);
  font-size: 10px;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════════ */
.section-header {
  margin-bottom: 64px;
}
.section-header h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 560px;
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   PRODUCT GRID — OVERVIEW
══════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px 36px;
  position: relative;
  transition: all 0.2s;
}
.product-card:hover { background: var(--bg-2); border-color: var(--border-2); }
.product-card--featured {
  border-color: var(--amber-dim);
  background: linear-gradient(135deg, var(--bg-card) 60%, rgba(212,149,58,0.04));
}
.product-card--featured:hover { border-color: var(--amber); }
.product-card__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.product-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  background: var(--bg-3);
  border: 1px solid var(--border);
}
.product-card__icon--amber { background: var(--amber-glow); border-color: var(--amber-dim); }
.product-card__icon--green { background: var(--green-dim); border-color: rgba(61,170,106,0.3); }
.product-card h3 { font-size: 20px; margin-bottom: 10px; }
.product-card p { font-size: 14px; color: var(--ink-2); line-height: 1.6; margin-bottom: 24px; }
.product-card__price {
  font-family: 'Instrument Serif', serif;
  font-size: 30px;
  color: var(--amber);
  margin-bottom: 4px;
}
.product-card__price-note {
  font-size: 12px;
  color: var(--ink-3);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 24px;
}
.product-card__badge {
  position: absolute;
  top: 20px; right: 20px;
}

@media (max-width: 900px) {
  .products-grid { grid-template-columns: 1fr; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════
   PAID SUBSCRIPTION SECTION
══════════════════════════════════════════ */
.sub-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.sub-feature-list { list-style: none; margin: 28px 0; }
.sub-feature-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.sub-feature-list li:last-child { border-bottom: none; }
.check { color: var(--green); font-size: 14px; margin-top: 2px; flex-shrink: 0; }

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.pricing-card__header {
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
  padding: 24px 28px;
}
.pricing-card__header h3 { font-size: 18px; margin-bottom: 6px; }
.pricing-card__header p  { font-size: 13px; color: var(--ink-2); }
.pricing-card__body { padding: 28px; }
.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.price-big {
  font-family: 'Instrument Serif', serif;
  font-size: 44px;
  color: var(--amber);
  line-height: 1;
}
.price-period {
  font-size: 14px;
  color: var(--ink-3);
  font-family: 'JetBrains Mono', monospace;
}
.price-note { font-size: 12px; color: var(--ink-3); margin-bottom: 24px; }
.price-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}
.pricing-features { list-style: none; margin-bottom: 24px; }
.pricing-features li {
  display: flex;
  gap: 10px;
  font-size: 13px;
  padding: 7px 0;
  color: var(--ink-2);
}
.pricing-features li .check { font-size: 12px; }
.pricing-inr {
  background: var(--bg-3);
  border: 1px dashed var(--border-2);
  border-radius: var(--r);
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--ink-2);
}
.pricing-inr strong { color: var(--amber); }

@media (max-width: 800px) {
  .sub-grid { grid-template-columns: 1fr; }
  .pricing-card { position: static; }
}

/* ══════════════════════════════════════════
   VAULT SECTION
══════════════════════════════════════════ */
.vault-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.vault-header__left { flex: 1; min-width: 300px; }
.vault-header__right { flex-shrink: 0; }

.vault-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}
.archetype-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 22px 18px;
  transition: all 0.18s;
}
.archetype-card:hover {
  background: var(--bg-2);
  border-color: var(--amber-dim);
  transform: translateY(-2px);
}
.archetype-card__icon { font-size: 22px; margin-bottom: 10px; display: block; }
.archetype-card__name { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.archetype-card__count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--amber);
}

@media (max-width: 900px) { .vault-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 901px) and (max-width: 1100px) { .vault-grid { grid-template-columns: repeat(3, 1fr); } }

.vault-includes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}
.vault-include {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 22px 20px;
}
.vault-include__num {
  font-family: 'Instrument Serif', serif;
  font-size: 36px;
  color: var(--amber);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.vault-include__label { font-size: 13px; color: var(--ink-2); }

@media (max-width: 700px) { .vault-includes { grid-template-columns: repeat(2, 1fr); } }

.vault-cta {
  background: linear-gradient(135deg, var(--bg-2) 0%, rgba(212,149,58,0.06) 100%);
  border: 1px solid var(--amber-dim);
  border-radius: var(--r-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.vault-cta h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  margin-bottom: 10px;
}
.vault-cta p { font-size: 15px; color: var(--ink-2); max-width: 500px; }
.vault-cta__price { text-align: right; flex-shrink: 0; }
.vault-cta__price .price-big { font-size: 52px; display: block; line-height: 1; }
.vault-cta__price .price-period { display: block; margin-top: 4px; }

@media (max-width: 700px) {
  .vault-cta { grid-template-columns: 1fr; }
  .vault-cta__price { text-align: left; }
}

/* ══════════════════════════════════════════
   COHORT SECTION
══════════════════════════════════════════ */
.cohort-section { background: var(--bg); }
.cohort-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

.module-list { margin: 28px 0; }
.module-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.module-item:last-child { border-bottom: none; }
.module-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--amber);
  width: 28px;
  flex-shrink: 0;
  padding-top: 2px;
}
.module-item h4 { font-size: 15px; margin-bottom: 4px; }
.module-item p  { font-size: 13px; color: var(--ink-2); }

.cohort-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.cohort-card__top {
  background: linear-gradient(135deg, var(--bg-3) 0%, rgba(212,149,58,0.07) 100%);
  border-bottom: 1px solid var(--border);
  padding: 32px 28px;
  text-align: center;
}
.cohort-card__top h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  margin-bottom: 8px;
}
.cohort-card__top .price-big { font-size: 56px; }
.cohort-card__body { padding: 28px; }
.cohort-attrs { list-style: none; margin-bottom: 24px; }
.cohort-attrs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink-2);
}
.cohort-attrs li:last-child { border-bottom: none; }
.cohort-attrs .attr-icon { font-size: 14px; }
.seats-bar {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 16px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.seats-bar__label { font-size: 12px; color: var(--ink-2); }
.seats-bar__count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--amber);
  font-weight: 500;
}

@media (max-width: 900px) {
  .cohort-grid { grid-template-columns: 1fr; }
  .cohort-card { position: static; }
}

/* ══════════════════════════════════════════
   WALKTHROUGHS TABLE
══════════════════════════════════════════ */
.walkthroughs-section { background: var(--bg-2); }
.wt-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}
.wt-table th {
  text-align: left;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.wt-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  vertical-align: middle;
}
.wt-table tr:last-child td { border-bottom: none; }
.wt-table tr:hover td { background: var(--bg-3); }
.wt-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-3);
  width: 40px;
}
.wt-title { font-weight: 600; }
.wt-company { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.wt-arch { }
.wt-level {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--amber);
}

/* ══════════════════════════════════════════
   FREE RESOURCES
══════════════════════════════════════════ */
.freebies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.freebie-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 32px 28px;
  transition: all 0.18s;
}
.freebie-card:hover { border-color: var(--border-2); background: var(--bg-2); }
.freebie-card__icon { font-size: 28px; margin-bottom: 16px; display: block; }
.freebie-card h3 { font-size: 16px; margin-bottom: 8px; }
.freebie-card p { font-size: 13px; color: var(--ink-2); line-height: 1.6; margin-bottom: 20px; }

@media (max-width: 700px) { .freebies-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-section { background: var(--bg); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 28px;
  cursor: pointer;
}
.faq-item__q {
  font-size: 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 0;
  transition: color 0.15s;
}
.faq-item__q .faq-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--amber);
  transition: transform 0.2s;
  margin-top: 2px;
}
.faq-item__a {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
}
.faq-item.open .faq-item__a { max-height: 300px; margin-top: 14px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

@media (max-width: 700px) { .faq-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════ */
.final-cta {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  bottom: -300px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(212,149,58,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.final-cta h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  position: relative;
}
.final-cta p {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.65;
}
.final-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta__note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-3);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 28px;
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__logo {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--ink-3);
}
.footer__logo span { color: var(--amber); }
.footer__links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer__links a {
  color: var(--ink-3);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--ink-2); }

/* ══════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════ */
.text-amber  { color: var(--amber); }
.text-muted  { color: var(--ink-2); }
.text-dimmed { color: var(--ink-3); }
.mt-sm { margin-top: 12px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }
.mb-sm { margin-bottom: 12px; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 40px; }
.flex   { display: flex; align-items: center; gap: 12px; }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: 12px; }

/* strikethrough price */
.strike {
  text-decoration: line-through;
  color: var(--ink-3);
  font-size: 0.75em;
}
