/* ═══════════════════════════════════════════════════════════════
   FINLO — Financial Control Landing
   Bold, distinctive design with gradient mesh and smooth interactions
   ═══════════════════════════════════════════════════════════════ */

/* ═══════ Variables ═══════ */
:root {
  /* Colors */
  --black: #050508;
  --surface: #0c0c10;
  --surface-2: #121218;
  --surface-3: #1a1a22;
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.12);

  --white: #ffffff;
  --gray-100: rgba(255, 255, 255, 0.95);
  --gray-200: rgba(255, 255, 255, 0.65);
  --gray-300: rgba(255, 255, 255, 0.45);
  --gray-400: rgba(255, 255, 255, 0.25);

  --lime: #c8ff00;
  --lime-dim: #a3d100;
  --lime-glow: rgba(200, 255, 0, 0.25);
  --lime-subtle: rgba(200, 255, 0, 0.08);

  --cyan: #00d4ff;
  --cyan-glow: rgba(0, 212, 255, 0.2);

  --purple: #a855f7;
  --purple-glow: rgba(168, 85, 247, 0.2);

  --red: #ff6b6b;
  --green: #4ade80;

  /* Typography */
  --font: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 40px;
  --radius-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 0.4s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══════ Gradient Mesh Background ═══════ */
.gradient-mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(200, 255, 0, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 10% 60%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 90% 80%, rgba(200, 255, 0, 0.06) 0%, transparent 50%),
    var(--black);
}

.gradient-mesh::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 600px at 30% 20%, rgba(200, 255, 0, 0.05) 0%, transparent 60%),
    radial-gradient(circle 400px at 70% 60%, rgba(0, 212, 255, 0.04) 0%, transparent 60%);
  animation: meshPulse 15s ease-in-out infinite;
}

@keyframes meshPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

/* Grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.025;
  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.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ═══════ Container ═══════ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  position: relative;
  z-index: 2;
}

/* ═══════ Header ═══════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-md) 0;
  background: rgba(5, 5, 8, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--white);
}

.logo-mark {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 20px;
  color: var(--black);
}

.logo-text {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.header-cta {
  display: none;
  padding: var(--space-sm) var(--space-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--gray-100);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--duration) var(--ease);
}

.header-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-strong);
}

@media (min-width: 768px) {
  .header-cta {
    display: block;
  }
}

/* ═══════ Section Labels ═══════ */
.section-label {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-2xl);
  color: var(--white);
  text-align: center;
}

/* ═══════ Buttons ═══════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.btn--primary {
  background: var(--lime);
  color: var(--black);
  box-shadow: 0 4px 30px var(--lime-glow);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px var(--lime-glow);
}

.btn--primary:active {
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-strong);
  color: var(--gray-100);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn--lg {
  padding: 18px var(--space-2xl);
  font-size: 18px;
  border-radius: var(--radius-xl);
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* ═══════ Hero ═══════ */
.hero {
  padding: calc(80px + var(--space-4xl)) 0 var(--space-4xl);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

@media (min-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: var(--space-4xl);
  }
}

.hero-content {
  text-align: center;
}

@media (min-width: 1000px) {
  .hero-content {
    text-align: left;
  }
}

.hero-eyebrow {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: var(--lime-subtle);
  border: 1px solid rgba(200, 255, 0, 0.15);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--lime);
  margin-bottom: var(--space-xl);
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: clamp(44px, 9vw, 84px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: var(--space-xl);
}

