/* ============================================
   LumusReach Landing Page — 2026
   Beige + Deep Purple · Brand Identity
   ============================================ */

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

:root {
  --brand: #6d28d9;
  --brand-light: #7c3aed;
  --brand-dark: #5b21b6;
  --brand-50: #f5f3ff;
  --brand-100: #ede9fe;
  --accent: #c44536;
  --accent-light: #d4564a;
  --beige: #f5f0e8;
  --beige-light: #faf7f2;
  --beige-dark: #ece5d5;
  --surface: var(--beige-light);
  --surface-2: var(--beige);
  --surface-3: #ffffff;
  --surface-hero: #1a1a2e;
  --border: #ddd5c8;
  --border-light: #ccc3b3;
  --text: #1a1a2e;
  --text-secondary: #2d2d3f;
  --text-muted: #5c5c6f;
  --text-dim: #8a8a9a;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #6d28d9 0%, #7c3aed 50%, #a78bfa 100%);
  --gradient-text: linear-gradient(135deg, #5b21b6 0%, #6d28d9 60%, #7c3aed 100%);
  --shadow-sm: 0 1px 2px rgba(26, 26, 46, 0.06);
  --shadow: 0 1px 3px rgba(26, 26, 46, 0.08), 0 1px 2px rgba(26, 26, 46, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(26, 26, 46, 0.07), 0 2px 4px -2px rgba(26, 26, 46, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(26, 26, 46, 0.1), 0 4px 6px -4px rgba(26, 26, 46, 0.05);
  --shadow-brand: 0 4px 14px rgba(109, 40, 217, 0.25);
  --radius: 12px;
  --radius-lg: 16px;
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--surface);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

/* Hero has dark bg, so nav text must be white there */
.nav:not(.scrolled) .nav-links a { color: rgba(255, 255, 255, 0.7); }
.nav:not(.scrolled) .nav-links a:hover { color: #fff; }
.nav:not(.scrolled) .logo-text { color: #fff; }
.nav:not(.scrolled) .btn-ghost { color: rgba(255, 255, 255, 0.7); }
.nav:not(.scrolled) .btn-ghost:hover { color: #fff; }
.nav:not(.scrolled) .mobile-menu-btn span { background: #fff; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 64px;
  width: auto;
  flex-shrink: 0;
  image-rendering: -webkit-optimize-contrast;
}

/* Logo on dark hero — rounded corners to contain the beige bg */
.nav:not(.scrolled) .logo-img {
  border-radius: 8px;
  background: var(--beige);
}
.footer-logo-img { filter: none; }

.logo-text {
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-50);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}

.btn-ghost:hover {
  color: var(--text);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 12px;
}

/* Hero-specific button overrides */
.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.hero .btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* ---------- HERO (dark) ---------- */
.hero {
  position: relative;
  padding: 180px 0 100px;
  text-align: center;
  overflow: hidden;
  background: var(--surface-hero);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(109, 40, 217, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 40, 217, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #c4b5fd;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #a78bfa;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #fff;
}

.gradient-text {
  background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 50%, #ddd6fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gradient text in light sections */
.section .gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: #94a3b8;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-stat-value {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
}

/* ---------- LOGOS BAR ---------- */
.logos-bar {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.logos-label {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 24px;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-item {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  opacity: 0.5;
  transition: opacity var(--transition);
}

.logo-item:hover {
  opacity: 0.8;
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 120px 0;
}

.section-dark {
  background: var(--surface-2);
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  margin-bottom: 16px;
  text-align: center;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text);
}

.section-desc {
  font-size: 18px;
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
  line-height: 1.6;
}

/* ---------- BRAND SHOWCASE ---------- */
.brand-showcase {
  padding: 80px 0 64px;
  background: var(--beige);
}

.brand-showcase-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-showcase-logo {
  width: 320px;
  max-width: 80%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

/* ---------- PROBLEM ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all 0.3s ease;
}

.problem-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.problem-icon {
  width: 48px;
  height: 48px;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.problem-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- PLATFORM ---------- */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.platform-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}

.platform-card:hover::before {
  opacity: 1;
}

.platform-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.platform-card-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--brand);
  margin-bottom: 16px;
  opacity: 0.5;
}

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

.platform-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- CHANNELS ---------- */
.channels-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 48px 0;
}

.channel-chip {
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.channel-chip:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-50);
}

.channels-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  text-align: center;
}

.channel-stat-value {
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.channel-stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

/* ---------- SOLUTIONS ---------- */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.solution-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.solution-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.solution-card-featured {
  border-color: var(--brand);
  background: linear-gradient(180deg, var(--brand-50) 0%, var(--white) 30%);
  box-shadow: var(--shadow-brand);
}

.solution-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--brand-50);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  width: fit-content;
}

.solution-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.solution-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.solution-features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

.solution-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.solution-features li::before {
  content: '\2713';
  color: var(--brand);
  font-weight: 700;
  font-size: 12px;
}

.solution-features li:last-child {
  border-bottom: none;
}

.solution-pricing {
  font-size: 15px;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.solution-pricing strong {
  color: var(--text);
  font-size: 20px;
}

.solution-card .btn {
  width: 100%;
}

/* ---------- RESULTS ---------- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.result-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.result-industry {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 12px;
}

.result-metric {
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}

.result-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.result-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}

.results-cta {
  text-align: center;
  margin-top: 48px;
}

.results-cta p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ---------- DATA ---------- */
.data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.data-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.3s ease;
}

.data-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.data-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.data-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- FOUNDER ---------- */
.company-blurb {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: center;
}

.company-blurb p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.company-blurb blockquote {
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.5;
  letter-spacing: -0.01em;
  border-left: 3px solid var(--brand);
  padding-left: 24px;
  text-align: left;
}

/* ---------- WHY NOW ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.3s ease;
}

.why-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.why-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px;
  font-weight: 700;
  color: var(--brand);
  opacity: 0.2;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- MARKET ---------- */
.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 32px;
}

