@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=IBM+Plex+Mono:wght@400;500;700&family=Inter:wght@400;500;600&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:       #0d0d0d;
  --bg2:      #141414;
  --bg3:      #1c1c1c;
  --fg:       #f0ede8;
  --fg2:      #a8a49e;
  --fg3:      #5c5855;
  --accent:   #e8001f;
  --accent2:  #ff3347;
  --green:    #22c55e;
  --border:   #272727;
  --border2:  #1e1e1e;

  --display:  'Barlow Condensed', sans-serif;
  --mono:     'IBM Plex Mono', monospace;
  --body:     'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--fg);
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--fg2); text-decoration: none; transition: color .15s; }
a:hover { color: var(--fg); }
button { font-family: inherit; cursor: pointer; }

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  background: var(--bg);
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 32px;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--fg);
  white-space: nowrap;
}
.logo em { color: var(--accent); font-style: normal; }
.logo sup { font-size: .42em; color: var(--fg3); font-weight: 400; vertical-align: super; letter-spacing: 0; }

.site-nav { display: flex; gap: 28px; font-size: 12px; flex: 1; font-family: var(--mono); letter-spacing: .04em; }
.site-nav a { color: var(--fg3); text-transform: uppercase; font-size: 11px; }
.site-nav a:hover { color: var(--fg); }

.header-spacer { flex: 1; }

.header-cta {
  background: var(--accent);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .02em;
  padding: 8px 20px;
  border: none;
  transition: background .15s, transform .1s;
}
.header-cta:hover { background: var(--accent2); }

/* ── WRAP ───────────────────────────────────────────────── */
.wrap { max-width: 960px; margin: 0 auto; padding: 0 32px; }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  padding: 72px 0 0;
  border-bottom: 1px solid var(--border);
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(3.2rem, 14vw, 6.5rem);
  line-height: .9;
  letter-spacing: -.01em;
  margin-bottom: 32px;
  color: var(--fg);
  word-break: keep-all;
  overflow-wrap: break-word;
}
.hero-title .red { color: var(--accent); }

.hero-sub {
  font-size: 15px;
  color: var(--fg2);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
  font-family: var(--body);
}
.hero-sub strong { color: var(--fg); font-weight: 600; }

/* Email form */
.hero-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin-bottom: 20px;
}
.hero-form input[type=email] {
  flex: 1;
  font-family: var(--mono);
  font-size: 13px;
  border: 1px solid var(--border2);
  border-right: none;
  padding: 13px 16px;
  background: var(--bg2);
  color: var(--fg);
  outline: none;
  transition: border-color .15s;
}
.hero-form input[type=email]::placeholder { color: var(--fg3); }
.hero-form input[type=email]:focus { border-color: var(--fg3); }
.hero-form button {
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .02em;
  background: var(--accent);
  color: white;
  border: 1px solid var(--accent);
  padding: 13px 22px;
  transition: background .15s;
  white-space: nowrap;
}
.hero-form button:hover { background: var(--accent2); }

.hero-micro {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--fg3);
  margin-bottom: 48px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-micro span::before { content: '✓ '; color: var(--green); }

/* Stats bar */
.hero-stats {
  display: flex;
  border-top: 1px solid var(--border);
}
.hstat {
  flex: 1;
  padding: 20px 24px;
  border-right: 1px solid var(--border);
}
.hstat:last-child { border-right: none; }
.hstat-num {
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 4px;
}
.hstat-num.red { color: var(--accent); }
.hstat-num.green { color: var(--green); }
.hstat-label { font-family: var(--mono); font-size: 10px; color: var(--fg3); letter-spacing: .04em; text-transform: uppercase; }

/* ── SECTION HEAD ───────────────────────────────────────── */
.section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 48px 0 20px;
}
.section-head::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.section-title {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--fg3);
  text-transform: uppercase;
  white-space: nowrap;
}
.section-sub { font-family: var(--mono); font-size: 10px; color: var(--fg3); }

/* ── WHAT YOU GET ───────────────────────────────────────── */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 64px;
}
.inc-card {
  background: var(--bg2);
  padding: 28px 24px;
  transition: background .2s;
}
.inc-card:hover { background: var(--bg3); }
.inc-icon { font-size: 22px; margin-bottom: 14px; filter: grayscale(30%); }
.inc-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--fg);
}
.inc-desc { font-size: 12px; color: var(--fg2); line-height: 1.65; font-family: var(--body); }

/* ── TESTIMONIALS ───────────────────────────────────────── */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 64px;
}
.test-card {
  background: var(--bg2);
  padding: 28px 24px;
}
.test-quote {
  font-size: 13px;
  line-height: 1.75;
  color: var(--fg2);
  margin-bottom: 16px;
  font-style: italic;
}
.test-quote::before { content: '"'; color: var(--accent); font-size: 1.4rem; font-style: normal; display: block; line-height: 1; margin-bottom: 6px; font-family: var(--display); }
.test-author {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--fg3);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ── PRICING ────────────────────────────────────────────── */
.pricing-wrap {
  border: 1px solid var(--border);
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: 1fr 300px;
}
.pricing-left {
  padding: 36px;
  border-right: 1px solid var(--border);
  background: var(--bg2);
}
.pricing-right {
  padding: 36px;
  background: var(--bg3);
  display: flex;
  flex-direction: column;
}

