:root {
  --c-bg: #0F1218;
  --c-surface: #161B25;
  --c-surface-2: #1A1F2E;
  --c-border: #2A3142;
  --c-border-soft: #1F2532;
  --c-text: #E8E6E1;
  --c-muted: #8E94A3;
  --c-gold: #C9A961;
  --c-gold-soft: #D9BC7A;
  --c-bronze: #7B5E3A;
  --c-error: #E07A5F;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-1: 0 4px 14px rgba(0,0,0,0.25);
  --shadow-2: 0 18px 48px rgba(0,0,0,0.4);
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(circle at 12% 8%, rgba(201, 169, 97, 0.08), transparent 35%),
    radial-gradient(circle at 90% 60%, rgba(123, 94, 58, 0.05), transparent 40%);
}
a { color: var(--c-gold); text-decoration: none; }
a:hover { color: var(--c-gold-soft); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; margin: 0 0 .5em; line-height: 1.1; }
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 700; }
h1 em { font-style: italic; color: var(--c-gold); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.2rem; }
img { max-width: 100%; height: auto; }

/* Header */
.site-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 2.5rem;
  border-bottom: 1px solid var(--c-border-soft);
  background: rgba(15, 18, 24, 0.85);
  backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 50;
}
.brand { display: flex; align-items: center; gap: .65rem; color: var(--c-text); }
.brand-logo { width: 36px; height: 36px; border-radius: 8px; }
.brand-mark { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; letter-spacing: -0.02em; }
.site-header nav { display: flex; gap: 1.75rem; align-items: center; }
.site-header nav a { color: var(--c-muted); font-size: .95rem; font-weight: 500; }
.site-header nav a:hover { color: var(--c-text); }
.nav-cta {
  background: var(--c-gold); color: #1A1F2E !important;
  padding: .55rem 1.1rem; border-radius: var(--radius-sm); font-weight: 600;
}
.nav-cta:hover { background: var(--c-gold-soft); }

/* Hero */
.hero {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 4rem;
  max-width: 1280px; margin: 0 auto; padding: 5rem 2.5rem;
  align-items: center;
}
@media (max-width: 920px) { .hero { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2.5rem; } }
.kicker {
  display: inline-block; padding: .4rem .9rem;
  border: 1px solid var(--c-border); border-radius: 99px;
  font-size: .82rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--c-gold); background: rgba(201,169,97,0.06);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.18rem; color: var(--c-muted); max-width: 56ch; margin: 1.25rem 0 2rem;
  line-height: 1.6;
}
.hero-sub strong { color: var(--c-text); font-weight: 500; }
.hero-cta { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--c-gold); color: #1A1F2E;
  border: 0; padding: .95rem 1.8rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 1rem; cursor: pointer;
  display: inline-block;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--c-gold-soft); color: #1A1F2E; }
.btn-secondary {
  background: transparent; color: var(--c-text);
  border: 1px solid var(--c-gold); padding: .95rem 1.8rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 1rem; cursor: pointer;
  display: inline-block;
  transition: background .2s, color .2s;
}
.btn-secondary:hover { background: rgba(201,169,97,0.1); color: var(--c-gold); }
.cta-meta { color: var(--c-muted); font-size: .9rem; }
.trust {
  display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 2.5rem;
  color: var(--c-muted); font-size: .92rem;
}

/* Hero art / proof card */
.proof-card {
  background: linear-gradient(155deg, var(--c-surface-2), var(--c-surface));
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-2);
  position: relative;
}
.proof-card::before {
  content: ""; position: absolute; top: 0; left: 1.75rem; right: 1.75rem; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
  opacity: .5;
}
.proof-head { border-bottom: 1px solid var(--c-border); padding-bottom: 1rem; margin-bottom: 1.25rem; }
.proof-eyebrow {
  display: inline-block; font-size: .75rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--c-gold); margin-bottom: .35rem;
}
.proof-head h3 { font-size: 1.55rem; margin: 0; }
.proof-zones { display: flex; flex-direction: column; gap: 1rem; }
.proof-zone {
  display: grid; grid-template-columns: 28px 1fr; gap: .9rem;
  align-items: flex-start;
}
.proof-swatch {
  width: 28px; height: 28px; border-radius: 6px; border: 1px solid var(--c-border);
  margin-top: 4px;
}
.proof-zone strong { font-family: var(--font-display); font-size: 1.05rem; display: block; }
.proof-zone p { margin: .1rem 0 .15rem; color: var(--c-muted); font-size: .92rem; font-family: var(--font-mono); }
.proof-brands { color: var(--c-bronze); font-size: .78rem; letter-spacing: .04em; }
.proof-foot {
  margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--c-border);
  text-align: center; color: var(--c-gold); font-weight: 500; font-size: .9rem;
}

/* Pain section */
.pain { max-width: 1180px; margin: 0 auto; padding: 5rem 2.5rem; }
.pain h2 { text-align: center; margin-bottom: 3rem; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 820px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color .2s, transform .2s;
}
.pain-card:hover { border-color: var(--c-gold); transform: translateY(-2px); }
.pain-icon { font-size: 2rem; display: block; margin-bottom: 1rem; }
.pain-card h3 { color: var(--c-gold); margin-bottom: .6rem; }
.pain-card p { color: var(--c-muted); margin: 0; }

