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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #080810;
  color: #e2e8f0;
  overflow-x: hidden;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* ─── CSS CUSTOM PROPERTIES ─────────────────────── */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

:root {
  --cyan: #00e5ff;
  --cyan-glow: rgba(0, 229, 255, 0.35);
  --green: #00ff88;
  --purple: #a855f7;
  --pink: #ec4899;
  --yellow: #fbbf24;
  --bg: #080810;
  --bg2: #0d0d1a;
  --bg3: #111127;
  --card-bg: rgba(255, 255, 255, 0.025);
  --border: rgba(255, 255, 255, 0.08);
  --text-muted: #64748b;
  --text-main: #f1f5f9;
}

/* ─── SCROLLBAR ─────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: #232342;
  border-radius: 3px;
}

/* ─── STAR CANVAS BACKGROUND ────────────────────── */
#stars-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ─── CONTAINER ─────────────────────────────────── */
.section-wrapper {
  position: relative;
  z-index: 1;
}

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

/* ─── GRADIENT TEXT UTILITIES ───────────────────── */
.gradient-rainbow {
  background: linear-gradient(90deg, #ff6b6b, #ff9f43, #feca57, #48dbfb, #a29bfe, #fd79a8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}

.gradient-green {
  background: linear-gradient(90deg, #00ff88, #00e5ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-cyan {
  background: linear-gradient(90deg, #00e5ff, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ─── GLOW BLOBS ────────────────────────────────── */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  pointer-events: none;
  animation: float-blob 8s ease-in-out infinite;
}

@keyframes float-blob {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-25px) scale(1.04); }
}

/* ─── BADGES ────────────────────────────────────── */
.top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.28);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--cyan);
  backdrop-filter: blur(10px);
  margin-bottom: 24px;
}

.aspect-tag {
  background: linear-gradient(90deg, rgba(168, 85, 247, 0.2), rgba(0, 229, 255, 0.2));
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: #c084fc;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  margin-left: 6px;
}

/* ─── BUTTONS ───────────────────────────────────── */
.btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

.btn-outline-wrap {
  position: relative;
  border-radius: 50px;
  padding: 2px;
  background: conic-gradient(from var(--angle), transparent 30%, var(--cyan) 50%, var(--green) 60%, transparent 70%);
  animation: spin-border 3s linear infinite;
  transition: transform 0.3s ease;
}

.btn-outline-wrap:hover {
  transform: scale(1.04);
}

@keyframes spin-border {
  to { --angle: 360deg; }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #00e5ff, #00ff88);
  color: #06080f;
  font-weight: 800;
  font-size: 15.5px;
  padding: 15px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
}

.btn-secondary-wrap {
  position: relative;
  border-radius: 50px;
  padding: 2px;
  background: conic-gradient(from var(--angle), transparent 30%, #a855f7 50%, #ec4899 60%, transparent 70%);
  animation: spin-border 3s linear infinite;
  animation-delay: -1.5s;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #e2e8f0;
  font-weight: 700;
  font-size: 15.5px;
  padding: 15px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

/* ─── TRUST BADGES ──────────────────────────────── */
.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #94a3b8;
}

.trust-badge .check {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #00ff88, #00e5ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #000;
  font-weight: 800;
}

/* ─── FLOATING NAV (NARROW, NEON GLOW, CLEAR TEXT) ─── */
nav.floating-nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: rgba(14, 12, 32, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(0, 229, 255, 0.4);
  border-radius: 50px;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.2), inset 0 0 15px rgba(0, 229, 255, 0.05);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

nav.floating-nav:hover {
  border-color: rgba(0, 229, 255, 0.7);
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.35), inset 0 0 20px rgba(0, 229, 255, 0.1);
}

.nav-logo {
  font-size: 15.5px;
  font-weight: 800;
  background: linear-gradient(90deg, #00e5ff, #00ff88);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
  letter-spacing: -0.3px;
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 700;
  color: #f1f5f9;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-links a:hover {
  color: #00e5ff;
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.85);
}

.nav-cta-sm {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 18px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.22), rgba(0, 255, 136, 0.22));
  border: 1.5px solid #00e5ff;
  color: #00e5ff;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.3);
  transition: all 0.25s ease;
}

