:root {
  --bg:          #0f0f0f;
  --bg-card:     #161616;
  --bg-elevated: #1c1c1c;
  --border:      #2a2a2a;
  --border-mid:  #333333;
  --gold:        #c9941a;
  --gold-bright: #e8ae30;
  --gold-dim:    #7a5a10;
  --gold-tint:   rgba(201,148,26,0.10);
  --text:        #e8e2d8;
  --text-mid:    #b8ae9e;
  --text-dim:    #7a7068;
  --white:       #f5f0e8;
  --serif:       'Playfair Display', Georgia, serif;
  --sans:        'Inter', system-ui, sans-serif;
  --mono:        'JetBrains Mono', 'Courier New', monospace;
  --radius:      6px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); font-size: 16px; line-height: 1.75; overflow-x: hidden; }

.container { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1060px; margin: 0 auto; padding: 0 24px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }

section { padding: 96px 0; }
section.tight { padding: 64px 0; }

.eyebrow {
  font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px; display: flex; align-items: center; gap: 10px;
}
.eyebrow::before, .eyebrow::after { content: '✦'; font-size: 0.55rem; opacity: 0.6; }
.eyebrow.center { justify-content: center; }

h1, h2, h3 { font-family: var(--serif); line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 700; margin-bottom: 18px; }
h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }

p { color: var(--text-mid); margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }
p strong { color: var(--text); font-weight: 500; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-bright); }

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

/* ─ HEADER ─ */
header { background: var(--bg); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 200; }
.header-inner { max-width: 1060px; margin: 0 auto; padding: 0 24px; height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo-name { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--white); }
.logo-name span { color: var(--gold); }
.logo-tag { font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.18em; color: var(--text-mid); text-transform: uppercase; margin-top: 2px; }
.header-cta { background: var(--gold); color: #000; font-family: var(--sans); font-size: 0.8rem; font-weight: 500; padding: 9px 20px; border-radius: var(--radius); letter-spacing: 0.04em; white-space: nowrap; transition: background 0.18s; }
.header-cta:hover { background: var(--gold-bright); color: #000; }

/* ─ BUTTONS ─ */
.btn-primary { display: inline-block; background: var(--gold); color: #000; font-family: var(--sans); font-size: 0.95rem; font-weight: 500; padding: 15px 32px; border-radius: var(--radius); letter-spacing: 0.03em; transition: background 0.18s, transform 0.15s; }
.btn-primary:hover { background: var(--gold-bright); color: #000; transform: translateY(-1px); }
.btn-ghost { display: inline-block; border: 1px solid var(--border-mid); color: var(--text-mid); font-family: var(--sans); font-size: 0.88rem; padding: 14px 26px; border-radius: var(--radius); transition: border-color 0.18s, color 0.18s; }
.btn-ghost:hover { border-color: var(--gold-dim); color: var(--gold-bright); }
.btn-sm { display: inline-block; background: var(--gold); color: #000; font-size: 0.82rem; font-weight: 500; padding: 9px 22px; border-radius: var(--radius); transition: background 0.18s; }
.btn-sm:hover { background: var(--gold-bright); color: #000; }
.btn-sm-ghost { display: inline-block; border: 1px solid var(--border-mid); color: var(--text-dim); font-size: 0.82rem; padding: 9px 22px; border-radius: var(--radius); transition: all 0.18s; }
.btn-sm-ghost:hover { border-color: var(--gold-dim); color: var(--gold-bright); }

/* ─ HERO ─ */
.hero { padding: 100px 0 96px; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(201,148,26,0.07) 0%, transparent 65%); pointer-events: none; }
.hero-content { max-width: 700px; }
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--gold-bright); }
.hero-sub { font-size: 1.05rem; color: var(--text-mid); max-width: 560px; margin-bottom: 40px; line-height: 1.7; }
.hero-sub strong { color: var(--text); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; }
.hero-nudge { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.12em; color: var(--text-mid); margin-top: 14px; }

/* ─ PROOF STRIP ─ */
.proof-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 24px; background: var(--bg-card); }
.proof-strip-inner { max-width: 1060px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 8px 32px; justify-content: center; }
.proof-pill { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; color: var(--text-mid); display: flex; align-items: center; gap: 7px; }
.proof-pill .dot { color: var(--gold); font-size: 0.5rem; }
.proof-pill strong { color: var(--text); font-weight: 500; }

/* ─ INTRO ─ */
.intro-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 700px) { .intro-cols { grid-template-columns: 1fr; gap: 40px; } }
.stat-block { margin-bottom: 32px; }
.stat-block:last-child { margin-bottom: 0; }
.stat-num { font-family: var(--serif); font-size: 2.8rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; border-left: 2px solid var(--border-mid); padding-left: 14px; }

/* ─ VIDEO ─ */
.video-section { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.video-placeholder { max-width: 680px; margin: 32px auto 0; aspect-ratio: 16/9; background: var(--bg-elevated); border: 1px solid var(--border-mid); border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; position: relative; overflow: hidden; cursor: pointer; }
.video-placeholder::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201,148,26,0.06), transparent); pointer-events: none; }
.play-ring { width: 68px; height: 68px; border-radius: 50%; border: 2px solid var(--gold-dim); background: rgba(201,148,26,0.12); display: flex; align-items: center; justify-content: center; transition: border-color 0.2s, background 0.2s; }
.video-placeholder:hover .play-ring { border-color: var(--gold); background: rgba(201,148,26,0.22); }
.play-triangle { width: 0; height: 0; border-top: 11px solid transparent; border-bottom: 11px solid transparent; border-left: 18px solid var(--gold); margin-left: 5px; }
.video-label { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); }
.video-attrib { text-align: center; margin-top: 24px; font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--text-mid); max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.video-attrib cite { display: block; font-family: var(--sans); font-style: normal; font-size: 0.78rem; letter-spacing: 0.06em; color: var(--text-dim); margin-top: 10px; }
.video-attrib cite strong { color: var(--gold); }

