/* ═══════════════════════════════════════════════════
   QELNIX — components.css
   All UI components
═══════════════════════════════════════════════════ */

/* ── LOADER ── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--c-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.loader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.loader-wordmark {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: 12px;
  overflow: hidden;
  display: flex;
}

.loader-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(70px);
}

.loader-tag {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--c-cyan);
  opacity: 0;
}

.loader-bar-wrap {
  width: 240px;
  height: 1px;
  background: var(--c-white-08);
  position: relative;
  overflow: hidden;
}

.loader-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--c-accent), var(--c-cyan));
  box-shadow: 0 0 12px var(--c-cyan);
}

.loader-pct {
  font-size: 12px;
  color: var(--c-white-40);
  letter-spacing: 3px;
  font-variant-numeric: tabular-nums;
}

/* ── CURSOR ── */
.cursor-dot {
  position: fixed;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--c-cyan);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: transform 0.1s, width 0.3s, height 0.3s;
  will-change: transform;
}

.cursor-ring {
  position: fixed;
  width: 44px; height: 44px;
  border: 1px solid rgba(0,212,255,0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: border-color 0.3s, width 0.4s var(--ease-out), height 0.4s var(--ease-out);
  will-change: transform;
}

.cursor-dot.hovered {
  width: 6px; height: 6px;
  background: var(--c-white);
}

.cursor-ring.hovered {
  width: 70px; height: 70px;
  border-color: rgba(255,255,255,0.5);
}

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s var(--ease-out);
}

#nav.scrolled {
  padding: 16px 60px;
  background: rgba(2,12,27,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--c-white-08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
}

.nav-orb {
  position: relative;
  width: 38px; height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-orb-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #1a6bcc, #00d4ff, #1a6bcc);
  animation: spin-orb 3s linear infinite;
}

.nav-orb-core {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--c-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: var(--c-cyan);
}

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

.nav-name { font-size: 18px; font-weight: 900; letter-spacing: 3px; }
.nav-sub { font-size: 8px; color: var(--c-cyan); letter-spacing: 2px; margin-top: 1px; }

.nav-links {
  display: flex;
  gap: 36px;
  opacity: 0;
}

.nav-links a {
  font-size: 13px;
  color: var(--c-white-60);
  transition: color var(--t-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 1px;
  background: var(--c-cyan);
  transition: right var(--t-mid) var(--ease-out);
}

.nav-links a:hover { color: var(--c-white); }
.nav-links a:hover::after { right: 0; }

.nav-cta-wrap { opacity: 0; }

.btn-mag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 1px solid rgba(0,212,255,0.35);
  color: var(--c-cyan);
  background: transparent;
  transition: all var(--t-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-mag::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-mid) var(--ease-out);
}

.btn-mag:hover {
  color: var(--c-bg);
  border-color: var(--c-cyan);
  box-shadow: 0 0 40px var(--c-cyan-glow);
}

.btn-mag:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-mag span { position: relative; z-index: 1; }

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 48px 56px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  border-radius: 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.2);
  color: var(--c-cyan);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: var(--r-full);
  margin-bottom: 44px;
  opacity: 0;
}

.hero-pulse {
  width: 7px; height: 7px;
  background: var(--c-cyan);
  border-radius: 50%;
  animation: pulse-hero 2.4s ease-in-out infinite;
}

@keyframes pulse-hero {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--c-cyan-glow); }
  50% { opacity: 0.5; box-shadow: 0 0 0 6px transparent; }
}

.hero-h1 {
  margin-bottom: 28px;
  filter: drop-shadow(0 0 32px rgba(0,0,0,0.9)) drop-shadow(0 2px 12px rgba(0,0,0,0.8));
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line-inner {
  display: block;
  transform: translateY(110%);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--c-white-60);
  max-width: 620px;
  margin: 0 auto 56px;
  line-height: 1.75;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 48px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--c-cyan), var(--c-accent));
  color: var(--c-bg);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.3px;
  transition: transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid);
  box-shadow: 0 0 50px rgba(0,212,255,0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent);
  opacity: 0;
  transition: opacity var(--t-mid);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 80px rgba(0,212,255,0.55);
}

.btn-primary:hover::after { opacity: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 48px;
  border-radius: var(--r-full);
  border: 1px solid var(--c-white-20);
  color: var(--c-white-60);
  font-size: 15px;
  font-weight: 600;
  transition: all var(--t-mid) var(--ease-out);
}

