/* ═══════════════════════════════════════════════════════
   T3CH D3F1L3R — CYBER LABS
   styles.css — Complete Design System
═══════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  --bg: #04080a;
  --surface: #080f0e;
  --surface2: #0d1714;
  --accent: #39ff14;
  --accent2: #00e576;
  --accent3: #ff5f6d;
  --accent4: #a78bfa;
  --text: #e0f0ea;
  --muted: #6a9a88;
  --border: rgba(57,255,20,0.18);
  --glow: 0 0 40px rgba(57,255,20,0.25);
  --font-head: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
body.loading { overflow: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); }

/* ─── BACKGROUND ─── */
body {
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(57,255,20,.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(0,229,118,.06) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 10% 70%, rgba(57,255,20,.05) 0%, transparent 50%),
    #04080a;
  background-attachment: fixed;
}
body::after {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(57,255,20,.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 85% 75%, rgba(0,229,118,.05) 0%, transparent 50%);
  animation: bgPulse 12s ease-in-out infinite alternate;
}
@keyframes bgPulse { 0% { opacity: .7; transform: scale(1); } 100% { opacity: 1; transform: scale(1.04); } }

/* Noise overlay */
body::before {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 99; opacity: .35;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.grad {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad2 {
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── LAYOUT ─── */
.section-pad { padding: 5rem 5vw; position: relative; z-index: 1; }
.section-tag {
  font-family: var(--font-mono); font-size: .7rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .75rem; display: inline-block;
}
.section-desc { color: var(--muted); max-width: 600px; margin-bottom: 3rem; font-size: 1.05rem; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #000; font-weight: 700; font-size: .9rem;
  padding: .7rem 1.6rem; border-radius: var(--radius-sm);
  border: none; transition: box-shadow .25s, transform .2s;
  font-family: var(--font-body);
}
.btn-primary:hover { box-shadow: 0 0 30px rgba(57,255,20,.5); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--text); font-weight: 600; font-size: .9rem;
  padding: .7rem 1.6rem; border-radius: var(--radius-sm);
  border: 1px solid var(--border); transition: border-color .2s, color .2s, box-shadow .2s;
  font-family: var(--font-body);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 20px rgba(57,255,20,.15); }

.btn-wa {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #25D366; color: #fff; font-weight: 700; font-size: .9rem;
  padding: .7rem 1.6rem; border-radius: var(--radius-sm);
  border: none; transition: box-shadow .25s, transform .2s;
  font-family: var(--font-body);
}
.btn-wa:hover { box-shadow: 0 0 24px rgba(37,211,102,.5); transform: translateY(-2px); }

/* ═══════════════════════════════════
   INTRO LOADER
═══════════════════════════════════ */
#intro-loader {
  position: fixed; inset: 0; z-index: 99999;
  background: #04080a;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity .8s cubic-bezier(.4,0,.2,1);
}
#intro-loader.hide { opacity: 0; pointer-events: none; }
#loader-canvas { position: absolute; inset: 0; pointer-events: none; }
.loader-center {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.loader-ring-wrap { position: relative; width: 120px; height: 120px; display: flex; align-items: center; justify-content: center; }
.loader-ring { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid transparent; }
.loader-ring-1 { border-top-color: rgba(57,255,20,.9); border-right-color: rgba(57,255,20,.3); animation: spinRing 1.2s linear infinite; }
.loader-ring-2 { inset: 10px; border-bottom-color: rgba(0,229,118,.8); border-left-color: rgba(0,229,118,.2); animation: spinRing 1.8s linear infinite reverse; }
.loader-ring-3 { inset: 22px; border-top-color: rgba(255,95,109,.6); border-right-color: rgba(255,95,109,.1); animation: spinRing 2.4s linear infinite; }
.loader-ring-dot { width: 6px; height: 6px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent2)); box-shadow: 0 0 16px rgba(57,255,20,.8); animation: dotPulse 1.2s ease-in-out infinite; }
.loader-logo { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; opacity: 0; animation: logoReveal .6s cubic-bezier(.22,1,.36,1) .4s forwards; }
.loader-logo-main { background: linear-gradient(135deg, #fff 30%, rgba(57,255,20,.9)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.loader-logo-accent { -webkit-text-fill-color: var(--accent); color: var(--accent); }
.loader-tagline { font-family: var(--font-mono); font-size: .65rem; letter-spacing: .1em; color: rgba(232,232,240,.35); text-align: center; opacity: 0; animation: fadeInLoader .5s ease .6s forwards; }
.loader-progress-wrap { width: 220px; opacity: 0; animation: fadeInLoader .4s ease .5s forwards; }
.loader-progress-track { width: 100%; height: 2px; background: rgba(255,255,255,.06); border-radius: 99px; overflow: hidden; }
.loader-progress-bar { height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent), var(--accent2)); border-radius: 99px; box-shadow: 0 0 10px rgba(57,255,20,.6); transition: width .05s linear; }
.loader-progress-label { display: flex; justify-content: space-between; margin-top: .6rem; font-family: var(--font-mono); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(122,122,154,.6); }
.loader-percent { font-weight: 700; font-size: .7rem; background: linear-gradient(135deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.loader-tech-badge { display: flex; align-items: center; gap: .5rem; padding: .35rem 1rem; border: 1px solid rgba(57,255,20,.3); border-radius: 99px; background: rgba(57,255,20,.06); opacity: 0; animation: fadeInLoader .5s ease .7s forwards; }
.loader-tech-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent2); box-shadow: 0 0 8px var(--accent2); animation: dotPulse 1.5s ease-in-out infinite; }
.loader-tech-icon { display: flex; align-items: center; gap: 3px; }
.loader-tech-icon span { display: block; width: 3px; border-radius: 2px; background: linear-gradient(180deg, var(--accent), var(--accent2)); animation: barBounce 1.2s ease-in-out infinite; }
.loader-tech-icon span:nth-child(1) { height: 8px; animation-delay: 0s; }
.loader-tech-icon span:nth-child(2) { height: 14px; animation-delay: .15s; }
.loader-tech-icon span:nth-child(3) { height: 10px; animation-delay: .3s; }
.loader-tech-icon span:nth-child(4) { height: 16px; animation-delay: .1s; }
.loader-tech-icon span:nth-child(5) { height: 6px; animation-delay: .25s; }
.loader-tech-hex { font-family: var(--font-mono); font-size: .58rem; font-weight: 700; letter-spacing: .16em; color: rgba(232,232,240,.4); text-transform: uppercase; }
.curtain-top, .curtain-bottom { position: fixed; left: 0; right: 0; z-index: 99998; background: #04080a; transition: transform 1s cubic-bezier(.76,0,.24,1); pointer-events: none; }
.curtain-top { top: 0; height: 50%; transform: translateY(0); }
.curtain-bottom { bottom: 0; height: 50%; transform: translateY(0); }
.curtain-top.open { transform: translateY(-100%); }
.curtain-bottom.open { transform: translateY(100%); }

@keyframes spinRing { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes dotPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.6); opacity: .6; } }
@keyframes logoReveal { from { opacity: 0; transform: translateY(12px) scale(.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes fadeInLoader { from { opacity: 0; } to { opacity: 1; } }
@keyframes barBounce { 0%,100% { transform: scaleY(1); opacity: .7; } 50% { transform: scaleY(.4); opacity: 1; } }

/* ═══════════════════════════════════
   NAVIGATION
═══════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 10001;
  background: rgba(4,8,10,.88);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  transition: background .3s;
}
nav.scrolled { background: rgba(4,8,10,.97); }
.logo {
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 800;
  background: linear-gradient(135deg, #fff 30%, var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -.5px;
}
.logo span { color: var(--accent); -webkit-text-fill-color: var(--accent); }
.nav-links { display: flex; gap: 1.75rem; list-style: none; align-items: center; }
.nav-links a { color: var(--muted); font-size: .875rem; text-decoration: none; font-weight: 500; letter-spacing: .02em; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent) !important; color: #000 !important;
  padding: .45rem 1.1rem; border-radius: 6px;
  font-size: .8rem !important; font-weight: 700 !important;
  transition: box-shadow .2s, transform .2s !important;
  -webkit-text-fill-color: #000 !important;
}
.nav-cta:hover { box-shadow: var(--glow); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ─── MOBILE DRAWER ─── */
#mobile-drawer {
  position: fixed; top: 0; right: -100%; width: min(320px, 85vw); height: 100vh;
  background: rgba(6,10,12,.98); backdrop-filter: blur(24px);
  border-left: 1px solid var(--border); z-index: 10002;
  transition: right .35s cubic-bezier(.22,1,.36,1);
  padding: 1.5rem;
  overflow-y: auto;
}
#mobile-drawer.open { right: 0; }
#mobile-drawer-overlay {
  position: fixed; inset: 0; z-index: 10001;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
  display: none;
}
#mobile-drawer-overlay.open { display: block; }
.drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.drawer-close { background: none; border: 1px solid var(--border); color: var(--muted); width: 36px; height: 36px; border-radius: 50%; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: border-color .2s, color .2s; }
.drawer-close:hover { border-color: var(--accent); color: var(--accent); }
.drawer-links { list-style: none; display: flex; flex-direction: column; gap: .25rem; }
.drawer-links a { display: block; padding: .75rem 1rem; border-radius: var(--radius-sm); color: var(--muted); font-size: .95rem; font-weight: 500; transition: background .2s, color .2s; }
.drawer-links a:hover { background: rgba(57,255,20,.08); color: var(--text); }
.drawer-cta { background: var(--accent) !important; color: #000 !important; font-weight: 700 !important; text-align: center; margin-top: .5rem; }

/* ─── PAGE SYSTEM ─── */
.page { display: none; min-height: 100vh; padding-top: 68px; }
.page.active { display: block; animation: pageReveal .45s cubic-bezier(.22,1,.36,1) both; }
@keyframes pageReveal { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ─── BACK BUTTON ─── */
#back-btn-wrap {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 10000;
  display: none; animation: backBtnIn .45s cubic-bezier(.34,1.4,.64,1) both;
}
@keyframes backBtnIn { from { opacity: 0; transform: scale(.75); } to { opacity: 1; transform: scale(1); } }
#back-btn {
  display: flex; align-items: center; gap: .55rem;
  background: rgba(14,14,24,.92); border: 1px solid rgba(57,255,20,.35);
  color: var(--text); padding: .65rem 1.3rem; border-radius: 50px;
  font-family: var(--font-body); font-size: .82rem; font-weight: 600;
  backdrop-filter: blur(20px); box-shadow: 0 8px 32px rgba(0,0,0,.45);
  transition: box-shadow .3s, border-color .3s, transform .25s;
}
#back-btn:hover { border-color: rgba(57,255,20,.7); color: #fff; box-shadow: 0 12px 40px rgba(0,0,0,.5), 0 0 20px rgba(57,255,20,.2); }
#back-btn svg { width: 16px; height: 16px; stroke: var(--accent); transition: transform .3s; }
#back-btn:hover svg { transform: translateX(-4px); }

/* ─── TOAST ─── */
#toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 99999;
  background: rgba(14,20,18,.97); border: 1px solid var(--border);
  color: var(--text); padding: .75rem 1.5rem; border-radius: var(--radius-sm);
  font-size: .88rem; font-weight: 500; display: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  animation: toastIn .3s cubic-bezier(.34,1.4,.64,1);
}
@keyframes toastIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 0 5vw;
}
#matrix-canvas {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
#matrix-canvas.visible { opacity: 1; }
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 900px;
  padding: 6rem 0 4rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(57,255,20,.08); border: 1px solid rgba(57,255,20,.25);
  border-radius: 99px; padding: .4rem 1.2rem;
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .15em;
  color: rgba(57,255,20,.8); margin-bottom: 2rem;
  animation: fadeInLoader .6s ease .2s both;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); animation: dotPulse 2s ease-in-out infinite; }
