/* ===== FONTS ===== */
/* Syne: geometric bold display */
/* DM Sans: clean neutral body */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: #0A0A0A;
  color: #F5F3EE;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== COLOR VARIABLES ===== */
:root {
  --bg: #0A0A0A;
  --surface: #141414;
  --surface2: #1E1E1E;
  --accent: #FF4D00;
  --accent-dim: rgba(255, 77, 0, 0.12);
  --text: #F5F3EE;
  --text-muted: rgba(245, 243, 238, 0.45);
  --border: rgba(245, 243, 238, 0.08);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-headline {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text);
  max-width: 560px;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

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

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.05;
}

.hook-word {
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.65;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px 0 0;
}

.hero-stat:first-child { padding-left: 0; }

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 28px;
  flex-shrink: 0;
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.thumb-showcase {
  width: 100%;
  max-width: 380px;
}

.showcase-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.thumb-frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,77,0,0.2), 0 24px 64px rgba(0,0,0,0.6), 0 0 80px rgba(255,77,0,0.08);
}

.thumb-inner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
}

/* Fake thumbnail content */
.thumb-text-top {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.thumb-text-main {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.thumb-text-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  font-weight: 500;
}

.thumb-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  border-radius: 4px;
  padding: 4px 8px;
}

.thumb-eye { font-size: 12px; }

.thumb-ctas {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
}

/* Orange glow border at top of thumbnail */
.thumb-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF4D00, #FF8C00);
}

.showcase-tags {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.tag {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 8px;
}

/* ===== HOW IT WORKS ===== */
.how {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.how-header {
  max-width: 1200px;
  margin: 0 auto 64px;
  padding: 0 40px;
}

.steps-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.step-card {
  background: var(--surface);
  padding: 40px 36px 40px 40px;
  position: relative;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: rgba(255, 77, 0, 0.1);
  line-height: 1;
  margin-bottom: 24px;
  position: relative;
}

.step-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.4s ease;
}

.step-card:hover::after { height: 100%; }

.step-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== OUTCOMES ===== */
.outcomes {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.outcomes-headline {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--text);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.2;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.outcome-item {
  background: #0A0A0A;
  padding: 36px 32px;
  transition: background 0.2s ease;
}

.outcome-item:hover {
  background: #111;
}

.outcome-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.outcome-label {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.outcome-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 40px;
  position: relative;
  padding-left: 24px;
}

.manifesto-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
}

.manifesto-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.manifesto-stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--accent-dim);
  border: 1px solid rgba(255, 77, 0, 0.2);
  border-radius: 8px;
}

.mstat {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}

.mstat-label {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 0;
  border-bottom: 1px solid var(--border);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.closing-headline {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.05;
}

.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

.closing-promise {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.promise-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.promise-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
  padding: 56px 0 40px;
  background: var(--bg);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.footer-link {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--text); }

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 24px 40px 0;
  border-top: 1px solid var(--border);
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }
  .hero-visual { justify-content: flex-start; }
  .thumb-showcase { max-width: 100%; }
  .steps-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
  .how-header, .outcomes-inner, .manifesto-inner, .closing-inner {
    padding: 0 24px;
  }
  .footer-inner {
    flex-direction: column;
    padding: 0 24px;
  }
  .footer-bottom { padding: 24px 24px 0; }
  .hero-stat-row { flex-wrap: wrap; gap: 16px; }
  .hero-stat-div { display: none; }
  .closing-promise { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero { padding: 72px 0 60px; }
  .hero-headline { font-size: 40px; }
  .how, .outcomes, .manifesto, .closing { padding: 64px 0; }
  .manifesto-quote { font-size: 22px; }
  .mstat { font-size: 36px; }
}