/*
 * =====================================================
 *
 *   ██████╗ ██████╗ ██████╗ ██╗
 *  ██╔═══██╗██╔══██╗██╔══██╗██║
 *  ██║   ██║██████╔╝██████╔╝██║
 *  ██║   ██║██╔══██╗██╔══██╗██║
 *  ╚██████╔╝██║  ██║██████╔╝██║
 *   ╚═════╝ ╚═╝  ╚═╝╚═════╝ ╚═╝
 *
 *  Tu negocio nunca duerme. 🚀
 *  © 2025 Orbi — orbi.mx
 *
 *  Desarrollado con ❤️ en México
 * =====================================================
 */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #050914;
  --bg2:      #080e20;
  --bg3:      #0b1428;
  --card:     rgba(255,255,255,0.04);
  --card-h:   rgba(255,255,255,0.07);
  --border:   rgba(255,255,255,0.07);
  --border-h: rgba(255,255,255,0.15);
  --accent:   #1E90FF;
  --accent2:  #00D4FF;
  --purple:   #7B4FFF;
  --green:    #00FFA3;
  --text:     #E8EDF8;
  --text2:    #7A8BAD;
  --text3:    #3D4F6E;
  --glow:     rgba(30,144,255,0.12);
  --glow2:    rgba(123,79,255,0.08);
  --r-sm:     8px;
  --r-md:     14px;
  --r-lg:     20px;
  --r-xl:     28px;
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-ios:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
.font-display {
  font-family: 'Syne', -apple-system, sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

h1, h2 { font-family: 'Syne', -apple-system, sans-serif; font-weight: 800; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--text3); border-radius: 2px; }

/* ── NOISE TEXTURE ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 68px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease-ios), border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(5,9,20,0.9);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom-color: var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: transform 0.4s var(--ease-spring);
}

.nav-logo:hover img { transform: rotate(15deg) scale(1.1); }

.nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 40%, var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, background 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: scale(1.04) translateY(-1px);
  box-shadow: 0 8px 24px rgba(30,144,255,0.35);
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-ios), opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(5,9,20,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 5%;
  z-index: 999;
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.35s var(--ease-out), opacity 0.35s;
}

.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  display: block;
  color: var(--text2);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--text); }

/* ── ORBS ── */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  animation: orb-float 8s ease-in-out infinite;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(30,144,255,0.12), transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(123,79,255,0.1), transparent 70%);
  top: 100px; right: -100px;
  animation-delay: -3s;
}

.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,212,255,0.08), transparent 70%);
  bottom: 100px; left: -50px;
  animation-delay: -6s;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 20%, transparent 80%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 760px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,144,255,0.1);
  border: 1px solid rgba(30,144,255,0.22);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent2);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent2);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--accent2); }
  50% { opacity: 0.4; box-shadow: none; }
}

.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  margin-bottom: 1.2rem;
}

.hero h1 .gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text2);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s, background 0.2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn:active { transform: scale(0.97) !important; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: 0 4px 20px rgba(30,144,255,0.25);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 36px rgba(30,144,255,0.4);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.09);
  border-color: var(--border-h);
}

.btn-arrow::after {
  content: '→';
  transition: transform 0.3s var(--ease-spring);
}

.btn-arrow:hover::after { transform: translateX(4px); }

/* ── HERO STATS ── */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.stat {
  background: var(--bg2);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: background 0.25s;
}

.stat:hover { background: var(--bg3); }

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text2);
  font-weight: 500;
}

/* ── CHANNELS STRIP ── */
.channels {
  position: relative;
  z-index: 1;
  background: rgba(8,14,32,0.8);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.channels-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 1.2rem 5%;
  width: max-content;
  animation: marquee 20s linear infinite;
}

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

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

.ch-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text2);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.ch-icon {
  width: 24px; height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.ch-dot {
  width: 3px; height: 3px;
  background: var(--text3);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── SECTIONS ── */
.section {
  position: relative;
  padding: 100px 5%;
  z-index: 1;
}

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text2);
  font-size: 1rem;
  font-weight: 300;
  max-width: 500px;
  line-height: 1.7;
}

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-top: 3.5rem;
}

.feature-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, var(--glow), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover { background: var(--bg2); }
.feature-card:hover::before { opacity: 1; }

.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30,144,255,0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover::after { opacity: 1; }

.f-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.4rem;
  transition: transform 0.4s var(--ease-spring);
}

.feature-card:hover .f-icon { transform: scale(1.12) rotate(-5deg); }

.fi-1 { background: rgba(30,144,255,0.12);  border: 1px solid rgba(30,144,255,0.2); }
.fi-2 { background: rgba(123,79,255,0.12); border: 1px solid rgba(123,79,255,0.2); }
.fi-3 { background: rgba(0,212,255,0.12);  border: 1px solid rgba(0,212,255,0.2); }
.fi-4 { background: rgba(0,255,163,0.12);  border: 1px solid rgba(0,255,163,0.2); }
.fi-5 { background: rgba(255,193,7,0.12);  border: 1px solid rgba(255,193,7,0.2); }
.fi-6 { background: rgba(255,79,139,0.12); border: 1px solid rgba(255,79,139,0.2); }