.hero-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(3rem, 8vw, 7rem); line-height: 1.0;
  letter-spacing: -.03em; margin-bottom: 1.5rem;
  display: flex; flex-direction: column; align-items: center;
}
.hero-line-1, .hero-line-3 { color: #fff; }
.hero-line-2, .hero-line-4 { display: block; }
.hero-sub { color: var(--muted); font-size: clamp(.9rem, 1.5vw, 1.1rem); margin-bottom: 2.5rem; line-height: 1.8; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.hstat { text-align: center; padding: 0 2rem; }
.hstat-num { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--accent); }
.hstat-label { font-size: .75rem; color: var(--muted); font-family: var(--font-mono); letter-spacing: .08em; text-transform: uppercase; }
.hstat-div { width: 1px; height: 40px; background: var(--border); }
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-family: var(--font-mono); font-size: .6rem; letter-spacing: .2em;
  color: rgba(57,255,20,.4); animation: scrollHint 2s ease-in-out infinite;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(180deg, transparent, var(--accent)); }
@keyframes scrollHint { 0%,100% { opacity: .4; transform: translateX(-50%) translateY(0); } 50% { opacity: .8; transform: translateX(-50%) translateY(6px); } }

/* ═══════════════════════════════════
   TICKER
═══════════════════════════════════ */
.ticker-wrap {
  overflow: hidden; padding: 1.2rem 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(57,255,20,.02);
}
.ticker-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: tickerScroll 32s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 0 2.5rem;
  font-family: var(--font-mono); font-size: .72rem;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
}
.tdot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.ticker-item.hi { color: var(--accent); }
.ticker-item.hi2 { color: var(--accent2); }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════
   IMAGE CAROUSEL