.nav-cta-sm:hover {
  background: linear-gradient(135deg, #00e5ff, #00ff88);
  color: #06080f;
  text-shadow: none;
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.7);
  transform: scale(1.03);
}

/* ─────────────────────────────────────────────────
   HERO SECTION & VISUAL GRAPHIC PIPELINE
───────────────────────────────────────────────── */
#hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 70px;
  position: relative;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-headline {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-headline .line2 {
  display: block;
  color: #ffffff;
}

/* GRAPHIC VISUAL PIPELINE BAR */
.visual-pipeline-bar {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 20px;
  padding: 14px 28px;
  margin: 16px 0 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 229, 255, 0.08);
}

.v-node {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.v-node-icon {
  font-size: 18px;
}

.v-node-label {
  font-size: 13.5px;
  font-weight: 700;
  color: #f1f5f9;
}

.v-plus, .v-arrow {
  color: var(--cyan);
  font-weight: 900;
  font-size: 16px;
}

.v-node-out {
  background: rgba(0, 255, 136, 0.12);
  border-color: rgba(0, 255, 136, 0.4);
}

.v-node-out .v-node-label {
  color: var(--green);
}

/* HERO STAT CHIPS */
.hero-stat-chips {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.stat-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #c084fc;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
}

/* ─────────────────────────────────────────────────
   MARQUEE SECTION
───────────────────────────────────────────────── */
.marquee-section {
  padding: 30px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.01);
}

.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee 24s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
  white-space: nowrap;
}

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

/* ─────────────────────────────────────────────────
   16:9 DEMO VIDEO PLACEHOLDERS
───────────────────────────────────────────────── */
#widescreen-demo {
  padding: 90px 0 110px;
  background: linear-gradient(180deg, transparent, var(--bg2) 20%, var(--bg2) 80%, transparent);
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 30px;
}

.demo-widescreen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
}

.widescreen-wrap {
  position: relative;
  width: 100%;
  transition: transform 0.35s ease;
  cursor: pointer;
}

.widescreen-wrap:hover {
  transform: translateY(-6px);
}

.widescreen-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0b0b1f;
  border-radius: 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
}

.widescreen-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 28px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  z-index: 15;
}

