/* =====================================================
   Channel Upscal — Theme CSS
   Dark premium design system
   ===================================================== */

:root {
  --bg: #0A0A0C;
  --bg-alt: #0F0F12;
  --surface: #16161A;
  --surface-2: #1E1E24;
  --border: #2A2A32;
  --border-bright: #3A3A48;
  --fg: #F4F4F6;
  --fg-muted: #8A8A9A;
  --fg-dim: #5A5A6A;
  --accent: #F59E0B;
  --accent-bright: #FBBF24;
  --accent-dim: rgba(245,158,11,0.10);
  --accent-glow: rgba(245,158,11,0.25);
  --success: #10B981;
  --max-w: 1140px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::selection { background: var(--accent); color: var(--bg); }

img { max-width: 100%; display: block; }

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fade-in-scale {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}
@keyframes orb-pulse {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50%       { opacity: 0.28; transform: scale(1.1); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
@keyframes border-glow {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.8; }
}
@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.anim-fade-up { opacity: 0; animation: fade-up 0.7s cubic-bezier(0.16,1,0.3,1) forwards; }
.anim-fade-in { opacity: 0; animation: fade-in 0.6s ease forwards; }
.anim-fade-in-scale { opacity: 0; animation: fade-in-scale 0.6s cubic-bezier(0.16,1,0.3,1) forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.5s; }
.delay-5 { animation-delay: 0.65s; }
.delay-6 { animation-delay: 0.8s; }

/* Scroll-reveal — elements start hidden, animate in via JS */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* =====================================================
   LAYOUT UTILITIES
   ===================================================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 56px);
}
.section-pad {
  padding: clamp(80px, 12vh, 140px) clamp(24px, 5vw, 56px);
}
.section-pad-sm {
  padding: clamp(60px, 8vh, 100px) clamp(24px, 5vw, 56px);
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 540px;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,12,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-scrolled {
  background: rgba(10,10,12,0.92) !important;
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.3);
}
.nav .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-size: 14px;
  font-weight: 800;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-link {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
  padding: 4px 0;
}
.nav-link:hover { color: var(--fg); }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16,1,0.3,1);
  white-space: nowrap;
  padding: 10px 22px;
}
.btn-primary {
  background: var(--accent);
  color: #0A0A0C;
}
.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--accent-glow);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--surface);
  color: var(--fg);
  border-color: var(--border-bright);
}
.btn-lg {
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
}
.btn-sm {
  font-size: 13px;
  padding: 8px 16px;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(120px, 16vh, 180px) clamp(24px, 5vw, 56px) clamp(80px, 10vh, 120px);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.hero-orb-1 {
  width: 600px; height: 600px;
  top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(245,158,11,0.20) 0%, transparent 65%);
  animation: orb-pulse 6s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  bottom: 80px; left: -60px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 65%);
  animation: orb-float 10s ease-in-out infinite;
}
.hero-orb-3 {
  width: 200px; height: 200px;
  top: 40%; left: 40%;
  background: radial-gradient(circle, rgba(245,158,11,0.05) 0%, transparent 65%);
  animation: orb-pulse 8s ease-in-out infinite 2s;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(245,158,11,0.25);
  background: var(--accent-dim);
}
.eyebrow-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(44px, 7.5vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lede {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--fg-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-note svg { color: var(--accent); flex-shrink: 0; }

/* Hero image panel */
.hero-visual {
  position: absolute;
  right: clamp(24px, 6vw, 100px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 35%, 480px);
  z-index: 1;
  opacity: 0.85;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 60px rgba(245,158,11,0.08);
  animation: fade-up 0.8s 0.4s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-visual img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.hero-visual-glow {
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent) 0%, transparent 50%);
  opacity: 0.15;
  pointer-events: none;
}

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar {
  padding: 0 clamp(24px, 5vw, 56px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: clamp(32px, 5vh, 48px) clamp(20px, 3vw, 36px);
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}

/* =====================================================
   FEATURES
   ===================================================== */
.features {
  background: var(--bg);
}
.features-header {
  max-width: 640px;
  margin: 0 auto clamp(60px, 8vh, 80px);
  text-align: center;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-card {
  background: var(--bg);
  padding: clamp(32px, 4vw, 48px) clamp(28px, 3vw, 40px);
  transition: background 0.25s;
  position: relative;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover { background: var(--bg-alt); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
  position: relative;
}
.feature-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.feature-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.feature-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* =====================================================
   HOW IT WORKS / PIPELINE
   ===================================================== */
.how {
  background: var(--bg-alt);
}
.how-header {
  max-width: 640px;
  margin: 0 auto clamp(60px, 8vh, 80px);
  text-align: center;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.step-card {
  background: var(--bg-alt);
  padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 36px);
  position: relative;
  transition: background 0.25s;
}
.step-card:hover { background: var(--surface); }
.step-num {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 4px 12px;
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 100px;
  background: var(--accent-dim);
}
.step-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  margin-bottom: 20px;
  transition: color 0.25s;
}
.step-card:hover .step-icon { color: var(--accent); }
.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.step-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials {
  background: var(--bg);
}
.testimonials-header {
  max-width: 640px;
  margin: 0 auto clamp(60px, 8vh, 80px);
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.25s;
}
.testimonial-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--accent);
}
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--accent); }
.testimonial-text {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.75;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 600;
}
.testimonial-role {
  font-size: 12px;
  color: var(--fg-dim);
}
.testimonial-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: var(--success);
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  padding: 3px 8px;
  border-radius: 100px;
  margin-top: 4px;
}