═══════════════════════════════════ */
.carousel-wrap {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}
.carousel-track {
  display: flex; transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.carousel-slide {
  min-width: 100%; position: relative; cursor: pointer;
  aspect-ratio: 16/7; overflow: hidden;
}
.carousel-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.carousel-slide:hover img { transform: scale(1.04); }
.carousel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,8,10,.9) 0%, rgba(4,8,10,.3) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2.5rem;
}
.carousel-tag { font-family: var(--font-mono); font-size: .65rem; letter-spacing: .18em; color: var(--accent); margin-bottom: .5rem; }
.carousel-title { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 800; color: #fff; margin-bottom: .25rem; }
.carousel-sub { color: var(--muted); font-size: .9rem; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(4,8,10,.8); border: 1px solid var(--border);
  color: var(--text); width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
  z-index: 2;
}
.carousel-btn:hover { background: rgba(57,255,20,.15); border-color: var(--accent); }
.carousel-prev { left: 1rem; }
.carousel-next { right: 1rem; }
.carousel-dots { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); display: flex; gap: .5rem; z-index: 2; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); cursor: pointer; transition: background .2s, transform .2s; }
.carousel-dot.active { background: var(--accent); transform: scale(1.3); }

/* ═══════════════════════════════════
   SERVICES GRID
═══════════════════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.svc-card {
  background: rgba(8,15,14,.9); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  cursor: pointer; transition: border-color .3s, box-shadow .3s, transform .3s;
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(57,255,20,.06), transparent);
  opacity: 0; transition: opacity .3s;
}
.svc-card:hover { border-color: rgba(57,255,20,.5); box-shadow: 0 8px 40px rgba(57,255,20,.1); transform: translateY(-4px); }
.svc-card:hover::before { opacity: 1; }
.svc-icon { font-size: 2rem; margin-bottom: .75rem; }
.svc-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; color: #fff; }
.svc-desc { font-size: .85rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.svc-arrow { color: var(--accent); font-size: 1.1rem; transition: transform .2s; }
.svc-card:hover .svc-arrow { transform: translateX(4px); }

/* ═══════════════════════════════════
   FEATURED COURSE
═══════════════════════════════════ */
.featured-course {
  background: linear-gradient(135deg, rgba(57,255,20,.07), rgba(0,229,118,.03));
  border: 2px solid rgba(57,255,20,.3); border-radius: var(--radius-lg);
  padding: 2.5rem; position: relative; overflow: hidden;
}
.featured-course::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(57,255,20,.1), transparent 70%);
  pointer-events: none;
}
.fc-badge {
  display: inline-block; background: var(--accent); color: #000;
  font-size: .65rem; font-weight: 900; padding: .25rem .85rem;
  border-radius: 99px; font-family: var(--font-mono); letter-spacing: .1em;
  margin-bottom: 1.5rem;
}
.fc-body { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.fc-eyebrow { font-family: var(--font-mono); font-size: .65rem; color: rgba(57,255,20,.5); letter-spacing: .15em; margin-bottom: .75rem; }
.fc-title { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 1rem; line-height: 1.2; }
.fc-desc { color: var(--muted); font-size: .93rem; line-height: 1.75; margin-bottom: 1.25rem; }
.fc-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.fc-meta span { font-size: .78rem; color: var(--muted); background: rgba(255,255,255,.05); padding: .25rem .65rem; border-radius: 99px; border: 1px solid var(--border); }
.fc-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.5rem; }
.fc-tags span { font-size: .72rem; background: rgba(57,255,20,.1); color: var(--accent); padding: .2rem .65rem; border-radius: 99px; border: 1px solid rgba(57,255,20,.25); font-family: var(--font-mono); }
.fc-price-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.fc-price { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--accent); }
.fc-period { color: var(--muted); font-size: .85rem; }
.fc-modules-label { font-family: var(--font-mono); font-size: .65rem; color: rgba(57,255,20,.5); letter-spacing: .15em; margin-bottom: 1rem; }
.fc-modules { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.fc-modules li { font-size: .88rem; color: var(--muted); padding: .5rem .75rem; background: rgba(57,255,20,.04); border-left: 2px solid rgba(57,255,20,.3); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

/* ═══════════════════════════════════
   STATS
═══════════════════════════════════ */
.stats-section { background: rgba(8,15,14,.5); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border-radius: var(--radius); overflow: hidden; }
.stat-card { background: var(--bg); padding: 2.5rem; text-align: center; }
.stat-num { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--accent); display: block; margin-bottom: .5rem; }
.stat-label { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ═══════════════════════════════════
   TESTIMONIALS SLIDER
═══════════════════════════════════ */
.tslider-wrap { position: relative; overflow: hidden; }
.tslider-track { display: flex; gap: 1.5rem; transition: transform .5s cubic-bezier(.22,1,.36,1); }
.testimonial-card {
  min-width: calc(33.333% - 1rem); background: rgba(8,15,14,.9);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem; flex-shrink: 0;
  transition: border-color .3s, transform .3s;
}
.testimonial-card:hover { border-color: rgba(57,255,20,.4); transform: translateY(-4px); }
.tcard-stars { color: #fbbf24; font-size: 1rem; margin-bottom: .75rem; letter-spacing: .1em; }
.tcard-text { color: var(--muted); font-size: .9rem; line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
.tcard-author { display: flex; align-items: center; gap: .75rem; }
.tcard-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent2)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .8rem; color: #000; flex-shrink: 0; }
.tcard-name { font-weight: 600; font-size: .9rem; }
.tcard-role { font-size: .78rem; color: var(--muted); }
.tslider-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.5rem; }
.tslider-btn { background: rgba(57,255,20,.08); border: 1px solid var(--border); color: var(--text); width: 40px; height: 40px; border-radius: 50%; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s; }
.tslider-btn:hover { background: rgba(57,255,20,.2); border-color: var(--accent); }
.tslider-dots { display: flex; gap: .5rem; }
.tslider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.2); cursor: pointer; transition: background .2s, transform .2s; }
.tslider-dot.active { background: var(--accent); transform: scale(1.3); }