/* How it works */
.how { background: var(--c-surface); padding: 5rem 2.5rem; }
.how > * { max-width: 920px; margin-left: auto; margin-right: auto; }
.how h2 { text-align: center; margin-bottom: 3rem; }
.how-steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1.5rem; }
.how-steps li {
  display: grid; grid-template-columns: 60px 1fr; gap: 1.25rem;
  background: var(--c-surface-2); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 1.5rem 1.75rem;
}
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-gold); color: #1A1F2E;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
}
.how-steps h3 { margin-bottom: .3rem; }
.how-steps p { color: var(--c-muted); margin: 0; }
.how-cta { text-align: center; margin-top: 2.5rem; }

/* Pricing */
.pricing { max-width: 1180px; margin: 0 auto; padding: 5rem 2.5rem; text-align: center; }
.pricing-sub { color: var(--c-muted); margin-bottom: 3rem; }
.tiers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  align-items: stretch; text-align: left;
}
@media (max-width: 920px) { .tiers { grid-template-columns: 1fr; } }
.tier {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex; flex-direction: column;
  position: relative;
}
.tier-featured {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 1px var(--c-gold), var(--shadow-2);
  background: linear-gradient(170deg, var(--c-surface-2), var(--c-surface));
}
.tier-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--c-gold); color: #1A1F2E; font-size: .75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  padding: .3rem .8rem; border-radius: 99px;
}
.tier header { border-bottom: 1px solid var(--c-border); padding-bottom: 1.25rem; margin-bottom: 1.25rem; }
.tier h3 { color: var(--c-gold); margin: 0 0 .25rem; font-size: 1.5rem; }
.price { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; }
.price small { font-size: 1rem; color: var(--c-muted); font-weight: 400; }
.tier ul { list-style: none; padding: 0; margin: 0 0 1.5rem; flex: 1; }
.tier li { padding: .55rem 0; border-bottom: 1px dashed var(--c-border); color: var(--c-text); font-size: .95rem; }
.tier li:last-child { border-bottom: 0; }
.tier li::before { content: "✓"; color: var(--c-gold); margin-right: .5rem; font-weight: 700; }
.tier .btn-primary, .tier .btn-secondary { text-align: center; }

/* Proof / wedge */
.proof { background: var(--c-surface); padding: 5rem 2.5rem; }
.proof > * { max-width: 1180px; margin-left: auto; margin-right: auto; }
.proof h2 { text-align: center; margin-bottom: 3rem; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 820px) { .proof-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .proof-grid { grid-template-columns: 1fr; } }
.proof-stat {
  text-align: center; padding: 1.5rem 1rem;
  border: 1px solid var(--c-border); border-radius: var(--radius);
  background: var(--c-surface-2);
}
.proof-stat strong {
  display: block; font-family: var(--font-display); font-size: 2.4rem;
  color: var(--c-gold); margin-bottom: .35rem;
}
.proof-stat p { color: var(--c-muted); margin: 0; font-size: .92rem; }

/* Capture */
.capture { padding: 5rem 2.5rem; }
.capture-inner {
  max-width: 600px; margin: 0 auto;
  text-align: center; padding: 3rem;
  background: linear-gradient(170deg, var(--c-surface-2), var(--c-surface));
  border: 1px solid var(--c-border); border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}
.capture-form {
  display: flex; gap: .5rem; max-width: 460px; margin: 1.5rem auto 0;
  flex-wrap: wrap;
}
.capture-form input {
  flex: 1; min-width: 220px;
  font-size: 1rem; padding: .95rem 1rem;
  background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--radius-sm);
  color: var(--c-text);
}
.capture-form input:focus { outline: 2px solid var(--c-gold); border-color: var(--c-gold); }
.capture-note { margin-top: .85rem; color: var(--c-gold-soft); min-height: 1.2em; }

/* Footer */
.site-footer {
  background: var(--c-surface);
  padding: 4rem 2.5rem 1.5rem;
  border-top: 1px solid var(--c-border-soft);
}
.footer-cols {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  max-width: 1180px; margin: 0 auto;
}
@media (max-width: 720px) { .footer-cols { grid-template-columns: 1fr; gap: 2rem; } }
.footer-cols h4 { color: var(--c-text); font-family: var(--font-body); font-size: .95rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.footer-cols a { display: block; color: var(--c-muted); margin-bottom: .5rem; font-size: .93rem; }
.footer-cols a:hover { color: var(--c-gold); }
.footer-cols p { color: var(--c-muted); margin-top: .5rem; max-width: 36ch; }
.footer-base {
  max-width: 1180px; margin: 2.5rem auto 0; padding-top: 1.5rem;
  border-top: 1px solid var(--c-border-soft);
  text-align: center; color: var(--c-muted); font-size: .85rem;
}
