/* ============================================================
   AI DISCUSS HUB - FULL THEME
   Fonts, Variables, Layouts, and Components
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  /* Sophisticated dark base with warmth */
  --charcoal: #1a1614;
  --charcoal-2: #2d2825;
  --charcoal-3: #423d38;
  --warm-white: #faf8f5;
  --warm-gray: #ada8a3;
  --warm-gray-2: #6e6860;
  
  /* Primary: Ember orange (urgency + human warmth) */
  --ember: #ff4d00;
  --ember-light: #ff7d3f;
  --ember-dark: #cc3d00;
  --ember-glow: rgba(255, 77, 0, 0.15);
  --ember-intense: rgba(255, 77, 0, 0.3);
  
  /* Trust: Forest green (verification + growth) */
  --forest: #0d7a5f;
  --forest-light: #10a37f;
  --forest-pale: rgba(13, 122, 95, 0.08);
  --forest-glow: rgba(13, 122, 95, 0.2);
  
  /* Premium: Gold (value + exclusivity) */
  --gold: #d4a574;
  --gold-light: #e6c49a;
  --gold-glow: rgba(212, 165, 116, 0.15);
  
  /* Depth */
  --black: #0a0807;
  --white: #ffffff;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.2);
  --shadow-ember: 0 4px 24px rgba(255, 77, 0, 0.4);
  --shadow-forest: 0 2px 16px rgba(13, 122, 95, 0.3);
  
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;
  --r-full: 999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--charcoal);
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Ambient warmth gradient */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(255, 77, 0, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(13, 122, 95, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 35% 25% at 80% 70%, rgba(212, 165, 116, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================ GAP 1: LIVE ACTIVITY TICKER */
.live-ticker {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 300;
  background: rgba(26, 22, 20, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 77, 0, 0.2);
  border-radius: var(--r-lg);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 77, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 320px;
  animation: slideInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideInRight {
  from { transform: translateX(400px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.live-pulse {
  width: 8px;
  height: 8px;
  background: var(--forest-light);
  border-radius: 50%;
  position: relative;
  animation: livePulse 2s ease-in-out infinite;
}

.live-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  background: var(--forest-light);
  border-radius: 50%;
  opacity: 0;
  animation: ripple 2s ease-out infinite;
}

@keyframes livePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes ripple {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(3); opacity: 0; }
}

.live-text {
  font-size: 13px;
  line-height: 1.4;
  color: var(--warm-white);
}

.live-text strong {
  color: var(--ember);
  font-weight: 700;
}

.live-text small {
  display: block;
  font-size: 11px;
  color: var(--warm-gray);
  font-family: var(--font-mono);
}

/* ============================================================ NAV WITH MULTI-LAYER TRUST */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(26, 22, 20, 0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s;
}

nav.scrolled {
  background: rgba(26, 22, 20, 0.97);
  border-bottom-color: rgba(255, 77, 0, 0.15);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--ember) 0%, var(--ember-dark) 100%);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-ember);
  position: relative;
  overflow: hidden;
}

.logo-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%) translateY(-100%); }
  50% { transform: translateX(100%) translateY(100%); }
}

.logo-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
  position: relative;
  z-index: 1;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--warm-white);
  letter-spacing: -0.02em;
}

.logo-text em {
  font-style: italic;
  color: var(--ember);
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--warm-gray);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--r-sm);
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--warm-white);
  background: rgba(255, 255, 255, 0.05);
}

/* GAP 2: MULTI-LAYER TRUST SIGNALS */
.nav-trust-stack {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--forest-pale);
  border: 1px solid rgba(13, 122, 95, 0.3);
  border-radius: var(--r-full);
  padding: 6px 14px 6px 10px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--forest-light);
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: var(--shadow-forest);
}

.trust-icon {
  width: 16px;
  height: 16px;
  background: var(--forest-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 10px;
  height: 10px;
  fill: white;
}

.member-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  font-family: var(--font-mono);
  background: var(--gold-glow);
  border: 1px solid rgba(212, 165, 116, 0.25);
  border-radius: var(--r-full);
  padding: 6px 12px;
}

.member-avatars {
  display: flex;
  margin-right: 4px;
}

.member-avatars span {
  width: 20px;
  height: 20px;
  background: var(--charcoal-2);
  border: 2px solid var(--charcoal);
  border-radius: 50%;
  margin-left: -8px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-avatars span:first-child { margin-left: 0; }

.btn-cta-nav {
  background: linear-gradient(135deg, var(--ember) 0%, var(--ember-dark) 100%);
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-ember);
  position: relative;
  overflow: hidden;
}

.btn-cta-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-cta-nav:hover::before {
  opacity: 1;
}

.btn-cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(255, 77, 0, 0.5);
}

/* ============================================================ HERO - GAP 3: EMOTIONAL CONNECTION */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px clamp(20px, 6vw, 80px) 100px;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 77, 0, 0.1);
  border: 1px solid rgba(255, 77, 0, 0.25);
  border-radius: var(--r-full);
  padding: 8px 20px;
  margin-bottom: 32px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ember);
  animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-badge-icon {
  width: 18px;
  height: 18px;
  background: var(--ember);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge-icon svg {
  width: 10px;
  height: 10px;
  fill: white;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 84px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--warm-white);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
  animation: fadeInUp 0.8s 0.15s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.hero-title em {
  font-style: italic;
  color: var(--ember);
  position: relative;
  display: inline-block;
}

.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--ember), transparent);
  opacity: 0.4;
}

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.5;
  color: var(--warm-gray);
  max-width: 720px;
  margin: 0 auto 48px;
  animation: fadeInUp 0.8s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.hero-subtitle strong {
  color: var(--warm-white);
  font-weight: 600;
}

