:root {
  --black: #0a0a0a;
  --white: #f8f8f6;
  --accent: #FF6B00;
  --gray-dark: #1a1a1a;
  --gray-mid: #6b6b6b;
  --gray-light: #e0e0e0;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.hero-dark {
  background: var(--black);
  padding: 72px 64px 72px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-light {
  background: var(--white);
  color: var(--black);
  padding: 72px 80px 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.5vw, 88px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
  color: var(--gray-mid);
  margin-bottom: 48px;
  line-height: 1.4;
}
.hero-stat-row {
  display: flex;
  gap: 40px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.product-preview {
  padding: 16px 0;
}
.preview-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 24px;
}
.preview-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 15px;
  font-weight: 400;
}
.preview-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.preview-more {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-mid);
}

/* THE STAKES */
.thestakes {
  background: var(--gray-dark);
  padding: 120px 80px;
}
.stakes-inner {
  max-width: 720px;
}
.stakes-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}
.stakes-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
}
.stakes-quote em {
  font-style: normal;
  color: var(--accent);
}
.stakes-body {
  font-size: 18px;
  color: var(--gray-light);
  line-height: 1.7;
}
.stakes-body strong {
  color: var(--white);
  font-weight: 500;
}

/* THE SYSTEM */
.thesystem {
  background: var(--black);
  padding: 120px 80px;
}
.system-inner {
  max-width: 1100px;
}
.system-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}
.system-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
}
.system-sub {
  font-size: 18px;
  color: var(--gray-mid);
  max-width: 520px;
  margin-bottom: 72px;
  line-height: 1.7;
}
.tracker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.tracker-card {
  background: var(--gray-dark);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.tracker-card:hover {
  background: #1f1f1f;
}
.tracker-icon {
  font-size: 28px;
  margin-bottom: 20px;
  opacity: 0.6;
}
.tracker-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.tracker-desc {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.5;
}

/* THE BUNDLE */
.thebundle {
  background: var(--white);
  color: var(--black);
  padding: 120px 80px;
}
.bundle-inner {
  max-width: 1100px;
}
.bundle-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}
.bundle-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}
.bundle-sub {
  font-size: 18px;
  color: #555;
  margin-bottom: 72px;
}
.bundle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.bundle-col-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
}
.bundle-col-sub {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}
.bundle-col-accent {
  background: var(--black);
  color: var(--white);
  padding: 40px;
}
.bundle-col-accent .bundle-col-title {
  color: var(--accent);
}
.bundle-col-accent .bundle-col-sub {
  color: var(--gray-light);
}
.bundle-list {
  list-style: none;
  font-size: 15px;
  line-height: 2;
}
.bundle-col:not(.bundle-col-accent) .bundle-list li::before {
  content: '+ ';
  color: var(--accent);
  font-weight: 700;
}
.bundle-col-accent .bundle-list li::before {
  content: '+ ';
  color: var(--accent);
  font-weight: 700;
}
.bundle-note {
  margin-top: 32px;
  font-size: 13px;
  color: #888;
  border-top: 1px solid #333;
  padding-top: 20px;
}

/* HOW IT WORKS */
.howitworks {
  background: var(--black);
  padding: 120px 80px;
}
.hiw-inner {
  max-width: 900px;
}
.hiw-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
}
.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hiw-step {
  display: flex;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid #1f1f1f;
}
.hiw-step:last-child { border-bottom: none; }
.hiw-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: #1f1f1f;
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
}
.hiw-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.hiw-desc {
  font-size: 16px;
  color: var(--gray-mid);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  background: var(--gray-dark);
  padding: 140px 80px;
}
.closing-inner {
  max-width: 760px;
}
.closing-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 40px;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 20px;
  color: var(--gray-mid);
  line-height: 1.7;
  max-width: 520px;
}

/* FOOTER */
footer {
  background: var(--black);
  padding: 48px 80px;
  border-top: 1px solid #1f1f1f;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--gray-mid);
}
.footer-note {
  text-align: right;
  font-size: 12px;
  color: #444;
  line-height: 1.8;
}

/* CTA BUTTON */
.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  padding: 18px 48px;
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-top: 40px;
  transition: background 0.2s, transform 0.15s;
}
.cta-btn:hover {
  background: #e55e00;
  transform: translateY(-1px);
}

/* BUNDLE BUY BUTTON */
.bundle-buy-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 36px;
  text-decoration: none;
  margin-top: 28px;
  transition: background 0.2s;
}
.bundle-buy-btn:hover {
  background: #e55e00;
}

/* PREVIEW CTA */
.preview-cta {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid var(--accent);
}
.preview-cta-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
}
.preview-cta-note {
  font-size: 13px;
  color: var(--gray-mid);
}

/* DOWNLOAD PAGE */
.download-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
  background: var(--black);
}
.download-inner {
  max-width: 560px;
  width: 100%;
}
.download-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--accent);
  padding: 6px 16px;
  margin-bottom: 32px;
}
.download-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 16px;
}
.download-sub {
  font-size: 16px;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 40px;
}
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  padding: 20px 48px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.download-btn:hover {
  background: #e55e00;
  transform: translateY(-2px);
}
.download-btn-icon {
  font-size: 24px;
}
.download-details {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.download-detail-item {
  display: flex;
  gap: 16px;
  align-items: baseline;
}
.download-detail-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  width: 70px;
  flex-shrink: 0;
}
.download-detail-value {
  font-size: 14px;
  color: var(--gray-mid);
}
.download-tip {
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--gray-dark);
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.6;
}
.download-tip strong {
  color: var(--accent);
}
.download-back {
  display: inline-block;
  margin-top: 40px;
  font-size: 14px;
  color: var(--gray-mid);
  text-decoration: none;
}
.download-back:hover {
  color: var(--white);
}

/* ERROR PAGE */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
  background: var(--black);
}
.error-inner {
  max-width: 480px;
  text-align: center;
}
.error-code {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 800;
  color: var(--gray-dark);
  line-height: 1;
  margin-bottom: 16px;
}
.error-headline {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
}
.error-sub {
  font-size: 16px;
  color: var(--gray-mid);
  line-height: 1.6;
  margin-bottom: 32px;
}
.error-back {
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
}
.error-back:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero-dark { padding: 56px 32px; }
  .hero-light { padding: 56px 32px; }
  .thestakes, .thesystem, .thebundle, .howitworks, .closing { padding: 80px 32px; }
  .tracker-grid { grid-template-columns: 1fr; }
  .bundle-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 24px; align-items: flex-start; }
  .footer-note { text-align: left; }
  .hiw-step { flex-direction: column; gap: 12px; }
  .hero-stat-row { gap: 24px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 40px; }
  .system-headline { font-size: 32px; }
  .closing-headline { font-size: 32px; }
}