/* ─ MYTH ─ */
.myth-section { text-align: center; border-bottom: 1px solid var(--border); }
.myth-body { max-width: 560px; margin: 0 auto 52px; }
.myth-grid { display: grid; grid-template-columns: 1fr 32px 1fr; gap: 10px 0; max-width: 900px; margin: 0 auto; text-align: left; }
@media (max-width: 640px) { .myth-grid { grid-template-columns: 1fr; } .myth-vs { display: none; } }
.myth-col-head { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; padding-bottom: 12px; border-bottom: 1px solid var(--border); margin-bottom: 10px; }
.myth-col-head.left { color: var(--text-mid); }
.myth-col-head.right { color: var(--gold-bright); }
.myth-vs { display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 0.6rem; color: var(--text-mid); padding-top: 2px; }
.myth-item { padding: 14px 16px; border-radius: var(--radius); font-size: 0.88rem; line-height: 1.6; margin-bottom: 8px; }
.myth-item.bad { background: rgba(255,255,255,0.03); border: 1px solid var(--border-mid); color: var(--text-mid); }
.myth-item.bad::before { content: '✗  '; color: #a05050; }
.myth-item.good { background: var(--gold-tint); border: 1px solid rgba(201,148,26,0.25); color: var(--text); }
.myth-item.good::before { content: '✦  '; color: var(--gold); }

/* ─ FAIL ─ */
.fail-section { border-bottom: 1px solid var(--border); }
.fail-intro { margin-bottom: 52px; }
.fail-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 18px; }
.fail-card { background: var(--bg-card); border: 1px solid var(--border); border-top: 2px solid var(--gold-dim); border-radius: var(--radius); padding: 24px 22px; transition: border-top-color 0.2s; }
.fail-card:hover { border-top-color: var(--gold); }
.fail-icon { font-size: 1.2rem; margin-bottom: 12px; }
.fail-card h3 { font-family: var(--sans); font-size: 0.95rem; font-weight: 500; color: var(--text); margin-bottom: 8px; }
.fail-card p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; }
.fail-q { font-family: var(--serif); font-style: italic; font-size: 0.87rem; color: var(--gold-bright); line-height: 1.55; padding-top: 12px; border-top: 1px solid var(--border-mid); }
.fail-q::before { content: '" '; }
.fail-q::after { content: ' "'; }