.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.feature-card p {
  color: var(--text2);
  font-size: 0.88rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ── HOW IT WORKS ── */
.how { background: var(--bg2); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 31px; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), var(--border), transparent);
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--accent);
  position: relative;
  transition: transform 0.4s var(--ease-spring), border-color 0.3s, box-shadow 0.3s;
}

.step:hover .step-circle {
  transform: scale(1.1);
  border-color: rgba(30,144,255,0.4);
  box-shadow: 0 0 24px rgba(30,144,255,0.2);
}

.step-circle::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,144,255,0.12), transparent);
  z-index: -1;
}

.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--text2);
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.65;
}

/* ── NICHES ── */
.niches-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 3rem;
}

.niche {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.4rem 0.8rem;
  text-align: center;
  cursor: default;
  transition: transform 0.35s var(--ease-spring), border-color 0.3s, background 0.3s;
}

.niche:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(30,144,255,0.25);
  background: var(--bg2);
}

.niche-emoji {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
  display: block;
  transition: transform 0.4s var(--ease-spring);
}

.niche:hover .niche-emoji { transform: scale(1.2) rotate(-5deg); }

.niche span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text2);
  display: block;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 3.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.4rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), border-color 0.3s, box-shadow 0.4s;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-h);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.pricing-featured {
  border-color: rgba(30,144,255,0.35);
  background: rgba(30,144,255,0.04);
}

.pricing-featured:hover {
  border-color: rgba(30,144,255,0.55);
  box-shadow: 0 24px 60px rgba(30,144,255,0.15);
}

.pricing-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(30,144,255,0.07), transparent 60%);
  pointer-events: none;
}

.pricing-badge-top {
  position: absolute;
  top: -1px; right: 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  padding: 5px 14px 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 0 0 10px 10px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}

.plan-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text2);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 0.4rem;
}

.price-sym {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text2);
  margin-top: 8px;
}

.price-val {
  font-family: 'Syne', sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-per {
  font-size: 0.8rem;
  color: var(--text2);
  margin-top: auto;
  margin-bottom: 4px;
  align-self: flex-end;
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--text2);
  font-weight: 300;
  line-height: 1.65;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.4;
}

.pf-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(30,144,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.pf-check::after {
  content: '✓';
  font-size: 0.6rem;
  color: var(--accent2);
  font-weight: 700;
}

.plan-features li.off { opacity: 0.4; }

.plan-features li.off .pf-check {
  background: rgba(255,255,255,0.05);
}

.plan-features li.off .pf-check::after {
  content: '–';
  color: var(--text2);
}

.plan-btn {
  display: block;
  text-align: center;
  padding: 0.9rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s, background 0.2s;
}

.plan-btn:active { transform: scale(0.97); }

.plan-btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
}

.plan-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(30,144,255,0.35);
}

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

.plan-btn-outline:hover {
  transform: translateY(-2px);
  background: var(--card-h);
  border-color: var(--border-h);
}

.setup-info {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text2);
}

.setup-info strong { color: var(--text); }

.setup-info a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  margin-left: 6px;
  transition: color 0.2s;
}

.setup-info a:hover { color: var(--accent2); }

/* ── CTA SECTION ── */
.cta-section {
  padding: 120px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg2);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(30,144,255,0.06), transparent);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.cta-section .section-title { max-width: 560px; margin: 0 auto 1rem; }
.cta-section p { color: var(--text2); font-size: 1rem; margin-bottom: 2.5rem; font-weight: 300; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 5%;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-brand img { width: 28px; height: 28px; object-fit: contain; }

.footer-brand span {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.footer-copy { color: var(--text2); font-size: 0.82rem; }

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}

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

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-up {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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

/* Stagger delays */
.d1 { transition-delay: 0.05s; }
.d2 { transition-delay: 0.12s; }
.d3 { transition-delay: 0.19s; }
.d4 { transition-delay: 0.26s; }
.d5 { transition-delay: 0.33s; }
.d6 { transition-delay: 0.40s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .niches-grid { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .steps::before { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

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

  .section { padding: 70px 5%; }
  .hero { padding: 100px 5% 60px; }

  .features-grid { grid-template-columns: 1fr; border-radius: var(--r-lg); }
  .pricing-grid { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    border-radius: var(--r-md);
  }

  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }

  .cta-btns { flex-direction: column; align-items: center; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  .niches-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ── GLASS CARD EFFECT ── */
.glass {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ── GRADIENT LINE ── */
.gradient-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), transparent);
  margin: 0;
  opacity: 0.4;
}

/* ── CURSOR GLOW (desktop only) ── */
@media (pointer: fine) {
  .cursor-glow {
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30,144,255,0.04), transparent 65%);
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: opacity 0.3s;
  }
}