.hero-title-accent {
  display: block;
  background: linear-gradient(135deg, var(--lime) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(17px, 2.5vw, 21px);
  color: var(--gray-200);
  max-width: 520px;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

@media (min-width: 1000px) {
  .hero-desc {
    margin-left: 0;
    margin-right: auto;
  }
}

@media (max-width: 999px) {
  .hero-desc {
    margin: 0 auto var(--space-xl);
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

@media (min-width: 1000px) {
  .hero-actions {
    justify-content: flex-start;
  }
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

/* Clean phone mockup - no notch */
.phone {
  position: relative;
  z-index: 2;
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.6s var(--ease);
}

.phone:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.phone-frame {
  width: 300px;
  height: 620px;
  background: linear-gradient(145deg, #1a1a22 0%, #0c0c10 100%);
  border-radius: 48px;
  padding: 8px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 40px 80px -20px rgba(0, 0, 0, 0.7),
    0 0 100px var(--lime-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--black);
  border-radius: 42px;
  overflow: hidden;
  position: relative;
}

.phone-screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 100%);
  z-index: 10;
  pointer-events: none;
}

.phone-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: var(--black);
}

/* Floating badges */
.hero-float {
  position: absolute;
  padding: var(--space-sm) var(--space-md);
  background: rgba(18, 18, 24, 0.9);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  animation: floatBadge 5s ease-in-out infinite;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hero-float--1 {
  top: 15%;
  left: -10%;
  animation-delay: 0s;
}

.hero-float--2 {
  bottom: 20%;
  right: -15%;
  animation-delay: -2.5s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

.float-amount {
  display: block;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
}

.hero-float--1 .float-amount {
  color: var(--red);
}

.hero-float--2 .float-amount {
  color: var(--green);
}

.float-label {
  font-size: 12px;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 700px) {
  .phone {
    transform: none;
  }

  .phone:hover {
    transform: none;
  }

  .phone-frame {
    width: 260px;
    height: 540px;
    border-radius: 42px;
  }

  .phone-screen {
    border-radius: 36px;
  }

  .hero-float {
    display: none;
  }
}

/* ═══════ Demos Carousel ═══════ */
.demos {
  padding: var(--space-5xl) 0;
  background: linear-gradient(180deg, transparent 0%, var(--surface) 20%, var(--surface) 80%, transparent 100%);
}

.demos .section-label {
  margin-bottom: var(--space-3xl);
}

/* Scrollable carousel */
.demos-track {
  --card-width: 380px;
  --card-gap: 24px;
  display: flex;
  gap: var(--card-gap);
  padding: var(--space-xl) max(24px, calc(50vw - var(--card-width) / 2));
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--lime) var(--surface-2);
  cursor: grab;
}

.demos-track:active {
  cursor: grabbing;
}

/* Custom scrollbar for carousel */
.demos-track::-webkit-scrollbar {
  height: 8px;
}

.demos-track::-webkit-scrollbar-track {
  background: var(--surface-2);
  border-radius: 4px;
}

.demos-track::-webkit-scrollbar-thumb {
  background: var(--lime);
  border-radius: 4px;
}

.demos-track::-webkit-scrollbar-thumb:hover {
  background: var(--lime-dim);
}

/* Demo cards */
.demo-card {
  flex: 0 0 var(--card-width);
  scroll-snap-align: center;
  scroll-snap-stop: always;
  background: linear-gradient(145deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-lg);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

@media (max-width: 500px) {
  .demos-track {
    --card-width: 300px;
    --card-gap: 16px;
  }
}

.demo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(200, 255, 0, 0.3) 50%, transparent 100%);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.demo-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

/* Video container */
.demo-phone {
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--black);
  aspect-ratio: 9 / 16;
  position: relative;
}

.demo-phone video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Play indicator overlay */
.demo-phone::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 30%);
  pointer-events: none;
}

.demo-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--lime);
  margin-bottom: var(--space-sm);
  padding: var(--space-xs) var(--space-sm);
  background: var(--lime-subtle);
  border-radius: var(--radius-sm);
}

.demo-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.demo-desc {
  font-size: 15px;
  color: var(--gray-200);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .demo-card {
    flex: 0 0 300px;
  }
}

/* ═══════ Features Bento ═══════ */
.features {
  padding: var(--space-5xl) 0;
}

.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .bento {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(200, 255, 0, 0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.bento-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}

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

.bento-card--wide {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .bento-card--wide {
    grid-column: span 2;
  }
}

.bento-card--accent {
  background: linear-gradient(145deg, var(--lime-subtle) 0%, var(--surface) 100%);
  border-color: rgba(200, 255, 0, 0.15);
}

.bento-icon {
  font-size: 36px;
  margin-bottom: var(--space-md);
  filter: grayscale(0.2);
}

.bento-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
  position: relative;
}

.bento-desc {
  font-size: 15px;
  color: var(--gray-200);
  position: relative;
}

.bento-stat {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  position: relative;
}

.bento-stat-num {
  font-family: var(--font-mono);
  font-size: 56px;
  font-weight: 600;
  color: var(--lime);
  line-height: 1;
}

.bento-stat-label {
  font-size: 18px;
  color: var(--gray-200);
}

/* ═══════ Pricing ═══════ */
.pricing {
  padding: var(--space-5xl) 0;
  background: var(--surface);
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-strong) 50%, transparent 100%);
}

.pricing-note {
  text-align: center;
  color: var(--lime);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: var(--space-2xl);
  margin-top: calc(var(--space-lg) * -1);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.price-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
  transition: all var(--duration) var(--ease);
}

.price-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}