/* ─ OUTPUT ─ */
.output-section { border-bottom: 1px solid var(--border); }
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 36px; }
@media (max-width: 600px) { .before-after { grid-template-columns: 1fr; } }
.ba-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.ba-header { padding: 10px 16px; font-family: var(--mono); font-size: 0.63rem; letter-spacing: 0.14em; text-transform: uppercase; }
.ba-header.before { background: #251515; color: #c07070; border-bottom: 1px solid #3a1a1a; }
.ba-header.after { background: #151f15; color: #80b880; border-bottom: 1px solid #1e3020; }
.ba-body { padding: 18px 16px; font-family: var(--mono); font-size: 0.76rem; line-height: 1.75; background: var(--bg-card); }
.ba-body.before { color: #8a7070; }
.ba-body.after { color: var(--text-mid); }
.ba-body strong { color: var(--text); }
.ba-body .hl { color: var(--gold-bright); }

.terminal { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.terminal-bar { background: var(--bg-elevated); border-bottom: 1px solid var(--border); padding: 10px 16px; display: flex; align-items: center; gap: 6px; }
.td { width: 11px; height: 11px; border-radius: 50%; }
.td-r { background: #3d1a1a; }
.td-y { background: #3d3010; }
.td-g { background: #1a3020; }
.terminal-filename { font-family: var(--mono); font-size: 0.62rem; color: var(--text-dim); margin-left: 8px; }
.terminal-body { padding: 28px 32px; font-family: var(--mono); font-size: 0.78rem; line-height: 1.9; color: var(--text-mid); }
@media (max-width: 500px) { .terminal-body { padding: 18px 16px; font-size: 0.7rem; } }
.tc-title { color: var(--gold-bright); font-weight: 500; }
.tc-key { color: #8abf9a; }
.tc-val { color: var(--text); }
.tc-h { color: var(--text); font-weight: 500; margin-top: 4px; display: inline-block; }
.tc-sub { color: var(--text-mid); }
.tc-note { color: #7a9a58; font-style: italic; }
.tc-spacer { display: block; height: 6px; }
.tc-divider { display: block; border-top: 1px solid var(--border-mid); margin: 12px 0; }

/* ─ TESTIMONIALS ─ */
.testimonials-section { border-bottom: 1px solid var(--border); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 18px; margin-top: 48px; }
.quote-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 22px; display: flex; flex-direction: column; gap: 16px; }
.quote-mark { font-family: var(--serif); font-size: 3rem; color: var(--gold-dim); line-height: 0.6; opacity: 0.6; }
.quote-text { font-family: var(--serif); font-size: 0.98rem; font-style: italic; line-height: 1.7; color: var(--text); flex: 1; }
.quote-text em { color: var(--gold-bright); font-style: normal; }
.quote-footer { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 16px; }
.quote-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--gold-tint); border: 1px solid var(--gold-dim); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 0.85rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.quote-name { font-size: 0.8rem; font-weight: 500; color: var(--text); }
.quote-role { font-size: 0.72rem; color: var(--text-dim); font-family: var(--mono); letter-spacing: 0.04em; }

/* ─ CTA BAND ─ */
.cta-band { text-align: center; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 700px; height: 400px; border-radius: 50%; background: radial-gradient(ellipse, rgba(201,148,26,0.09) 0%, transparent 70%); pointer-events: none; }
.cta-band h2 { margin-bottom: 14px; position: relative; }
.cta-band > .container > p { max-width: 520px; margin: 0 auto 36px; position: relative; }
.price-tag { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--gold-dim); background: var(--gold-tint); color: var(--gold-bright); font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 7px 18px; border-radius: 100px; margin-bottom: 28px; }
.price-tag::before { content: '✦'; font-size: 0.55rem; }

/* ─ PRICING ─ */
.pricing-section { border-bottom: 1px solid var(--border); }

.pricing-featured { margin-top: 48px; background: rgba(201,148,26,0.05); border: 1px solid rgba(201,148,26,0.3); border-radius: 10px; padding: 40px 36px; position: relative; }
.pricing-featured-badge { position: absolute; top: -13px; left: 28px; background: var(--gold); color: #000; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 5px 16px; border-radius: 100px; }
.pricing-featured-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 700px) { .pricing-featured-inner { grid-template-columns: 1fr; gap: 28px; } .pricing-featured { padding: 32px 22px; } }
.pricing-featured-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.pricing-featured-tagline { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 18px; }
.pricing-list { list-style: none; font-size: 0.82rem; color: var(--text-mid); text-align: left; margin-bottom: 20px; }
.pricing-list li { padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; gap: 8px; align-items: baseline; }
.pricing-list li::before { content: '✦'; color: var(--gold); font-size: 0.5rem; flex-shrink: 0; margin-top: 5px; }

.addons-section { margin-top: 56px; }
.addons-header { margin-bottom: 24px; }
.addons-label { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.addons-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.addons-subtitle { font-size: 0.88rem; color: var(--text-mid); max-width: 620px; line-height: 1.65; }
.addons-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 14px; margin-bottom: 16px; }
.addon-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 20px; }
.addon-icon { font-size: 1.1rem; margin-bottom: 10px; }
.addon-name { font-family: var(--sans); font-size: 0.9rem; font-weight: 500; color: var(--text); margin-bottom: 8px; }
.addon-desc { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; }
.addons-bundle { background: var(--bg-card); border: 1px solid var(--border-mid); border-radius: var(--radius); padding: 16px 20px; font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }
.addons-bundle-tag { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; background: var(--gold-tint); border: 1px solid var(--gold-dim); color: var(--gold-bright); padding: 3px 10px; border-radius: 100px; margin-right: 10px; vertical-align: middle; }

/* ─ FOOTER ─ */
footer { padding: 56px 24px 32px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1060px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid var(--border); margin-bottom: 28px; }
.footer-brand p { font-size: 0.78rem; color: var(--text-mid); max-width: 240px; margin-top: 10px; line-height: 1.6; }
.footer-links-row { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 0.79rem; color: var(--text-mid); margin-bottom: 9px; transition: color 0.15s; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom { font-size: 0.72rem; color: var(--text-mid); line-height: 1.8; }

/* ─ SECTION CTA ─ */
.section-cta { text-align: center; padding-top: 48px; }
.section-cta small { display: block; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.12em; color: var(--text-mid); margin-top: 12px; text-transform: uppercase; }

/* ─ QUOTE ROLE + TERMINAL FILENAME ─ */
.quote-role { font-size: 0.72rem; color: var(--text-mid); font-family: var(--mono); letter-spacing: 0.04em; }
.terminal-filename { font-family: var(--mono); font-size: 0.62rem; color: var(--text-mid); margin-left: 8px; }
