/* =============================================
   IMPACT THEORY STYLE — Bold, Cinematic, Rich
   ============================================= */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-deep: #06060e;
  --bg-section: #0b0b18;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-border: rgba(255, 255, 255, 0.06);
  --bg-card-hover: rgba(255, 255, 255, 0.06);

  --white: #ffffff;
  --text: #c8c8d4;
  --muted: #9898ac;

  /* Impact-style vivid palette */
  --red: #e63946;
  --blue: #4361ee;
  --purple: #7b2ff7;
  --cyan: #00d4ff;
  --gold: #f4a261;
  --green: #25d366;
  --green-light: #4ade80;
  --red-light: #f87171;

  --font: 'Heebo', sans-serif;
  --max-w: 1140px;
}

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

body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.75;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

/* ===== GLOBAL TYPOGRAPHY ===== */
h1, h2, h3, h4 { color: var(--white); font-weight: 900; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
strong { color: var(--white); font-weight: 700; }
.muted { color: var(--muted); }

.gradient-text {
  background: linear-gradient(135deg, var(--red), var(--purple), var(--cyan));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ===== SECTION SYSTEM ===== */
.section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.section--alt { background: var(--bg-section); }

.section-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 97, 238, 0.12) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  pointer-events: none;
}

.section-glow--right {
  left: auto;
  right: -200px;
  background: radial-gradient(circle, rgba(123, 47, 247, 0.10) 0%, transparent 70%);
}

.section-heading {
  text-align: center;
  margin-bottom: 72px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  position: relative;
}

.section-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--purple));
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: rgba(10, 10, 22, 0.72);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s ease;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(var(--svc-color, 67, 97, 238), 0.08);
  transform: translateY(-6px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 44px;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 800;
  font-family: var(--font);
  text-decoration: none;
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
  transition: all 0.35s ease;
  position: relative;
}

.btn--wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.25);
}

.btn--wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.12);
}

.btn--outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.1);
}

.btn--primary {
  background: linear-gradient(135deg, var(--red), var(--purple));
  color: #fff;
  box-shadow: 0 6px 30px rgba(230, 57, 70, 0.25);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(230, 57, 70, 0.4);
}

.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BADGE ===== */
.badge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.2);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 36px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

/* ========================================
   SCROLL VIDEO HERO
   ======================================== */
.video-hero {
  position: relative;
  /* 5x viewport = scrollable runway for video scrubbing */
  height: 500vh;
}

.video-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-sticky video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 14, 0.55);
  pointer-events: none;
  z-index: 1;
}

/* Text layers on top of video */
.video-text-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 32px;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}

.video-text-layer h1 {
  max-width: 900px;
  margin-bottom: 0;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

.video-text-layer h2 {
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
  text-transform: none;
  letter-spacing: 0;
}

.video-lead {
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 24px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

.video-body {
  font-size: 1.2rem;
  color: var(--text);
  max-width: 700px;
  line-height: 1.9;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.check-list--video {
  text-align: right;
  max-width: 500px;
}

.check-list--video li {
  font-size: 1.15rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* Scroll hint arrow */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.7;
  animation: bounceHint 2s ease-in-out infinite;
  transition: opacity 0.4s ease;
}

.scroll-hint.hidden { opacity: 0; pointer-events: none; }

@keyframes bounceHint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Orbs reused in final CTA */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.3) 0%, transparent 70%);
  top: -20%;
  right: -10%;
}

.hero-orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(67, 97, 238, 0.25) 0%, transparent 70%);
  bottom: -10%;
  left: -10%;
  animation-delay: -4s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Desire block */
.desire {
  max-width: 700px;
  margin: 56px auto;
  padding: 44px;
  text-align: right;
  border-color: rgba(123, 47, 247, 0.15);
  background: rgba(123, 47, 247, 0.04);
}

.desire h2 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  text-transform: none;
  letter-spacing: 0;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  padding-right: 36px;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.7;
}

.check-list li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 6px;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--red), var(--purple));
  opacity: 0.15;
}

.check-list li::after {
  content: '✓';
  position: absolute;
  right: 4px;
  top: 1px;
  color: var(--cyan);
  font-weight: 800;
  font-size: 0.8rem;
}

.desire-close {
  margin-top: 24px;
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 700;
}

/* CTA block */
.cta-block { margin-top: 56px; }
.cta-lead { font-size: 1.2rem; color: var(--white); margin-bottom: 6px; font-weight: 600; }
.cta-sub { font-size: 0.95rem; color: var(--muted); margin-bottom: 28px; }

/* ===== EMYTH ===== */
.emyth-body {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.emyth-body p {
  font-size: 1.15rem;
  line-height: 2;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.85);
}

/* ===== IMAGINATION ===== */
.imagination .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.imagination-story {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* Each block animates in on scroll */
.imag-block {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.imag-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.imagination-line {
  font-size: 1.2rem;
  line-height: 2;
  color: rgba(255,255,255,0.82);
}

/* PIVOT */
.imag-pivot-wrap {
  position: relative;
  padding: 24px 0;
}

.imag-burst {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,47,247,0.5) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.3);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}
.imag-pivot-wrap.visible .imag-burst {
  opacity: 1;
  transform: scale(1);
}

.imagination-pivot {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

/* STATS with icons */
.imag-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.imag-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 20px 28px;
  text-align: right;
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.imag-block.visible .imag-stat:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.imag-block.visible .imag-stat:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.12s; }
.imag-block.visible .imag-stat:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.24s; }

.imag-stat-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(123,47,247,0.15), rgba(67,97,238,0.15));
  border: 1px solid rgba(123,47,247,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
}

.imag-stat p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  flex: 1;
}

/* Bad/Good contrast colors — animated lines */
.clr-bad, .clr-good {
  position: relative;
  display: inline-block;
}

.clr-bad  { color: var(--red-light); }
.clr-good { color: var(--green-light); font-size: 1.2em; }

/* Strikethrough on bad */
.clr-bad::after {
  content: '';
  position: absolute;
  top: 52%;
  right: 0; left: 0;
  height: 2.5px;
  background: var(--red-light);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Underline on good */
.clr-good::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 0; left: 0;
  height: 2.5px;
  background: var(--green-light);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

/* Triggered when parent stat is in view */
.imag-stat.lines-visible .clr-bad::after,
.imag-stat.lines-visible .clr-good::after {
  transform: scaleX(1);
}

/* CLOSE with glow */
.imag-close-wrap {
  position: relative;
}

.imag-close-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 400px; height: 200px;
  background: radial-gradient(ellipse, rgba(0,212,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: transform 1s ease;
}
.imag-close-wrap.visible .imag-close-glow {
  transform: translate(-50%, -50%) scale(1);
}

.imagination-close {
  font-size: 1.15rem;
  line-height: 2;
  color: rgba(255,255,255,0.8);
  position: relative;
  z-index: 1;
}

/* — ORBIT — */
.orbit-system {
  position: relative;
  width: 480px;
  height: 480px;
  margin: 56px auto 52px;
}

.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.orbit-ring--outer {
  width: 460px; height: 460px;
  border: 1px solid rgba(255,255,255,0.04);
}
.orbit-ring--mid {
  width: 360px; height: 360px;
  border: 1px dashed rgba(123,47,247,0.15);
  animation: ring-spin 50s linear infinite;
}
.orbit-ring--inner {
  width: 190px; height: 190px;
  border: 1px solid rgba(67,97,238,0.18);
  animation: ring-spin 25s linear infinite reverse;
}

@keyframes ring-spin {
  to { transform: translate(-50%,-50%) rotate(360deg); }
}

.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.orbit-pulse {
  position: absolute;
  top: 50%; left: 50%;
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(123,47,247,0.5);
  animation: pulse-expand 2.8s ease-out infinite;
  transform: translate(-50%, -50%);
}
.orbit-pulse--2 { animation-delay: 1.4s; }

@keyframes pulse-expand {
  0%   { transform: translate(-50%,-50%) scale(1);   opacity: 0.7; }
  100% { transform: translate(-50%,-50%) scale(2.6); opacity: 0; }
}

.orbit-core {
  width: 118px; height: 118px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7b2ff7, #4361ee);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 50px rgba(123,47,247,0.55),
    0 0 120px rgba(123,47,247,0.2),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

.orbit-arm {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  animation: arm-fwd 24s linear infinite;
  animation-delay: calc(var(--idx) * -4s);
}

.orbit-node {
  position: absolute;
  left: 210px;
  top: -18px;
  padding: 9px 20px;
  border-radius: 30px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  border: 1px solid var(--clr);
  color: var(--clr);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 0 18px color-mix(in srgb, var(--clr) 25%, transparent);
  animation: arm-rev 24s linear infinite;
  animation-delay: calc(var(--idx) * -4s);
}

@keyframes arm-fwd { to { transform: rotate(360deg); } }
@keyframes arm-rev { to { transform: rotate(-360deg); } }

/* — BEFORE / AFTER — */
.before-after {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 680px;
  margin: 0 auto 64px;
}

.ba-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.ba-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.ba-label--glow { color: var(--cyan); }

.ba-stat {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.05);
}
.ba-stat--glow {
  color: var(--white);
  background: linear-gradient(135deg, rgba(123,47,247,0.1), rgba(67,97,238,0.1));
  border-color: rgba(123,47,247,0.3);
}

.ba-count {
  font-size: 1.4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.4);
}
.ba-count--glow { color: var(--cyan); }

.ba-divider { flex-shrink: 0; opacity: 0.9; }

.big-statement {
  font-size: 2rem !important;
  font-weight: 800;
  color: var(--white);
  margin-top: 32px !important;
  line-height: 1.4;
}

/* ===== SERVICE VIDEO ===== */
.service-video-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.service-video-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 0 0 1px rgba(123, 47, 247, 0.12),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 50px rgba(67, 97, 238, 0.07);
  background: #000;
}