.btn-outline:hover {
  border-color: var(--c-cyan);
  color: var(--c-cyan);
  background: rgba(0,212,255,0.05);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 0;
}

.scroll-text {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-white-40);
}

.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(180deg, rgba(0,212,255,0.7) 0%, transparent 100%);
  transform-origin: top;
  animation: scroll-anim 2.2s ease-in-out infinite;
}

@keyframes scroll-anim {
  0% { transform: scaleY(0); opacity: 0; transform-origin: top; }
  40% { transform: scaleY(1); opacity: 1; transform-origin: top; }
  60% { transform: scaleY(1); opacity: 1; transform-origin: bottom; }
  100% { transform: scaleY(0); opacity: 0; transform-origin: bottom; }
}

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  background: rgba(0,212,255,0.04);
  border-top: 1px solid var(--c-white-08);
  border-bottom: 1px solid var(--c-white-08);
  padding: 18px 0;
}

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

.marquee-item {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-white-40);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 16px;
}

.marquee-item::before {
  content: '✦';
  color: var(--c-cyan);
  font-size: 8px;
}

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

/* ── STATS ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--c-white-08);
}

.stat-cell {
  background: var(--c-bg);
  padding: 52px 40px;
  text-align: center;
  transition: background var(--t-mid);
}

.stat-cell:hover { background: rgba(0,212,255,0.03); }

.stat-val {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--c-white), var(--c-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-variant-numeric: tabular-nums;
}

.stat-lbl {
  font-size: 12px;
  color: var(--c-white-40);
  letter-spacing: 1px;
}

/* ── PRODUCTS SHOWCASE ── */
#products {
  background: var(--c-bg2);
  overflow: hidden;
}

.products-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

.products-scroll-track {
  display: flex;
  gap: 28px;
  overflow: visible;
  padding-bottom: 40px;
  will-change: transform;
}

/* GSAP handles horizontal scroll — drag disabled */

.product-card {
  flex-shrink: 0;
  width: 380px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--c-white-08);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid), border-color var(--t-mid);
  position: relative;
  transform-style: preserve-3d;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,212,255,0.15);
  border-color: rgba(0,212,255,0.2);
}

.product-card.flagship {
  border-color: rgba(240,200,64,0.2);
  background: rgba(240,200,64,0.015);
}

.product-card.flagship:hover {
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(240,200,64,0.3);
  border-color: rgba(240,200,64,0.35);
}

.pcard-img-wrap {
  position: relative;
  height: 280px;
  background: linear-gradient(135deg, rgba(26,107,204,0.12), rgba(0,212,255,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pcard-img-wrap::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(2,12,27,0.9));
  z-index: 1;
}

.pcard-img {
  max-height: 240px;
  max-width: 85%;
  object-fit: contain;
  transition: transform var(--t-slow) var(--ease-out);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  position: relative;
  z-index: 0;
}

.product-card:hover .pcard-img {
  transform: scale(1.08) translateY(-8px);
}

.pcard-glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.15) 0%, transparent 70%);
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.flagship .pcard-glow {
  background: radial-gradient(circle, rgba(240,200,64,0.12) 0%, transparent 70%);
}

.pcard-body {
  padding: 32px 32px 36px;
}

.pcard-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-full);
  background: rgba(0,212,255,0.1);
  color: var(--c-cyan);
  margin-bottom: 20px;
}

.flagship .pcard-badge {
  background: var(--c-gold-dim);
  color: var(--c-gold);
}

.pcard-name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.pcard-desc {
  font-size: 13px;
  color: var(--c-white-40);
  line-height: 1.65;
  margin-bottom: 28px;
}

.pcard-price-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 24px;
}

.pcard-price {
  font-size: 38px;
  font-weight: 900;
  color: var(--c-cyan);
  line-height: 1;
}

.flagship .pcard-price { color: var(--c-gold); }

.pcard-price-info {
  font-size: 12px;
  color: var(--c-white-40);
  padding-bottom: 6px;
}

.pcard-price-monthly {
  font-size: 14px;
  color: var(--c-white-60);
  font-weight: 600;
}

.pcard-divider {
  height: 1px;
  background: var(--c-white-08);
  margin: 20px 0;
}

.pcard-specs { display: flex; flex-direction: column; gap: 8px; }