.market-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  transition: all 0.3s;
}

.market-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.market-value {
  font-size: 52px;
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.market-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.market-card p {
  font-size: 15px;
  color: var(--text-muted);
}

.market-note {
  text-align: center;
  font-size: 15px;
  color: var(--text-dim);
}

/* ---------- CTA (dark section for contrast) ---------- */
.section-cta {
  background: var(--surface-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  position: relative;
}

.cta-desc {
  font-size: 18px;
  color: #94a3b8;
  margin-bottom: 40px;
  position: relative;
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-form input,
.cta-form select {
  flex: 1;
  min-width: 180px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color var(--transition);
}

.cta-form input::placeholder {
  color: #64748b;
}

.cta-form select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.cta-form select option {
  background: var(--surface-hero);
  color: #fff;
}

.cta-form input:focus,
.cta-form select:focus {
  border-color: var(--brand-light);
}

.cta-note {
  margin-top: 20px;
  font-size: 14px;
  color: #64748b;
  position: relative;
}

.cta-note a {
  color: #a78bfa;
  text-decoration: none;
}

.cta-note a:hover {
  text-decoration: underline;
}

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  background: var(--surface-2);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand .logo-text {
  color: var(--text);
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-dim);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--brand);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-dim);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .problem-grid,
  .platform-grid,
  .solutions-grid,
  .why-grid,
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .founder-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open,
  .nav-actions.open {
    display: flex;
  }

  /* Override dark nav styles for mobile menu */
  .nav:not(.scrolled) .nav-links.open a { color: var(--text-muted); }
  .nav:not(.scrolled) .nav-links.open a:hover { color: var(--text); }

  .nav-actions {
    top: auto;
    border-top: 1px solid var(--border);
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding: 140px 0 80px;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-stat-divider {
    display: none;
  }

  .section {
    padding: 80px 0;
  }

  .problem-grid,
  .platform-grid,
  .solutions-grid,
  .why-grid,
  .results-grid,
  .channels-stats,
  .data-grid,
  .market-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .founder-card {
    padding: 32px 24px;
  }

  .founder-vision blockquote {
    font-size: 18px;
  }

  .cta-form {
    flex-direction: column;
  }

  .cta-form input,
  .cta-form select {
    min-width: 100%;
  }
}