.service-video {
  width: 100%;
  display: block;
  border-radius: 20px;
}

/* End-of-video text overlay */
.service-video-end-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  padding: 24px;
  background: rgba(6, 6, 14, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.7s ease;
  letter-spacing: -0.01em;
  line-height: 1.3;
  pointer-events: none;
  border-radius: 20px;
}

.service-video-end-text.visible {
  opacity: 1;
}


/* ===== SERVICES ===== */
.group-label {
  font-size: 0.9rem;
  color: var(--cyan);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 32px;
  margin-top: 64px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.group-label::before,
.group-label::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}

.service {
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Accent color vars per card */
.svc--purple { --svc-color: var(--purple); --svc-grad: linear-gradient(90deg, var(--purple), var(--blue)); }
.svc--blue   { --svc-color: var(--blue);   --svc-grad: linear-gradient(90deg, var(--blue), var(--cyan)); }
.svc--red    { --svc-color: var(--red);    --svc-grad: linear-gradient(90deg, var(--red), var(--purple)); }
.svc--cyan   { --svc-color: var(--cyan);   --svc-grad: linear-gradient(90deg, var(--cyan), var(--blue)); }

/* Top accent bar */
.svc-accent-bar {
  height: 3px;
  background: var(--svc-grad);
  width: 100%;
  flex-shrink: 0;
}

/* Corner glow */
.service::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--svc-color), transparent 70%);
  opacity: 0.07;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.service:hover::before {
  opacity: 0.14;
}

/* Large ghost number */
.svc-num {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--svc-color);
  opacity: 0.12;
  padding: 32px 32px 0;
  transition: opacity 0.4s ease;
}

.service:hover .svc-num {
  opacity: 0.22;
}

.service h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 12px 32px 10px;
  color: var(--white);
}

.service p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 32px 32px;
  flex: 1;
}

/* ===== SVC-CARD — new service cards grid ===== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.svc-card {
  --clr: var(--purple);
  position: relative;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
}

.svc-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--clr) 40%, transparent);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--clr) 18%, transparent);
}

/* Per-card color tokens */
.svc-card--purple { --clr: var(--purple); }
.svc-card--blue   { --clr: var(--blue); }
.svc-card--red    { --clr: var(--red); }
.svc-card--cyan   { --clr: var(--cyan); }

/* Top accent bar */
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr), transparent);
  opacity: 0.8;
}

/* Inner padding */
.svc-card-inner {
  position: relative;
  z-index: 1;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

/* Icon container */
.svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--clr) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--clr) 28%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr);
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.svc-card:hover .svc-icon {
  background: color-mix(in srgb, var(--clr) 22%, transparent);
}

/* Ghost number */
.svc-card-num {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--clr);
  opacity: 0.1;
  position: absolute;
  top: 20px;
  left: 24px;
  pointer-events: none;
  transition: opacity 0.35s ease;
  font-variant-numeric: tabular-nums;
}

.svc-card:hover .svc-card-num {
  opacity: 0.2;
}

.svc-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}

.svc-card-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
  flex: 1;
}

/* Bottom tag */
.svc-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr);
  background: color-mix(in srgb, var(--clr) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--clr) 22%, transparent);
  border-radius: 999px;
  padding: 4px 12px;
  align-self: flex-start;
  margin-top: auto;
}

/* Glow orb — hover effect */
.svc-card-glow {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at 120% -20%, color-mix(in srgb, var(--clr) 18%, transparent) 0%, transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.svc-card:hover .svc-card-glow {
  opacity: 1;
}

/* ===== TEACH — sticky video bg + cards scroll over ===== */
.teach-section {
  position: relative;
}

/* Sticky wrapper: video stays in view while cards scroll */
.teach-bg-wrap {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}

.teach-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.teach-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(6,6,14,0.94) 0%,
    rgba(6,6,14,0.82) 40%,
    rgba(6,6,14,0.3) 70%,
    rgba(6,6,14,0.05) 100%
  );
}

/* Content overlays video (pulled up over the sticky bg) */
.teach-container {
  position: relative;
  z-index: 2;
  margin-top: -100vh;
  padding: 80px 0 100px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Cards only occupy the left ~55% so superhero is visible on right */
.teach-grid {
  width: 58%;
  margin-right: auto;
}

/* Cards hidden until video triggers reveal */
.teach-container.hidden .group-label,
.teach-container.hidden .teach-grid .glass-card {
  opacity: 0;
  transform: translateX(-40px);
}
.teach-container .group-label,
.teach-container .teach-grid .glass-card {
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.teach-container .teach-grid .glass-card:nth-child(1) { transition-delay: 0s; }
.teach-container .teach-grid .glass-card:nth-child(2) { transition-delay: 0.12s; }
.teach-container .teach-grid .glass-card:nth-child(3) { transition-delay: 0.24s; }
.teach-container .teach-grid .glass-card:nth-child(4) { transition-delay: 0.36s; }

@media (max-width: 860px) {
  .teach-bg-wrap { position: relative; height: 50vh; }
  .teach-container { margin-top: 0; min-height: auto; }
  .teach-grid { width: 100%; }
  .teach-bg-overlay { background: rgba(6,6,14,0.85); }
}

/* ===== WHY ME ===== */
.why-me-story {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}

.why-me-story p {
  font-size: 1.15rem;
  line-height: 2;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.credential-item {
  padding: 20px 28px;
  padding-right: 54px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 14px;
  font-size: 0.93rem;
  position: relative;
  transition: all 0.3s ease;
  line-height: 1.6;
}

.credential-item::before {
  content: '✓';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  font-weight: 800;
  color: var(--cyan);
}

.credential-item:hover {
  border-color: rgba(0, 212, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(-4px);
}

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

/* ===== CREDENTIAL HERO — featured banner above grid ===== */
.credential-hero {
  position: relative;
  margin-bottom: 20px;
  padding: 28px 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(230,57,70,0.08) 0%, rgba(123,47,247,0.08) 100%);
  border: 1px solid rgba(230,57,70,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  overflow: hidden;
}

.credential-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(230,57,70,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.credential-hero-text {
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* Hearts */
.credential-hearts {
  display: flex;
  gap: 6px;
  align-items: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.heart-icon {
  width: 22px;
  height: 22px;
  color: var(--red);
  animation: heartbeat 1.4s ease-in-out infinite;
}

.heart-icon--2 {
  width: 28px;
  height: 28px;
  animation-delay: 0.15s;
}

.heart-icon--3 {
  width: 20px;
  height: 20px;
  animation-delay: 0.3s;
  opacity: 0.7;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14%       { transform: scale(1.25); }
  28%       { transform: scale(1); }
  42%       { transform: scale(1.15); }
  56%       { transform: scale(1); }
}

/* ===== STEPS ===== */
.steps-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
}

.step {
  flex: 1;
  max-width: 320px;
  padding: 44px 32px;
  text-align: center;
  position: relative;
}

.step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--purple), var(--cyan));
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step:hover::after { opacity: 1; }

.step-num {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--red), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.step p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
}

.step-connector {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.step-connector span {
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(230, 57, 70, 0.4), rgba(0, 212, 255, 0.4));
  border-radius: 1px;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item[open] {
  border-color: rgba(67, 97, 238, 0.2);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.faq-item summary {
  padding: 22px 28px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cyan);
  transition: transform 0.4s ease;
  flex-shrink: 0;
  margin-right: 12px;
}

.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--cyan); }

.faq-item p {
  padding: 0 28px 22px;
  font-size: 0.95rem;
  line-height: 1.9;
}

/* ===== FINAL CTA ===== */
.final-cta {
  text-align: center;
  padding: 140px 0;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.final-cta .container { position: relative; z-index: 2; }

.final-cta h2 { margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.02em; }

.final-sub {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 40px;
  line-height: 1.8;
}

.guarantee {
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}

/* ===== FOOTER ===== */
.footer {
  padding: 36px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer p { font-size: 0.8rem; color: var(--muted); }

/* ===== CREDENTIAL FEATURED ===== */
.credential-featured {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 16px;
  padding: 22px 32px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(67,97,238,0.08) 0%, rgba(123,47,247,0.08) 100%);
  border: 1px solid rgba(67,97,238,0.25);
  position: relative;
  overflow: hidden;
}

.credential-featured::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--purple));
  border-radius: 0 16px 16px 0;
}

