
/* ==========================================================================
   RESET & CORE VARIABLES
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
  color-scheme: dark;
}
section {
  scroll-margin-top: 80px;
}
body {
  background: #020819;
  color: #f1f5f9;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

:root {
  --bg: #020819;
  --bg-card: rgba(8, 23, 58, 0.85);
  --bg-card-hover: rgba(12, 34, 84, 0.95);
  --cyan: #38e1ff;
  --cyan-glow: rgba(56, 225, 255, 0.45);
  --blue: #3b82f6;
  --violet: #8b5cf6;
  --pink: #ff33a8;
  --pink-glow: rgba(255, 51, 168, 0.45);
  --border: rgba(59, 130, 246, 0.28);
  --border-active: rgba(56, 225, 255, 0.65);
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --font-mono: 'JetBrains Mono', monospace;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* Background layers */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -10;
  background: linear-gradient(rgba(2, 8, 25, 0.72), rgba(2, 8, 25, 0.88)), url(/assets/marketing/demo-0.jpg);
  background-size: cover;
  background-position: center;
}
.page-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #38e1ff 0.75px, transparent 1.5px), radial-gradient(circle, #8b5cf6 0.75px, transparent 1.5px);
  background-size: 64px 64px, 96px 96px;
  background-position: 0 0, 32px 32px;
  opacity: 0.25;
  animation: bgDrift 28s linear infinite;
}
.page-bg::after {
  content: '';
  position: absolute;
  inset: -15%;
  background: radial-gradient(circle at 20% 30%, rgba(56, 225, 255, 0.12), transparent 45%),
              radial-gradient(circle at 80% 40%, rgba(139, 92, 246, 0.14), transparent 50%),
              radial-gradient(circle at 50% 85%, rgba(255, 51, 168, 0.08), transparent 45%);
  filter: blur(48px);
  pointer-events: none;
}
@keyframes bgDrift { to { transform: translate3d(-64px, -32px, 0); } }

/* Floating particle stars */
.star {
  position: fixed;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 6px #38e1ff, 0 0 12px #8b5cf6;
  opacity: 0.5;
  z-index: -5;
  animation: twinkle 3s ease-in-out infinite;
}
@keyframes twinkle { 50% { opacity: 0.1; transform: scale(0.5); } }

/* Buttons & Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 50%, #8b5cf6 100%);
  color: #020819;
  font-weight: 800;
  box-shadow: 0 0 20px rgba(56, 225, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(56, 225, 255, 0.75), inset 0 1px 0 #ffffff;
}
.btn-secondary {
  background: rgba(13, 31, 75, 0.75);
  border: 1px solid var(--border);
  color: #ffffff;
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  border-color: var(--cyan);
  background: rgba(22, 50, 118, 0.85);
  box-shadow: 0 0 16px rgba(56, 225, 255, 0.25);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-secondary);
}
.btn-outline:hover {
  color: #fff;
  border-color: #fff;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 56px;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  background: rgba(2, 8, 25, 0.88);
  backdrop-filter: blur(20px);
}
.nav-wrap {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #ffffff;
}
.logo span { color: var(--cyan); text-shadow: 0 0 16px var(--cyan-glow); }
.logo-badge {
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 6px;
  background: linear-gradient(90deg, #ff33a8, #8b5cf6);
  color: #fff;
  border-radius: 6px;
  margin-left: 4px;
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}
.nav-links a { transition: color 0.15s ease; }
.nav-links a:hover { color: var(--cyan); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #4ade80;
  padding: 4px 10px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: var(--radius-full);
}
.nav-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulseGreen 2s infinite;
}
@keyframes pulseGreen { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }

.mobile-toggle {
  display: none;
  font-size: 22px;
  color: #fff;
}

/* ==========================================================================
   HERO SECTION (TIGHTLY TUNED FOR 1440x900 VIEWPORT: ABOVE-THE-FOLD)
   ========================================================================== */