.pcard-spec {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--c-white-40);
}

.spec-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--c-cyan);
  flex-shrink: 0;
}

.flagship .spec-dot { background: var(--c-gold); }

/* Drag indicator */
.drag-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  opacity: 0.4;
}

.drag-hint-line {
  width: 40px; height: 1px;
  background: var(--c-cyan);
}

.drag-hint-text {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-cyan);
}

/* ═══ CINEMATIC PRODUCT PANELS ═══ */
.products-hscroll-zone {
  overflow: hidden;
  position: relative;
}

.products-scroll-track {
  display: flex;
  overflow: visible;
  will-change: transform;
  /* remove overflow-x scroll — GSAP drives this */
}

.product-panel {
  flex-shrink: 0;
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 0 5vw;
  gap: 3vw;
  position: relative;
  background: #020c1b;
  overflow: hidden;
}

.pp-bg-num {
  position: absolute;
  bottom: -0.15em;
  right: 4vw;
  font-size: clamp(120px, 20vw, 260px);
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.025);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.pp-left {
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pp-badge-pill {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 40px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-cyan, #00d4ff);
  background: rgba(0,212,255,0.06);
  width: fit-content;
}
.pp-badge--featured {
  border-color: rgba(0,212,255,0.6);
  background: rgba(0,212,255,0.12);
}
.pp-badge--gold {
  border-color: rgba(255,183,0,0.5);
  color: var(--c-gold, #ffb700);
  background: rgba(255,183,0,0.08);
}

.pp-name {
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0;
  color: #ffffff;
}
.pp-name--gold {
  background: linear-gradient(135deg, #fff 0%, #ffb700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pp-tagline {
  font-size: clamp(13px, 1.4vw, 17px);
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  font-weight: 300;
}

.pp-price-hero {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.pp-price-val {
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--c-cyan, #00d4ff);
}
.pp-price--gold {
  color: var(--c-gold, #ffb700);
}
.pp-price-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.pp-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--c-cyan, #00d4ff);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,212,255,0.3);
  padding-bottom: 2px;
  width: fit-content;
  transition: border-color 0.3s, color 0.3s;
}
.pp-cta-link:hover { border-color: var(--c-cyan); }
.pp-cta--gold { color: var(--c-gold, #ffb700); border-color: rgba(255,183,0,0.3); }
.pp-cta--gold:hover { border-color: var(--c-gold); }

.pp-center {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

.pp-img {
  max-height: 62vh;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 70px rgba(0,212,255,0.3));
  transition: transform 0.6s ease, filter 0.6s ease;
  will-change: transform;
  position: relative;
  z-index: 2;
}
.pp-img--tower {
  max-height: 75vh;
}
.pp-img--flagship {
  filter: drop-shadow(0 40px 90px rgba(255,183,0,0.4));
}
.pp-img-glow {
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(30%);
  filter: blur(20px);
}
.pp-glow--gold {
  background: radial-gradient(circle, rgba(255,183,0,0.18) 0%, transparent 70%);
}

.pp-right {
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pp-spec-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pp-spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
}
.pp-spec-label {
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pp-spec-val {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.pp-earn-box {
  padding: 20px 24px;
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 12px;
}
.pp-earn--gold {
  background: rgba(255,183,0,0.06);
  border-color: rgba(255,183,0,0.2);
}
.pp-earn-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}
.pp-earn-val {
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--c-cyan, #00d4ff);
}
.pp-earn--gold .pp-earn-val { color: var(--c-gold, #ffb700); }

.pp-counter {
  position: absolute;
  bottom: 40px;
  left: 5vw;
  font-size: 11px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.15);
  text-transform: uppercase;
}

/* Progress dots */
.pp-progress-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
  pointer-events: none;
}
.pp-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: background 0.4s, transform 0.4s;
}
.pp-dot.active {
  background: var(--c-cyan, #00d4ff);
  transform: scale(1.5);
}

/* ── BRAND / ABOUT ── */
.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.brand-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.brand-card {
  background: var(--c-white-04);
  border: 1px solid var(--c-white-08);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  transition: all var(--t-mid) var(--ease-out);
  transform-style: preserve-3d;
}

.brand-card:hover {
  border-color: rgba(0,212,255,0.25);
  background: rgba(0,212,255,0.03);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.bc-icon { font-size: 32px; margin-bottom: 16px; }

.bc-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.bc-text {
  font-size: 13px;
  color: var(--c-white-40);
  line-height: 1.65;
}

.places-wrap { margin-top: 40px; }

.places-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.place-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,212,255,0.05);
  border: 1px solid rgba(0,212,255,0.12);
  color: var(--c-white-60);
  font-size: 13px;
  padding: 8px 16px;
  border-radius: var(--r-full);
  transition: all var(--t-mid) var(--ease-out);
}

.place-chip:hover {
  background: rgba(0,212,255,0.1);
  border-color: rgba(0,212,255,0.35);
  color: var(--c-white);
  transform: translateY(-2px);
}

/* ── EARNINGS / LEVELS ── */
#earnings {
  position: relative;
  overflow: hidden;
}

.earnings-bg-orb {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.04) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.earnings-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

/* Level cards 3D scroll */
.level-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  perspective: 1000px;
  perspective-origin: 50% -20%;
}

.level-row {
  transform-style: preserve-3d;
  will-change: transform, opacity;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 20px;
  align-items: center;
  background: var(--c-white-04);
  border: 1px solid var(--c-white-08);
  border-radius: var(--r-md);
  padding: 18px 24px;
  transition: all var(--t-mid) var(--ease-out);
}

.level-row:hover {
  border-color: rgba(0,212,255,0.2);
  background: rgba(0,212,255,0.03);
  transform: translateX(6px);
}

.level-row.gold-row {
  border-color: rgba(240,200,64,0.2);
  background: rgba(240,200,64,0.015);
}

.level-row.gold-row:hover {
  border-color: rgba(240,200,64,0.4);
  background: rgba(240,200,64,0.03);
}

.lv-badge {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
}

.lv-0 { background: rgba(100,120,155,0.12); color: #7a9acc; }
.lv-1 { background: rgba(100,180,255,0.1);  color: #64b4ff; }
.lv-2 { background: rgba(0,212,255,0.1);    color: var(--c-cyan); }
.lv-3 { background: rgba(0,220,190,0.1);    color: #00dcc8; }
.lv-4 { background: rgba(120,230,100,0.1);  color: #78e664; }
.lv-5 { background: rgba(240,200,64,0.12);  color: var(--c-gold); }

.lv-bar-area { display: flex; flex-direction: column; gap: 6px; }

.lv-pct { font-size: 13px; font-weight: 700; }

.lv-track {
  height: 4px;
  background: var(--c-white-08);
  border-radius: 2px;
  overflow: hidden;
}

.lv-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--c-accent), var(--c-cyan));
  border-radius: 2px;
  width: 0%;
  transition: width 1.4s var(--ease-out);
}

.gold-row .lv-fill {
  background: linear-gradient(90deg, #c88000, var(--c-gold));
}

.lv-earnings { text-align: right; }

.lv-monthly { font-size: 18px; font-weight: 800; }
.lv-daily { font-size: 12px; color: var(--c-white-40); }
.gold-row .lv-monthly { color: var(--c-gold); }

/* Device earnings grid */
.dev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 40px;
}

.dev-card {
  background: var(--c-white-04);
  border: 1px solid var(--c-white-08);
  border-radius: var(--r-md);
  padding: 24px;
  transition: all var(--t-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.dev-card:hover {
  border-color: rgba(0,212,255,0.25);
  transform: translateY(-3px);
}

.dev-card.gold-dev { border-color: rgba(240,200,64,0.15); }
.dev-card.gold-dev:hover { border-color: rgba(240,200,64,0.35); }

.dev-device { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--c-cyan); margin-bottom: 8px; }
.gold-dev .dev-device { color: var(--c-gold); }

.dev-monthly-val { font-size: 28px; font-weight: 900; margin-bottom: 4px; }
.gold-dev .dev-monthly-val { color: var(--c-gold); }

.dev-daily-val { font-size: 12px; color: var(--c-white-40); }

/* ── CALCULATOR ── */
#calculator { background: var(--c-bg2); }

.calc-box {
  max-width: 860px;
  margin: 0 auto;
  background: var(--c-white-04);
  border: 1px solid var(--c-white-08);
  border-radius: var(--r-xl);
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.calc-box::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-cyan), transparent);
}

.calc-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 40px 0;
}

.calc-field label {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-white-40);
  margin-bottom: 12px;
}

.calc-select,
.calc-range {
  width: 100%;
  background: var(--c-white-04);
  border: 1px solid var(--c-white-08);
  border-radius: var(--r-md);
  padding: 14px 20px;
  color: var(--c-white);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--t-mid);
  -webkit-appearance: none;
  appearance: none;
}

.calc-select:focus, .calc-range:focus {
  border-color: var(--c-cyan);
}

.calc-range {
  padding: 0;
  border: none;
  background: transparent;
  height: 44px;
  cursor: pointer;
  accent-color: var(--c-cyan);
}

.calc-result {
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(26,107,204,0.06));
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: var(--r-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.calc-val { font-size: 32px; font-weight: 900; color: var(--c-cyan); }
.calc-lbl { font-size: 12px; color: var(--c-white-40); margin-top: 4px; letter-spacing: 1px; }

/* ═══ CALCULATOR COMMISSION BAR ═══ */
.calc-commission-wrap {
  margin: 28px 0 20px;
  padding: 0 4px;
}
.calc-comm-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.calc-comm-label strong {
  color: var(--c-cyan, #00d4ff);
  font-weight: 700;
}
.calc-comm-track {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: visible;
  position: relative;
}
.calc-comm-fill {
  height: 100%;
  width: 80%;
  background: linear-gradient(90deg, #1a4dcc, #00d4ff);
  border-radius: 2px;
  position: relative;
  transition: none; /* GSAP handles */
}
.calc-comm-glow {
  position: absolute;
  right: -2px;
  top: -3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-cyan, #00d4ff);
  box-shadow: 0 0 12px var(--c-cyan, #00d4ff);
  pointer-events: none;
}
.calc-val {
  will-change: transform;
  display: inline-block;
}

/* ── WHY / NETWORK ── */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.why-items { display: flex; flex-direction: column; }

.why-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--c-white-08);
  transition: border-color var(--t-mid);
}

.why-item:first-child { border-top: 1px solid var(--c-white-08); }
.why-item:hover { border-color: rgba(0,212,255,0.2); }

.why-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(0,212,255,0.05);
  border: 1px solid rgba(0,212,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--c-cyan);
  transition: all var(--t-mid);
  flex-shrink: 0;
}

.why-item:hover .why-num {
  background: rgba(0,212,255,0.1);
  border-color: rgba(0,212,255,0.4);
  box-shadow: 0 0 20px rgba(0,212,255,0.2);
}

.why-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-text {
  font-size: 14px;
  color: var(--c-white-40);
  line-height: 1.7;
}

#why-canvas {
  width: 100%;
  height: 520px;
  border-radius: var(--r-xl);
  display: block;
  border: 1px solid var(--c-white-08);
}

/* ═══ WHY ORB CANVAS ═══ */
.why-canvas-wrap {
  position: relative;
}
.why-orb-canvas {
  position: absolute;
  inset: -25%;
  width: 150%;
  height: 150%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  border-radius: 50%;
}
#why-canvas {
  position: relative;
  z-index: 1;
}