.price-card--pop {
  border-color: var(--lime);
  box-shadow: 0 0 80px var(--lime-glow);
  transform: scale(1.02);
}

.price-card--pop:hover {
  transform: scale(1.02) translateY(-4px);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-xs) var(--space-lg);
  background: var(--lime);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--black);
}

.price-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border);
}

.price-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--gray-100);
}

.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-xs);
}

.price-num {
  font-family: var(--font-mono);
  font-size: 52px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.price-period {
  font-size: 16px;
  color: var(--gray-300);
}

.price-annual {
  margin-top: var(--space-sm);
  font-size: 14px;
  color: var(--gray-300);
}

.price-list {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.price-list li {
  padding: var(--space-sm) 0;
  font-size: 15px;
  color: var(--gray-200);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.price-list li::before {
  content: '✓';
  color: var(--lime);
  font-weight: 600;
}

.price-btn {
  display: block;
  text-align: center;
  padding: var(--space-md) var(--space-xl);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  color: var(--gray-100);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--duration) var(--ease);
}

.price-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.price-btn--primary {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--black);
}

.price-btn--primary:hover {
  background: var(--lime-dim);
  border-color: var(--lime-dim);
}

/* ═══════ Why Section ═══════ */
.why {
  padding: var(--space-5xl) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--duration) var(--ease);
}

.why-card:hover {
  transform: translateY(-4px);
}

.why-card--good {
  border-color: rgba(200, 255, 0, 0.2);
  background: linear-gradient(145deg, var(--lime-subtle) 0%, var(--surface) 100%);
}

.why-card--bad {
  border-color: rgba(255, 107, 107, 0.15);
  background: linear-gradient(145deg, rgba(255, 107, 107, 0.05) 0%, var(--surface) 100%);
}

.why-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.why-list {
  list-style: none;
}

.why-list li {
  padding: var(--space-sm) 0;
  font-size: 15px;
  color: var(--gray-200);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.why-check {
  color: var(--lime);
  font-weight: 700;
  font-size: 16px;
}

.why-x {
  color: var(--red);
  font-weight: 700;
  font-size: 16px;
}

/* ═══════ FAQ ═══════ */
.faq {
  padding: var(--space-5xl) 0;
  background: var(--surface);
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-strong) 50%, transparent 100%);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: var(--space-lg) 0;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  transition: color var(--duration) var(--ease);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--gray-300);
  transition: all var(--duration) var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--lime);
}

.faq-item summary:hover {
  color: var(--lime);
}

.faq-item p {
  padding-bottom: var(--space-lg);
  font-size: 15px;
  color: var(--gray-200);
  line-height: 1.7;
}

/* ═══════ Final CTA ═══════ */
.final-cta {
  padding: var(--space-5xl) 0;
  text-align: center;
  position: relative;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, var(--lime-glow) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}

.final-title {
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-md);
  position: relative;
}

.final-desc {
  font-size: 18px;
  color: var(--gray-200);
  margin-bottom: var(--space-xl);
  position: relative;
}

.final-actions {
  position: relative;
}

/* ═══════ Footer ═══════ */
.footer {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-copy {
  font-size: 14px;
  color: var(--gray-300);
}

/* ═══════ Mobile Sticky CTA ═══════ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: var(--space-md);
  background: rgba(5, 5, 8, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  display: block;
}

@media (min-width: 768px) {
  .sticky-cta {
    display: none;
  }
}

.sticky-btn {
  display: block;
  width: 100%;
  padding: var(--space-md);
  background: var(--lime);
  border-radius: var(--radius-lg);
  color: var(--black);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 24px var(--lime-glow);
}

/* ═══════ Marquee Banner ═══════ */
.marquee {
  overflow: hidden;
  padding: var(--space-md) 0;
  background: var(--lime);
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
  padding-right: var(--space-3xl);
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  white-space: nowrap;
}

.marquee-dot {
  width: 8px;
  height: 8px;
  background: var(--black);
  border-radius: 50%;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════ Scroll Animations ═══════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }

/* Hero animations */
.hero-eyebrow {
  animation: fadeSlideDown 0.8s var(--ease) 0.2s both;
}

.hero-title {
  animation: fadeSlideDown 0.8s var(--ease) 0.4s both;
}

.hero-desc {
  animation: fadeSlideDown 0.8s var(--ease) 0.6s both;
}

.hero-actions {
  animation: fadeSlideDown 0.8s var(--ease) 0.8s both;
}

.hero-visual {
  animation: fadeSlideUp 1s var(--ease) 0.6s both;
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section labels animation */
.section-label {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.section-label.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}
