/* ╔══════════════════════════════════════════════╗
   ║         CroCraft.ai — Main Stylesheet         ║
   ╚══════════════════════════════════════════════╝ */

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

:root {
  --bg: #030305;
  --surface: #0d0d12;
  --surface2: #13131a;
  --border: rgba(255,255,255,0.07);
  --white: #ffffff;
  --white-60: rgba(255,255,255,0.6);
  --white-30: rgba(255,255,255,0.3);
  --white-10: rgba(255,255,255,0.1);
  --white-05: rgba(255,255,255,0.05);
  --accent: #a259ff;
  --accent2: #ff6b6b;
  --accent3: #00e5a0;
  --grad: linear-gradient(135deg, #a259ff 0%, #ff6b6b 50%, #ffae3b 100%);
  --glow: 0 0 40px rgba(162, 89, 255, 0.3);
  --font: 'Space Grotesk', 'Inter', sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── Noise Overlay ─── */
.noise-overlay {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  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.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* ─── Canvas BG ─── */
#orbitCanvas {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.35;
}

/* ─── Container ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 2; }

/* ─── Gradient Text ─── */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--white); color: var(--bg);
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  font-weight: 700; font-size: 0.95rem;
  transition: var(--transition);
  border: none; cursor: pointer; font-family: var(--font);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { color: var(--white); transform: translateY(-2px); box-shadow: 0 10px 40px rgba(162,89,255,0.4); }
.btn-primary span, .btn-primary i { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--white-05);
  color: var(--white);
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  font-weight: 600; font-size: 0.95rem;
  transition: var(--transition);
  border: 1px solid var(--border);
  cursor: pointer; font-family: var(--font);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: var(--white-10); border-color: var(--white-30); transform: translateY(-2px); }
.btn-primary.full, .btn-ghost.full { width: 100%; justify-content: center; }

/* ─── Section Labels ─── */
.section-label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  color: var(--accent);
  background: rgba(162,89,255,0.12);
  border: 1px solid rgba(162,89,255,0.25);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 3rem;
}

/* ─── Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 2rem;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(3,3,5,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 2rem;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.logo-icon {
  width: 42px; height: 32px;
  display: flex; align-items: center;
}
.logo-icon.small { width: 36px; height: 26px; }
.logo-icon svg { width: 100%; height: 100%; }
.logo-text {
  font-size: 1.25rem; font-weight: 800;
  letter-spacing: -0.02em;
}
.dot-ai { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
  list-style: none;
}
.nav-links li a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--white-60);
  transition: color 0.2s;
}
.nav-links li a:hover { color: var(--white); }
.nav-links .nav-cta {
  background: var(--white); color: var(--bg) !important;
  padding: 0.5rem 1.2rem; border-radius: 100px;
  font-weight: 700;
  transition: var(--transition) !important;
}
.nav-links .nav-cta:hover { background: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,255,255,0.2); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none; flex-direction: column; gap: 1rem;
  padding: 1.5rem 2rem;
  background: rgba(13,13,18,0.98);
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  font-size: 1rem; font-weight: 500; color: var(--white-60);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--white); }
.mobile-menu .nav-cta {
  color: var(--white) !important; font-weight: 700;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative; z-index: 2;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  font-size: 0.82rem; font-weight: 500;
  color: var(--white-60);
  margin-bottom: 2rem;
  animation: fadeDown 0.8s ease both;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--accent3);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-title .line-1 { display: block; }
.hero-title .line-2 { display: block; }
.hero-title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-60);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-ctas {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeUp 0.8s 0.3s ease both;
}

/* ─── Phone Mockup ─── */
.phone-scene {
  position: relative;
  width: 300px; height: 540px;
  margin: 0 auto 4rem;
  animation: fadeUp 0.9s 0.4s ease both;
}
.phone-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(162,89,255,0.25) 0%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}
.phone-frame {
  width: 100%; height: 100%;
  background: var(--surface);
  border-radius: 40px;
  border: 2px solid var(--border);
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.05);
}
.phone-notch {
  width: 100px; height: 28px;
  background: var(--bg);
  border-radius: 0 0 18px 18px;
  margin: 0 auto 0;
}
.phone-screen { padding: 0 16px 16px; }
.ig-header {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}
.ig-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grad);
}
.ig-meta { flex: 1; }
.ig-meta strong { display: block; font-size: 0.78rem; }
.ig-meta span { font-size: 0.68rem; color: var(--white-60); }
.ig-header > i { color: var(--white-60); font-size: 1.1rem; }