/* ── TEAM ── */
#team { background: var(--c-bg2); }

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 940px;
  margin: 64px auto 0;
}

.team-card {
  background: var(--c-white-04);
  border: 1px solid var(--c-white-08);
  border-radius: var(--r-xl);
  padding: 52px 44px;
  transition: all var(--t-mid) var(--ease-out);
  transform-style: preserve-3d;
}

.team-card:hover {
  border-color: rgba(0,212,255,0.2);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  transform: translateY(-6px);
}

.team-av-wrap { position: relative; width: 80px; margin-bottom: 24px; }

.team-av {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent), var(--c-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -2px;
  position: relative;
  z-index: 1;
}

.team-av-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--c-accent), var(--c-cyan), var(--c-accent));
  z-index: 0;
  animation: spin-orb 4s linear infinite;
  opacity: 0;
  transition: opacity var(--t-mid);
}

.team-card:hover .team-av-ring { opacity: 1; }

.team-name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}

.team-role {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-cyan);
  margin-bottom: 28px;
}

.team-bio {
  font-size: 14px;
  color: var(--c-white-40);
  line-height: 1.75;
}

.team-bio strong { color: var(--c-white-60); font-weight: 600; }

/* ═══ TESTIMONIALS CINEMATIC ═══ */
.testimony-hero-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}
.testimony-hero-wrap::after {
  content: '';
  position: absolute;
  left: -200%;
  top: 50%;
  width: 600%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,212,255,0.1) 30%, rgba(0,212,255,0.2) 50%, rgba(0,212,255,0.1) 70%, transparent 100%);
  transform: translateY(-50%);
  animation: ts-sweep 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ts-sweep {
  0%   { left: -200%; }
  100% { left: 200%; }
}