/* =====================================================
   OUTCOMES
   ===================================================== */
.outcomes {
  background: var(--bg-alt);
}
.outcomes-header {
  max-width: 640px;
  margin: 0 auto clamp(60px, 8vh, 80px);
  text-align: center;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.outcome-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  transition: all 0.25s;
}
.outcome-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
}
.outcome-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.outcome-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.outcome-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* =====================================================
   MANIFESTO / SOCIAL PROOF
   ===================================================== */
.manifesto {
  background: var(--bg);
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}
.manifesto-line {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px, 3.5vw, 34px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--fg-muted);
}
.manifesto-line-accent {
  color: var(--accent);
  position: relative;
}
.manifesto-body {
  font-size: 16px;
  color: var(--fg-dim);
  line-height: 1.85;
  max-width: 600px;
  margin: 0 auto;
}

/* =====================================================
   PRICING
   ===================================================== */
.pricing {
  background: var(--bg-alt);
}
.pricing-header {
  max-width: 640px;
  margin: 0 auto clamp(60px, 8vh, 80px);
  text-align: center;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  position: relative;
  transition: all 0.25s;
}
.pricing-card.featured {
  border-color: var(--accent);
  background: var(--bg);
  box-shadow: 0 0 40px var(--accent-glow);
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.pricing-card.featured:hover {
  box-shadow: 0 20px 60px rgba(245,158,11,0.2);
}
.pricing-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.pricing-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.pricing-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 28px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.pricing-amount {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fg);
}
.pricing-period {
  font-size: 14px;
  color: var(--fg-muted);
}
.pricing-sub {
  font-size: 13px;
  color: var(--fg-dim);
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
}
.pricing-feature svg {
  color: var(--accent);
  flex-shrink: 0;
  width: 16px; height: 16px;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(245,158,11,0.25);
  background: var(--accent-dim);
}
.cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.cta-note {
  font-size: 13px;
  color: var(--fg-dim);
}
.cta-bg-orb {
  position: absolute;
  width: 500px; height: 500px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.footer-main {
  padding: clamp(48px, 6vh, 72px) clamp(24px, 5vw, 56px);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}
.footer-brand-name {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand-tag {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 320px;
}
.footer-links {
  display: flex;
  gap: 48px;
}
.footer-link-group { display: flex; flex-direction: column; gap: 10px; }
.footer-link-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 4px;
}
.footer-link {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-link:hover { color: var(--fg); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px clamp(24px, 5vw, 56px);
}
.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-copy {
  font-size: 13px;
  color: var(--fg-dim);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 13px;
  color: var(--fg-dim);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-legal a:hover { color: var(--fg-muted); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
}
@media (max-width: 768px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; }
}

/* =====================================================
   PREMIUM POLISH
   ===================================================== */

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* Card border glow on hover */
.feature-card::after,
.pricing-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent) 0%, transparent 60%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s;
}
.feature-card:hover::after,
.pricing-card:hover::after { opacity: 0.08; }

/* Premium card shimmer on featured */
.pricing-card.featured {
  position: relative;
  overflow: hidden;
}
.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,0.04), transparent);
  animation: shimmer 4s ease-in-out infinite;
}

/* Nav link underline on hover */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s cubic-bezier(0.16,1,0.3,1);
}
.nav-link:hover::after { width: 100%; }

/* Feature icon glow on hover */
.feature-card:hover .feature-icon {
  box-shadow: 0 0 20px var(--accent-glow);
}

/* Button press effect */
.btn:active {
  transform: scale(0.97) !important;
  transition-duration: 0.1s;
}

/* Stat number counter animation */
.stat-value {
  display: inline-block;
  position: relative;
}
.stat-value::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Section reveal stagger for children */
.features-grid .feature-card:nth-child(1) { transition-delay: 0s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.05s; }
.features-grid .feature-card:nth-child(5) { transition-delay: 0.15s; }
.features-grid .feature-card:nth-child(6) { transition-delay: 0.25s; }

.testimonials-grid .testimonial-card:nth-child(1) { transition-delay: 0s; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 0.12s; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 0.24s; }

.pricing-grid .pricing-card:nth-child(1) { transition-delay: 0s; }
.pricing-grid .pricing-card:nth-child(2) { transition-delay: 0.12s; }
.pricing-grid .pricing-card:nth-child(3) { transition-delay: 0.24s; }

.steps-grid .step-card:nth-child(1) { transition-delay: 0s; }
.steps-grid .step-card:nth-child(2) { transition-delay: 0.12s; }
.steps-grid .step-card:nth-child(3) { transition-delay: 0.24s; }
.steps-grid .step-card:nth-child(4) { transition-delay: 0.36s; }

/* Premium focus states */
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
.nav-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Marquee ticker band */
.ticker-band {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 14px 0;
}
.ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-dim);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ticker-track span::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

/* Dark ambient section divider */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border) 30%, var(--border) 70%, transparent 100%);
  max-width: var(--max-w);
  margin: 0 auto;
}