.credential-featured-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(67,97,238,0.2), rgba(123,47,247,0.2));
  border: 1px solid rgba(67,97,238,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.credential-featured-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.credential-featured-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

.credential-featured-name {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
}

.credential-featured-desc {
  font-size: 0.87rem;
  color: var(--muted);
}

/* ===== IMAGINATION HIGHLIGHTS ===== */
.time-arrived {
  font-size: 1.5em;
  color: var(--white);
  text-shadow:
    0 0 20px rgba(0, 212, 255, 0.8),
    0 0 40px rgba(0, 212, 255, 0.4),
    0 0 80px rgba(0, 212, 255, 0.2);
  animation: timeArrivedPulse 2.5s ease-in-out infinite;
}

@keyframes timeArrivedPulse {
  0%, 100% {
    text-shadow:
      0 0 20px rgba(0, 212, 255, 0.8),
      0 0 40px rgba(0, 212, 255, 0.4),
      0 0 80px rgba(0, 212, 255, 0.2);
  }
  50% {
    text-shadow:
      0 0 30px rgba(0, 212, 255, 1),
      0 0 60px rgba(0, 212, 255, 0.6),
      0 0 120px rgba(0, 212, 255, 0.3);
  }
}

.imag-question {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}

.imag-inside {
  color: #4ade80;
  font-weight: 900;
  text-shadow:
    0 0 12px rgba(74, 222, 128, 0.9),
    0 0 30px rgba(74, 222, 128, 0.5),
    0 0 60px rgba(74, 222, 128, 0.2);
  animation: insidePulse 2s ease-in-out infinite;
}

.imag-outside {
  color: #f87171;
  font-weight: 900;
  text-shadow:
    0 0 12px rgba(248, 113, 113, 0.9),
    0 0 30px rgba(248, 113, 113, 0.5),
    0 0 60px rgba(248, 113, 113, 0.2);
  animation: outsidePulse 2s ease-in-out infinite 0.5s;
}

@keyframes insidePulse {
  0%, 100% { text-shadow: 0 0 12px rgba(74,222,128,0.9), 0 0 30px rgba(74,222,128,0.5); }
  50%       { text-shadow: 0 0 20px rgba(74,222,128,1),   0 0 50px rgba(74,222,128,0.7), 0 0 80px rgba(74,222,128,0.3); }
}

@keyframes outsidePulse {
  0%, 100% { text-shadow: 0 0 12px rgba(248,113,113,0.9), 0 0 30px rgba(248,113,113,0.5); }
  50%       { text-shadow: 0 0 20px rgba(248,113,113,1),   0 0 50px rgba(248,113,113,0.7), 0 0 80px rgba(248,113,113,0.3); }
}

/* ===== STEPS V2 ===== */
.steps-v2 {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.steps-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(123,47,247,0.15) 20%, rgba(123,47,247,0.15) 80%, transparent);
  pointer-events: none;
}

.steps-v2-header {
  text-align: center;
  margin-bottom: 80px;
}

.steps-v2-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  position: relative;
}

.steps-v2-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--purple));
  margin: 20px auto 0;
  border-radius: 2px;
}

.steps-v2-sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: 8px;
}

.steps-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.step-v2 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

/* Connecting line between steps */
.step-v2-line {
  display: none; /* handled by pseudo on grid */
}

.steps-v2-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  right: 33.33%;
  left: 33.33%;
  height: 2px;
  background: linear-gradient(90deg, rgba(230,57,70,0.4), rgba(123,47,247,0.4), rgba(0,212,255,0.4));
  z-index: 0;
}

/* Step number circle */
.step-v2-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  background: rgba(10,10,22,0.9);
  border: 2px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
  flex-shrink: 0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.step-v2:nth-child(1) .step-v2-num {
  border-color: rgba(230,57,70,0.4);
  box-shadow: 0 0 24px rgba(230,57,70,0.2), inset 0 0 16px rgba(230,57,70,0.05);
  background: linear-gradient(135deg, rgba(230,57,70,0.12), rgba(10,10,22,0.9));
  color: #ff6b7a;
}

.step-v2:nth-child(2) .step-v2-num {
  border-color: rgba(123,47,247,0.5);
  box-shadow: 0 0 32px rgba(123,47,247,0.3), inset 0 0 20px rgba(123,47,247,0.08);
  background: linear-gradient(135deg, rgba(123,47,247,0.15), rgba(10,10,22,0.9));
  color: #a855f7;
  transform: scale(1.12);
}

.step-v2:nth-child(3) .step-v2-num {
  border-color: rgba(0,212,255,0.4);
  box-shadow: 0 0 24px rgba(0,212,255,0.2), inset 0 0 16px rgba(0,212,255,0.05);
  background: linear-gradient(135deg, rgba(0,212,255,0.12), rgba(10,10,22,0.9));
  color: #22d3ee;
}

.step-v2-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Icon above title */
.step-v2-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.step-v2:nth-child(1) .step-v2-icon { background: rgba(230,57,70,0.1); border: 1px solid rgba(230,57,70,0.2); color: #ff6b7a; }
.step-v2:nth-child(2) .step-v2-icon { background: rgba(123,47,247,0.1); border: 1px solid rgba(123,47,247,0.2); color: #a855f7; }
.step-v2:nth-child(3) .step-v2-icon { background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.2); color: #22d3ee; }

.step-v2-content h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.3;
}

.step-v2-content p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
}

/* Highlight step (02) */
.step-v2--highlight .step-v2-content {
  background: rgba(123,47,247,0.05);
  border: 1px solid rgba(123,47,247,0.15);
  border-radius: 20px;
  padding: 24px 20px;
  margin-top: 0;
}

.step-v2-badge {
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #a855f7;
  background: rgba(123,47,247,0.1);
  border: 1px solid rgba(123,47,247,0.25);
  border-radius: 999px;
  padding: 4px 14px;
  margin-top: 12px;
}

/* Step 3 path tags */
.step-v2-paths {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 10px 0;
}

.step-v2-path {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}

.step-v2-path--a { background: rgba(230,57,70,0.1); border: 1px solid rgba(230,57,70,0.25); color: #ff6b7a; }
.step-v2-path--b { background: rgba(123,47,247,0.1); border: 1px solid rgba(123,47,247,0.25); color: #a855f7; }
.step-v2-path--c { background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.25); color: #22d3ee; }

.steps-v2-cta {
  text-align: center;
  margin-top: 64px;
}

@media (max-width: 768px) {
  .steps-v2-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .steps-v2-grid::before { display: none; }
  .step-v2:nth-child(2) .step-v2-num { transform: none; }
}

/* ===== BRIDGE ===== */
.svc-bridge-section {
  position: relative;
  padding: 120px 0 140px;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(123,47,247,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(0,212,255,0.10) 0%, transparent 65%),
    linear-gradient(160deg, #0e0820 0%, #07071a 45%, #070d1e 100%);
  overflow: hidden;
  text-align: center;
}

.bridge-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  animation: bridgeOrb 8s ease-in-out infinite alternate;
}
.bridge-orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(123,47,247,0.28) 0%, transparent 70%);
  top: -150px; left: -120px;
  animation-delay: 0s;
}
.bridge-orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,255,0.18) 0%, transparent 70%);
  bottom: -100px; right: -80px;
  animation-delay: -4s;
}
@keyframes bridgeOrb {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.12); }
}

.bridge-inner {
  position: relative;
  z-index: 1;
}

.bridge-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 28px;
}

.bridge-headline {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.bridge-hl {
  background: linear-gradient(135deg, var(--red), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.bridge-hl::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 0; left: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--red), var(--purple));
  border-radius: 2px;
  opacity: 0.5;
}

.bridge-sub {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 36px;
}

