:root {
  --bg: #111118;
  --bg2: #18181f;
  --fg: #f0eee8;
  --fg2: #a8a49c;
  --accent: #ff6b4a;
  --accent2: #ff947a;
  --chip-hot: #ff6b4a;
  --chip-warm: #f5a623;
  --chip-cold: #6b7280;
  --border: rgba(240,238,232,0.08);
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(17,17,24,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 3px 10px;
  border: 1px solid var(--accent);
  border-radius: 20px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,107,74,0.08) 0%, transparent 70%), var(--bg);
}
.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg2);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 24px rgba(255,107,74,0.35);
}
.hero-cta:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255,107,74,0.45);
}

/* FUNNEL VISUAL */
.channel-funnel { display: flex; justify-content: center; }
.channel-streams {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.channel-row {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.channel-icon {
  width: 80px;
  height: 68px;
  border-radius: 12px;
  background: var(--bg2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border-color 0.2s;
}
.channel-icon:hover { border-color: var(--accent); }
.ci-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--fg2);
  letter-spacing: 0.04em;
}

.ci-email { background: linear-gradient(135deg, #1a1a2e, #16213e); border-color: rgba(100,150,255,0.3); }
.ci-form { background: linear-gradient(135deg, #1a1a2e, #1e2a1e); border-color: rgba(100,200,100,0.3); }
.ci-phone { background: linear-gradient(135deg, #1a1a2e, #2e1a1a); border-color: rgba(255,150,100,0.3); }
.ci-social { background: linear-gradient(135deg, #1a1a2e, #2e1e2e); border-color: rgba(180,100,255,0.3); }
.ci-reviews { background: linear-gradient(135deg, #1a1a2e, #2e2a1a); border-color: rgba(255,200,80,0.3); }

/* email icon dot */
.ci-email::after {
  content: '';
  width: 18px; height: 13px;
  background: rgba(100,150,255,0.5);
  border-radius: 2px;
  border: 1px solid rgba(100,150,255,0.8);
}
/* form icon */
.ci-form::after {
  content: '';
  width: 16px; height: 20px;
  background: rgba(100,200,100,0.5);
  border-radius: 3px;
  border: 1px solid rgba(100,200,100,0.8);
}
/* phone icon */
.ci-phone::after {
  content: '';
  width: 14px; height: 22px;
  background: rgba(255,150,100,0.5);
  border-radius: 4px;
  border: 1px solid rgba(255,150,100,0.8);
}
/* social icon */
.ci-social::after {
  content: '';
  width: 20px; height: 16px;
  background: rgba(180,100,255,0.4);
  border-radius: 8px;
  border: 1px solid rgba(180,100,255,0.7);
}
/* review icon */
.ci-reviews::after {
  content: '';
  width: 18px; height: 18px;
  background: rgba(255,200,80,0.4);
  border-radius: 50%;
  border: 1px solid rgba(255,200,80,0.8);
}

.funnel-line {
  width: 2px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(255,107,74,0.6), rgba(255,107,74,0.2));
  margin-bottom: 8px;
}

.funnel-core {
  position: relative;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.core-glow {
  position: absolute;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,74,0.3) 0%, rgba(255,107,74,0.05) 70%, transparent 100%);
  animation: pulse 2.5s ease-in-out infinite;
}
.core-label {
  position: relative;
  z-index: 1;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.3;
  text-align: center;
  color: var(--accent);
  letter-spacing: 0.02em;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.08); opacity: 1; }
}

.out-row {
  display: flex;
  gap: 8px;
}
.out-chip {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}
.chip-hot { background: rgba(255,107,74,0.2); color: var(--chip-hot); border: 1px solid rgba(255,107,74,0.5); }
.chip-warm { background: rgba(245,166,35,0.2); color: var(--chip-warm); border: 1px solid rgba(245,166,35,0.5); }
.chip-cold { background: rgba(107,114,128,0.2); color: var(--chip-cold); border: 1px solid rgba(107,114,128,0.4); }

/* HERO STATS */
.hero-stats {
  max-width: 1280px;
  margin: 64px auto 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.stat-label { font-size: 0.8rem; color: var(--fg2); max-width: 160px; }
.stat-div { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* CHANNELS SECTION */
.channels {
  padding: 100px 48px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.channels-inner { max-width: 1280px; margin: 0 auto; }
.section-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
  text-align: center;
}
.channel-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.channel-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.channel-card:hover {
  border-color: rgba(255,107,74,0.4);
  transform: translateY(-4px);
}
.cc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg2);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.channel-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fg);
  margin-bottom: 8px;
}
.channel-card p { font-size: 0.82rem; color: var(--fg2); line-height: 1.5; }

/* FEATURES */
.features {
  padding: 100px 48px;
  background: var(--bg);
}
.features-inner { max-width: 1280px; margin: 0 auto; }
.section-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 64px;
  line-height: 1.2;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
}
.feature-item {
  border-left: 2px solid var(--border);
  padding-left: 28px;
  transition: border-color 0.2s;
}
.feature-item:hover { border-left-color: var(--accent); }
.fi-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,107,74,0.1);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.feature-item h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-item p { font-size: 0.9rem; color: var(--fg2); line-height: 1.6; }

/* HOW IT WORKS */
.howitworks {
  padding: 100px 48px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.hiw-inner { max-width: 960px; margin: 0 auto; }
.step-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: rgba(255,107,74,0.15);
  line-height: 1;
  letter-spacing: -0.04em;
}
.step-body h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 8px;
}
.step-body p { font-size: 0.85rem; color: var(--fg2); line-height: 1.6; }
.step-connector {
  flex: 0 0 48px;
  height: 2px;
  background: linear-gradient(to right, var(--border), var(--accent), var(--border));
  margin-top: 24px;
  align-self: center;
}

/* SOCIAL PROOF */
.social-proof {
  padding: 100px 48px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.sp-inner { max-width: 1280px; margin: 0 auto; }
.sp-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.sp-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.sp-stars {
  color: #f5a623;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
blockquote {
  font-size: 0.9rem;
  color: var(--fg);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}
cite {
  font-size: 0.78rem;
  color: var(--fg2);
  font-style: normal;
}
.sp-stats-row {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.sp-stat { display: flex; flex-direction: column; gap: 4px; }
.sp-stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.sp-stat-label { font-size: 0.8rem; color: var(--fg2); }
.sp-stat-div { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* CLOSER */
.closer {
  padding: 120px 48px;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(255,107,74,0.1) 0%, transparent 70%), var(--bg);
}
.closer-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.closer-quote {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--fg);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.closer-sub { font-size: 1rem; color: var(--fg2); line-height: 1.7; }

/* FOOTER */
.footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--fg);
}
.footer-copy { font-size: 0.8rem; color: var(--fg2); }

/* MOBILE */
@media (max-width: 900px) {
  .hero { padding: 100px 24px 60px; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .channel-funnel { transform: scale(0.85); }
  .channel-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .step-track { flex-direction: column; gap: 32px; }
  .step-connector { width: 2px; height: 32px; flex: none; margin: 0 auto; background: linear-gradient(to bottom, var(--border), var(--accent), var(--border)); }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 24px; }
  .stat-div { display: none; }
  .nav { padding: 0 24px; }
  .sp-quotes { grid-template-columns: 1fr; }
  .sp-stats-row { flex-direction: column; align-items: flex-start; gap: 24px; }
  .sp-stat-div { display: none; }
}
@media (max-width: 480px) {
  .channel-grid { grid-template-columns: 1fr; }
  .channel-row { flex-wrap: wrap; justify-content: center; }
}