/* Cinematic secondary cards */
.ts-cinematic {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ts-cinematic .ts-card {
  display: grid;
  grid-template-columns: 60px 1fr 120px;
  align-items: center;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}
.ts-cinematic .ts-quote {
  font-size: clamp(15px, 1.8vw, 20px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}
.ts-cinematic .ts-author {
  text-align: right;
}

/* ── FAQ ── */
.faq-list {
  max-width: 820px;
  margin: 64px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--c-white-04);
  border: 1px solid var(--c-white-08);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-mid);
}

.faq-item.open {
  border-color: rgba(0,212,255,0.2);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  gap: 20px;
  transition: color var(--t-fast);
}

.faq-q:hover { color: var(--c-cyan); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--c-white-20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: all var(--t-mid) var(--ease-out);
  color: var(--c-cyan);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--c-cyan);
  background: rgba(0,212,255,0.1);
}

.faq-a {
  height: 0;
  overflow: hidden;
  transition: height var(--t-mid) var(--ease-out);
}

.faq-a-inner {
  padding: 0 28px 28px;
  font-size: 14px;
  color: var(--c-white-40);
  line-height: 1.75;
}

/* ── CTA ── */
#cta { position: relative; overflow: hidden; }

.cta-orb1, .cta-orb2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: orb-float 8s ease-in-out infinite;
}

