/* ============================================
   Element Human — Homepage Styles
   Brand: #007AFF primary, #13202F bg, Poppins
   Style: Glassmorphism + dark mode
   ============================================ */

:root {
  --bg: #0c1520;
  --bg-surface: #13202F;
  --blue: #007AFF;
  --green: #54E42B;
  --teal: #10A8B7;
  --pink: #FF2198;
  --purple: #8F21A1;
  --amber: #F9BE00;
  --red: #F60000;
  --cyan: #00A0FF;
  --text: #F0F0F5;
  --text-muted: #8A9AB5;
  --glass-bg: rgba(19, 32, 47, 0.45);
  --glass-border: rgba(255,255,255, 0.08);
  --glass-blur: 20px;
  --radius: 16px;
  --radius-sm: 10px;
  --max-w: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* ---------- Background Orbs ---------- */
.bg-orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: orbFloat 20s ease-in-out infinite alternate;
}
.orb-1 { width: 600px; height: 600px; background: linear-gradient(135deg, #54E42B, #10A8B7); top: -10%; left: -5%; animation-delay: 0s; }
.orb-2 { width: 500px; height: 500px; background: linear-gradient(135deg, #FF2198, #8F21A1); top: 20%; right: -10%; animation-delay: -5s; }
.orb-3 { width: 450px; height: 450px; background: linear-gradient(135deg, #007AFF, #00A0FF); top: 55%; left: 10%; animation-delay: -10s; }
.orb-4 { width: 400px; height: 400px; background: linear-gradient(135deg, #F9BE00, #F60000); top: 75%; right: 5%; animation-delay: -3s; }
.orb-5 { width: 350px; height: 350px; background: linear-gradient(135deg, #10A8B7, #007AFF); top: 110%; left: 30%; animation-delay: -7s; }
.orb-6 { width: 500px; height: 500px; background: linear-gradient(135deg, #8F21A1, #FF2198); top: 150%; right: 20%; animation-delay: -12s; }

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.1); }
  100% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ---------- Utility ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.text-gradient {
  background: linear-gradient(135deg, var(--blue), var(--teal), var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.section-headline {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  max-width: 800px;
  margin-bottom: 48px;
}

/* ---------- Glass Card ---------- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white;
  box-shadow: 0 4px 20px rgba(0,122,255,0.3);
}
.btn-primary:hover { box-shadow: 0 6px 30px rgba(0,122,255,0.5); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--glass-border);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.05); }
.btn-large { padding: 16px 36px; font-size: 16px; }
.text-link { color: var(--blue); text-decoration: none; font-weight: 500; }
.text-link:hover { text-decoration: underline; }

/* ---------- Fade-up animation ---------- */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12, 21, 32, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.3s;
}
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo svg { display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--cyan)) !important;
  color: white !important;
  padding: 8px 20px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
}
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: 0.3s; }
.nav-mobile { display: none; flex-direction: column; gap: 16px; padding: 16px 24px 24px; }
.nav-mobile a { color: var(--text-muted); text-decoration: none; font-size: 16px; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-mobile.open { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero { padding: 140px 0 80px; min-height: 100vh; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-copy h1 { font-size: clamp(32px, 5vw, 54px); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero-sub { font-size: 17px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; max-width: 500px; }
.hero-ctas { margin-bottom: 24px; }
.proof-line { font-size: 13px; color: var(--text-muted); font-family: 'JetBrains Mono', monospace; }
.proof-line strong { color: var(--text); }

/* Ellie Demo Card */
.ellie-demo { padding: 0; overflow: hidden; }
.ellie-demo-header { padding: 16px 20px; border-bottom: 1px solid var(--glass-border); }
.ellie-toggle-wrap { display: flex; align-items: center; gap: 12px; }
.ellie-toggle { position: relative; display: inline-block; width: 48px; height: 26px; cursor: pointer; }
.ellie-toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 26px;
  transition: 0.3s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  left: 3px; bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}
.ellie-toggle input:checked + .toggle-slider { background: linear-gradient(135deg, var(--blue), var(--teal)); }
.ellie-toggle input:checked + .toggle-slider::before { transform: translateX(22px); }
.toggle-label { font-size: 14px; font-weight: 500; color: var(--text-muted); }

.ellie-demo-content { padding: 16px 20px 20px; }

/* Mock Post */
.mock-post-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.mock-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--pink), var(--purple)); }
.mock-username { font-size: 13px; font-weight: 600; }
.mock-platform { font-size: 11px; color: var(--text-muted); }
.mock-post-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a2a3d, #0f1922);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mock-product-area {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  border: 1px dashed rgba(255,255,255,0.15);
  padding: 24px 32px;
  border-radius: 8px;
}
.mock-logo-area {
  position: absolute;
  bottom: 12px; right: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--text-muted);
  border: 1px dashed rgba(255,255,255,0.1);
  padding: 6px 10px;
  border-radius: 4px;
}

/* Heat Map */
.heat-map-overlay {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.heat-map-overlay.active { opacity: 1; }
.heat-spot {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246,0,0,0.6) 0%, rgba(249,190,0,0.3) 40%, transparent 70%);
}
.heat-spot-1 { width: 120px; height: 120px; top: 20%; left: 25%; }
.heat-spot-2 { width: 80px; height: 80px; top: 40%; left: 55%; }
.heat-spot-3 { width: 50px; height: 50px; bottom: 15%; right: 15%; background: radial-gradient(circle, rgba(0,122,255,0.4) 0%, rgba(0,160,255,0.15) 40%, transparent 70%); }

/* Emotion Timeline */
.emotion-timeline {
  margin-top: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}
.emotion-timeline.active { opacity: 1; transform: translateY(0); }
.emotion-label { font-size: 11px; color: var(--text-muted); margin-bottom: 4px; font-family: 'JetBrains Mono', monospace; }
.emotion-svg { width: 100%; height: 50px; }
.emotion-path { stroke-dasharray: 500; stroke-dashoffset: 500; transition: stroke-dashoffset 1.5s ease 0.5s; }
.emotion-timeline.active .emotion-path { stroke-dashoffset: 0; }
.emotion-dot { opacity: 0; transition: opacity 0.4s ease 1.8s; }
.emotion-timeline.active .emotion-dot { opacity: 1; }
.emotion-peak { font-size: 11px; color: var(--green); font-family: 'JetBrains Mono', monospace; opacity: 0; transition: opacity 0.4s ease 1.5s; }
.emotion-timeline.active .emotion-peak { opacity: 1; }

/* Ellie Insight */
.ellie-insight {
  margin-top: 16px;
  padding: 16px;
  background: rgba(0, 122, 255, 0.08);
  border: 1px solid rgba(0, 122, 255, 0.2);
  border-radius: var(--radius-sm);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s;
}
.ellie-insight.active { opacity: 1; transform: translateY(0); }
.ellie-insight-header { font-size: 13px; font-weight: 600; color: var(--blue); margin-bottom: 8px; }
.ellie-icon { font-size: 16px; margin-right: 4px; }
.ellie-insight-text { font-size: 14px; margin-bottom: 12px; line-height: 1.5; }
.metric-row { display: flex; gap: 8px; margin-bottom: 12px; }
.metric-card {
  flex: 1;
  text-align: center;
  padding: 10px 6px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border: 1px solid var(--glass-border);
}
.metric-value { font-family: 'JetBrains Mono', monospace; font-size: 22px; font-weight: 700; color: var(--green); }
.metric-label { font-size: 11px; color: var(--text-muted); margin: 2px 0; }
.metric-badge { font-size: 9px; font-family: 'JetBrains Mono', monospace; padding: 2px 6px; border-radius: 4px; display: inline-block; }
.metric-badge.positive { background: rgba(84,228,43,0.15); color: var(--green); }
.metric-badge.top { background: rgba(0,122,255,0.15); color: var(--blue); }
.ellie-recommendation { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 768px) {
  .hero { padding: 100px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
}

/* ============================================
   PAIN SECTION
   ============================================ */
.pain-section { padding: 100px 0; text-align: center; }
.pain-section .section-headline { margin: 0 auto 40px; }

.live-counter { margin-bottom: 48px; }
.counter-amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--amber), var(--red));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.counter-label { font-size: 14px; color: var(--text-muted); margin-top: 8px; }

.pain-lines { max-width: 600px; margin: 0 auto 40px; }
.pain-line { font-size: 17px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
.transition-line { font-size: 20px; font-weight: 600; color: var(--blue); }

/* ============================================
   WHAT ELLIE DOES
   ============================================ */
.ellie-section { padding: 100px 0; }
.ellie-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.ellie-copy h2 { margin-bottom: 20px; }
.ellie-copy p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }

/* Feed Demo */
.feed-demo { padding: 0; overflow: hidden; position: sticky; top: 100px; }
.feed-frame { border-bottom: 1px solid var(--glass-border); }
.feed-status-bar { display: flex; justify-content: space-between; padding: 8px 16px; font-size: 12px; color: var(--text-muted); }
.feed-app-name { font-weight: 600; color: var(--text); }
.feed-content { padding: 12px 16px 16px; }
.feed-post-header { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.feed-avatar { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--blue)); }
.feed-handle { font-size: 13px; font-weight: 600; }
.feed-sponsored { font-size: 11px; color: var(--text-muted); margin-left: auto; }
.feed-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1a2a3d, #0f1922);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.feed-product { font-family: 'JetBrains Mono', monospace; font-size: 14px; color: var(--text-muted); border: 1px dashed rgba(255,255,255,0.12); padding: 32px; border-radius: 8px; }
.feed-actions { display: flex; gap: 16px; margin-top: 10px; font-size: 20px; color: var(--text-muted); }

/* Scroll overlays */
.scroll-overlay { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; pointer-events: none; }
.scroll-overlay.active { opacity: 1; }
.heat-blob { position: absolute; border-radius: 50%; }
.heat-blob.h1 { width: 50%; height: 50%; top: 15%; left: 20%; background: radial-gradient(circle, rgba(246,0,0,0.5) 0%, rgba(249,190,0,0.2) 50%, transparent 70%); }
.heat-blob.h2 { width: 35%; height: 35%; top: 50%; left: 55%; background: radial-gradient(circle, rgba(249,190,0,0.4) 0%, rgba(246,0,0,0.15) 50%, transparent 70%); }
.heat-blob.h3 { width: 25%; height: 25%; bottom: 10%; right: 10%; background: radial-gradient(circle, rgba(0,122,255,0.4) 0%, transparent 70%); }

.emotion-badge-float {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(84,228,43,0.2);
  color: var(--green);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
  border: 1px solid rgba(84,228,43,0.3);
}
.float-metric {
  position: absolute;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  background: rgba(19,32,47,0.8);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(84,228,43,0.3);
}
.fm-1 { top: 12px; right: 12px; }
.fm-2 { top: 42px; right: 12px; }
.fm-3 { top: 72px; right: 12px; color: var(--text-muted); border-color: var(--glass-border); }

/* Layer labels */
.layer-labels { padding: 20px; }
.layer-label { padding: 12px 0; border-bottom: 1px solid var(--glass-border); opacity: 0; transform: translateX(-20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.layer-label.active { opacity: 1; transform: translateX(0); }
.layer-label:last-child { border-bottom: none; }
.layer-label p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-top: 6px; font-style: italic; }
.layer-tag { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700; letter-spacing: 2px; padding: 3px 8px; border-radius: 4px; }
.tag-see { background: rgba(246,0,0,0.15); color: var(--red); }
.tag-feel { background: rgba(84,228,43,0.15); color: var(--green); }
.tag-act { background: rgba(0,122,255,0.15); color: var(--blue); }

@media (max-width: 768px) {
  .ellie-grid { grid-template-columns: 1fr; }
  .feed-demo { position: relative; top: 0; }
}

/* ============================================
   PAIN CARDS
   ============================================ */
.cards-section { padding: 100px 0; }
.cards-section .section-headline { text-align: center; margin: 0 auto 48px; }
.pain-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 48px; }
.pain-card { transition: transform 0.3s, border-color 0.3s; }
.pain-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }
.pain-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.pain-card .card-for { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; font-family: 'JetBrains Mono', monospace; }
.pain-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.card-proof { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--text-muted); margin-top: auto; padding-top: 12px; border-top: 1px solid var(--glass-border); }
.metric-highlight { color: var(--green); font-weight: 700; font-size: 15px; }
.card-quote { font-size: 13px; color: var(--text-muted); font-style: italic; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--glass-border); }
.card-quote span { display: block; font-style: normal; margin-top: 4px; font-size: 12px; color: var(--blue); }