.bridge-stats {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.bridge-stat {
  position: relative;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 2px solid var(--c);
  border-radius: 12px;
  text-align: center;
  min-width: 108px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.bridge-stat.visible {
  animation: statIn 0.55s cubic-bezier(0.34,1.56,0.64,1) both;
  animation-delay: var(--delay);
}
@keyframes statIn {
  from { opacity: 0; transform: translateY(20px) scale(0.94); }
  to   { opacity: 1; transform: none; }
}
.bridge-stat:hover {
  transform: translateY(-5px);
  border-color: var(--c);
  box-shadow: 0 8px 36px rgba(0,0,0,0.4), 0 0 24px color-mix(in srgb, var(--c) 30%, transparent);
}

/* Shimmer sweep */
.bstat-shimmer {
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  animation: bShimmer 3.5s ease-in-out infinite;
  animation-delay: var(--delay);
  pointer-events: none;
}
@keyframes bShimmer {
  0%      { left: -120%; }
  45%, 100% { left: 200%; }
}

/* --- SVG icons --- */
.bstat-svg {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
  overflow: visible;
}

/* ── Lightning bolt ── */
.bolt-body {
  fill: #00d4ff;
  animation: boltStrike 2.8s ease-in-out infinite;
}
@keyframes boltStrike {
  0%,50%   { fill:#4fc8e8; filter:drop-shadow(0 0 3px rgba(0,212,255,.4)); }
  55%      { fill:#fff;    filter:drop-shadow(0 0 2px #fff) drop-shadow(0 0 10px #00d4ff) drop-shadow(0 0 28px #00d4ff); }
  60%      { fill:#00d4ff; filter:drop-shadow(0 0 5px #00d4ff) drop-shadow(0 0 16px #00d4ff); }
  65%      { fill:#fff;    filter:drop-shadow(0 0 2px #fff) drop-shadow(0 0 20px #00d4ff); }
  70%,100% { fill:#4fc8e8; filter:drop-shadow(0 0 3px rgba(0,212,255,.4)); }
}

.bolt-spark {
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0;
  animation: sparkFlash 2.8s ease-in-out infinite;
}
.s2 { animation-delay: 0.04s; }
.s3 { animation-delay: 0.08s; }
@keyframes sparkFlash {
  0%,53%,72%,100% { opacity:0; }
  55%,60%,67%     { opacity:1; }
}

/* ── Coin / $0 ── */
.coin-ring {
  stroke: #f4a261;
  animation: coinRingPulse 2s ease-in-out infinite alternate;
}
@keyframes coinRingPulse {
  from { stroke: #f4a261; filter: drop-shadow(0 0 4px rgba(244,162,97,.5)); }
  to   { stroke: #ffd700; filter: drop-shadow(0 0 10px rgba(255,215,0,.8)); }
}
.coin-shine {
  stroke: rgba(255,255,255,0.5);
  stroke-linecap: round;
  animation: coinSpin 3s linear infinite;
}
@keyframes coinSpin {
  to { stroke-dashoffset: -220; }
}
.coin-text {
  font-family: 'Heebo', sans-serif;
  font-size: 13px;
  font-weight: 900;
  fill: #f4a261;
  animation: coinTextGlow 2s ease-in-out infinite alternate;
}
@keyframes coinTextGlow {
  from { fill:#f4a261; filter:drop-shadow(0 0 3px rgba(244,162,97,.5)); }
  to   { fill:#ffd700; filter:drop-shadow(0 0 8px rgba(255,215,0,.9)); }
}

/* ── Target + Arrow ── */
.tgt-r3, .tgt-r2 {
  stroke: #7b2ff7;
  animation: tgtRingPulse 3s ease-in-out infinite alternate;
}
.tgt-r2 { animation-delay: 0.2s; }
@keyframes tgtRingPulse {
  from { stroke: rgba(123,47,247,.5); }
  to   { stroke: rgba(180,100,255,.9); filter:drop-shadow(0 0 4px rgba(123,47,247,.6)); }
}
.tgt-r1 {
  fill: #7b2ff7;
  animation: tgtCenterPulse 3s ease-in-out infinite alternate;
}
@keyframes tgtCenterPulse {
  from { fill:#7b2ff7; filter:drop-shadow(0 0 4px rgba(123,47,247,.6)); }
  to   { fill:#c07aff; filter:drop-shadow(0 0 10px rgba(180,100,255,.9)); }
}
/* Hit ripple */
.tgt-hit {
  stroke: #c07aff;
  animation: tgtHit 3s ease-in-out infinite;
}
@keyframes tgtHit {
  0%,60%    { r:6;  stroke-width:3; opacity:.8; }
  80%,100%  { r:22; stroke-width:0; opacity:0;  }
}
/* Arrow — zooms in from top-left corner */
.tgt-arrow {
  stroke: #c07aff;
  fill: #c07aff;
  animation: arrowFly 3s ease-in-out infinite;
  transform-origin: 22px 22px;
}
@keyframes arrowFly {
  0%     { transform: translate(-18px,-18px); opacity:0; }
  25%    { transform: translate(-18px,-18px); opacity:0; }
  55%    { transform: translate(0,0);         opacity:1; }
  57%    { transform: translate(1px,1px);     opacity:1; } /* impact jolt */
  60%    { transform: translate(0,0);         opacity:1; }
  90%,100% { transform: translate(0,0);       opacity:1; }
}

/* Numbers */
.bstat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--c);
  line-height: 1;
  text-shadow: 0 0 16px var(--c);
}
.bstat-unit {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 4px;
}
.bstat-unit--free {
  font-size: 1.2rem;
  font-weight: 900;
  color: #f4a261;
  text-shadow: 0 0 16px rgba(244,162,97,0.5);
  margin-top: 2px;
}
.bstat-desc {
  font-size: 0.62rem;
  color: var(--muted);
  margin-top: 2px;
}

/* Gift SVG animation */
.bstat-svg--gift {
  animation: giftFloat 3s ease-in-out infinite;
}
@keyframes giftFloat {
  0%,100% { transform: translateY(0); filter: drop-shadow(0 0 4px rgba(244,162,97,0.3)); }
  50%      { transform: translateY(-3px); filter: drop-shadow(0 0 10px rgba(244,162,97,0.6)); }
}
.gift-bow {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: bowDraw 0.6s ease-out 0.4s forwards;
}
@keyframes bowDraw {
  to { stroke-dashoffset: 0; }
}

/* ===== GLOWING BEAM BUTTON ===== */
.bridge-beam-wrap {
  position: relative;
  display: inline-block;
}

.bridge-cta-btn {
  display: block;
  position: relative;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.35);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), inset 0 0 0 1px rgba(255,255,255,0.04);
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}

.bridge-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(6, 4, 16, 0.72);
  border-radius: 999px;
  padding: 18px 52px;
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  transition: background 200ms ease;
}

.bridge-cta-btn:hover { transform: translateY(-3px) scale(1.02); }
.bridge-cta-btn:hover .bridge-cta-inner { background: rgba(14, 8, 35, 0.82); }
.bridge-cta-btn:active { transform: scale(0.97); transition-duration: 80ms; }

.bridge-cta-arrow {
  font-size: 1.2rem;
  display: inline-block;
  transition: transform 200ms ease;
}
.bridge-cta-btn:hover .bridge-cta-arrow { transform: translateX(-4px); }

/* Orbital blob — injected by JS */
.beam-orbital {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  filter: blur(28px);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  will-change: left, top;
}

/* Particles — injected by JS */
.beam-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: ptFade var(--dur) var(--delay) ease-in-out infinite alternate;
  z-index: 2;
  box-shadow: 0 0 4px 1px currentColor;
}

@keyframes ptFade {
  0%   { opacity: 0;   transform: scale(0.4) translate(0, 0); }
  50%  { opacity: 1;   transform: scale(1)   translate(var(--dx, 2px), var(--dy, -3px)); }
  100% { opacity: 0;   transform: scale(0.4) translate(calc(var(--dx,2px)*2), calc(var(--dy,-3px)*2)); }
}

.bridge-micro {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* ===== AUDIT FORM ===== */
.audit-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(10, 10, 22, 0.72);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 48px 44px;
  position: relative;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.audit-form-wrap:focus-within {
  border-color: rgba(123, 47, 247, 0.3);
  box-shadow: 0 0 60px rgba(123, 47, 247, 0.08);
}

.audit-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: 0;
}

.audit-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

/* Progress dots */
.audit-progress {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.audit-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.4s ease;
}

.audit-dot.active {
  background: linear-gradient(135deg, var(--red), var(--purple));
  border-color: transparent;
  box-shadow: 0 0 12px rgba(230, 57, 70, 0.4);
  transform: scale(1.2);
}

.audit-dot.done {
  background: var(--cyan);
  border-color: transparent;
}

/* Steps */
.audit-step {
  display: none;
  animation: auditSlideIn 0.4s ease;
}

.audit-step.active {
  display: block;
}

@keyframes auditSlideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.audit-step-title {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: var(--cyan);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

/* Fields */
.audit-field {
  margin-bottom: 20px;
}

.audit-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.audit-form-wrap input[type="text"],
.audit-form-wrap input[type="email"],
.audit-form-wrap input[type="tel"],
.audit-form-wrap select,
.audit-form-wrap textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  direction: rtl;
}

.audit-form-wrap input:focus,
.audit-form-wrap select:focus,
.audit-form-wrap textarea:focus {
  border-color: rgba(123, 47, 247, 0.5);
  box-shadow: 0 0 20px rgba(123, 47, 247, 0.1);
}

.audit-form-wrap select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%239898ac' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  padding-left: 40px;
  color-scheme: dark;
}

.audit-form-wrap select option {
  background: #1a1a2e;
  color: #c8c8d4;
  padding: 10px;
}

.audit-form-wrap textarea {
  resize: vertical;
  min-height: 80px;
}

.audit-form-wrap input::placeholder,
.audit-form-wrap textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

/* Validation error */
.audit-field.error input,
.audit-field.error select,
.audit-field.error textarea {
  border-color: var(--red);
  box-shadow: 0 0 12px rgba(230, 57, 70, 0.15);
}

.audit-field .error-msg {
  display: none;
  font-size: 0.8rem;
  color: var(--red-light);
  margin-top: 6px;
}

.audit-field.error .error-msg {
  display: block;
}

/* Nav row */
.audit-nav-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.audit-nav-row .btn {
  flex: 1;
}

/* Success state */
.audit-success {
  text-align: center;
  padding: 20px 0;
}

.audit-check-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
}

.audit-check-svg {
  width: 64px;
  height: 64px;
}

.audit-check-circle {
  stroke: var(--cyan);
  stroke-width: 2;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  animation: checkCircle 0.6s ease forwards;
}

.audit-check-path {
  stroke: var(--cyan);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: checkMark 0.4s ease 0.5s forwards;
}

@keyframes checkCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes checkMark {
  to { stroke-dashoffset: 0; }
}

.audit-success h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  text-transform: none;
  letter-spacing: 0;
}

.audit-success p {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 8px;
}

.audit-success-sub {
  color: var(--muted);
  font-size: 0.9rem !important;
}

/* ===== CHALLENGES — DOORS ===== */
.challenges-pre {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.challenges { padding: 100px 0; }

.doors-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.door-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.door-for {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.03em;
  text-align: center;
  position: relative;
  padding-bottom: 12px;
}
.door-for::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--purple));
  border-radius: 2px;
  opacity: 0.5;
}

/* ── Scene: provides perspective ── */
.door-scene {
  perspective: 1600px;
  cursor: pointer;
  position: relative;
}
.door-scene--locked { cursor: default; }

/* Light behind door (visible when opening) */
.door-behind {
  position: absolute;
  inset: 4px;
  border-radius: 16px;
  background: radial-gradient(ellipse at center,
    #ffffff 0%,
    #bde0ff 18%,
    #4a9eff 40%,
    rgba(123,47,247,0.5) 65%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 600ms ease;
  pointer-events: none;
  filter: blur(10px);
}
/* Subtle light peek on hover (door-behind partially visible) */
.door-scene:not(.door-scene--locked):hover .door-behind {
  opacity: 0.35;
}
.door-behind--locked {
  background: radial-gradient(ellipse at center, rgba(67,97,238,0.4) 0%, rgba(0,212,255,0.15) 50%, transparent 75%);
}
.door-scene--opening .door-behind { opacity: 1; }

/* ── Registration Modal ── */
.reg-card {
  position: relative;
  width: 420px;
  max-width: 90vw;
  background: linear-gradient(165deg, #18163a 0%, #0f0d20 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 36px 32px 32px;
  overflow: hidden;
  animation: regCardIn 0.35s cubic-bezier(0.16,1,0.3,1) both;
  box-shadow:
    0 32px 100px rgba(0,0,0,0.5),
    0 0 0 1px rgba(123,47,247,0.12),
    0 0 80px rgba(123,47,247,0.08);
}
@keyframes regCardIn {
  from { transform: translateY(30px) scale(0.95); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

/* Glow orbs */
.reg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.25;
}
.reg-orb--1 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, #7b2ff7, transparent 70%);
  top: -80px; right: -60px;
}
.reg-orb--2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, #1d4ed8, transparent 70%);
  bottom: -50px; left: -50px;
}

/* Close button */
.reg-close {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
}
.reg-close:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* Content area */
.reg-content { position: relative; z-index: 1; }

/* Header */
.reg-header {
  text-align: center;
  margin-bottom: 24px;
}
.reg-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a78bfa;
  background: rgba(167,139,250,0.08);
  border: 1px solid rgba(167,139,250,0.18);
  border-radius: 999px;
  padding: 5px 16px;
  margin-bottom: 14px;
}
.reg-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: #a78bfa;
  border-radius: 50%;
  box-shadow: 0 0 8px #a78bfa;
  animation: regDotPulse 2s ease-in-out infinite;
}
@keyframes regDotPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.reg-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
}
.reg-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
  line-height: 1.5;
}