.hero {
  position: relative;
  padding: 20px 20px 20px;
  overflow: hidden;
  border-bottom: 1px solid rgba(59, 130, 246, 0.18);
}
.hero-head {
  max-width: 860px;
  margin: 0 auto 16px;
  text-align: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(56, 225, 255, 0.1);
  border: 1px solid rgba(56, 225, 255, 0.3);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  box-shadow: 0 0 16px rgba(56, 225, 255, 0.15);
}
.hero-head h1 {
  font-size: clamp(24px, 2.7vw, 36px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.hero-head h1 .grad-text {
  background: linear-gradient(135deg, #38e1ff 0%, #8b5cf6 50%, #ff33a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 24px rgba(56, 225, 255, 0.25);
}
.hero-head p {
  font-size: 13px;
  color: #cbd5e1;
  max-width: 660px;
  margin: 0 auto 14px;
  line-height: 1.5;
}
.hero-cta-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-cta-group .btn {
  padding: 8px 22px;
  font-size: 13px;
}

/* Hero Stage Layout */
.hero-stage {
  max-width: 1280px;
  margin: 10px auto 0;
  display: grid;
  grid-template-columns: 295px 1fr 295px;
  gap: 18px;
  align-items: center;
  position: relative;
}
.stage-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

/* Side Cards */
.side-card {
  background: linear-gradient(180deg, rgba(10, 29, 74, 0.88), rgba(6, 20, 52, 0.88));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 11px 13px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.side-card:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(56, 225, 255, 0.2);
}
.card-top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}
.card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 17px;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.3);
}
.icon-cyan { background: linear-gradient(135deg, #0284c7, #38e1ff); color: #020819; }
.icon-pink { background: linear-gradient(135deg, #e11d48, #ff33a8); color: #fff; }
.icon-violet { background: linear-gradient(135deg, #6d28d9, #8b5cf6); color: #fff; }
.icon-obs { background: #000; border: 1.5px solid #38e1ff; font-size: 15px; color: #fff; }

.card-title-group h3 {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}
.card-title-group p {
  font-size: 10.5px;
  color: var(--text-secondary);
  line-height: 1.35;
}

/* Interactive snippets inside side-cards */
.comment-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 9px;
  background: rgba(3, 13, 38, 0.85);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-sm);
  font-size: 10.5px;
}
.avatar-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff33a8, #38e1ff);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 9px;
  color: #020819;
}
.audio-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.audio-wave i {
  width: 2.5px;
  background: var(--cyan);
  border-radius: 2px;
  animation: wavePulse 1.2s ease-in-out infinite;
}
.audio-wave i:nth-child(1) { height: 7px; }
.audio-wave i:nth-child(2) { height: 14px; animation-delay: 0.15s; }
.audio-wave i:nth-child(3) { height: 19px; animation-delay: 0.3s; }
.audio-wave i:nth-child(4) { height: 12px; animation-delay: 0.45s; }
.audio-wave i:nth-child(5) { height: 16px; animation-delay: 0.6s; }
@keyframes wavePulse { 50% { transform: scaleY(0.3); opacity: 0.5; } }

/* Center Phone Mockup Stage */
.stage-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.phone-mockup-wrap {
  position: relative;
  width: 255px;
  height: 490px;
  filter: drop-shadow(0 0 20px rgba(56, 225, 255, 0.3)) drop-shadow(0 0 40px rgba(139, 92, 246, 0.25));
}
.phone-mockup-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Floating overlay badges around phone */
.float-badge {
  position: absolute;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  z-index: 15;
  animation: floatAnim 4s ease-in-out infinite alternate;
  white-space: nowrap;
}
.badge-tts {
  top: 16px;
  left: -20px;
  background: rgba(10, 32, 85, 0.92);
  border: 1px solid var(--cyan);
  color: var(--cyan);
}
.badge-gift {
  bottom: 110px;
  right: -25px;
  background: rgba(45, 12, 60, 0.92);
  border: 1px solid var(--pink);
  color: #ff9ee2;
  animation-delay: -2s;
}
.badge-obs {
  bottom: 35px;
  left: -20px;
  background: rgba(5, 15, 40, 0.92);
  border: 1px solid #3b82f6;
  color: #93c5fd;
  animation-delay: -1s;
}
@keyframes floatAnim {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

/* Speech bubble popup */
.live-pop-msg {
  position: absolute;
  top: 75px;
  right: -32px;
  width: 175px;
  background: #ffffff;
  color: #0f172a;
  border-radius: 12px;
  padding: 8px 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  font-size: 10px;
  z-index: 16;
  animation: popBreath 5s ease-in-out infinite;
}
.live-pop-msg strong { color: #2563eb; display: block; font-size: 9.5px; }
.live-pop-msg p { font-weight: 700; margin-top: 2px; font-size: 11px; }
@keyframes popBreath {
  0%, 15% { opacity: 0; transform: translateY(6px) scale(0.96); }
  25%, 85% { opacity: 1; transform: translateY(0) scale(1); }
  95%, 100% { opacity: 0; transform: translateY(-6px) scale(0.96); }
}

/* Clean Vector OBS Studio Scene Monitor in Hero */
.hero-obs-monitor {
  height: 66px;
  border-radius: 6px;
  border: 1px solid #3b82f6;
  background: linear-gradient(135deg, #071638 0%, #030a1c 100%);
  position: relative;
  overflow: hidden;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.obs-monitor-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8px;
  font-family: var(--font-mono);
  color: #94a3b8;
}
.obs-rec-dot {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #ef4444;
  font-weight: 700;
}
.obs-rec-dot::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ef4444;
  animation: pulseGreen 1.5s infinite;
}
.obs-vu-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 10px;
}
.obs-vu-bars i {
  width: 2px;
  border-radius: 1px;
  background: #22c55e;
  animation: wavePulse 1s infinite;
}
.obs-vu-bars i:nth-child(3) { background: #eab308; height: 8px; }
.obs-vu-bars i:nth-child(4) { background: #ef4444; height: 10px; animation-delay: 0.2s; }

/* Trust Stats Bar */
.trust-bar {
  max-width: 1240px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  background: linear-gradient(180deg, rgba(8, 25, 66, 0.9), rgba(4, 15, 42, 0.9));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid rgba(59, 130, 246, 0.2);
  padding-right: 10px;
}
.trust-item:last-child { border-right: none; padding-right: 0; }
.trust-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(56, 225, 255, 0.1);
  border: 1px solid rgba(56, 225, 255, 0.25);
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--cyan);
  flex-shrink: 0;
}
.trust-data b {
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  display: block;
  letter-spacing: -0.02em;
}
.trust-data small {
  font-size: 10.5px;
  color: var(--text-secondary);
  line-height: 1.25;
  display: block;
}

/* ==========================================================================
   INTERACTIVE LIVE DEMO SANDBOX (TIKFINITY & TIKOPS STYLE)
   ========================================================================== */
.sandbox-section {
  padding: 70px 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-header h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-header h2 span {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-header p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.sandbox-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 26px;
  background: rgba(6, 20, 54, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.sandbox-controls {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.control-group-title {
  font-size: 12.5px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.demo-btn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.demo-trigger-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  background: rgba(10, 27, 72, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: #fff;
  text-align: left;
  transition: all 0.2s ease;
}
.demo-trigger-btn:hover {
  border-color: var(--cyan);
  background: rgba(19, 47, 118, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
.demo-icon {
  font-size: 20px;
  flex-shrink: 0;
}
.demo-trigger-btn strong {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
}
.demo-trigger-btn span {
  font-size: 10.5px;
  color: var(--text-secondary);
}

/* Voice Sample Bar */
.voice-selector {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.voice-chip {
  padding: 5px 11px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  background: rgba(13, 33, 85, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #94a3b8;
  transition: all 0.2s;
}
.voice-chip.active, .voice-chip:hover {
  background: var(--cyan);
  color: #020819;
  border-color: var(--cyan);
}

/* Sandbox Screen Output */
.sandbox-screen {
  background: #010410;
  border: 1px solid var(--border-active);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  box-shadow: 0 0 30px rgba(56, 225, 255, 0.15);
}
.screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(8, 22, 58, 0.9);
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  font-size: 11px;
  font-weight: 700;
}
.screen-header .live-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ef4444;
}
.screen-header .live-indicator::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 8px #ef4444;
  animation: pulseGreen 1.5s infinite;
}
.screen-body {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: radial-gradient(circle at 50% 35%, rgba(30, 58, 138, 0.25), transparent 75%);
}

/* Virtual Studio Camera PiP in Sandbox (ZERO TEXT BLEED) */
.virtual-stream-cam {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 135px;
  height: 82px;
  border-radius: 8px;
  border: 1px solid var(--cyan);
  background: linear-gradient(135deg, #071942 0%, #020819 100%);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px 8px;
  overflow: hidden;
}
.cam-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8px;
  font-family: var(--font-mono);
  color: #38e1ff;
}
.cam-mid-icon {
  display: grid;
  place-items: center;
  font-size: 20px;
  opacity: 0.8;
}
.cam-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cam-label {
  font-size: 8.5px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.7);
  padding: 1px 5px;
  border-radius: 3px;
  color: var(--cyan);
}

/* Sandbox Live Events Layer */
.event-alert-box {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: rgba(10, 26, 68, 0.95);
  border: 2px solid var(--cyan);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  text-align: center;
  box-shadow: 0 0 35px var(--cyan-glow);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 25;
}
.event-alert-box.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.event-alert-box .big-emoji { font-size: 38px; display: block; }
.event-alert-box h4 { font-size: 14px; font-weight: 900; color: #fff; margin: 3px 0; }
.event-alert-box p { font-size: 11px; color: var(--cyan); font-weight: 600; }

/* Wheel of fortune canvas preview */
.wheel-overlay-box {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid #ffd700;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
  display: none;
  place-items: center;
  background: conic-gradient(#ff33a8 0 60deg, #3b82f6 60deg 120deg, #10b981 120deg 180deg, #f59e0b 180deg 240deg, #8b5cf6 240deg 300deg, #ec4899 300deg 360deg);
  z-index: 24;
}
.wheel-pointer {
  position: absolute;
  top: -10px;
  left: calc(50% - 8px);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 16px solid #ffd700;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
  z-index: 26;
}
.wheel-hub {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #020819;
  border: 2px solid #ffd700;
  display: grid;
  place-items: center;
  font-size: 11px;
  color: #ffd700;
  font-weight: 900;
  z-index: 25;
}

/* Virtual Live Comment Feed */
.virtual-chat-stream {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 130px;
  overflow: hidden;
}
.chat-msg {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(3, 11, 30, 0.7);
  padding: 5px 9px;
  border-radius: 6px;
  font-size: 11px;
  border-left: 3px solid var(--cyan);
  animation: slideIn 0.3s ease;
}
.chat-msg b { color: var(--cyan); font-weight: 700; }
.chat-msg span { color: #e2e8f0; }
@keyframes slideIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Console log strip */
.sandbox-log {
  padding: 7px 14px;
  background: #00020a;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: #38e1ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========================================================================
   HOW IT WORKS (3-STEP ONBOARDING)
   ========================================================================== */
.steps-section {
  padding: 80px 20px;
  border-top: 1px solid rgba(59, 130, 246, 0.15);
  background: rgba(3, 10, 32, 0.6);
}
.steps-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: linear-gradient(180deg, rgba(8, 25, 68, 0.8), rgba(4, 15, 45, 0.8));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  position: relative;
  transition: all 0.3s;
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.step-icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(56, 225, 255, 0.12);
  border: 1px solid rgba(56, 225, 255, 0.3);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.step-number {
  font-size: 32px;
  font-weight: 900;
  font-family: var(--font-mono);
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.step-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.step-code-preview {
  margin-top: 14px;
  background: #010410;
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 8px;
  padding: 8px 11px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #a5f3fc;
}

/* ==========================================================================
   PRICING SECTION (DYNAMICALLY SYNCHRONIZED WITH PLATFORM ADMIN)
   ========================================================================== */
.pricing-section {
  padding: 90px 20px;
  position: relative;
}
.pricing-section::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 450px;
  background: radial-gradient(circle, rgba(56, 225, 255, 0.12), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.pricing-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 2;
}
.pricing-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.pricing-header p {
  font-size: 14.5px;
  color: var(--text-secondary);
}

/* Pricing Controls Bar */
.pricing-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.billing-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(8, 24, 64, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 4px;
  gap: 4px;
}
.switcher-btn {
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.switcher-btn.active {
  background: linear-gradient(135deg, #0284c7, #38e1ff);
  color: #020819;
  font-weight: 800;
  box-shadow: 0 0 16px rgba(56, 225, 255, 0.4);
}
.discount-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  font-weight: 800;
  padding: 2.5px 8px;
  background: linear-gradient(90deg, #ff33a8, #8b5cf6);
  color: #fff;
  border-radius: var(--radius-full);
  margin-left: 6px;
}
.currency-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(8, 24, 64, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 4px;
  gap: 4px;
}
.curr-btn {
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.curr-btn.active {
  background: rgba(56, 225, 255, 0.15);
  color: var(--cyan);
  border: 1px solid rgba(56, 225, 255, 0.3);
}

/* Pricing Grid */
.pricing-grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}
.pricing-card {
  background: linear-gradient(180deg, rgba(8, 24, 65, 0.9), rgba(4, 15, 45, 0.95));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.pricing-card.featured {
  border-color: var(--cyan);
  background: linear-gradient(180deg, rgba(12, 33, 88, 0.95), rgba(7, 21, 60, 0.95));
  box-shadow: 0 0 40px rgba(56, 225, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.card-ribbon {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ff33a8, #8b5cf6);
  color: #fff;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 4px 15px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(255, 51, 168, 0.4);
  white-space: nowrap;
}
.plan-name {
  font-size: 21px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}
.plan-desc {
  font-size: 12.5px;
  color: var(--text-secondary);
  min-height: 38px;
  line-height: 1.5;
}
.plan-price-wrap {
  margin: 20px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.plan-price .amount {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #ffffff;
  font-family: var(--font-mono);
}
.plan-price .currency {
  font-size: 19px;
  font-weight: 700;
  color: var(--cyan);
}
.plan-price .period {
  font-size: 12.5px;
  color: var(--text-muted);
}
.annual-saving-notice {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #4ade80;
  display: flex;
  align-items: center;
  gap: 4px;
}

.plan-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
  flex: 1;
}
.plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  line-height: 1.4;
  color: #cbd5e1;
}
.plan-feature-item.highlight {
  color: #fff;
  font-weight: 700;
}
.check-icon {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(56, 225, 255, 0.15);
  color: var(--cyan);
  display: grid;
  place-items: center;
  font-size: 10.5px;
  flex-shrink: 0;
  margin-top: 1px;
}
.cross-icon {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.1);
  color: #64748b;
  display: grid;
  place-items: center;
  font-size: 9.5px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Dynamic Sync Status Badge */
.sync-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-family: var(--font-mono);
  color: #38e1ff;
  background: rgba(56, 225, 255, 0.08);
  border: 1px solid rgba(56, 225, 255, 0.2);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-top: 16px;
}

/* ==========================================================================
   FEATURE COMPARISON MATRIX
   ========================================================================== */
.matrix-section {
  padding: 80px 20px;
  max-width: 1140px;
  margin: 0 auto;
}
.matrix-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(6, 20, 54, 0.7);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
}
.matrix-table th, .matrix-table td {
  padding: 15px 18px;
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
}
.matrix-table th {
  background: rgba(10, 29, 78, 0.9);
  font-size: 12.5px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.03em;
}
.matrix-table th:nth-child(2),
.matrix-table td:nth-child(2) {
  text-align: center;
  color: #94a3b8;
  width: 22%;
}
.matrix-table th:nth-child(3),
.matrix-table td:nth-child(3) {
  text-align: center;
  color: #cbd5e1;
  width: 22%;
}
.matrix-table th:nth-child(4),
.matrix-table td:nth-child(4) {
  text-align: center;
  color: var(--cyan);
  font-weight: 700;
  background: rgba(56, 225, 255, 0.04);
  width: 26%;
}
.matrix-table tr:hover td {
  background: rgba(15, 38, 98, 0.4);
}

/* ==========================================================================
   TESTIMONIALS / CREATOR SPOTLIGHT
   ========================================================================== */
.testimonials-section {
  padding: 80px 20px;
  border-top: 1px solid rgba(59, 130, 246, 0.15);
  background: rgba(2, 9, 28, 0.5);
}
.testimonials-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: linear-gradient(180deg, rgba(8, 25, 68, 0.8), rgba(4, 15, 45, 0.8));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.testi-card p {
  font-size: 13.5px;
  color: #e2e8f0;
  line-height: 1.6;
  font-style: italic;
}
.testi-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38e1ff, #ff33a8);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #020819;
  font-size: 13.5px;
}
.testi-user b {
  display: block;
  font-size: 13.5px;
  color: #fff;
}
.testi-user small {
  font-size: 11px;
  color: var(--cyan);
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
  padding: 80px 20px;
  max-width: 860px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(7, 22, 58, 0.8);
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item.active {
  border-color: var(--cyan);
  background: rgba(10, 30, 80, 0.9);
}
.faq-question {
  width: 100%;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
}
.faq-icon {
  font-size: 18px;
  color: var(--cyan);
  transition: transform 0.3s;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 22px 18px;
}

/* ==========================================================================
   FINAL CALL TO ACTION BANNER
   ========================================================================== */
.final-cta-section {
  padding: 70px 20px 90px;
}
.cta-box {
  max-width: 1040px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(14, 40, 110, 0.95), rgba(5, 17, 50, 0.95));
  border: 1px solid var(--cyan);
  padding: 50px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(56, 225, 255, 0.25);
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(56, 225, 255, 0.2), transparent 70%);
  pointer-events: none;
}
.cta-box h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}
.cta-box p {
  font-size: 14.5px;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto 28px;
}
.cta-btn-group {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  background: #010410;
  padding: 50px 20px 28px;
}
.footer-wrap {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-brand p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 10px;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 12.5px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-col a {
  font-size: 12.5px;
  color: var(--text-secondary);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 14px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 1180px) {
  .hero-stage {
    grid-template-columns: 1fr;
    max-width: 620px;
  }
  .stage-center {
    order: -1;
    margin-bottom: 20px;
  }
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item:nth-child(2) { border-right: none; }
  .sandbox-container {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .footer-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-status, .nav-actions .btn-secondary { display: none; }
  .nav-actions .btn-primary { font-size: 11px; padding: 6px 12px; }
  .mobile-toggle { display: block; }
  .hero { padding: 24px 14px 20px; }
  .hero-head h1 { font-size: 26px; }
  .steps-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: 1fr; gap: 8px; padding: 14px; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(59, 130, 246, 0.2); padding-bottom: 8px; }
  .demo-btn-grid { grid-template-columns: 1fr; }
  .footer-wrap { grid-template-columns: 1fr; gap: 24px; }
  .phone-mockup-wrap { width: 250px; height: 500px; margin: 0 auto; }
  .float-badge { font-size: 9px; padding: 4px 8px; }
  .badge-tts { top: 10px; left: 50%; transform: translateX(-50%); white-space: nowrap; }
  .badge-gift { bottom: 90px; right: -4px; }
  .badge-obs { bottom: 30px; left: -4px; }
  .live-pop-msg { top: 60px; right: -4px; width: 160px; font-size: 9.5px; }
  .pricing-card { padding: 24px 16px; }
  .pricing-controls { gap: 10px; }
  .billing-switcher { flex-wrap: wrap; justify-content: center; }
  .switcher-btn { font-size: 11.5px; padding: 5px 11px; }
  .discount-tag { font-size: 8.5px; padding: 2px 5px; }
  .cta-box { padding: 36px 18px; }
}