/* GAP 1: IMMEDIATE SOCIAL PROOF */
.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-faces {
  display: flex;
}

.proof-faces img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--charcoal);
  margin-left: -12px;
  background: var(--charcoal-2);
}

.proof-faces img:first-child {
  margin-left: 0;
}

.proof-text {
  font-size: 14px;
  line-height: 1.3;
}

.proof-text strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--warm-white);
  font-family: var(--font-mono);
}

.proof-text span {
  color: var(--warm-gray);
  font-size: 13px;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* GAP 6: COGNITIVE EASE - Clear CTA Hierarchy */
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.btn-primary {
  background: linear-gradient(135deg, var(--ember) 0%, var(--ember-dark) 100%);
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  padding: 18px 40px;
  border-radius: var(--r-lg);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-ember);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.2) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(255, 77, 0, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--warm-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 18px 32px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.hero-trust-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--warm-gray-2);
  font-family: var(--font-mono);
  animation: fadeInUp 0.8s 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

/* ============================================================ GAP 4: URGENCY WITH GROWTH STATS */
.urgency-banner {
  background: linear-gradient(135deg, rgba(13, 122, 95, 0.15) 0%, rgba(212, 165, 116, 0.1) 100%);
  border: 1px solid rgba(13, 122, 95, 0.2);
  border-radius: var(--r-xl);
  padding: clamp(24px, 4vw, 40px);
  margin: 80px auto;
  max-width: 1200px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.urgency-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  animation: scan 4s ease-in-out infinite;
}

@keyframes scan {
  0% { left: -100%; }
  50%, 100% { left: 200%; }
}

.urgency-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--forest-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  font-family: var(--font-mono);
}

.urgency-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 20px;
  line-height: 1.3;
}

.urgency-stats {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 60px);
  flex-wrap: wrap;
}

.urgency-stat {
  text-align: center;
}

.urgency-stat-number {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-mono);
  line-height: 1;
  margin-bottom: 8px;
}

.urgency-stat-label {
  font-size: 14px;
  color: var(--warm-gray);
  font-weight: 500;
}

/* ============================================================ GAP 5: PREMIUM VALUE PERCEPTION */
.value-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--ember);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  font-family: var(--font-mono);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--warm-white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--warm-gray);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.value-card {
  background: rgba(45, 40, 37, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ember), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 77, 0, 0.2);
  box-shadow: var(--shadow-lg);
}

.value-card:hover::before {
  opacity: 1;
}

.value-icon {
  width: 56px;
  height: 56px;
  background: var(--ember-glow);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--ember);
}

.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.value-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-glow);
  border: 1px solid rgba(212, 165, 116, 0.3);
  border-radius: var(--r-full);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================ GAP 3: HUMAN FACES & STORIES */
.testimonials {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.testimonial-card {
  background: rgba(45, 40, 37, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  transition: all 0.3s;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  font-family: var(--font-display);
  color: rgba(255, 77, 0, 0.1);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 77, 0, 0.15);
  box-shadow: var(--shadow-md);
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--warm-gray);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--charcoal-2);
  border: 2px solid rgba(255, 77, 0, 0.2);
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 2px;
}

.author-role {
  font-size: 13px;
  color: var(--warm-gray-2);
}

.author-verified {
  width: 20px;
  height: 20px;
  background: var(--forest-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-verified svg {
  width: 11px;
  height: 11px;
  fill: white;
}

/* ============================================================ GAP 7: MOBILE THUMB ZONE CTA */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 250;
  background: rgba(26, 22, 20, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 77, 0, 0.2);
  padding: 16px clamp(16px, 4vw, 24px);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: none;
}

.sticky-mobile-cta.visible {
  transform: translateY(0);
}

.sticky-cta-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.sticky-cta-text {
  flex: 1;
}

.sticky-cta-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 2px;
}

.sticky-cta-text small {
  font-size: 12px;
  color: var(--warm-gray-2);
}

.btn-sticky {
  background: linear-gradient(135deg, var(--ember) 0%, var(--ember-dark) 100%);
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-ember);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================ FOOTER */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px clamp(20px, 5vw, 60px) 40px;
  margin-top: 120px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--warm-white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--warm-gray-2);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--ember);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--warm-gray);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--warm-white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  font-size: 13px;
  color: var(--warm-gray-2);
}

.footer-made {
  font-size: 13px;
  color: var(--warm-gray-2);
  font-family: var(--font-mono);
}

.footer-made span {
  color: var(--ember);
}

/* ============================================================ RESPONSIVE */
@media (max-width: 1024px) {
  .nav-center {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-container {
    height: 64px;
    gap: 12px;
  }
  
  .logo-text {
    font-size: 17px;
  }
  
  .nav-trust-stack {
    display: none;
  }
  
  .hero {
    padding: 120px 20px 80px;
  }
  
  .hero-proof {
    flex-direction: column;
    gap: 20px;
  }
  
  .proof-divider {
    display: none;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
  
  .urgency-stats {
    gap: 32px;
  }
  
  .value-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .sticky-mobile-cta {
    display: block;
  }
  
  .live-ticker {
    bottom: 100px;
    right: 16px;
    left: 16px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .urgency-stat-number {
    font-size: 28px;
  }
}