:root {
  --bg: #0a0c10;
  --bg-rise: #12151c;
  --panel: rgba(19, 22, 30, 0.86);
  --panel-strong: rgba(24, 28, 38, 0.94);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #eef1f6;
  --muted: #9aa3b8;
  --muted-dim: #6c7690;
  --amber: #e6a53a;
  --amber-bright: #ffcf7a;
  --amber-soft: rgba(230, 165, 58, 0.14);
  --cyan: #4cc3c9;
  --cyan-soft: rgba(76, 195, 201, 0.12);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { background: var(--bg); }

body {
  margin: 0;
  font-family: 'Manrope', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  line-height: 1.55;
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(230, 165, 58, 0.07), transparent 60%),
    radial-gradient(1000px 700px at 100% 10%, rgba(76, 195, 201, 0.06), transparent 55%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--amber-soft); color: var(--amber-bright); }

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: #fff;
}

h1 { font-size: clamp(38px, 6vw, 68px); line-height: 1.03; letter-spacing: -0.02em; }
h2 { font-size: clamp(26px, 3.6vw, 40px); line-height: 1.12; }
h3 { font-size: 20px; }

p { color: var(--muted); margin: 0 0 1em; }
.lead { font-size: 18px; line-height: 1.7; max-width: 58ch; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--amber-bright);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--amber);
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 24px; }
.section.tight { padding: 56px 24px; }
.section-inner { max-width: var(--maxw); margin: 0 auto; }
.section-head { max-width: 68ch; margin-bottom: 40px; }

/* skip link */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--amber); color: #1a1300; padding: 12px 18px;
  border-radius: 0 0 10px 0; font-weight: 700; z-index: 100;
}
.skip-link:focus { left: 0; }

/* header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 18px 24px;
  background: rgba(10, 12, 16, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 18px; color: #fff;
  white-space: nowrap;
}
.logo-mark {
  width: 34px; height: 34px; border-radius: 9px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--amber-soft), var(--cyan-soft));
  border: 1px solid var(--border-strong);
  font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 700; color: var(--amber-bright);
}
.main-nav {
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
  font-size: 14.5px; font-weight: 600; color: #cdd4e2;
}
.main-nav a:hover { color: var(--amber-bright); }
.header-actions { display: flex; align-items: center; gap: 14px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px; font-weight: 700; font-size: 14.5px;
  border: 1px solid var(--border-strong);
  cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--amber-bright), var(--amber)); color: #1c1300; border-color: transparent; box-shadow: 0 10px 30px rgba(230, 165, 58, 0.18); }
.btn-secondary { background: rgba(255,255,255,0.03); color: var(--text); }
.btn-ghost { background: transparent; color: var(--text); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 14px; font-size: 13px; }

/* hero */
.hero {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 36px; align-items: center;
  padding-top: 64px; padding-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0 22px; }
.hero-facts { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-facts span {
  padding: 8px 13px; border-radius: 999px; font-size: 13px; color: #c7d0e4;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
}
.cta-note { font-size: 12.5px; color: var(--muted-dim); margin-top: 10px; }

.hero-panel {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: 0 30px 90px rgba(0,0,0,0.35);
  position: relative; overflow: hidden;
}
.hero-panel::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(230,165,58,0.08), transparent 45%);
  pointer-events: none;
}
.hero-panel h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; color: #9db0da; font-family: 'Manrope', sans-serif; font-weight: 700; }
.sweep-motif { position: relative; height: 190px; margin-top: 18px; }
.sweep-motif svg { width: 100%; height: 100%; }
.sweep-caption { margin-top: 14px; font-size: 13px; color: var(--muted-dim); line-height: 1.6; }