.ws-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.ws-dot-red { background: #ff5f57; }
.ws-dot-yellow { background: #febc2e; }
.ws-dot-green { background: #28c840; }

.ws-title {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 4px;
  font-family: monospace;
}

.widescreen-screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 4;
}

.widescreen-placeholder {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(150deg, #0c0c24 0%, #101032 60%, #0e0e2c 100%);
}

.widescreen-placeholder.hidden {
  opacity: 0;
  pointer-events: none;
}

.ph-icon {
  font-size: 30px;
  opacity: 0.35;
}

.ph-hint {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.25);
  font-family: monospace;
  text-align: center;
}

.widescreen-badge {
  position: absolute;
  top: 36px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--badge-color, #00e5ff);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--badge-color, #00e5ff);
  z-index: 16;
  display: flex;
  align-items: center;
  gap: 5px;
}

.widescreen-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--badge-color, #00e5ff);
}

.widescreen-play-overlay {
  position: absolute;
  inset: 0;
  z-index: 18;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.widescreen-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Hover over playing video reveals pause button control */
.widescreen-shell.is-playing:hover .widescreen-play-overlay {
  opacity: 1;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.4);
}

.widescreen-play-btn {
  width: 52px;
  height: 52px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(0, 229, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.widescreen-play-btn:hover {
  transform: scale(1.15);
  background: linear-gradient(135deg, #00e5ff, #00ff88);
  color: #000;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.8);
}

.widescreen-glow {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 30px;
  border-radius: 50%;
  filter: blur(22px);
  background: var(--glow-color, rgba(0, 229, 255, 0.3));
  opacity: 0.45;
  pointer-events: none;
}

/* Demo Placeholder Evolution Tags Inside Shell */
.ph-evo-tags {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 6px;
}

.ph-evo-tag {
  font-size: 10px;
  font-weight: 800;
  color: #00ff88;
  background: rgba(0, 255, 136, 0.12);
  border: 1px solid rgba(0, 255, 136, 0.3);
  padding: 2px 8px;
  border-radius: 4px;
}

/* Demo Card Footer Evolution Pills */
.demo-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  justify-content: center;
}

.evo-pill {
  font-size: 11px;
  font-weight: 800;
  color: #00e5ff;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.28);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.2px;
  text-shadow: 0 0 6px rgba(0, 229, 255, 0.4);
}

/* ─────────────────────────────────────────────────
   GRAPHICAL WORKFLOW PIPELINE
───────────────────────────────────────────────── */
#how-it-works {
  padding: 90px 0;
  text-align: center;
}

.visual-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.v-step-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.v-step-card:hover {
  transform: translateY(-10px) scale(1.03);
  background: rgba(16, 14, 40, 0.9);
  border-color: rgba(0, 229, 255, 0.5);
  box-shadow: 0 12px 35px rgba(0, 229, 255, 0.25), inset 0 0 15px rgba(0, 229, 255, 0.08);
}

.v-step-card:hover .e-spin {
  animation: spin-gear 1.5s linear infinite;
}

@keyframes spin-gear {
  to { transform: rotate(360deg); }
}

.v-step-card:hover .file-mock-box,
.v-step-card:hover .engine-mock-box,
.v-step-card:hover .output-mock-box {
  transform: scale(1.08);
  border-color: #00e5ff;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.v-step-num {
  font-size: 13px;
  font-weight: 900;
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.1);
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.v-step-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  min-height: 60px;
}

.file-mock-box {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  padding: 8px 12px;
  border-radius: 8px;
}

.f-icon { font-size: 16px; }
.f-name { font-size: 12px; font-weight: 700; color: #cbd5e1; }
.v-graphic-plus { color: var(--cyan); font-weight: 900; }

.engine-mock-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.3);
  padding: 10px 16px;
  border-radius: 10px;
}

.e-spin { font-size: 18px; animation: spin-border 8s linear infinite; }
.e-text { font-size: 12.5px; font-weight: 800; color: #c084fc; }

.output-mock-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 136, 0.12);
  border: 1px solid rgba(0, 255, 136, 0.35);
  padding: 10px 16px;
  border-radius: 10px;
}

.o-icon { font-size: 18px; }
.o-badge { font-size: 12.5px; font-weight: 800; color: var(--green); }

.v-step-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #f1f5f9;
}

/* ─────────────────────────────────────────────────
   TUTORIAL VIDEO SHOWCASE
───────────────────────────────────────────────── */
#tutorial-video {
  padding: 80px 0;
  text-align: center;
}

.tutorial-video-card {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tutorial-video-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.tutorial-video-glow {
  position: absolute;
  inset: -15px;
  border-radius: 32px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.35) 0%, rgba(0, 229, 255, 0.2) 50%, transparent 70%);
  filter: blur(35px);
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.tutorial-video-card:hover .tutorial-video-glow {
  opacity: 0.85;
  filter: blur(45px);
}

.tutorial-shell {
  border-radius: 24px;
  border: 1.5px solid rgba(168, 85, 247, 0.45);
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.7), inset 0 0 25px rgba(168, 85, 247, 0.1);
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: rgba(14, 12, 34, 0.9);
}

.tutorial-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.widescreen-placeholder:hover .tutorial-thumb-img {
  transform: scale(1.03);
  opacity: 0.95;
}

.widescreen-placeholder .ph-icon,
.widescreen-placeholder .ph-hint,
.widescreen-placeholder .ph-evo-tags {
  position: relative;
  z-index: 3;
}

/* ── Attention Caption Under Tutorial Video Frame ── */
.tutorial-caption-box {
  margin-top: 24px;
  background: rgba(14, 12, 36, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(0, 229, 255, 0.4);
  border-radius: 20px;
  padding: 22px 26px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 229, 255, 0.12);
  position: relative;
  z-index: 5;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.tutorial-caption-box:hover {
  border-color: rgba(0, 229, 255, 0.7);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), 0 0 35px rgba(0, 229, 255, 0.22);
}