/* ─── Instagram Post Mockup ─── */
.ig-post-img {
  width: 100%; aspect-ratio: 1;
  border-radius: 12px;
  background: linear-gradient(145deg, #1a0533 0%, #2d0b5e 40%, #5c1a8a 70%, #ff6b6b 130%);
  position: relative; overflow: hidden;
  margin-bottom: 10px;
}

/* Deep layered background */
.post-bg-layer {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(162,89,255,0.7) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(255,107,107,0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 10%, rgba(255,174,59,0.35) 0%, transparent 45%);
  animation: bgBreath 5s ease-in-out infinite;
}

/* Geometric shape — large soft circle */
.post-shape { position: absolute; border-radius: 50%; }
.ps-circle {
  width: 110px; height: 110px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, rgba(162,89,255,0.25) 60%, transparent 100%);
  top: -20px; right: -20px;
  animation: shapeDrift 7s ease-in-out infinite;
}
/* Blob accent */
.ps-blob {
  width: 70px; height: 70px;
  background: radial-gradient(circle, rgba(255,174,59,0.5) 0%, rgba(255,107,107,0.3) 60%, transparent 100%);
  bottom: 20px; left: -15px;
  animation: shapeDrift 9s ease-in-out infinite reverse;
}
/* Ring outline */
.ps-ring {
  width: 80px; height: 80px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.15);
  bottom: 30px; right: 15px;
  animation: ringRotate 12s linear infinite;
}

/* Text content overlay */
.post-content-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 12px;
  gap: 6px;
}
.post-brand-line {
  font-size: 0.55rem; font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}
.post-headline {
  font-size: 0.95rem; font-weight: 900;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  font-family: var(--font);
}
.post-sub {
  font-size: 0.5rem; font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.1);
  padding: 3px 8px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
}

/* Sparkles */
.post-sparkles { position: absolute; inset: 0; pointer-events: none; }
.sp {
  position: absolute;
  color: rgba(255,255,255,0.7);
  font-size: 0.65rem;
  animation: sparkle 2.5s ease-in-out infinite;
}
.sp1 { top: 15%; left: 12%; animation-delay: 0s; }
.sp2 { top: 20%; right: 18%; animation-delay: 0.9s; font-size: 0.45rem; }
.sp3 { bottom: 25%; left: 30%; animation-delay: 1.8s; font-size: 0.5rem; }

.post-tag {
  position: absolute; bottom: 8px; left: 8px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  font-size: 0.6rem; font-weight: 700;
  padding: 3px 8px; border-radius: 100px;
  color: var(--white);
}

.ig-actions {
  display: flex; gap: 14px; margin-bottom: 6px;
}
.ig-actions i { font-size: 1.1rem; }
.ig-likes { font-size: 0.78rem; font-weight: 700; margin-bottom: 4px; }
.ig-caption { font-size: 0.7rem; color: var(--white-60); line-height: 1.4; }

/* Orbiting Tags */
.orbit-tag {
  position: absolute;
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
  font-size: 0.72rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.4rem;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  animation: floatTag 6s ease-in-out infinite;
}
.orbit-tag i { color: var(--accent); font-size: 0.65rem; }
.tag-1 { top: 5%; left: -30%; animation-delay: 0s; }
.tag-2 { top: 30%; right: -35%; animation-delay: 1.5s; }
.tag-3 { bottom: 30%; left: -35%; animation-delay: 3s; }
.tag-4 { bottom: 5%; right: -30%; animation-delay: 4.5s; }