.price-tag {
  font-family: var(--display);
  font-weight: 800;
  font-size: 4rem;
  letter-spacing: -.05em;
  line-height: 1;
  margin-bottom: 4px;
}
.price-was {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg3);
  text-decoration: line-through;
  margin-bottom: 28px;
}
.include-list { list-style: none; }
.include-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--mono);
}
.include-list li:last-child { border-bottom: none; }
.inc-code { color: var(--accent); font-size: 14px; flex-shrink: 0; }
.inc-name { flex: 1; color: var(--fg2); }
.inc-badge {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  background: var(--green);
  color: #000;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pricing-cta {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.6rem, 5vw, 2.1rem);
  line-height: 1.0;
  letter-spacing: -.01em;
  margin-bottom: 28px;
  color: var(--fg);
  flex: 1;
}
.pricing-cta .red { color: var(--accent); }

.buy-btn {
  width: 100%;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .01em;
  background: var(--accent);
  color: white;
  border: none;
  padding: 15px;
  transition: background .15s;
  margin-bottom: 16px;
}
.buy-btn:hover { background: var(--accent2); }

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg3);
}
.trust-list span::before { content: '✓ '; color: var(--green); }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list { margin-bottom: 64px; }
.faq-item {
  border-bottom: 1px solid var(--border);
  background: transparent;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  user-select: none;
  color: var(--fg);
  transition: color .15s;
}
.faq-q:hover { color: var(--fg2); }
.faq-arrow {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg3);
  transition: transform .25s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  font-size: 13px;
  color: var(--fg2);
  line-height: 1.75;
  transition: max-height .35s ease, padding .3s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 18px; }

/* ── FINAL CTA ──────────────────────────────────────────── */
.final-cta {
  border: 1px solid var(--border);
  padding: 64px 48px;
  background: var(--bg2);
  text-align: center;
  margin-bottom: 64px;
}
.final-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2rem, 10vw, 3.5rem);
  letter-spacing: -.01em;
  line-height: .95;
  margin-bottom: 20px;
}
.final-title .red { color: var(--accent); }
.final-sub { font-family: var(--mono); font-size: 12px; color: var(--fg3); margin-bottom: 28px; }

/* ── MODAL ──────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .8);
  backdrop-filter: blur(4px);
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 36px;
  max-width: 400px;
  width: 100%;
  margin: 16px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 16px;
  color: var(--fg3);
  padding: 4px 8px;
  transition: color .15s;
  font-family: var(--mono);
}
.modal-close:hover { color: var(--fg); }
.modal-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.modal-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 8px;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.modal-sub { font-size: 13px; color: var(--fg2); margin-bottom: 22px; }
.modal-input {
  width: 100%;
  font-family: var(--mono);
  font-size: 13px;
  border: 1px solid var(--border);
  padding: 12px 14px;
  background: var(--bg3);
  color: var(--fg);
  outline: none;
  margin-bottom: 6px;
  transition: border-color .15s;
}
.modal-input:focus { border-color: var(--fg3); }
#wl-error { font-family: var(--mono); font-size: 11px; color: var(--accent); min-height: 16px; margin-bottom: 8px; }
.modal-btn {
  width: 100%;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  background: var(--accent);
  color: white;
  border: none;
  padding: 14px;
  transition: background .15s;
}
.modal-btn:hover { background: var(--accent2); }
.modal-note { font-family: var(--mono); font-size: 10px; color: var(--fg3); margin-top: 12px; text-align: center; }
#wl-success { display: none; text-align: center; padding: 16px 0; }
#wl-success .s-icon { font-size: 32px; margin-bottom: 12px; }
#wl-success .s-title { font-family: var(--display); font-weight: 800; font-size: 1.3rem; color: var(--green); margin-bottom: 6px; }
#wl-success .s-sub { font-size: 13px; color: var(--fg2); }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--bg2);
  color: var(--fg3);
  padding: 24px 32px;
  font-family: var(--mono);
  font-size: 11px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.footer-logo { font-family: var(--display); font-weight: 800; font-size: .95rem; color: var(--fg); }
.footer-logo em { color: var(--accent); font-style: normal; }
.footer-links a { color: var(--fg3); margin-left: 16px; }
.footer-links a:hover { color: var(--fg); }

/* ── DISCLAIMER ─────────────────────────────────────────── */
.disclaimer {
  border-left: 2px solid var(--fg3);
  padding: 12px 16px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg3);
  margin-bottom: 48px;
  line-height: 1.75;
}

/* ── MOBILE ─────────────────────────────────────────────── */
@media (max-width: 800px) {
  .wrap { padding: 0 16px; }
  .site-header { padding: 0 16px; gap: 16px; }
  .includes-grid, .test-grid { grid-template-columns: 1fr; }
  .pricing-wrap { grid-template-columns: 1fr; }
  .pricing-left { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-title { font-size: clamp(3rem, 13vw, 4.5rem); }
  .final-cta { padding: 40px 20px; }
  .hstat { flex: 1 1 45%; min-width: 0; }
  .hstat-num { font-size: 1.5rem; }
  .site-nav { display: none; }
  .hero { padding: 48px 0 0; }
  .hero-stats { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 14px; }
  .site-header { padding: 0 14px; }
  .hero { padding: 40px 0 0; }
  .hero-title { font-size: clamp(2.8rem, 14vw, 3.8rem); letter-spacing: 0; }
  .hero-form { flex-direction: column; }
  .hero-form input[type=email] { border-right: 1px solid var(--border); border-bottom: none; }
  .hero-form button { width: 100%; }
  .hero-micro { gap: 10px; }
  .hstat { flex: 1 1 45%; padding: 14px 12px; }
  .hstat-num { font-size: 1.4rem; }
  .hstat-label { font-size: 9px; }
  .inc-card, .test-card { padding: 20px 16px; }
  .pricing-left, .pricing-right { padding: 24px 20px; }
  .modal { margin: 12px; padding: 24px 18px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links a { margin-left: 8px; }
  .final-cta { padding: 36px 16px; }
  .section-head { padding: 36px 0 16px; }
}