.caption-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #00ff88;
  background: rgba(0, 255, 136, 0.14);
  border: 1px solid rgba(0, 255, 136, 0.35);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.caption-text {
  font-size: 15px;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.75;
  letter-spacing: 0.2px;
}

.caption-text strong {
  color: #00e5ff;
  font-weight: 900;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
}

.c-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.25);
  padding: 3px 11px;
  border-radius: 8px;
  margin: 3px 2px;
  font-size: 13.5px;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.c-chip:hover {
  border-color: #00ff88;
  transform: translateY(-2px);
}

.highlight-green {
  color: #00ff88;
  font-weight: 900;
  text-shadow: 0 0 12px rgba(0, 255, 136, 0.7);
}

/* ─────────────────────────────────────────────────
   VISUAL FEATURE GRID (STATS + MINIMAL TEXT)
───────────────────────────────────────────────── */
#features {
  padding: 90px 0;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
  text-align: left;
}

.why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px) scale(1.04);
  border-color: var(--cc, #00e5ff);
  background: linear-gradient(135deg, rgba(14, 14, 34, 0.95), rgba(0, 229, 255, 0.12));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px var(--cc, rgba(0, 229, 255, 0.25));
}

.why-card:hover .why-icon {
  transform: scale(1.2) rotate(8deg);
  box-shadow: 0 0 15px var(--cc, rgba(0, 229, 255, 0.5));
}

.why-card:hover .stat-big-num {
  transform: scale(1.08);
  text-shadow: 0 0 12px var(--cc, #00e5ff);
}

.why-card-inner {
  padding: 24px 20px;
}

.visual-stat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.stat-big-num {
  font-size: 22px;
  font-weight: 900;
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.08);
  padding: 2px 10px;
  border-radius: 8px;
}

.why-card h3 {
  font-size: 15.5px;
  font-weight: 800;
  color: #f1f5f9;
}

/* ─────────────────────────────────────────────────
   SPOTLIGHT VERSION EVOLUTION (FEATURED SECTION)
───────────────────────────────────────────────── */
#pain-comparison {
  padding: 100px 0;
  text-align: center;
}

.evo-spotlight-card {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  background: rgba(14, 12, 34, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 56px 32px;
  border: 1.5px solid rgba(0, 229, 255, 0.45);
  box-shadow: 0 0 60px rgba(0, 229, 255, 0.22), inset 0 0 35px rgba(0, 229, 255, 0.08);
  overflow: hidden;
}

.evo-spotlight-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  background: conic-gradient(from var(--angle), transparent 20%, #00e5ff 40%, #00ff88 55%, #a855f7 70%, transparent 85%);
  animation: spin-border 4s linear infinite;
  z-index: 0;
}

.evo-spotlight-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.2) 0%, rgba(168, 85, 247, 0.15) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.evo-valuable-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.14);
  border: 1.5px solid rgba(251, 191, 36, 0.4);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
  animation: flash 2.5s ease-in-out infinite;
}

.evo-table-glowing {
  position: relative;
  z-index: 2;
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Short High-RPM Monetization Summary Banner */
.evo-roi-banner {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  background: rgba(10, 24, 40, 0.85);
  border: 1.5px solid rgba(0, 255, 136, 0.35);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.12);
  text-align: left;
}

.evo-roi-header {
  margin-bottom: 20px;
  text-align: center;
}

.roi-spark-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #00ff88;
  background: rgba(0, 255, 136, 0.14);
  border: 1px solid rgba(0, 255, 136, 0.35);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.evo-roi-header h3 {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.evo-roi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 640px) {
  .evo-roi-grid {
    grid-template-columns: 1fr;
  }
}

.roi-chip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 16px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.roi-chip:hover {
  border-color: rgba(0, 255, 136, 0.4);
  transform: translateY(-3px);
  background: rgba(0, 255, 136, 0.05);
}

.roi-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.roi-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.roi-info strong {
  font-size: 14px;
  font-weight: 800;
  color: #f1f5f9;
}

.roi-info span {
  font-size: 12.5px;
  color: #94a3b8;
  line-height: 1.45;
}