.cta-orb1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,255,0.07) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.cta-orb2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(26,107,204,0.1) 0%, transparent 70%);
  bottom: 10%; right: 20%;
  animation-delay: -3s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.08); }
}

.cta-box {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(0,212,255,0.1);
  border-radius: 40px;
  padding: 96px 72px;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 25%; right: 25%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-cyan), transparent);
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 560px;
  margin: 52px auto 16px;
  flex-wrap: wrap;
}

.cta-input {
  flex: 1;
  min-width: 220px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-white-20);
  border-radius: var(--r-full);
  padding: 17px 28px;
  color: var(--c-white);
  font-size: 15px;
  outline: none;
  transition: border-color var(--t-mid), box-shadow var(--t-mid);
}

.cta-input::placeholder { color: var(--c-white-40); }

.cta-input:focus {
  border-color: var(--c-cyan);
  box-shadow: 0 0 25px rgba(0,212,255,0.15);
}

.cta-note {
  font-size: 12px;
  color: var(--c-white-40);
}

/* ═══ CTA PARTICLE FIELD ═══ */
.cta-particle-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.cta-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: cta-pfloat var(--dur, 8s) var(--delay, 0s) ease-in-out infinite;
  opacity: 0;
}
@keyframes cta-pfloat {
  0%   { opacity: 0;   transform: translate(var(--x0), var(--y0)) scale(0.4); }
  20%  { opacity: 0.5; }
  80%  { opacity: 0.3; }
  100% { opacity: 0;   transform: translate(var(--x1), var(--y1)) scale(1.2); }
}

/* Animated energy grid on CTA box */
.cta-box {
  position: relative;
  overflow: hidden;
}
.cta-energy-grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(0,212,255,0.025) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(0,212,255,0.025) 60px);
  background-size: 60px 60px;
  animation: cta-grid-drift 10s linear infinite;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}
@keyframes cta-grid-drift {
  from { background-position: 0 0; }
  to   { background-position: 60px 60px; }
}
.cta-box > *:not(.cta-energy-grid) {
  position: relative;
  z-index: 1;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--c-white-08);
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-copy { font-size: 13px; color: var(--c-white-40); }

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 13px;
  color: var(--c-white-40);
  transition: color var(--t-fast);
}

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

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .products-intro { grid-template-columns: 1fr; gap: 40px; }
  .brand-grid { grid-template-columns: 1fr; gap: 60px; }
  .earnings-layout { grid-template-columns: 1fr; gap: 60px; }
  .why-layout { grid-template-columns: 1fr; gap: 60px; }
  .team-grid { grid-template-columns: 1fr; max-width: 500px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  #nav { padding: 18px 24px; }
  #nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  footer { padding: 40px 24px; }
}

