/* === BASE RESET & VARIABLES === */
:root {
  --bg: #141414;
  --bg-alt: #1a1a1a;
  --bg-card: #1e1e1e;
  --fg: #F5F5F0;
  --fg-muted: #888;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.15);
  --green: #22C55E;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1100px;
  --section-pad: 96px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 166, 35, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.headline-accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 32px;
  background: var(--bg-alt);
  border: 1px solid rgba(245, 166, 35, 0.15);
  border-radius: 12px;
}

.stat-block {
  flex: 1;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(245, 166, 35, 0.2);
}

/* === HERO VISUAL === */
.hero-visual {
  position: relative;
}

.phone-frame {
  background: #0d0d0d;
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 32px;
  padding: 6px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(245, 166, 35, 0.08);
}

.phone-screen {
  background: #0a0a0a;
  border-radius: 26px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(245, 166, 35, 0.1);
}

.screen-label {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.screen-notification {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: rgba(245, 166, 35, 0.05);
  border: 1px solid rgba(245, 166, 35, 0.1);
  border-radius: 10px;
}

.screen-notification.active {
  background: rgba(34, 197, 94, 0.05);
  border-color: rgba(34, 197, 94, 0.2);
}

.notif-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notif-content { flex: 1; }

.notif-title {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 2px;
}

.notif-amount {
  font-size: 11px;
  color: var(--fg-muted);
}

.notif-amount.green { color: var(--green); }

.screen-timeline { padding-top: 12px; border-top: 1px solid rgba(245, 166, 35, 0.1); }

.timeline-label {
  font-size: 10px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.timeline-bars { display: flex; flex-direction: column; gap: 8px; }

.tbar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tbar-fill {
  height: 6px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(245, 166, 35, 0.4) 100%);
  border-radius: 3px;
  transition: width 1s ease;
}

.tbar-label {
  font-size: 10px;
  color: var(--fg-muted);
  min-width: 40px;
}

.floating-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--bg-card);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 20px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* === SECTIONS SHARED === */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.section-eyebrow {
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--fg-muted);
  font-size: 18px;
  max-width: 540px;
  line-height: 1.7;
}

/* === HOW IT WORKS === */
.howitworks {
  padding: var(--section-pad) 0;
  border-top: 1px solid rgba(245, 166, 35, 0.08);
}

.howitworks .section-headline { margin-bottom: 8px; }

.steps {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr 380px;
  gap: 40px;
  align-items: start;
  padding: 48px 0;
}

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: rgba(245, 166, 35, 0.2);
  line-height: 1;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.7;
}

.step-connector {
  display: flex;
  justify-content: flex-start;
  padding-left: 28px;
  border-left: 1px dashed rgba(245, 166, 35, 0.2);
  margin-left: 40px;
}

.connector-line {
  padding: 16px 0;
}

/* === QUOTE CARD === */
.quote-card {
  background: var(--bg-card);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 12px;
  padding: 20px;
  font-size: 13px;
  position: relative;
}

.quote-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, transparent 50%, rgba(245, 166, 35, 0.1) 50%);
  border-radius: 0 12px 0 0;
}

.qc-header {
  font-size: 9px;
  color: var(--accent);
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 12px;
}

.qc-line {
  height: 1px;
  background: rgba(245, 166, 35, 0.15);
  margin-bottom: 14px;
}

.qc-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.qc-label { color: var(--fg-muted); font-size: 12px; }
.qc-value { font-weight: 500; font-size: 13px; }
.qc-value.gold { color: var(--accent); font-family: var(--font-display); font-size: 18px; font-weight: 700; }

.qc-footer {
  font-size: 10px;
  color: var(--fg-muted);
  text-align: right;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(245, 166, 35, 0.1);
}

/* === FOLLOWUP CARDS === */
.followup-cards { display: flex; flex-direction: column; gap: 10px; }

.fcard {
  padding: 14px 16px;
  border-radius: 10px;
  border-left: 3px solid;
}

.fcard.day7 { background: rgba(245,166,35,0.05); border-color: rgba(245,166,35,0.3); }
.fcard.day14 { background: rgba(245,166,35,0.08); border-color: rgba(245,166,35,0.5); }
.fcard.day21 { background: rgba(245,166,35,0.12); border-color: var(--accent); }

.fcard-day { font-size: 10px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 6px; }
.fcard-text { font-size: 13px; line-height: 1.5; color: var(--fg-muted); }

/* === PAID BLOCK === */
.paid-block {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
  padding: 24px;
}

.paid-amount {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
}

.paid-label { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.paid-date { font-size: 12px; color: var(--fg-muted); }

/* === FEATURES === */
.features {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
  border-top: 1px solid rgba(245, 166, 35, 0.08);
  border-bottom: 1px solid rgba(245, 166, 35, 0.08);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.feature-card {
  padding: 36px 32px;
  background: var(--bg);
  border: 1px solid rgba(245, 166, 35, 0.06);
  transition: border-color 0.2s;
}

.feature-card:hover { border-color: rgba(245, 166, 35, 0.2); }

.feature-icon { margin-bottom: 20px; }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === OUTCOMES === */
.outcomes { padding: var(--section-pad) 0; }

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.outcome-text p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.outcome-stats { display: flex; flex-direction: column; gap: 32px; }

.big-stat {
  padding: 28px 32px;
  background: var(--bg-alt);
  border: 1px solid rgba(245, 166, 35, 0.1);
  border-radius: 12px;
}

.big-stat-value {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

.big-stat-desc {
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 8px;
  line-height: 1.5;
}

/* === MANIFESTO === */
.manifesto {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
  border-top: 1px solid rgba(245, 166, 35, 0.08);
}

.manifesto-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-mark {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 40px;
}

.manifesto-body {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.manifesto-tagline {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 32px;
}

/* === FOOTER === */
.footer {
  padding: 48px 0;
  border-top: 1px solid rgba(245, 166, 35, 0.1);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

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

.footer-tagline {
  display: flex;
  flex-direction: column;
  text-align: right;
  font-size: 13px;
  color: var(--fg-muted);
  gap: 4px;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .step { grid-template-columns: 48px 1fr; }
  .step-visual { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 48px; }
  .nav { padding: 16px 24px; }
  .section-inner { padding: 0 24px; }
  .hero { padding: 100px 24px 60px; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer-tagline { text-align: center; }
}

@media (max-width: 480px) {
  .hero-stat { flex-direction: column; gap: 20px; }
  .stat-divider { display: none; }
  .feature-grid { gap: 1px; }
  .feature-card { padding: 24px 20px; }
}