.comparison-table-wrapper {
  max-width: 820px;
  margin: 24px auto 0;
  background: rgba(10, 10, 26, 0.85);
  border: 1.5px solid rgba(0, 229, 255, 0.3);
  border-radius: 18px;
  overflow: hidden;
}

.comp-header {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1.5fr;
  padding: 18px 24px;
  background: rgba(0, 229, 255, 0.08);
  border-bottom: 1.5px solid rgba(0, 229, 255, 0.25);
  font-weight: 800;
  font-size: 14.5px;
}

.comp-row:hover {
  background: rgba(0, 229, 255, 0.06);
}

.comp-col-agent { color: var(--cyan); }
.comp-col-old { color: #94a3b8; }

.comp-row {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1.5fr;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  align-items: center;
  font-size: 13.5px;
  text-align: left;
}

.comp-row:last-child { border-bottom: none; }
.comp-feature { font-weight: 700; color: #cbd5e1; }

.badge-v-green {
  background: rgba(0, 255, 136, 0.15);
  border: 1px solid rgba(0, 255, 136, 0.35);
  color: var(--green);
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
}

.badge-v-red {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
}

.badge-v-muted {
  background: rgba(255, 255, 255, 0.06);
  color: #94a3b8;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
}

/* ─────────────────────────────────────────────────
   PRICING
───────────────────────────────────────────────── */
#pricing {
  padding: 90px 0;
  text-align: center;
}

.pricing-card {
  max-width: 480px;
  margin: 36px auto 0;
  background: rgba(14, 12, 36, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(0, 229, 255, 0.4);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-12px) scale(1.025);
  border-color: rgba(0, 229, 255, 0.8);
  background: rgba(18, 14, 45, 0.95);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 229, 255, 0.35);
}

.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: #000;
  font-size: 11.5px;
  font-weight: 900;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover .pricing-badge {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
}

.pricing-price {
  font-size: 68px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  margin-bottom: 4px;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.pricing-card:hover .pricing-price {
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.8);
  transform: scale(1.05);
}

.pricing-price span { font-size: 30px; vertical-align: super; }
.pricing-period { font-size: 13.5px; color: #64748b; margin-bottom: 28px; }
.pricing-period s { color: #ef4444; }

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: #cbd5e1;
}

.pricing-features .pf-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #000;
  font-weight: 900;
}

.pricing-note { font-size: 12.5px; color: #64748b; margin-top: 16px; }

/* ─────────────────────────────────────────────────
   FAQ ACCORDION
───────────────────────────────────────────────── */
#faq {
  padding: 90px 0;
  text-align: center;
}

.faq-list {
  max-width: 640px;
  margin: 36px auto 0;
  text-align: left;
}

.faq-list {
  max-width: 720px;
  margin: 36px auto 0;
  text-align: left;
}

.faq-item {
  background: rgba(14, 14, 34, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateX(8px) scale(1.015);
  border-color: rgba(0, 229, 255, 0.5);
  background: rgba(18, 16, 42, 0.95);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 229, 255, 0.18);
}

.faq-item.open {
  background: rgba(20, 18, 48, 0.95);
  border-color: rgba(0, 229, 255, 0.5);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 229, 255, 0.18);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-size: 16.5px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.2px;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.faq-question:hover,
.faq-item.open .faq-question {
  color: #00e5ff;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
}

.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #00e5ff;
  transition: transform 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: rgba(0, 229, 255, 0.25);
  border-color: #00e5ff;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 220px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 15px;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
}

/* ─────────────────────────────────────────────────
   TESTIMONIALS SECTION (CREATOR REVIEWS)
───────────────────────────────────────────────── */
#testimonials {
  padding: 90px 0;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.testi-card {
  background: rgba(14, 14, 34, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.testi-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(0, 229, 255, 0.5);
  background: rgba(22, 18, 52, 0.95);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 229, 255, 0.2);
}