@media (max-width: 640px) {
  .brand-cards { grid-template-columns: 1fr; }
  .dev-grid { grid-template-columns: 1fr; }
  .calc-controls { grid-template-columns: 1fr; }
  .calc-result { grid-template-columns: 1fr; }
  .cta-box { padding: 60px 28px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .product-card { width: 300px; }
}

/* ── ACT 1 — IL PROBLEMA (vibe-cinematic-narrative) ── */
.act-section {
  position: relative;
  overflow: hidden;
}

.act-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(255,68,68,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(255,107,53,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.act-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,68,68,0.08);
  border: 1px solid rgba(255,68,68,0.2);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 8px;
}

.act-num {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  color: rgba(255,68,68,0.8);
}

.act-sep { color: var(--c-white-40); font-size: 12px; }

.act-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--c-white-60);
  text-transform: uppercase;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.problem-card {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: border-color var(--t-med), transform var(--t-med);
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,68,68,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--t-med);
}

.problem-card:hover { border-color: rgba(255,68,68,0.2); transform: translateY(-6px); }
.problem-card:hover::before { opacity: 1; }

.problem-card--center {
  border-color: rgba(255,107,53,0.15);
  background: rgba(255,107,53,0.03);
}

.problem-card--center::before {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,107,53,0.08) 0%, transparent 70%);
}

.problem-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  color: rgba(255,68,68,0.6);
}

.problem-card--center .problem-icon { color: rgba(255,107,53,0.7); }

.problem-icon svg { width: 100%; height: 100%; }

.problem-stat {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.problem-card--center .problem-stat {
  background: linear-gradient(135deg, #ff9a56 0%, #ff6b35 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.problem-stat span {
  font-size: 28px;
  font-weight: 700;
  margin-left: 4px;
}

.problem-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--c-white-80);
  line-height: 1.5;
  margin-bottom: 12px;
}

.problem-sub {
  font-size: 11px;
  color: var(--c-white-30);
  letter-spacing: 0.5px;
}

.act-transition {
  display: flex;
  align-items: center;
  gap: 24px;
}

.act-transition-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.2), transparent);
}

.act-transition-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-white-40);
  letter-spacing: 1px;
  white-space: nowrap;
  font-style: italic;
}

@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* ── ACT BADGE COLOR VARIANTS ── */
.act-badge--blue {
  background: rgba(0,212,255,0.06);
  border-color: rgba(0,212,255,0.15);
}

.act-badge--gold {
  background: rgba(255,183,0,0.06);
  border-color: rgba(255,183,0,0.15);
}

/* ── URGENCY BAR (vibe-copywriter) ── */
.urgency-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,229,160,0.06);
  border: 1px solid rgba(0,229,160,0.2);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 28px;
}

.urgency-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00e5a0;
  box-shadow: 0 0 0 0 rgba(0,229,160,0.4);
  animation: urgency-ping 1.5s ease-out infinite;
  flex-shrink: 0;
}

@keyframes urgency-ping {
  0%   { box-shadow: 0 0 0 0 rgba(0,229,160,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(0,229,160,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,229,160,0); }
}

.urgency-text {
  font-size: 13px;
  color: rgba(0,229,160,0.9);
  letter-spacing: 0.3px;
}

.urgency-text strong { font-weight: 700; }

/* ── MICRO PROOF (vibe-copywriter) ── */
.micro-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin: 24px auto 32px;
  max-width: 520px;
}

.micro-proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-white-60);
}

.micro-proof-icon {
  color: #00e5a0;
  font-size: 14px;
  font-weight: 700;
}

/* ═══ ORB COMPANION (hero 3D orb follows scroll) ═══ */
#orb-companion {
  position: fixed;
  right: 3vw;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(120px, 12vw, 200px);
  height: clamp(120px, 12vw, 200px);
  border-radius: 50%;
  z-index: 80;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
  will-change: opacity;
}
#orb-companion.orb-visible {
  opacity: 1;
}
@media (max-width: 900px) {
  #orb-companion { display: none; }
}

/* Hide old device protagonist when orb-companion is active */
#orb-companion.orb-visible ~ #device-protagonist,
body:has(#orb-companion.orb-visible) #device-protagonist {
  opacity: 0 !important;
}
#device-protagonist {
  transition: opacity 0.8s ease;
}
