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

:root {
  --bg: #FAFAF9;
  --bg-alt: #F5F4F0;
  --fg: #111827;
  --fg-muted: #6B7280;
  --accent: #F59E0B;
  --accent-hover: #D97706;
  --accent-light: #FEF3C7;
  --win-color: #059669;
  --lose-color: #DC2626;
  --border: #E5E7EB;
  --card-bg: #FFFFFF;
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'Figtree', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: #92400E;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.15s ease;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--fg); color: white; }
.btn-primary:hover { background: #1F2937; }
.btn-ghost { background: transparent; color: var(--fg); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--fg); background: var(--bg-alt); }
.btn-cta { background: var(--accent); color: white; font-size: 16px; padding: 16px 32px; border-radius: var(--radius-sm); }
.btn-cta:hover { background: var(--accent-hover); }
.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}
.proof-avatars {
  display: flex;
}
.avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: white;
}
.avatar:first-child { margin-left: 0; }

/* ===== HERO VISUAL ===== */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.session-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
}
.session-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.session-code {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  font-weight: 700;
  background: var(--bg-alt);
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--fg);
  letter-spacing: 0.1em;
}
.session-badge-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--win-color);
}
.live-dot {
  width: 7px; height: 7px;
  background: var(--win-color);
  border-radius: 50%;
  animation: live-pulse 1.5s infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(5,150,105,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 4px rgba(5,150,105,0); }
}
.session-question {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 20px;
}
.session-chart { display: flex; flex-direction: column; gap: 12px; }
.bar-row { display: grid; grid-template-columns: 80px 1fr 40px; align-items: center; gap: 12px; }
.bar-label { font-size: 13px; font-weight: 500; color: var(--fg-muted); }
.bar-track { height: 22px; background: var(--bg-alt); border-radius: 6px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 6px; transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
.bar-pct { font-size: 13px; font-weight: 600; color: var(--fg); text-align: right; }
.session-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--fg-muted);
}
.join-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.join-icon { display: flex; align-items: center; }

/* ===== SECTIONS ===== */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.section-title { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; color: var(--fg); margin-bottom: 16px; letter-spacing: -0.02em; }
.section-sub { font-size: 17px; color: var(--fg-muted); line-height: 1.65; }

/* ===== HOW IT WORKS ===== */
.hiw { padding: 80px 48px; background: var(--bg-alt); }
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.hiw-step { position: relative; }
.step-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.step-icon { margin-bottom: 20px; }
.step-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--fg); }
.step-desc { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }

/* ===== FEATURES ===== */
.features { padding: 80px 48px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.feature-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); transform: translateY(-2px); }
.feature-card--wide { grid-column: span 2; }
.feature-icon-wrap { margin-bottom: 16px; }
.feature-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--fg); }
.feature-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* ===== OUTCOMES ===== */
.outcomes { padding: 80px 48px; background: var(--bg-alt); }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.outcome-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}
.outcome-icon { margin-bottom: 14px; }
.outcome-card h3 { font-size: 15px; font-weight: 700; color: var(--fg); margin-bottom: 8px; }
.outcome-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* ===== PRICING COMP ===== */
.pricing-comp { padding: 80px 48px; }
.comp-table-wrap { max-width: 800px; margin: 0 auto 24px; }
.comp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}
.comp-table th, .comp-table td { padding: 16px 24px; text-align: left; border-bottom: 1px solid var(--border); }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table thead th { background: var(--bg-alt); font-family: var(--font-display); font-size: 14px; font-weight: 700; }
.comp-header-pollzy { background: #FFFBEB; }
.comp-product-name { display: flex; align-items: center; gap: 8px; color: var(--fg); }
.comp-label { font-size: 14px; font-weight: 500; color: var(--fg-muted); min-width: 180px; }
.comp-win, .comp-lose { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--fg); }
.comp-price { font-weight: 600; }
.comp-links { display: flex; gap: 24px; justify-content: center; }
.comp-link { font-size: 14px; color: var(--fg-muted); text-decoration: none; font-weight: 500; transition: color 0.15s; }
.comp-link:hover { color: var(--accent); }

/* ===== CLOSING ===== */
.closing {
  padding: 100px 48px;
  background: var(--fg);
  text-align: center;
}
.closing-inner { max-width: 600px; margin: 0 auto; }
.closing-headline { font-size: clamp(32px, 4vw, 48px); font-weight: 800; color: white; margin-bottom: 20px; letter-spacing: -0.02em; }
.closing-sub { font-size: 17px; color: #9CA3AF; margin-bottom: 40px; line-height: 1.65; }
.closing-cta { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cta-price { font-size: 14px; color: #6B7280; font-weight: 500; }

/* ===== FOOTER ===== */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--fg-muted); text-decoration: none; font-weight: 500; transition: color 0.15s; }
.footer-links a:hover { color: var(--fg); }
.footer-copy { font-size: 13px; color: var(--fg-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 48px 24px 64px; gap: 48px; }
  .hero-visual { display: none; }
  .hiw-steps { grid-template-columns: 1fr; gap: 32px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card--wide { grid-column: span 1; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .navbar, .footer { padding: 20px 24px; }
  .section-header, .features, .outcomes, .hiw, .pricing-comp { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 600px) {
  .feature-grid, .outcomes-grid { grid-template-columns: 1fr; }
  .comp-table { font-size: 13px; }
  .comp-table th, .comp-table td { padding: 12px 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}