/* proof strip */
.proof-strip {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
.proof-strip .item {
  padding: 16px 14px; text-align: center; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  font-size: 13.5px; font-weight: 600; color: #d3daea;
}

/* how it works */
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step-card {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 24px 20px; position: relative;
}
.step-card::before {
  counter-increment: step; content: counter(step);
  font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 700;
  color: #1c1300; background: var(--amber-bright);
  width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center;
  margin-bottom: 16px;
}
.step-card h3 { margin-bottom: 8px; }
.step-card p { margin: 0; font-size: 14.5px; }
.steps-row .step-card:last-child { border-color: rgba(76,195,201,0.3); }

/* two column generic */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.panel {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px;
}
.panel.accent { background: linear-gradient(180deg, var(--cyan-soft), rgba(19,22,30,0.92)); }
.list-clean { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.list-clean li { display: flex; gap: 12px; color: #d7dceb; font-size: 15px; line-height: 1.55; }
.list-clean li::before { content: '—'; color: var(--amber); flex-shrink: 0; }

/* starter pass banner */
.starter-banner {
  border-radius: 28px; border: 1px solid rgba(230,165,58,0.32);
  background: linear-gradient(125deg, rgba(230,165,58,0.14), rgba(76,195,201,0.06));
  padding: 44px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: center;
}
.starter-banner h2 { max-width: 22ch; }
.starter-banner p { max-width: 56ch; }
.starter-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.starter-tags span {
  padding: 8px 13px; border-radius: 999px; font-size: 13px; font-weight: 700;
  background: rgba(10,12,16,0.4); border: 1px solid var(--border-strong); color: var(--amber-bright);
}
.starter-price-card {
  background: rgba(10,12,16,0.55); border: 1px solid var(--border-strong); border-radius: 20px;
  padding: 26px; text-align: center;
}
.starter-price-card .amount {
  font-family: 'JetBrains Mono', monospace; font-size: 56px; font-weight: 700; color: var(--amber-bright); line-height: 1;
}
.starter-price-card .amount-sub { color: #cdd4e2; font-weight: 700; font-size: 14px; line-height: 1.4; margin: 8px 0 4px; }
.starter-price-card .fine { font-size: 12.5px; color: var(--muted-dim); margin-top: 12px; }

/* pricing table */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px;
}
.price-card {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 26px 22px; display: flex; flex-direction: column; position: relative;
}
.price-card.featured { border-color: rgba(230,165,58,0.5); box-shadow: 0 0 0 1px rgba(230,165,58,0.2), 0 20px 60px rgba(0,0,0,0.3); }
.price-card .badge {
  position: absolute; top: -12px; right: 20px; padding: 6px 12px; border-radius: 999px;
  background: var(--amber-bright); color: #1c1300; font-size: 11.5px; font-weight: 800; letter-spacing: 0.04em;
}
.price-card .tier-name { text-transform: uppercase; letter-spacing: 0.09em; font-size: 13px; font-weight: 700; color: #aeb9d6; }
.price-card .tier-price { font-family: 'JetBrains Mono', monospace; font-size: 38px; font-weight: 700; margin: 10px 0 0; color: #fff; }
.price-card .tier-cadence { color: var(--muted); font-size: 13.5px; margin-bottom: 16px; }
.price-card .tier-list { list-style: none; margin: 0 0 20px; padding: 0; flex-grow: 1; }
.price-card .tier-list li {
  font-size: 14px; color: #ccd4e6; padding: 8px 0; border-top: 1px solid var(--border);
}
.price-card .tier-list li:first-child { border-top: none; }
.pricing-note { margin-top: 22px; font-size: 13.5px; color: var(--muted-dim); max-width: 70ch; }

/* transparency */
.transparency-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.transparency-col { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.transparency-col.is { border-color: rgba(76,195,201,0.3); }
.transparency-col.isnot { border-color: rgba(255,255,255,0.1); }
.transparency-col h3 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--cyan); font-family: 'Manrope', sans-serif; }
.transparency-col.isnot h3 { color: #c7a15c; }
.disclaimer-box {
  margin-top: 22px; padding: 20px 24px; border-radius: var(--radius-md);
  background: rgba(230,165,58,0.08); border: 1px solid rgba(230,165,58,0.28);
  font-size: 14.5px; color: #f0dcb0; line-height: 1.65;
}

/* faq */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 4px 22px;
}
.faq-item summary {
  cursor: pointer; font-weight: 700; padding: 18px 0; font-size: 15.5px; color: #fff;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: 'JetBrains Mono', monospace; color: var(--amber); font-size: 20px; flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding-bottom: 18px; margin: 0; font-size: 14.5px; }

/* final cta */
.final-cta {
  text-align: center; padding: 70px 24px; border-radius: 28px;
  background: radial-gradient(600px 260px at 50% 0%, rgba(230,165,58,0.12), transparent 70%), rgba(255,255,255,0.02);
  border: 1px solid var(--border);
}
.final-cta h2 { max-width: 26ch; margin-left: auto; margin-right: auto; }
.final-cta .btn { margin-top: 8px; }

/* footer */
.site-footer { border-top: 1px solid var(--border); padding: 48px 24px 40px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 32px; margin-bottom: 28px; }
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { font-size: 14px; max-width: 40ch; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: #aeb9d6; margin: 0 0 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14.5px; color: var(--muted); }
.footer-col a:hover { color: var(--amber-bright); }
.footer-disclaimer {
  font-size: 13px; color: var(--muted-dim); line-height: 1.7; padding-top: 24px; border-top: 1px solid var(--border);
  max-width: 90ch;
}
.footer-bottom { margin-top: 18px; font-size: 12.5px; color: var(--muted-dim); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* prose (policy pages) */
.prose-page { padding-top: 56px; }
.prose { max-width: 74ch; }
.prose h2 { margin-top: 2em; font-size: 24px; }
.prose h2:first-child { margin-top: 0; }
.prose ul { color: var(--muted); padding-left: 20px; }
.prose li { margin: 8px 0; }
.prose p { color: #c6cee0; }
.prose strong { color: #fff; }
.updated-badge {
  display: inline-block; font-size: 12.5px; color: var(--muted-dim);
  border: 1px solid var(--border); border-radius: 999px; padding: 6px 12px; margin-bottom: 18px;
  font-family: 'JetBrains Mono', monospace;
}

/* contact */
.contact-card {
  max-width: 640px; background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
}
.contact-email {
  font-family: 'JetBrains Mono', monospace; font-size: 22px; color: var(--amber-bright);
  display: block; margin: 14px 0 22px;
}

/* 404 */
.not-found {
  min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 60px 24px;
}
.not-found .code {
  font-family: 'JetBrains Mono', monospace; font-size: 96px; color: var(--amber); line-height: 1; margin-bottom: 10px;
}

@media (max-width: 920px) {
  .hero, .two-col, .transparency-grid, .footer-grid, .starter-banner { grid-template-columns: 1fr; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .site-header { flex-wrap: wrap; }
  .main-nav { order: 3; flex-basis: 100%; justify-content: center; gap: 18px; padding-top: 6px; }
}
@media (max-width: 560px) {
  .proof-strip { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .section { padding: 56px 18px; }
}
