/* ===== Brand tokens — swap these to re-skin the whole funnel ===== */
:root {
  --bg: #0d0e10;
  --bg-alt: #17181c;
  --bg-card: #1c1d22;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f5f2ec;
  --text-dim: #a8a5a0;
  --accent: #ff5a1f;      /* bold orange — energy */
  --accent-2: #ffb703;    /* amber — warmth */
  --accent-soft: rgba(255, 90, 31, 0.12);
  --skool: #4a3aff;       /* distinct color for the Skool hand-off moment */
  --skool-soft: rgba(74, 58, 255, 0.14);
  --radius: 14px;
  --maxw: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Anton', 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ===== Header ===== */
header.site {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(13, 14, 16, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
header.site .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.wordmark {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.wordmark span { color: var(--accent); }
.social-links { display: flex; gap: 18px; align-items: center; }
.social-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  transition: color 0.15s ease;
}
.social-links a:hover { color: var(--text); }
.social-links svg { width: 16px; height: 16px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 64px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 520px;
  background:
    radial-gradient(600px 300px at 15% 20%, var(--accent-soft), transparent 60%),
    radial-gradient(500px 260px at 85% 10%, rgba(255,183,3,0.10), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 5vw, 58px);
}
.hero h1 .hl { color: var(--accent); }
.hero p.lede {
  margin-top: 20px;
  font-size: 18px;
  color: var(--text-dim);
  max-width: 46ch;
}

/* ===== Form ===== */
.capture-form {
  margin-top: 30px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.capture-form input {
  flex: 1 1 180px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 15px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
}
.capture-form input::placeholder { color: #8b8783; }
.capture-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 15px 24px;
  border-radius: 10px;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff7a3d);
  color: #fff;
  box-shadow: 0 8px 22px rgba(255, 90, 31, 0.28);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(255, 90, 31, 0.36); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 4px 14px rgba(255, 90, 31, 0.22); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--accent-2); color: var(--accent-2); }
.btn-skool {
  background: linear-gradient(135deg, var(--skool), #6c5ce7);
  color: #fff;
  box-shadow: 0 8px 22px rgba(74, 58, 255, 0.3);
}
.btn-skool:hover { transform: translateY(-1px); }
.form-note {
  margin-top: 12px;
  font-size: 12.5px;
  color: #b8b5b0;
}

/* ===== Day tracker visual (hero side card) ===== */
.tracker-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
}
.tracker-card .tc-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.tc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}
.tc-row:last-child { border-bottom: none; }
.tc-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  color: var(--accent-2);
  flex-shrink: 0;
}
.tc-label { font-size: 14.5px; font-weight: 600; }
.tc-sub { font-size: 12.5px; color: var(--text-dim); }

/* ===== Stats bar ===== */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.stats .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.stat { text-align: center; flex: 1 1 160px; }
.stat .num {
  font-family: 'Anton', sans-serif;
  font-size: 30px;
  color: var(--accent);
}
.stat .label {
  font-size: 12.5px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ===== Section generic ===== */
.section { padding: clamp(56px, 8vw, 84px) 0; }
.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.section-head p { margin-top: 14px; color: var(--text-dim); font-size: 16.5px; }

/* ===== Day cards grid ===== */
.day-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.day-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.day-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.day-card .dnum {
  font-family: 'Anton', sans-serif;
  font-size: 34px;
  color: var(--accent);
  opacity: 0.85;
}
.day-card h3 {
  font-size: 16.5px;
  margin-top: 10px;
  letter-spacing: 0.02em;
}
.day-card p {
  font-size: 13.5px;
  color: var(--text-dim);
  margin-top: 8px;
  line-height: 1.5;
}

/* ===== Testimonials ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.testi-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.testi-card p.quote {
  font-size: 15.5px;
  line-height: 1.6;
}
.testi-card .who {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--accent-2);
  font-weight: 600;
}
.placeholder-flag {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  color: var(--text-dim);
  font-style: italic;
  border-top: 1px dashed var(--line);
  padding-top: 10px;
}

/* ===== CTA repeat band ===== */
.cta-band {
  background: linear-gradient(135deg, var(--bg-alt), var(--bg-card));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 56px 40px;
  text-align: center;
}
.cta-band h2 { font-size: clamp(26px, 3.2vw, 36px); }
.cta-band .capture-form { justify-content: center; max-width: 560px; margin: 26px auto 0; }
.cta-band .form-note { text-align: center; }

/* ===== Skool hand-off card ===== */
.skool-card {
  background: var(--skool-soft);
  border: 1px solid rgba(74, 58, 255, 0.35);
  border-radius: 20px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}
.skool-card h3 { font-size: clamp(22px, 2.6vw, 30px); color: #fff; }
.skool-card p { color: #cfcdfa; margin-top: 10px; max-width: 52ch; }
.skool-card .tag {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: #cfcdfa;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* ===== Footer ===== */
footer.site {
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
footer.site .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
footer .foot-left .wordmark { font-size: 16px; }
footer .tagline { font-size: 13px; color: var(--text-dim); margin-top: 4px; }
footer .credit { font-size: 12px; color: var(--text-dim); }
footer .credit a { color: var(--accent-2); font-weight: 600; }

/* ===== Mockup badge ===== */
.mockup-badge {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 50;
  background: rgba(20, 20, 24, 0.92);
  border: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 9px 14px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.mockup-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
}

/* ===== Thank-you / sequence page shared bits ===== */
.page-hero {
  padding: 70px 0 20px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(34px, 5vw, 50px); }
.page-hero p { color: var(--text-dim); font-size: 17px; margin: 16px auto 0; max-width: 56ch; }

.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.tl-step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
}
.tl-step.current { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent) inset; }
.tl-step.skool { border-color: var(--skool); background: var(--skool-soft); }
.tl-step .tl-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-dim);
}
.tl-step.current .tl-tag { color: var(--accent-2); }
.tl-step.skool .tl-tag { color: #cfcdfa; }
.tl-step .tl-label { font-size: 13px; font-weight: 700; margin-top: 6px; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .day-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { gap: 36px; }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .day-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(3, 1fr); }
  .skool-card { grid-template-columns: 1fr; text-align: center; }
  footer.site .wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  header.site .bar { padding: 14px 20px; }
  .social-links { gap: 12px; }
  .social-links a span.label { display: none; }
  .mockup-badge { font-size: 10.5px; padding: 8px 12px; right: 18px; left: 18px; justify-content: center; }
}