/* Form */
.reg-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.reg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.reg-field input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 14px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.reg-field input:focus {
  border-color: rgba(123,47,247,0.6);
  background: rgba(123,47,247,0.06);
  box-shadow: 0 0 0 3px rgba(123,47,247,0.12);
}
.reg-field input.error { border-color: rgba(255,80,80,0.5); }
.reg-field input::placeholder { color: rgba(255,255,255,0.25); }

/* Submit */
.reg-submit {
  position: relative;
  margin-top: 6px;
  background: linear-gradient(135deg, #7b2ff7 0%, #4f46e5 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(123,47,247,0.35);
}
.reg-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(123,47,247,0.45);
}
.reg-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
.reg-submit-arrow { font-size: 1.1rem; }
.reg-submit-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: skewX(-20deg);
  animation: regShine 3.5s ease-in-out infinite;
}
@keyframes regShine {
  0% { left: -100%; }
  40%,100% { left: 140%; }
}
.reg-micro {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.22);
  text-align: center;
  margin: 2px 0 0;
}

/* Success state */
.reg-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px 20px 12px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.reg-success-icon {
  width: 64px; height: 64px;
  background: rgba(52,211,153,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(52,211,153,0.2);
  animation: regSuccessPop 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes regSuccessPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.reg-success h4 { color: #fff; font-size: 1.3rem; margin: 0; font-weight: 700; }
.reg-success p { color: rgba(255,255,255,0.45); font-size: 0.88rem; margin: 0; line-height: 1.6; }
.reg-done-btn {
  margin-top: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  padding: 10px 32px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.reg-done-btn:hover { background: rgba(255,255,255,0.12); color: #fff; }

@media (max-width: 500px) {
  .reg-card { padding: 28px 20px 24px; }
  .reg-row { grid-template-columns: 1fr; }
  .reg-title { font-size: 1.3rem; }
}

/* ── The door card ── */
.door-card {
  position: relative;
  width: 290px;
  border-radius: 12px;
  /* Door wall color — dark steel */
  background: linear-gradient(160deg, #12101e 0%, #0a0818 60%, #0e0b1c 100%);
  /* Outer frame — the door frame itself */
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow:
    /* Outer frame highlight */
    inset 0 1px 0 rgba(255,255,255,0.15),
    inset -1px 0 0 rgba(255,255,255,0.05),
    /* Depth shadow */
    0 20px 60px rgba(0,0,0,0.6),
    0 4px 16px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 550ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 300ms ease;
  will-change: transform;
}

/* Hinge side determines open direction */
.door-card--1 { transform-origin: right center; }
.door-card--2 { transform-origin: right center; }
/* Door 03 hinge: same as door 01 (hinges right) */
.door-card--3 { transform-origin: right center; }
.door-scene--opening .door-card--1 {
  transform: perspective(1600px) rotateY(-82deg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), -30px 0 80px rgba(100,200,255,0.5), 0 0 60px rgba(255,255,255,0.2);
}
.door-scene--opening .door-card--2 {
  transform: perspective(1600px) rotateY(-82deg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), -30px 0 80px rgba(100,200,255,0.5), 0 0 60px rgba(255,255,255,0.2);
}

/* Hover — door fully opens + light pours through */
.door-scene:not(.door-scene--locked):hover .door-card--1 {
  transform: perspective(1600px) rotateY(-80deg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15),
    -30px 0 80px rgba(100,200,255,0.45),
    0 0 60px rgba(255,255,255,0.15);
}
.door-scene:not(.door-scene--locked):hover .door-card--2 {
  transform: perspective(1600px) rotateY(-80deg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15),
    -30px 0 80px rgba(100,200,255,0.45),
    0 0 60px rgba(255,255,255,0.15);
}
.door-scene:not(.door-scene--locked):hover .door-behind { opacity: 1; }

/* ── Enter CTA (revealed when door opens on hover) ── */
.door-enter-cta {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
  z-index: 2;
}
.door-scene:not(.door-scene--locked):hover .door-enter-cta {
  opacity: 1;
  pointer-events: auto;
  transition-delay: 280ms;
}
.door-enter-btn {
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.55);
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 999px;
  backdrop-filter: blur(14px);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.03em;
  box-shadow: 0 0 24px rgba(255,255,255,0.25), 0 0 48px rgba(100,200,255,0.2);
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}
.door-enter-btn:hover {
  background: rgba(255,255,255,0.25);
  transform: scale(1.06);
  box-shadow: 0 0 36px rgba(255,255,255,0.4), 0 0 70px rgba(100,200,255,0.3);
}

/* ── Scan line ── */
.door-scan {
  position: absolute;
  top: -2px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,212,255,0.6) 40%, rgba(180,100,255,0.8) 60%, transparent 100%);
  animation: doorScan 5s linear infinite;
  pointer-events: none;
  z-index: 20;
}
.door-card--1 .door-scan { background: linear-gradient(90deg, transparent, rgba(230,57,70,0.5), rgba(123,47,247,0.8), transparent); }
.door-card--2 .door-scan { background: linear-gradient(90deg, transparent, rgba(67,97,238,0.5), rgba(0,212,255,0.8), transparent); }
@keyframes doorScan {
  0%   { top: 0%;   opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 0.6; }
  100% { top: 100%; opacity: 0; }
}

/* ── Hinges ── */
.door-hinges {
  position: absolute;
  top: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 0;
  pointer-events: none;
  z-index: 15;
}
.door-hinges--right { right: -1px; }
.door-hinges--left  { left: -1px; }

.door-hinge {
  width: 14px;
  height: 32px;
  border-radius: 3px;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.04) 0%,
    rgba(255,255,255,0.18) 30%,
    rgba(200,200,220,0.25) 50%,
    rgba(255,255,255,0.1) 70%,
    rgba(255,255,255,0.03) 100%
  );
  border: 1px solid rgba(255,255,255,0.2);
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.door-hinge::before, .door-hinge::after {
  content: '';
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  box-shadow: 0 0 4px rgba(255,255,255,0.3);
}
.door-hinge::before { top: 5px; }
.door-hinge::after  { bottom: 5px; }

/* ── Knob ── */
.door-knob {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
}
.door-knob--left  { left: 16px; }
.door-knob--right { right: 16px; }

.door-knob-ring {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%,
    rgba(255,255,255,0.55) 0%,
    rgba(180,180,200,0.25) 40%,
    rgba(100,100,140,0.15) 100%
  );
  border: 1.5px solid rgba(255,255,255,0.3);
  box-shadow:
    0 2px 8px rgba(0,0,0,0.5),
    inset 0 1px 2px rgba(255,255,255,0.4),
    0 0 10px rgba(123,47,247,0.25);
  animation: knobGlow 3s ease-in-out infinite alternate;
}
.door-scene--locked .door-knob-ring { animation: none; }
@keyframes knobGlow {
  from { box-shadow: 0 2px 8px rgba(0,0,0,0.5), inset 0 1px 2px rgba(255,255,255,0.4), 0 0 8px rgba(123,47,247,0.2); }
  to   { box-shadow: 0 2px 8px rgba(0,0,0,0.5), inset 0 1px 2px rgba(255,255,255,0.4), 0 0 20px rgba(123,47,247,0.6), 0 0 40px rgba(123,47,247,0.2); }
}

/* ── Lock overlay ── */
.door-lock-overlay {
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  z-index: 20;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.door-lock-overlay span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
  text-transform: uppercase;
}

/* ── Door panels (the inset sections) ── */
.door-panel {
  margin: 14px 18px;
  border-radius: 8px;
  padding: 18px 20px;
  position: relative;
  /* Inset panel look — darker recess with subtle border */
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    inset 0 2px 6px rgba(0,0,0,0.5),
    inset 0 -1px 2px rgba(255,255,255,0.03),
    0 1px 0 rgba(255,255,255,0.06);
}
.door-panel--top {
  flex-shrink: 0;
  /* Top panel has colored accent edge */
  border-top: 1.5px solid transparent;
}
.door-card--1 .door-panel--top { border-top-color: rgba(230,57,70,0.5); }
.door-card--2 .door-panel--top { border-top-color: rgba(0,212,255,0.5); }
.door-card--3 .door-panel--top { border-top-color: rgba(244,162,97,0.35); }
.door-panel--bottom { flex: 1; }

/* Panel cross lines (decorative door detail) */
.door-panel::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 5px;
  pointer-events: none;
}