.testi-card:hover .testi-avatar {
  transform: scale(1.15) rotate(6deg);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

.testi-card:hover .testi-stars {
  transform: scale(1.1);
  text-shadow: 0 0 15px rgba(251, 191, 36, 0.85);
}

.testi-avatar, .testi-stars {
  transition: transform 0.3s ease, text-shadow 0.3s ease, box-shadow 0.3s ease;
}

.testi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.testi-stars {
  color: #fbbf24;
  font-size: 15px;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.testi-stat-badge {
  font-size: 11.5px;
  font-weight: 800;
  color: #00ff88;
  background: rgba(0, 255, 136, 0.12);
  border: 1px solid rgba(0, 255, 136, 0.3);
  padding: 3px 10px;
  border-radius: 20px;
}

.testi-text {
  font-size: 14.5px;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 14px;
}

.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #000;
  flex-shrink: 0;
}

.testi-name {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
}

.testi-role {
  font-size: 12px;
  color: #64748b;
}

/* ─────────────────────────────────────────────────
   FINAL CTA SECTION (HIGH IMPACT ATTENTION BANNER)
───────────────────────────────────────────────── */
#final-cta {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
}

.cta-glowing-card {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  background: rgba(14, 12, 36, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 64px 36px;
  border: 1.5px solid rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 50px rgba(0, 229, 255, 0.2), inset 0 0 30px rgba(0, 229, 255, 0.08);
  overflow: hidden;
}

.cta-glowing-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  background: conic-gradient(from var(--angle), transparent 25%, #00e5ff 45%, #00ff88 55%, #a855f7 65%, transparent 80%);
  animation: spin-border 4s linear infinite;
  z-index: -1;
}

.cta-neon-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.25) 0%, rgba(168, 85, 247, 0.18) 50%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  animation: cta-aura-pulse 5s ease-in-out infinite;
}

@keyframes cta-aura-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.18); opacity: 0.85; }
}

.cta-content-box {
  position: relative;
  z-index: 2;
}

.cta-top-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00ff88;
  background: rgba(0, 255, 136, 0.12);
  border: 1px solid rgba(0, 255, 136, 0.35);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.final-cta-headline {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.final-cta-sub {
  font-size: 16.5px;
  color: #94a3b8;
  max-width: 540px;
  margin: 0 auto 36px;
}

.cta-highlight-row {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cta-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 105%;
  height: 125%;
  border-radius: 50px;
  border: 2px solid rgba(0, 229, 255, 0.6);
  pointer-events: none;
  animation: ring-pulse-expand 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

@keyframes ring-pulse-expand {
  0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.9; }
  100% { transform: translate(-50%, -50%) scale(1.28); opacity: 0; }
}

.btn-super-glow {
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.6), 0 0 70px rgba(0, 255, 136, 0.35);
  animation: spin-border 3s linear infinite, super-glow-pulse 2.5s ease-in-out infinite;
}

@keyframes super-glow-pulse {
  0%, 100% { box-shadow: 0 0 30px rgba(0, 229, 255, 0.5), 0 0 60px rgba(0, 255, 136, 0.3); }
  50% { box-shadow: 0 0 50px rgba(0, 229, 255, 0.85), 0 0 90px rgba(0, 255, 136, 0.6); }
}

.btn-cta-flash {
  position: relative;
  overflow: hidden;
  animation: cta-levitate 3s ease-in-out infinite;
}

@keyframes cta-levitate {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-4px); }
}

.btn-shimmer-light {
  position: absolute;
  top: -50%;
  left: -100%;
  width: 70%;
  height: 200%;
  background: linear-gradient(60deg, transparent 30%, rgba(255, 255, 255, 0.6) 50%, transparent 70%);
  transform: rotate(25deg);
  animation: shimmer-swipe 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

@keyframes shimmer-swipe {
  0% { left: -100%; }
  30%, 100% { left: 160%; }
}

/* ─────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 36px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 16px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12.5px; color: #64748b; }
.footer-copy { font-size: 12.5px; color: #475569; }

/* ─── RESPONSIVE ────────────────────────────────── */
@media (max-width: 860px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .visual-pipeline-bar { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 580px) {
  nav.floating-nav { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .comp-header, .comp-row { grid-template-columns: 1fr 1fr 1fr; font-size: 12px; padding: 10px; }
}