/* ═══════════════════════════════════
   CTA BANNER
═══════════════════════════════════ */
.cta-banner {
  position: relative; border-radius: var(--radius-lg);
  border: 1px solid rgba(57,255,20,.25); overflow: hidden;
  padding: 3.5rem 2rem;
}
.cta-banner-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(57,255,20,.08), rgba(0,229,118,.04));
  pointer-events: none;
}
.cta-banner-content { position: relative; z-index: 1; }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.site-footer {
  background: rgba(4,8,10,.98); border-top: 1px solid var(--border);
  padding: 4rem 5vw 2rem;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-col { display: flex; flex-direction: column; gap: .6rem; }
.footer-col-title { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); margin-bottom: .5rem; }
.footer-col a { color: var(--muted); font-size: .88rem; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-socials { display: flex; gap: .75rem; margin-top: 1rem; }
.fsocial { width: 36px; height: 36px; border-radius: 50%; background: rgba(57,255,20,.08); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; color: var(--muted); transition: background .2s, border-color .2s, color .2s; }
.fsocial:hover { background: rgba(57,255,20,.2); border-color: var(--accent); color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .82rem; color: var(--muted); }

/* ═══════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════ */
.page-hero {
  position: relative; min-height: 280px;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
  padding: 5rem 5vw 2.5rem;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(4,8,10,.92), rgba(4,8,10,.7));
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-eyebrow { font-family: var(--font-mono); font-size: .7rem; color: rgba(57,255,20,.6); letter-spacing: .18em; text-transform: uppercase; margin-bottom: .5rem; }
.page-hero-title { font-family: var(--font-mono); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; color: #fff; line-height: 1.1; text-shadow: 0 0 40px rgba(57,255,20,.3); }
.page-hero-sub { color: rgba(224,240,234,.7); margin-top: .75rem; font-size: 1rem; }

/* ═══════════════════════════════════
   COURSES GRID
═══════════════════════════════════ */
.courses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.course-card {
  background: rgba(8,15,14,.9); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  position: relative;
}
.course-card:hover { border-color: rgba(57,255,20,.5); box-shadow: 0 8px 40px rgba(57,255,20,.1); transform: translateY(-4px); }
.featured-course-card { border-color: rgba(57,255,20,.4); box-shadow: 0 0 40px rgba(57,255,20,.08); }
.cc-featured-badge { position: absolute; top: -12px; left: 1.5rem; background: var(--accent); color: #000; font-size: .65rem; font-weight: 900; padding: .25rem .85rem; border-radius: 99px; font-family: var(--font-mono); }
.cc-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.cc-icon { font-size: 2rem; flex-shrink: 0; }
.cc-name { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: .25rem; }
.cc-price { font-size: 1.1rem; font-weight: 800; color: var(--accent); font-family: var(--font-head); }
.cc-old { font-size: .8rem; color: var(--muted); text-decoration: line-through; margin-left: .4rem; }
.cc-desc { font-size: .85rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.cc-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.cc-tags span { font-size: .7rem; background: rgba(57,255,20,.08); color: var(--accent); padding: .2rem .6rem; border-radius: 99px; border: 1px solid rgba(57,255,20,.2); font-family: var(--font-mono); }
.cc-footer { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.cc-pill { font-size: .72rem; background: rgba(255,255,255,.05); color: var(--muted); padding: .2rem .65rem; border-radius: 99px; border: 1px solid var(--border); font-family: var(--font-mono); }

/* ═══════════════════════════════════
   WHY / FEATURE CARDS
═══════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; margin-bottom: 2rem; }
.why-card {
  background: rgba(8,15,14,.9); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.why-card:hover { border-color: rgba(57,255,20,.4); box-shadow: 0 8px 30px rgba(57,255,20,.08); transform: translateY(-3px); }
.why-icon { font-size: 2rem; margin-bottom: .75rem; }
.why-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.why-desc { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════
   GAME / TERMINAL
═══════════════════════════════════ */
.game-hud { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.hud-item { background: rgba(57,255,20,.06); border: 1px solid rgba(57,255,20,.2); border-radius: var(--radius-sm); padding: .5rem 1.2rem; font-family: var(--font-mono); font-size: .78rem; }
.hud-label { color: var(--muted); }
.hud-val { color: var(--accent); font-weight: 700; }
.hud-sub { color: var(--muted); font-size: .65rem; }
.hud-mode { border-color: rgba(167,139,250,.25); background: rgba(167,139,250,.08); }
.daily-challenge {
  background: linear-gradient(90deg, rgba(255,95,109,.08), rgba(251,191,36,.06));
  border: 1px solid rgba(255,95,109,.25); border-radius: var(--radius-sm);
  padding: .85rem 1.2rem; margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.dc-tag { font-family: var(--font-mono); font-size: .65rem; color: #ff5f6d; font-weight: 700; letter-spacing: .12em; white-space: nowrap; }
.dc-body { flex: 1; min-width: 200px; }
.dc-title { font-size: .82rem; color: #fff; font-weight: 600; }
.dc-sub { font-size: .72rem; color: var(--muted); margin-top: .2rem; }
.dc-status { background: rgba(255,95,109,.15); border: 1px solid rgba(255,95,109,.3); border-radius: 6px; padding: .3rem .8rem; font-family: var(--font-mono); font-size: .72rem; color: #ff5f6d; font-weight: 700; white-space: nowrap; }
.terminal-wrap { background: #030908; border: 1px solid rgba(57,255,20,.3); border-radius: var(--radius); overflow: hidden; box-shadow: 0 0 60px rgba(57,255,20,.08); }
.terminal-titlebar { background: rgba(57,255,20,.05); border-bottom: 1px solid rgba(57,255,20,.15); padding: .6rem 1rem; display: flex; align-items: center; gap: .5rem; }
.term-dot { width: 10px; height: 10px; border-radius: 50%; }
.term-dot.red { background: #ff5f6d; }
.term-dot.yellow { background: #fbbf24; }
.term-dot.green { background: #39ff14; }
.term-title { margin-left: .5rem; font-family: var(--font-mono); font-size: .7rem; color: rgba(57,255,20,.5); }
.term-version { margin-left: auto; font-family: var(--font-mono); font-size: .65rem; color: rgba(57,255,20,.4); }
.terminal-output { padding: 1.25rem; font-family: var(--font-mono); font-size: .82rem; line-height: 1.85; min-height: 340px; max-height: 420px; overflow-y: auto; color: rgba(224,240,234,.85); }
.terminal-input-row { border-top: 1px solid rgba(57,255,20,.15); padding: .75rem 1.25rem; display: flex; align-items: center; gap: .5rem; background: rgba(57,255,20,.02); }
.term-prompt { font-family: var(--font-mono); font-size: .82rem; color: rgba(57,255,20,.6); white-space: nowrap; }
.term-input { flex: 1; background: transparent; border: none; outline: none; font-family: var(--font-mono); font-size: .82rem; color: var(--accent); caret-color: var(--accent); }
.term-exec-btn { background: rgba(57,255,20,.15); border: 1px solid rgba(57,255,20,.3); color: var(--accent); padding: .3rem .75rem; border-radius: 6px; font-family: var(--font-mono); font-size: .75rem; transition: background .2s; }
.term-exec-btn:hover { background: rgba(57,255,20,.3); }
.challenge-panel { margin-top: 1.25rem; background: rgba(6,14,8,.9); border: 1px solid rgba(57,255,20,.2); border-radius: var(--radius); padding: 1.5rem; }
.cp-label { font-family: var(--font-mono); font-size: .65rem; color: rgba(57,255,20,.5); letter-spacing: .12em; margin-bottom: .75rem; }
.cp-title { font-size: .95rem; font-weight: 600; color: #fff; margin-bottom: .5rem; }
.cp-hint { font-size: .82rem; color: var(--muted); font-style: italic; }
.cp-actions { margin-top: 1rem; display: flex; gap: .75rem; flex-wrap: wrap; }
.cp-btn { padding: .4rem 1rem; border-radius: 6px; font-family: var(--font-mono); font-size: .75rem; border: 1px solid; transition: background .2s; }
.hint-btn { background: rgba(251,191,36,.08); border-color: rgba(251,191,36,.25); color: #fbbf24; }
.hint-btn:hover { background: rgba(251,191,36,.2); }
.skip-btn { background: rgba(255,95,109,.08); border-color: rgba(255,95,109,.25); color: #ff5f6d; }
.skip-btn:hover { background: rgba(255,95,109,.2); }
.reset-btn { background: rgba(57,255,20,.06); border-color: rgba(57,255,20,.15); color: var(--muted); }
.reset-btn:hover { background: rgba(57,255,20,.15); }
.game-cta { margin-top: 2rem; text-align: center; background: linear-gradient(135deg, rgba(57,255,20,.07), rgba(0,0,0,.3)); border: 1px solid rgba(57,255,20,.2); border-radius: var(--radius); padding: 2rem; }
.gc-eyebrow { font-family: var(--font-mono); font-size: .7rem; color: rgba(57,255,20,.5); margin-bottom: .5rem; }
.game-cta h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.game-cta p { color: var(--muted); font-size: .88rem; margin-bottom: 1.2rem; }

/* ═══════════════════════════════════
   T3CH LAB
═══════════════════════════════════ */
.lab-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; background: linear-gradient(135deg, rgba(57,255,20,.08), rgba(0,0,0,.4)); border: 2px solid rgba(57,255,20,.25); border-radius: var(--radius-lg); padding: 2.5rem; margin-bottom: 3rem; }
.lab-eyebrow { font-family: var(--font-mono); font-size: .65rem; color: rgba(57,255,20,.5); letter-spacing: .15em; margin-bottom: .75rem; }
.lab-intro-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }
.lab-intro-text p { color: var(--muted); line-height: 1.75; margin-bottom: .75rem; font-size: .93rem; }
.lab-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.lab-stat { background: rgba(57,255,20,.06); border: 1px solid rgba(57,255,20,.2); border-radius: var(--radius); padding: 1.25rem; text-align: center; }
.ls-num { font-size: 2rem; font-weight: 800; color: var(--accent); font-family: var(--font-mono); }
.ls-label { font-size: .78rem; color: var(--muted); }
.lab-cats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.2rem; margin-bottom: 2.5rem; }
.lab-cat { background: rgba(6,14,8,.9); border: 1px solid rgba(57,255,20,.18); border-radius: var(--radius); padding: 1.5rem; transition: border-color .3s; }
.lab-cat:hover { border-color: rgba(57,255,20,.5); }
.lab-cat-locked { border: 2px dashed rgba(57,255,20,.3); display: flex; flex-direction: column; align-items: center; text-align: center; }
.lc-icon { font-size: 1.6rem; margin-bottom: .6rem; }
.lc-title { font-family: var(--font-mono); font-weight: 700; color: var(--accent); margin-bottom: .4rem; }
.lc-desc { font-size: .82rem; color: var(--muted); line-height: 1.6; margin-bottom: .5rem; }
.lc-meta { font-size: .72rem; color: rgba(57,255,20,.5); font-family: var(--font-mono); }
.lab-pricing-wrap { background: rgba(6,14,8,.9); border: 1px solid rgba(57,255,20,.2); border-radius: var(--radius-lg); padding: 2rem; }
.lab-plans-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 1.5rem; }
.lab-plan { background: rgba(57,255,20,.04); border: 1px solid rgba(57,255,20,.15); border-radius: var(--radius); padding: 1.4rem; text-align: center; position: relative; }
.lab-plan-pro { border-color: rgba(0,229,118,.3); background: rgba(0,229,118,.07); }
.lab-plan-elite { border: 2px solid rgba(57,255,20,.45); background: linear-gradient(135deg, rgba(57,255,20,.1), rgba(0,229,118,.06)); box-shadow: 0 0 30px rgba(57,255,20,.1); }
.lp-popular { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #000; font-size: .65rem; font-weight: 900; padding: .25rem .85rem; border-radius: 99px; white-space: nowrap; font-family: var(--font-mono); }
.lp-tier { font-size: .72rem; color: var(--muted); margin-bottom: .4rem; font-family: var(--font-mono); margin-top: .5rem; }
.lp-price { font-size: 1.8rem; font-weight: 800; color: var(--accent); font-family: var(--font-mono); }
.lp-price span { font-size: .8rem; color: var(--muted); }
.lp-sub { font-size: .75rem; color: var(--muted); margin-top: .3rem; margin-bottom: .75rem; }
.lp-list { list-style: none; text-align: left; font-size: .78rem; color: var(--muted); line-height: 1.8; }

/* ═══════════════════════════════════
   PRICING PAGE
═══════════════════════════════════ */
.pricing-section-wrap { margin-bottom: 3rem; }
.pricing-section-header { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border); }
.pricing-section-header span { font-size: 1.5rem; }
.pricing-section-header h3 { font-family: var(--font-mono); font-size: .85rem; letter-spacing: .15em; color: var(--accent); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }
.pdc { background: rgba(8,15,14,.9); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.pdc-featured { border-color: rgba(57,255,20,.4); box-shadow: 0 0 30px rgba(57,255,20,.08); }
.pdc-badge { display: inline-block; font-family: var(--font-mono); font-size: .65rem; font-weight: 700; padding: .2rem .65rem; border-radius: 99px; background: rgba(57,255,20,.1); color: var(--accent); border: 1px solid rgba(57,255,20,.25); margin-bottom: .75rem; }
.pdc-badge-featured { background: var(--accent); color: #000; border-color: var(--accent); }
.pdc-name { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.pdc-price { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--accent); margin-bottom: .25rem; }
.pdc-old { font-size: .8rem; color: var(--muted); text-decoration: line-through; margin-left: .4rem; }
.pdc-dur { font-size: .78rem; color: var(--muted); margin-bottom: 1rem; font-family: var(--font-mono); }
.pdc-list { list-style: none; font-size: .82rem; color: var(--muted); line-height: 1.9; margin-bottom: 1.25rem; }
.pdc-list li::before { content: '✓ '; color: var(--accent); }
.pdc-btn { display: block; width: 100%; text-align: center; background: rgba(57,255,20,.1); border: 1px solid rgba(57,255,20,.3); color: var(--accent); padding: .6rem; border-radius: var(--radius-sm); font-weight: 700; font-size: .82rem; font-family: var(--font-mono); transition: background .2s; }
.pdc-btn:hover { background: rgba(57,255,20,.25); }
.pdc-btn-featured { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #000; border-color: transparent; }
.pdc-btn-featured:hover { box-shadow: 0 0 20px rgba(57,255,20,.4); }

/* ═══════════════════════════════════
   MARKETING PRICING
═══════════════════════════════════ */
.pricing-plans-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.pp-card { background: rgba(8,15,14,.9); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; position: relative; }
.pp-featured { border-color: rgba(57,255,20,.4); box-shadow: 0 0 40px rgba(57,255,20,.1); }
.pp-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #000; font-size: .65rem; font-weight: 900; padding: .25rem .85rem; border-radius: 99px; white-space: nowrap; font-family: var(--font-mono); }
.pp-tier { font-family: var(--font-mono); font-size: .72rem; color: var(--muted); margin-bottom: .5rem; margin-top: .5rem; }
.pp-price { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--accent); margin-bottom: 1rem; }
.pp-price span { font-size: .85rem; color: var(--muted); }
.pp-list { list-style: none; font-size: .85rem; color: var(--muted); line-height: 2; }
.pp-list li::before { content: '✓ '; color: var(--accent); }

/* ═══════════════════════════════════
   BOOKING PAGE
═══════════════════════════════════ */
.booking-benefits { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.5rem; }
.booking-benefits span { font-size: .82rem; background: rgba(57,255,20,.08); border: 1px solid rgba(57,255,20,.2); color: var(--accent); padding: .35rem .9rem; border-radius: 99px; font-family: var(--font-mono); }
.booking-grid { max-width: 700px; }
.booking-form-card { background: rgba(8,15,14,.9); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; }
.booking-form-card h3 { font-size: 1.4rem; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .82rem; font-weight: 600; color: var(--muted); margin-bottom: .4rem; font-family: var(--font-mono); letter-spacing: .05em; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: .75rem 1rem;
  color: var(--text); font-family: var(--font-body); font-size: .9rem;
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(57,255,20,.1); }
.form-select { appearance: none; cursor: pointer; }
.form-textarea { min-height: 120px; resize: vertical; }

/* ═══════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 900px; }
.contact-channels { display: flex; flex-direction: column; gap: 1rem; }
.channel { display: flex; align-items: center; gap: 1rem; background: rgba(8,15,14,.9); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; }
.ch-icon { font-size: 1.5rem; }
.ch-label { font-size: .75rem; color: var(--muted); font-family: var(--font-mono); }
.ch-val { font-weight: 600; }

/* ═══════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════ */
.legal-page { max-width: 800px; margin: 0 auto; padding: 8rem 5vw 5rem; }
.legal-page h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .5rem; }
.legal-date { font-family: var(--font-mono); font-size: .75rem; color: var(--muted); margin-bottom: 2.5rem; }
.legal-section { margin-bottom: 2rem; }
.legal-section h3 { font-size: 1.1rem; margin-bottom: .75rem; color: var(--accent); }
.legal-section p { color: var(--muted); line-height: 1.8; }

/* ═══════════════════════════════════
   WHATSAPP FAB
═══════════════════════════════════ */
.wa-fab { position: fixed; right: 1.5rem; bottom: 4.5rem; z-index: 9995; display: flex; flex-direction: column; align-items: flex-end; gap: .5rem; }
.wa-fab-btn { width: 52px; height: 52px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); text-decoration: none; cursor: pointer; border: none; animation: waPulse 2.5s ease-in-out infinite; transition: transform .2s; }
.wa-fab-btn:hover { transform: scale(1.12); }
@keyframes waPulse { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); } 50% { box-shadow: 0 4px 32px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.12); } }
.wa-fab-label { background: rgba(4,8,10,.95); border: 1px solid rgba(37,211,102,.3); color: #25D366; font-size: .72rem; font-weight: 700; padding: .3rem .7rem; border-radius: 6px; white-space: nowrap; opacity: 0; transform: translateX(8px); transition: all .2s; pointer-events: none; }
.wa-fab:hover .wa-fab-label { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════
   VOICE WELCOME MODAL
═══════════════════════════════════ */
#voice-welcome-modal {
  position: fixed; inset: 0; z-index: 999999;
  background: rgba(4,8,10,.97);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity .8s ease;
}
#voice-matrix-canvas { position: absolute; inset: 0; opacity: .15; pointer-events: none; }
.vwm-content { position: relative; z-index: 2; text-align: center; padding: 2rem; max-width: 560px; }
.vwm-avatar { width: 140px; height: 140px; border-radius: 50%; background: radial-gradient(circle, rgba(57,255,20,.15), rgba(4,8,10,.9)); border: 2px solid rgba(57,255,20,.5); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; box-shadow: 0 0 60px rgba(57,255,20,.3); animation: avatarPulse 1s ease-in-out infinite; font-size: 5rem; }
@keyframes avatarPulse { 0%,100% { box-shadow: 0 0 60px rgba(57,255,20,.3), 0 0 0 0 rgba(57,255,20,.2); } 50% { box-shadow: 0 0 80px rgba(57,255,20,.5), 0 0 0 16px rgba(57,255,20,0); } }
.vwm-eyebrow { font-family: var(--font-mono); font-size: .7rem; color: rgba(57,255,20,.5); letter-spacing: .2em; margin-bottom: .5rem; }
.vwm-title { font-family: var(--font-mono); font-size: clamp(1.4rem, 4vw, 2.2rem); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: .5rem; }
.vwm-sub { font-size: .75em; color: var(--accent2); }
.vwm-typewriter { font-family: var(--font-mono); font-size: .85rem; color: rgba(57,255,20,.8); min-height: 1.5rem; margin: 1rem 0; }
.vwm-bars { display: flex; align-items: center; justify-content: center; gap: 4px; height: 36px; margin-bottom: 1.5rem; }
.vbar { width: 4px; border-radius: 3px; background: linear-gradient(180deg, var(--accent), var(--accent2)); animation: vbarAnim .6s ease-in-out infinite alternate; }
.vbar:nth-child(1) { animation-delay: .0s; } .vbar:nth-child(2) { animation-delay: .07s; } .vbar:nth-child(3) { animation-delay: .14s; }
.vbar:nth-child(4) { animation-delay: .21s; } .vbar:nth-child(5) { animation-delay: .07s; } .vbar:nth-child(6) { animation-delay: .14s; }
.vbar:nth-child(7) { animation-delay: .21s; } .vbar:nth-child(8) { animation-delay: .28s; } .vbar:nth-child(9) { animation-delay: .35s; }
@keyframes vbarAnim { from { height: 6px; } to { height: 32px; } }
.vwm-enter-btn { background: rgba(57,255,20,.1); border: 1px solid rgba(57,255,20,.3); color: var(--accent); padding: .6rem 2rem; border-radius: 8px; font-family: var(--font-mono); font-size: .8rem; cursor: pointer; transition: background .2s; }
.vwm-enter-btn:hover { background: rgba(57,255,20,.2); }

/* ═══════════════════════════════════
   SCROLL INDICATOR & CURSOR GLOW
═══════════════════════════════════ */
#scroll-indicator { position: fixed; top: 68px; left: 0; z-index: 99; height: 2px; width: 0%; background: linear-gradient(90deg, var(--accent), var(--accent2)); transition: width .1s linear; box-shadow: 0 0 8px rgba(57,255,20,.5); }
#cursor-glow { position: fixed; pointer-events: none; z-index: 9998; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(57,255,20,.05) 0%, transparent 65%); transform: translate(-50%,-50%); transition: transform .08s linear, opacity .3s; will-change: transform; }

/* ═══════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════ */
.sa { opacity: 0; will-change: transform, opacity; }
.sa.visible { animation-fill-mode: both; animation-timing-function: cubic-bezier(.22,1,.36,1); }
.sa-fadeup { transform: translateY(48px); }
.sa.visible.sa-fadeup { animation: saFadeUp .75s cubic-bezier(.22,1,.36,1) both; }
@keyframes saFadeUp { to { opacity: 1; transform: translateY(0); } }
.sa-left { transform: translateX(-60px); }
.sa.visible.sa-left { animation: saLeft .7s cubic-bezier(.22,1,.36,1) both; }
@keyframes saLeft { to { opacity: 1; transform: translateX(0); } }
.sa-right { transform: translateX(60px); }
.sa.visible.sa-right { animation: saRight .7s cubic-bezier(.22,1,.36,1) both; }
@keyframes saRight { to { opacity: 1; transform: translateX(0); } }
.sa-pop { transform: scale(.85) translateY(30px); }
.sa.visible.sa-pop { animation: saPop .65s cubic-bezier(.34,1.4,.64,1) both; }
@keyframes saPop { to { opacity: 1; transform: scale(1) translateY(0); } }
.sa-flip { transform: rotateX(-80deg) translateY(20px); transform-origin: top center; }
.sa.visible.sa-flip { animation: saFlip .6s cubic-bezier(.22,1,.36,1) both; }
@keyframes saFlip { to { opacity: 1; transform: rotateX(0) translateY(0); } }
.sa-blur { transform: translateY(24px); filter: blur(12px); }
.sa.visible.sa-blur { animation: saBlur .8s cubic-bezier(.22,1,.36,1) both; }
@keyframes saBlur { to { opacity: 1; transform: translateY(0); filter: blur(0); } }
.sa-glow { transform: scale(.5); filter: blur(8px); }
.sa.visible.sa-glow { animation: saGlow .7s cubic-bezier(.34,1.5,.64,1) both; }
@keyframes saGlow { to { opacity: 1; transform: scale(1); filter: blur(0); } }
.sd-1 { animation-delay: .05s !important; }
.sd-2 { animation-delay: .12s !important; }
.sd-3 { animation-delay: .19s !important; }
.sd-4 { animation-delay: .26s !important; }
.sd-5 { animation-delay: .33s !important; }
.sd-6 { animation-delay: .40s !important; }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .fc-body { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-plans-row { grid-template-columns: 1fr; }
  .lab-intro { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 5rem); }
  .hstat { padding: 0 1rem; }
  .hstat-num { font-size: 1.5rem; }
  .testimonial-card { min-width: calc(100% - 0px); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section-pad { padding: 3.5rem 5vw; }
  .carousel-slide { aspect-ratio: 4/3; }
  .booking-form-card { padding: 1.5rem; }
  #back-btn-wrap { bottom: 1rem; left: 1rem; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-stats { gap: 0; }
  .hstat-div { display: none; }
  .hstat { padding: .5rem 1rem; }
  .game-hud { gap: .5rem; }
  .hud-item { padding: .4rem .75rem; font-size: .7rem; }
}