/* ── Panel divider (horizontal bar between panels) ── */
.door-panel-divider {
  height: 10px;
  margin: 0 8px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.door-panel-line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,255,255,0.1) 20%,
    rgba(255,255,255,0.18) 50%,
    rgba(255,255,255,0.1) 80%,
    transparent
  );
}

/* ── Content inside panels ── */
.door-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.door-status--open {
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  color: var(--green);
  animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
  50%      { box-shadow: 0 0 8px 2px rgba(37,211,102,0.2); }
}
.door-status--locked {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--muted);
}

.door-num {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.05;
  position: absolute;
  bottom: 10px; left: 14px;
  pointer-events: none; user-select: none;
  background: linear-gradient(135deg, var(--red), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.door-card--2 .door-num {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
}

.door-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 8px;
}
.door-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
  font-style: italic;
}

.door-outcomes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.door-outcomes li {
  font-size: 0.8rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.door-outcomes--locked li { opacity: 0.4; }

.doi {
  flex-shrink: 0;
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--purple);
  background: rgba(123,47,247,0.12);
  border: 1px solid rgba(123,47,247,0.25);
  border-radius: 4px;
  padding: 2px 6px;
  margin-top: 1px;
  letter-spacing: 0.04em;
}
.door-card--2 .doi {
  color: var(--cyan);
  background: rgba(0,212,255,0.08);
  border-color: rgba(0,212,255,0.2);
}

.door-meta {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.door-tag {
  font-size: 0.68rem; font-weight: 700;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 3px 10px;
  letter-spacing: 0.04em;
}
.door-tag--soon {
  color: var(--gold);
  background: rgba(244,162,97,0.08);
  border-color: rgba(244,162,97,0.2);
}
.door-tag--grit {
  color: var(--cyan);
  background: rgba(0,212,255,0.07);
  border-color: rgba(0,212,255,0.2);
}
.door-tag--visual {
  color: #c084fc;
  background: rgba(192,132,252,0.07);
  border-color: rgba(192,132,252,0.22);
  font-size: 0.65rem;
}

/* ── Footer ── */
.door-footer {
  padding: 14px 20px 18px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  flex-shrink: 0;
}
.door-cta {
  font-size: 0.88rem; font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color 200ms ease, letter-spacing 200ms ease;
}
.door-scene:not(.door-scene--locked):hover .door-cta {
  color: var(--cyan);
  letter-spacing: 0.05em;
}
.door-cta--locked { color: var(--muted); font-weight: 600; font-size: 0.8rem; }

.door-scene--locked .door-card { filter: brightness(0.65) saturate(0.4); }

/* knob glow for door 02 — cyan variant */
.door-card--2 .door-knob-ring {
  box-shadow: 0 2px 8px rgba(0,0,0,0.5), inset 0 1px 2px rgba(255,255,255,0.4), 0 0 10px rgba(0,212,255,0.25);
  animation: knobGlow2 3s ease-in-out infinite alternate;
}
@keyframes knobGlow2 {
  from { box-shadow: 0 2px 8px rgba(0,0,0,0.5), inset 0 1px 2px rgba(255,255,255,0.4), 0 0 8px rgba(0,212,255,0.2); }
  to   { box-shadow: 0 2px 8px rgba(0,0,0,0.5), inset 0 1px 2px rgba(255,255,255,0.4), 0 0 20px rgba(0,212,255,0.6), 0 0 40px rgba(0,212,255,0.2); }
}

/* knob glow for door 03 — gold/locked variant (no animation since locked) */
.door-card--3 .door-knob-ring {
  box-shadow: 0 2px 8px rgba(0,0,0,0.5), inset 0 1px 2px rgba(255,255,255,0.25), 0 0 6px rgba(244,162,97,0.15);
  animation: none;
}

/* ===== DOOR PORTAL TRANSITION — bright light burst ===== */
#doorPortal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  clip-path: circle(0px at 50% 50%);
  /* Bright light — white core, cyan mid, dark edge */
  background: radial-gradient(circle at var(--ox, 50%) var(--oy, 50%),
    #ffffff 0%,
    #e0f4ff 12%,
    #72c5ff 30%,
    #1a5fa8 55%,
    #07030f 80%,
    #000 100%
  );
  will-change: clip-path;
}
#doorPortal.expanding {
  transition: clip-path 500ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: all;
}
#doorPortal.full {
  clip-path: circle(150vmax at var(--ox) var(--oy));
}