/* Stats */
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.6s ease both;
  margin-bottom: 3rem;
}
.stat { text-align: center; }
.stat strong { display: block; font-size: 2rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat span { font-size: 0.8rem; color: var(--white-60); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Scroll Cue */
.scroll-cue {
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: var(--white-30); font-size: 0.72rem; letter-spacing: 0.1em;
  animation: fadeUp 0.8s 0.8s ease both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--white-30), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ══════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════ */
.marquee-wrapper {
  position: relative; z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
  background: var(--surface);
}
.marquee-track {
  display: flex; align-items: center; gap: 2rem;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-track span { font-size: 0.85rem; font-weight: 600; color: var(--white-60); white-space: nowrap; }
.marquee-track .mx { color: var(--accent); font-size: 0.6rem; }

/* ══════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════ */
.features {
  position: relative; z-index: 2;
  padding: 7rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

/* ─── Feature Cards ─── */
.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top left, rgba(162,89,255,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.feat-card:hover { border-color: rgba(162,89,255,0.3); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(162,89,255,0.1); }
.feat-card:hover::before { opacity: 1; }

.feat-big { grid-column: span 2; }

.feat-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(162,89,255,0.12);
  border: 1px solid rgba(162,89,255,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--accent);
  margin-bottom: 1.25rem;
}

.feat-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.feat-card p { font-size: 0.88rem; color: var(--white-60); line-height: 1.65; }

/* Feature Visuals */
.feat-visual { margin-top: 1.5rem; }

/* Design Visual */
.design-visual .dv-canvas {
  height: 80px;
  background: var(--surface2);
  border-radius: 12px;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.dv-rect {
  position: absolute;
  border-radius: 6px;
  animation: slideDesign 3s ease-in-out infinite;
}
.r1 { width: 60px; height: 40px; background: linear-gradient(135deg, #7c3aed, #a259ff); left: 20px; top: 20px; animation-delay: 0s; }
.r2 { width: 80px; height: 30px; background: linear-gradient(135deg, #ff6b6b, #ffae3b); left: 100px; top: 25px; animation-delay: 0.5s; }
.r3 { width: 40px; height: 50px; background: linear-gradient(135deg, #00e5a0, #00b4d8); left: 200px; top: 15px; animation-delay: 1s; }
.dv-spark {
  position: absolute;
  color: var(--accent); font-size: 0.8rem;
  animation: sparkle 2s ease-in-out infinite;
}
.s1 { top: 8px; right: 30px; animation-delay: 0.3s; }
.s2 { bottom: 8px; right: 80px; animation-delay: 1.2s; }

/* Schedule Visual */
.sched-visual .cal-grid {
  display: flex; gap: 6px; margin-top: 0.5rem;
}
.cal-day {
  flex: 1; height: 32px;
  background: var(--surface2);
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.cal-day.active {
  background: linear-gradient(135deg, rgba(162,89,255,0.4), rgba(255,107,107,0.4));
  border-color: rgba(162,89,255,0.4);
  animation: calPulse 2s ease-in-out infinite;
}

/* Post Visual */
.post-visual .pv-arrow {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 1rem;
}
.pv-phone, .pv-cloud {
  width: 40px; height: 40px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.pv-phone i { color: var(--accent); }
.pv-cloud i { color: var(--accent3); }
.pv-line {
  flex: 1; height: 2px;
  background: linear-gradient(to right, var(--accent), var(--accent3));
  position: relative; border-radius: 2px;
}
.pv-dot {
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  position: absolute; top: 50%; transform: translateY(-50%);
  animation: slideDot 2s linear infinite;
}

/* Brand Visual */
.brand-visual .bv-rings {
  position: relative; width: 80px; height: 80px;
  margin-top: 1rem;
}
.bv-ring {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%;
  border: 1.5px solid;
  transform: translate(-50%, -50%);
  animation: ringExpand 2.5s ease-in-out infinite;
}
.bv-ring.r1 { width: 30px; height: 30px; border-color: rgba(162,89,255,0.6); }
.bv-ring.r2 { width: 55px; height: 55px; border-color: rgba(162,89,255,0.35); animation-delay: 0.5s; }
.bv-dot-center {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* Bulk Visual */
.bulk-visual .bk-stack { position: relative; height: 60px; margin-top: 1rem; }
.bk-card {
  position: absolute; left: 0; right: 0;
  height: 32px; border-radius: 8px;
  border: 1px solid var(--border);
}
.c1 { bottom: 0; background: var(--surface2); }
.c2 { bottom: 10px; background: rgba(162,89,255,0.1); transform: scaleX(0.92); }
.c3 { bottom: 20px; background: rgba(162,89,255,0.2); transform: scaleX(0.84); }

/* Pipeline Visual */
.pipeline-visual .pipe-steps {
  display: flex; align-items: center; gap: 0.75rem;
  margin-top: 1.5rem; flex-wrap: wrap;
}
.pipe-step {
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.7rem; font-weight: 600;
  color: var(--white-60);
  min-width: 60px;
}
.pipe-step i { font-size: 1rem; }
.pipe-step.active {
  background: rgba(162,89,255,0.15);
  border-color: rgba(162,89,255,0.4);
  color: var(--white);
  animation: activeGlow 2s ease-in-out infinite;
}
.pipe-step.active i { color: var(--accent); }
.pipe-arrow { color: var(--white-30); font-size: 1rem; font-weight: 300; }

/* ══════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════ */
.how-section {
  position: relative; z-index: 2;
  padding: 7rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.steps-list { display: flex; flex-direction: column; gap: 3rem; }

.step-item {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding-left: 0;
  border-left: 1px solid var(--border);
  padding-left: 2rem;
  transition: var(--transition);
}
.step-item:hover { border-left-color: var(--accent); }

.step-num {
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
  min-width: 24px;
}
.step-content h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-content p { font-size: 0.88rem; color: var(--white-60); line-height: 1.65; }

/* Orbit Visual */
.steps-visual {
  display: flex; align-items: center; justify-content: center;
}
.sv-orbit {
  position: relative;
  width: 300px; height: 300px;
  display: flex; align-items: center; justify-content: center;
}
.sv-center-logo {
  width: 70px; z-index: 10;
  position: relative;
}
.sv-center-logo svg { width: 100%; height: auto; }

.sv-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: flex-start; justify-content: center;
}
.sv-ring-1 { width: 120px; height: 120px; animation: spin 8s linear infinite; }
.sv-ring-2 { width: 190px; height: 190px; animation: spin 14s linear infinite reverse; }
.sv-ring-3 { width: 260px; height: 260px; animation: spin 20s linear infinite; }

.sv-satellite {
  width: 36px; height: 36px;
  background: var(--surface2);
  border: 1px solid rgba(162,89,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  position: absolute; top: -18px;
  animation: counterSpin 8s linear infinite;
  color: var(--accent);
}
.sat-2 { animation-duration: 14s; animation-direction: reverse; }
.sat-3 { animation-duration: 20s; animation-direction: normal; color: var(--accent3); }

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.social-proof {
  position: relative; z-index: 2;
  padding: 7rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}
.testi-card:hover { border-color: rgba(162,89,255,0.25); transform: translateY(-4px); }
.testi-stars { color: #fbbf24; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-card > p { font-size: 0.9rem; color: var(--white-60); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--c, var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem;
}
.testi-author strong { display: block; font-size: 0.9rem; }
.testi-author span { font-size: 0.75rem; color: var(--white-60); }

/* ══════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════ */
.pricing-section {
  position: relative; z-index: 2;
  padding: 7rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
}
.price-card:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-4px); }
.price-card.featured {
  background: var(--surface2);
  border-color: rgba(162,89,255,0.4);
  box-shadow: 0 0 0 1px rgba(162,89,255,0.2), 0 20px 60px rgba(162,89,255,0.15);
  transform: scale(1.03);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.price-badge {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 700;
  color: var(--white-60);
  margin-bottom: 1.5rem;
}
.pop-tag {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.72rem;
}

.price-amount {
  font-size: 3rem; font-weight: 900;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.price-currency { font-size: 1.5rem; vertical-align: top; margin-top: 0.4rem; display: inline-block; color: var(--white-60); }
.price-period { font-size: 1rem; color: var(--white-60); font-weight: 400; }

.price-desc { font-size: 0.85rem; color: var(--white-60); margin-bottom: 2rem; line-height: 1.5; }

.price-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.price-features li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; }
.price-features li i { font-size: 0.75rem; }
.price-features li:not(.dim) i { color: var(--accent3); }
.price-features li.dim { color: var(--white-30); }
.price-features li.dim i { color: var(--white-30); }

/* ══════════════════════════════════════════════
   WAITLIST
══════════════════════════════════════════════ */
.waitlist-section {
  position: relative; z-index: 2;
  padding: 8rem 0;
  overflow: hidden;
}
.wl-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(162,89,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.wl-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.wl-logo { width: 70px; margin: 0 auto 2rem; }
.wl-logo svg { width: 100%; }
.wl-title { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 1rem; }
.wl-sub { font-size: 1rem; color: var(--white-60); margin-bottom: 2.5rem; line-height: 1.6; }

.wl-form { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.wl-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.wl-form input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font);
  transition: var(--transition);
  outline: none;
}
.wl-form input::placeholder { color: var(--white-30); }
.wl-form input:focus { border-color: rgba(162,89,255,0.5); box-shadow: 0 0 0 3px rgba(162,89,255,0.1); }
.wl-btn { font-size: 1rem; padding: 1rem 2rem; }

.wl-success {
  display: none;
  flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 2rem;
  background: rgba(0,229,160,0.08);
  border: 1px solid rgba(0,229,160,0.25);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.wl-success i { font-size: 2rem; color: var(--accent3); }
.wl-success strong { font-size: 1.1rem; }
.wl-success span { font-size: 0.88rem; color: var(--white-60); }

.wl-note { font-size: 0.78rem; color: var(--white-30); display: flex; align-items: center; justify-content: center; gap: 0.4rem; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  position: relative; z-index: 2;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-top { display: flex; gap: 4rem; margin-bottom: 3rem; flex-wrap: wrap; }
.footer-brand { flex: 1; min-width: 200px; }
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: var(--white-60); line-height: 1.65; max-width: 280px; }

.footer-links { display: flex; gap: 4rem; flex-wrap: wrap; }
.fl-group { display: flex; flex-direction: column; gap: 0.75rem; }
.fl-group strong { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; color: var(--white); margin-bottom: 0.25rem; }
.fl-group a { font-size: 0.85rem; color: var(--white-60); transition: color 0.2s; }
.fl-group a:hover { color: var(--white); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom > span { font-size: 0.8rem; color: var(--white-30); }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a {
  width: 36px; height: 36px;
  background: var(--white-05);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--white-60);
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--white-10); color: var(--white); border-color: var(--white-30); }

/* ══════════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════════ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}
@keyframes floatTag {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
@keyframes postShift {
  0%, 100% { opacity: 0.35; transform: translateX(0); }
  50% { opacity: 0.5; transform: translateX(10px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes slideDesign {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}
@keyframes sparkle {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}
@keyframes calPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}
@keyframes slideDot {
  from { left: 0; }
  to { left: calc(100% - 8px); }
}
@keyframes ringExpand {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.7; }
}
@keyframes activeGlow {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 20px rgba(162,89,255,0.3); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes counterSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}
@keyframes bgBreath {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.04); }
}
@keyframes shapeDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(6px, -8px) scale(1.05); }
  66% { transform: translate(-4px, 5px) scale(0.97); }
}
@keyframes ringRotate {
  from { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  to { transform: rotate(360deg) scale(1); }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feat-big { grid-column: span 2; }
  .steps-layout { grid-template-columns: 1fr; gap: 3rem; }
  .steps-visual { order: -1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  
  .features-grid { grid-template-columns: 1fr; }
  .feat-big { grid-column: span 1; }
  
  .hero-title { font-size: clamp(2.2rem, 8vw, 4rem); }
  
  .tag-1, .tag-2, .tag-3, .tag-4 { display: none; }
  
  .wl-inputs { grid-template-columns: 1fr; }
  
  .hero-stats { gap: 1.5rem; }
  .stat-divider { display: none; }
  
  .footer-top { flex-direction: column; gap: 2.5rem; }
  .footer-links { gap: 2rem; }
  
  .pipe-steps { gap: 0.4rem; }
  .pipe-step { min-width: 50px; padding: 0.5rem 0.6rem; }
}

@media (max-width: 480px) {
  .hero { padding: 7rem 1.5rem 3rem; }
  .container { padding: 0 1.5rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn-primary, .hero-ctas .btn-ghost { justify-content: center; }
  .phone-scene { width: 260px; height: 470px; }
}