@media (max-width: 768px) {
  .pain-cards-grid { grid-template-columns: 1fr; }
}

/* Comparison Tool */
.comparison-tool { max-width: 700px; margin: 0 auto; text-align: center; }
.comparison-tool h3 { font-size: 20px; margin-bottom: 8px; }
.comparison-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.comparison-selects { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.select-group label { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 6px; font-family: 'JetBrains Mono', monospace; }
.select-group select {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  color: var(--text);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  cursor: pointer;
  min-width: 160px;
}
.select-group select option { background: var(--bg-surface); }
.vs-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  padding: 8px 16px;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  margin-top: 16px;
}
.comparison-results { text-align: left; }
.comp-bar-group { margin-bottom: 20px; }
.comp-label { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; font-family: 'JetBrains Mono', monospace; }
.comp-bars { display: flex; flex-direction: column; gap: 6px; }
.comp-bar {
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: white;
  min-width: 40px;
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.bar-a { background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.bar-b { background: linear-gradient(90deg, var(--pink), var(--purple)); }
.comparison-note { font-size: 12px; color: var(--text-muted); margin-top: 20px; font-style: italic; }

/* ============================================
   THE SHIFT
   ============================================ */
.shift-section { padding: 100px 0; }
.shift-section .section-headline { text-align: center; margin: 0 auto 48px; }
.before-after-container { max-width: 800px; margin: 0 auto; }
.ba-labels { display: flex; justify-content: space-between; margin-bottom: 16px; }
.ba-label-before, .ba-label-after { font-family: 'JetBrains Mono', monospace; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); }
.ba-slider-wrap { position: relative; display: flex; gap: 0; border-radius: var(--radius); overflow: hidden; }
.ba-before, .ba-after { flex: 1; min-width: 0; }
.ba-card { height: 100%; border-radius: 0; border: none; }
.ba-old { background: rgba(19,32,47,0.6); }
.ba-new { background: rgba(0,122,255,0.08); border-left: 1px solid rgba(0,122,255,0.2); }
.ba-icon { font-size: 32px; margin-bottom: 12px; }
.ba-card h4 { font-size: 16px; margin-bottom: 12px; }
.ba-card ul { list-style: none; }
.ba-card li { font-size: 13px; color: var(--text-muted); padding: 6px 0; border-bottom: 1px solid var(--glass-border); line-height: 1.5; }
.ba-card li:last-child { border-bottom: none; }
.ba-old li::before { content: '✕ '; color: var(--red); opacity: 0.6; }
.ba-new li::before { content: '✓ '; color: var(--green); }

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  z-index: 5;
}
.ba-handle-line { width: 2px; flex: 1; background: linear-gradient(to bottom, transparent, var(--blue), transparent); }
.ba-handle-grip {
  width: 36px; height: 36px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  box-shadow: 0 0 20px rgba(0,122,255,0.5);
  flex-shrink: 0;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section { padding: 100px 0; }
.how-section .section-headline { text-align: center; margin: 0 auto 48px; }
.steps-grid { display: flex; align-items: stretch; gap: 0; }
.step { flex: 1; text-align: center; }
.step-number { font-family: 'JetBrains Mono', monospace; font-size: 48px; font-weight: 700; color: rgba(0,122,255,0.15); margin-bottom: 16px; }
.step h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.step-connector { display: flex; align-items: center; justify-content: center; width: 60px; flex-shrink: 0; }
.connector-line { width: 100%; height: 2px; background: linear-gradient(90deg, rgba(0,122,255,0.3), rgba(0,122,255,0.1)); }

.step-visual { margin-top: auto; }
.mini-form { text-align: left; }
.mini-input { background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); padding: 8px 12px; border-radius: 6px; font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.mini-btn { background: linear-gradient(135deg, var(--blue), var(--cyan)); color: white; padding: 8px 12px; border-radius: 6px; font-size: 12px; text-align: center; font-weight: 600; }
.mini-feed { border-radius: 8px; overflow: hidden; border: 1px solid var(--glass-border); }
.mini-feed-bar { height: 8px; background: rgba(255,255,255,0.05); }
.mini-feed-content { height: 80px; background: linear-gradient(135deg, #1a2a3d, #0f1922); position: relative; overflow: hidden; }
.scan-line {
  position: absolute; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  animation: scanMove 2s ease-in-out infinite;
}
@keyframes scanMove { 0% { top: 0; } 50% { top: 100%; } 100% { top: 0; } }
.mini-ellie { text-align: left; }
.mini-ellie-icon { font-size: 20px; color: var(--blue); margin-bottom: 6px; }
.mini-ellie-text { font-size: 12px; color: var(--text); line-height: 1.5; padding: 10px; background: rgba(0,122,255,0.1); border: 1px solid rgba(0,122,255,0.2); border-radius: 8px; }

@media (max-width: 768px) {
  .steps-grid { flex-direction: column; gap: 24px; }
  .step-connector { width: auto; height: 40px; }
  .connector-line { width: 2px; height: 100%; }
}

/* ============================================
   SOCIAL PROOF
   ============================================ */
.proof-section { padding: 100px 0; }
.logo-wall { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-bottom: 48px; }
.logo-item {
  text-align: center;
  padding: 20px 12px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  border-radius: var(--radius-sm);
  cursor: default;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid transparent;
}
.logo-item:hover {
  color: var(--text);
  background: var(--glass-bg);
  border-color: var(--glass-border);
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0,122,255,0.15);
}
.logo-item::after {
  content: attr(data-tip);
  position: absolute;
  bottom: -28px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--blue);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.logo-item:hover::after { opacity: 1; }

.stats-bar { display: flex; justify-content: center; gap: 64px; margin-bottom: 48px; text-align: center; }
.stat-value, .stat-value-text { font-family: 'JetBrains Mono', monospace; font-size: clamp(32px, 5vw, 48px); font-weight: 700; color: var(--text); }
.stat-label { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

.testimonial { max-width: 600px; margin: 0 auto; text-align: center; }
.testimonial blockquote p { font-size: 18px; line-height: 1.6; font-style: italic; margin-bottom: 12px; }
.testimonial cite { font-size: 14px; color: var(--blue); font-style: normal; }

@media (max-width: 768px) {
  .logo-wall { grid-template-columns: repeat(3, 1fr); }
  .stats-bar { gap: 32px; flex-wrap: wrap; }
}

/* ============================================
   VISION
   ============================================ */
.vision-section { padding: 100px 0; text-align: center; }
.vision-section .section-headline { margin: 0 auto 24px; }
.vision-body { font-size: 16px; color: var(--text-muted); line-height: 1.7; max-width: 700px; margin: 0 auto 16px; }
.compliance-line { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 32px; font-size: 13px; color: var(--text-muted); flex-wrap: wrap; }
.compliance-dot { width: 4px; height: 4px; background: var(--text-muted); border-radius: 50%; }

/* ============================================
   PRICING
   ============================================ */
.pricing-section { padding: 100px 0; }
.pricing-section .section-headline { text-align: center; margin: 0 auto 48px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.pricing-card { text-align: center; padding: 32px 24px; transition: transform 0.3s, border-color 0.3s; position: relative; display: flex; flex-direction: column; }
.pricing-card:hover { transform: translateY(-4px); }
.pricing-featured { border-color: rgba(0,122,255,0.3); background: rgba(0,122,255,0.06); }
.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-tier { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.pricing-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; flex: 1; }
.pricing-price { font-family: 'JetBrains Mono', monospace; font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 20px; }
.pricing-card .btn { width: 100%; justify-content: center; }

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
}

/* ============================================
   FINAL CTA
   ============================================ */
.cta-section { padding: 100px 0; }
.ellie-quiz { max-width: 600px; margin: 0 auto 64px; text-align: center; }
.ellie-quiz h3 { font-size: 20px; margin-bottom: 8px; }
.ellie-quiz > p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.quiz-input-wrap { display: flex; gap: 8px; }
.quiz-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  color: var(--text);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}
.quiz-input::placeholder { color: var(--text-muted); }
.quiz-btn { white-space: nowrap; }
.quiz-result {
  display: none;
  margin-top: 20px;
  padding: 20px;
  background: rgba(0,122,255,0.08);
  border: 1px solid rgba(0,122,255,0.2);
  border-radius: var(--radius-sm);
  text-align: left;
}
.quiz-result.show { display: block; }
.quiz-result p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.final-cta-content { text-align: center; }
.final-cta-content h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin-bottom: 16px; }
.final-cta-content p { font-size: 17px; color: var(--text-muted); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.final-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
  .quiz-input-wrap { flex-direction: column; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer { padding: 64px 0 24px; border-top: 1px solid var(--glass-border); margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-tagline { color: var(--text-muted); font-size: 14px; margin-top: 12px; }
.footer-col h4 { font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: var(--text-muted); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--glass-border); }
.footer-bottom p { font-size: 13px; color: var(--text-muted); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