/* White flash ring at portal origin */
.portal-glow {
  position: absolute;
  top: var(--oy, 50%);
  left: var(--ox, 50%);
  transform: translate(-50%, -50%) scale(0);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(180,230,255,0.4) 50%, transparent 75%);
  filter: blur(8px);
  opacity: 0;
  transition: transform 350ms ease-out, opacity 200ms ease;
}
#doorPortal.expanding .portal-glow {
  transform: translate(-50%, -50%) scale(4);
  opacity: 1;
}

/* Scan line inside portal */
#doorPortal::after {
  content: '';
  position: absolute;
  top: -2px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(180,100,255,0.8), rgba(0,212,255,0.6), transparent);
  opacity: 0;
  animation: portalScan 0.6s linear 3;
}
#doorPortal.full::after { opacity: 1; }

/* ===== GALGAL TEASER ===== */
.galgal-teaser {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #070510 0%, #0a0818 50%, #070510 100%);
}

/* Orbs */
.galgal-bg-orbs { position: absolute; inset: 0; pointer-events: none; }
.galgal-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.galgal-orb--1 {
  width: 500px; height: 500px;
  background: #7b2ff7;
  top: -100px; left: 10%;
  animation: orbFloat1 12s ease-in-out infinite alternate;
}
.galgal-orb--2 {
  width: 400px; height: 400px;
  background: #00d4ff;
  bottom: -80px; right: 8%;
  animation: orbFloat2 10s ease-in-out infinite alternate;
}
.galgal-orb--3 {
  width: 300px; height: 300px;
  background: #e63946;
  top: 40%; left: 45%;
  opacity: 0.08;
  animation: orbFloat1 14s ease-in-out infinite alternate-reverse;
}
@keyframes orbFloat1 { to { transform: translateY(40px) translateX(20px); } }
@keyframes orbFloat2 { to { transform: translateY(-30px) translateX(-15px); } }

/* Layout */
.galgal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ── Video mock ── */
.galgal-video-wrap {
  position: relative;
}
.galgal-video-mock {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(123,47,247,0.15);
  background: #0d0b1f;
}
.galgal-video-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(123,47,247,0.2) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}

/* Browser bar */
.gvm-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.gvm-dots {
  display: flex;
  gap: 5px;
}
.gvm-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.gvm-dots span:nth-child(1) { background: #ff5f57; }
.gvm-dots span:nth-child(2) { background: #ffbd2e; }
.gvm-dots span:nth-child(3) { background: #28ca41; }
.gvm-url {
  flex: 1;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.03em;
}
.gvm-streak {
  font-size: 0.7rem;
  font-weight: 700;
  color: #f97316;
}

/* Screen content */
.gvm-screen {
  padding: 20px;
  position: relative;
  min-height: 280px;
  background: linear-gradient(135deg, #0f0c24 0%, #120d2e 100%);
}

/* ── Views (map / course) ── */
.gvm-view {
  position: absolute;
  inset: 0;
  padding: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease;
  display: flex;
  flex-direction: column;
}
.gvm-view.gvm-view--active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  inset: auto;
}

/* Island map */
.gvm-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 14px;
  flex: 1;
}
.gvm-building {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  position: relative;
  transition: border-color 200ms;
}
.gvm-building span {
  font-size: 0.48rem;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1.2;
}
.gvm-b-icon { font-size: 1.2rem; }
.gvm-active {
  border-color: rgba(123,47,247,0.5);
  background: rgba(123,47,247,0.08);
}
.gvm-b-pulse {
  position: absolute;
  top: 6px; right: 6px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #7b2ff7;
  animation: bPulse 1.5s ease-in-out infinite;
}
/* ── Walking character ── */
.gvm-map { position: relative; }
.gvm-character {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  transition: top 800ms cubic-bezier(0.45,0,0.55,1),
              left 800ms cubic-bezier(0.45,0,0.55,1);
}
.gvm-char-sprite {
  font-size: 1.4rem;
  animation: charBob 0.5s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 6px rgba(123,47,247,0.6));
}
@keyframes charBob {
  from { transform: translateY(0); }
  to   { transform: translateY(-3px); }
}
.gvm-char-shadow {
  width: 16px; height: 5px;
  background: rgba(0,0,0,0.35);
  border-radius: 50%;
  margin-top: -2px;
  filter: blur(2px);
}

@keyframes bPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(123,47,247,0.5); }
  50% { box-shadow: 0 0 0 4px rgba(123,47,247,0); }
}

/* XP bar */
.gvm-xp {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gvm-lvl {
  font-size: 0.65rem;
  font-weight: 900;
  color: #a78bfa;
  white-space: nowrap;
}
.gvm-xp-track {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.07);
  border-radius: 999px;
  overflow: hidden;
}
.gvm-xp-fill {
  height: 100%;
  width: 71%;
  background: linear-gradient(90deg, #7b2ff7, #a78bfa);
  border-radius: 999px;
  animation: xpFill 2s ease-out 0.8s both;
}
@keyframes xpFill { from { width: 0%; } }
.gvm-xp-label {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}

/* Toast */
.gvm-toast {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.62rem;
  font-weight: 700;
  color: #a78bfa;
  background: rgba(123,47,247,0.12);
  border: 1px solid rgba(123,47,247,0.25);
  border-radius: 999px;
  padding: 5px 14px;
  animation: toastIn 0.4s ease-out 2s both;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── Course view ── */
.gvm-view--course {
  background: #0e0b22;
}
.gvm-course-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 10px;
  flex-shrink: 0;
}
.gvm-course-icon { font-size: 1.3rem; }
.gvm-course-name {
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.gvm-course-prog {
  display: flex;
  align-items: center;
  gap: 8px;
}
.gvm-cprog-track {
  width: 90px;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}
.gvm-cprog-fill {
  height: 100%;
  background: linear-gradient(90deg, #7b2ff7, #a78bfa);
  border-radius: 999px;
  transition: width 1s ease;
}
.gvm-cprog-pct {
  font-size: 0.55rem;
  color: #a78bfa;
  font-weight: 700;
  white-space: nowrap;
}
.gvm-course-xp-badge {
  margin-right: auto;
  font-size: 0.58rem;
  font-weight: 800;
  color: #fbbf24;
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.2);
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
}
.gvm-course-body {
  display: flex;
  gap: 10px;
  flex: 1;
  min-height: 0;
}

/* Syllabus sidebar */
.gvm-syllabus {
  width: 130px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.05);
  padding-right: 10px;
}
.gvm-syl-title {
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.gvm-lesson {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.52rem;
  color: rgba(255,255,255,0.45);
}
.gvm-lesson--done { color: rgba(255,255,255,0.65); }
.gvm-lesson--active {
  color: #a78bfa;
  font-weight: 700;
  background: rgba(123,47,247,0.06);
  border-radius: 6px;
  padding: 5px 4px;
  margin: 0 -4px;
}
.gvm-ldur {
  margin-right: auto;
  font-size: 0.48rem;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
}
.gvm-lcheck {
  font-size: 0.58rem;
  color: #34d399;
  flex-shrink: 0;
}
.gvm-lcheck--play { color: #a78bfa; }
.gvm-lcheck--lock { color: rgba(255,255,255,0.2); }

/* Video player */
.gvm-video-player {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gvm-vp-thumb {
  flex: 1;
  background: linear-gradient(135deg, #1a1035 0%, #0f0825 100%);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}
.gvm-vp-play {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(123,47,247,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #fff;
  box-shadow: 0 0 20px rgba(123,47,247,0.5);
}
.gvm-vp-time {
  position: absolute;
  bottom: 6px;
  left: 8px;
  font-size: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-variant-numeric: tabular-nums;
}
.gvm-vp-scrub {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  position: relative;
}
.gvm-vp-scrub-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 40%;
  background: #7b2ff7;
  border-radius: 999px;
}
.gvm-vp-scrub-dot {
  position: absolute;
  top: 50%; left: 40%;
  transform: translate(-50%,-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #a78bfa;
  box-shadow: 0 0 6px rgba(167,139,250,0.8);
}
.gvm-vp-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.5rem;
  color: rgba(255,255,255,0.3);
}
.gvm-skill-tag {
  font-size: 0.48rem;
  font-weight: 800;
  color: #34d399;
  letter-spacing: 0.05em;
  background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.2);
  padding: 2px 7px;
  border-radius: 999px;
}

/* Screen needs relative for views */
.gvm-screen { position: relative; min-height: 300px; }

/* ── Text side ── */
.galgal-text {
  direction: rtl;
}
.galgal-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a78bfa;
  margin-bottom: 20px;
}
.galgal-headline {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}
.galgal-hl {
  background: linear-gradient(90deg, #a78bfa, #7b2ff7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.galgal-sub {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
}

/* World list */
.galgal-worlds {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 32px;
}
.gw-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.gw-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c);
  box-shadow: 0 0 8px var(--c);
  flex-shrink: 0;
}

/* Waitlist form */
.galgal-waitlist {}
.gwl-field {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.gwl-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 200ms;
  text-align: left;
}
.gwl-input::placeholder { color: rgba(255,255,255,0.3); }
.gwl-input:focus { border-color: rgba(123,47,247,0.5); }
.gwl-btn {
  background: linear-gradient(135deg, #7b2ff7, #5b1fc8);
  border: none;
  border-radius: 10px;
  padding: 12px 22px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 200ms, transform 140ms;
}
.gwl-btn:hover { opacity: 0.88; transform: scale(1.02); }
.gwl-note {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
}
.gwl-success {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #34d399;
  padding: 14px 0;
}
.gwl-check {
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 900px) {
  .galgal-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .galgal-video-wrap { order: -1; }
}

.badge--glow {
  background: rgba(123, 47, 247, 0.1);
  border-color: rgba(123, 47, 247, 0.3);
  color: var(--purple);
  animation: pulseGlow 2s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(123,47,247,0); }
  50% { box-shadow: 0 0 20px rgba(123,47,247,0.2); }
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  html { font-size: 15px; }
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }

  .video-hero { height: 400vh; }
  .video-text-layer { padding: 24px 20px; }
  .video-text-layer h1 { font-size: clamp(1.8rem, 5vw, 2.6rem); }
  .video-lead { font-size: 1.3rem; }
  .video-body { font-size: 1rem; }
  .check-list--video li { font-size: 1rem; }

  .card-grid, .svc-grid, .credentials-grid, .challenges-grid { grid-template-columns: 1fr; }
  .span-2 { grid-column: span 1; }

  .steps-row { flex-direction: column; align-items: center; }
  .step { max-width: 100%; }
  .step-connector span { width: 2px; height: 30px; }
  .step-connector { justify-content: center; }

  .desire { padding: 28px; }
  .audit-form-wrap { padding: 32px 20px; }
  .audit-nav-row { flex-direction: column-reverse; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .final-cta { padding: 100px 0; }

  .hero-orb--1 { width: 400px; height: 400px; }
  .hero-orb--2 { width: 300px; height: 300px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .big-statement { font-size: 1.5rem !important; }
  .orbit-system {
    width: 300px;
    height: 300px;
    margin: 32px auto 28px;
  }
  .orbit-ring--outer { width: 290px; height: 290px; }
  .orbit-ring--mid   { width: 225px; height: 225px; }
  .orbit-ring--inner { width: 120px; height: 120px; }
  .orbit-core { width: 80px; height: 80px; font-size: 0.72rem; }
  .orbit-pulse { width: 80px; height: 80px; }
  .orbit-node { left: 132px; font-size: 0.76rem; padding: 6px 12px; top: -14px; }
  .before-after { flex-direction: column; gap: 20px; }
  .ba-divider { transform: rotate(90deg); }
}

/* ===== QUIZ: נקודת ההתחלה ===== */

.quiz-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 720px;
  margin: 0 auto 24px;
}

.quiz-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 18px;
}

.quiz-brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan), #00b5a0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-deep);
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.4);
}

.quiz-brand-text {
  color: var(--cyan);
}
.quiz-brand-text span {
  color: var(--white);
}

.quiz-back-btn {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s;
  display: none;
}
.quiz-back-btn.visible {
  display: flex;
  align-items: center;
  gap: 6px;
}
.quiz-back-btn:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

/* Progress */
.quiz-progress-wrap {
  max-width: 720px;
  margin: 0 auto 40px;
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
  display: none;
}
.quiz-progress-wrap.visible {
  display: block;
}
.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), #00b5a0);
  border-radius: 999px;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
}

/* Container & Screens */
.quiz-container {
  max-width: 720px;
  margin: 0 auto;
  text-align: right;
  direction: rtl;
}

.quiz-screen {
  display: none;
  animation: quizFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.quiz-screen.active {
  display: block;
}

@keyframes quizFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Landing screen */
.quiz-landing-title {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  text-align: center;
}

.quiz-landing-subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 16px;
  text-align: center;
  font-weight: 500;
}

.quiz-landing-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.quiz-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.quiz-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.quiz-stat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
  animation: quizPulse 2s ease-in-out infinite;
}

@keyframes quizPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Question screens */
.quiz-q-num {
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 16px;
  text-align: right;
}

.quiz-q-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--white);
}

.quiz-q-hint {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Options */
.quiz-options {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px;
  margin-bottom: 28px;
  width: 100%;
}

.quiz-option {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 18px 20px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: right;
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.quiz-option::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.quiz-option:hover {
  border-color: rgba(0, 212, 255, 0.35);
  background: rgba(255,255,255,0.05);
  transform: translateX(-4px);
}
.quiz-option:hover::before {
  opacity: 1;
}

.quiz-option.selected {
  border-color: var(--cyan);
  background: rgba(0, 212, 255, 0.06);
  box-shadow: 0 0 0 1px var(--cyan), 0 8px 24px rgba(0, 212, 255, 0.12);
}
.quiz-option.selected::before {
  opacity: 1;
}

.quiz-option-check {
  flex-shrink: 0;
  width: 22px;
  min-width: 22px;
  max-width: 22px;
  height: 22px;
  min-height: 22px;
  max-height: 22px;
  border: 1.5px solid var(--muted);
  border-radius: 6px;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.quiz-option.selected .quiz-option-check {
  border-color: var(--cyan);
  background: var(--cyan);
}
.quiz-option-check svg {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px;
  max-height: 14px;
  opacity: 0;
  transition: opacity 0.2s;
  color: var(--bg-deep);
  display: block;
}
.quiz-option.selected .quiz-option-check svg {
  opacity: 1;
}

.quiz-option-text {
  flex: 1;
  position: relative;
  z-index: 1;
}

/* Textarea */
.quiz-textarea-wrap {
  margin-bottom: 24px;
}

.quiz-textarea {
  width: 100%;
  min-height: 180px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 14px;
  padding: 20px;
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--white);
  resize: vertical;
  transition: all 0.2s;
  direction: rtl;
}
.quiz-textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}
.quiz-textarea::placeholder {
  color: rgba(255,255,255,0.2);
  line-height: 1.65;
}

/* Lead form */
.quiz-lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.quiz-input {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px 18px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--white);
  transition: all 0.2s;
  direction: rtl;
}
.quiz-input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}
.quiz-input::placeholder {
  color: rgba(255,255,255,0.2);
}

/* Continue button */
.quiz-continue-btn {
  width: 100%;
  background: var(--gold);
  color: var(--bg-deep);
  border: none;
  padding: 16px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 24px rgba(244, 162, 97, 0.3);
}
.quiz-continue-btn:hover:not(:disabled) {
  background: #ffc44d;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(244, 162, 97, 0.4);
}
.quiz-continue-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: rgba(255,255,255,0.1);
  box-shadow: none;
}

/* Loading */
.quiz-loading {
  text-align: center;
  padding: 60px 0;
}

.quiz-spinner {
  width: 56px;
  height: 56px;
  border: 3px solid rgba(255,255,255,0.06);
  border-top-color: var(--cyan);
  border-radius: 50%;
  margin: 0 auto 28px;
  animation: quizSpin 1s linear infinite;
}
@keyframes quizSpin {
  to { transform: rotate(360deg); }
}

.quiz-loading-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.quiz-loading-step {
  color: var(--muted);
  font-size: 0.95rem;
  min-height: 24px;
  transition: opacity 0.3s;
}

/* Report */
.quiz-report-header {
  margin-bottom: 36px;
  text-align: right;
}

.quiz-edit-link {
  color: var(--cyan);
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.85rem;
  display: inline-block;
}

.quiz-report-intro {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 36px;
  padding: 22px;
  background: rgba(255,255,255,0.03);
  border-right: 3px solid var(--cyan);
  border-radius: 8px;
}

.quiz-move-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.quiz-move-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.06), transparent);
  pointer-events: none;
}

.quiz-move-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.quiz-move-label {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 3px;
  font-weight: 700;
}

.quiz-move-title {
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 700;
}

.quiz-move-content {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.75;
  position: relative;
  white-space: pre-wrap;
}

.quiz-report-footer {
  margin-top: 40px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.06), transparent);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 16px;
  text-align: center;
}

.quiz-footer-headline {
  color: var(--cyan);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.4;
}

.quiz-footer-desc {
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.65;
}

/* Mobile quiz */
@media (max-width: 600px) {
  .quiz-container { padding: 0; }
  .quiz-move-card { padding: 22px 18px; }
  .quiz-option { padding: 16px 16px; font-size: 0.9rem; }
  .quiz-landing-title { font-size: 1.8rem; }
  .quiz-stats { gap: 16px; }
}

/* ===== CHALLENGE REGISTRATION BOTTOM SHEET ===== */
