:root {
--neon: #00FFAA;
--neon-dim: #00ffaa55;
--neon-glow: #00ffaa33;
--bg-void: #020d0a;
--bg-deep: #040f0c;
--bg-surface: #071a14;
--bg-card: #0a2019;
--text-main: #d0fff0;
--text-muted: #5a8a78;
--text-faint: #2a4a3a;
--accent-2: #00c8ff;
--accent-3: #b8ff00;
--danger: #ff4060;
--border: #0d2f22;
--border-lit: #00ffaa30;
}

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

html { scroll-behavior: smooth; }

body {
background: var(--bg-void);
color: var(--text-main);
font-family: 'Syne', sans-serif;
overflow-x: hidden;
cursor: none;
}

/* CUSTOM CURSOR */
.cursor-dot {
width: 8px; height: 8px;
background: var(--neon);
border-radius: 50%;
position: fixed; pointer-events: none; z-index: 99999;
transform: translate(-50%, -50%);
transition: transform 0.05s;
box-shadow: 0 0 12px var(--neon), 0 0 24px var(--neon);
}
.cursor-ring {
width: 36px; height: 36px;
border: 1.5px solid var(--neon-dim);
border-radius: 50%;
position: fixed; pointer-events: none; z-index: 99998;
transform: translate(-50%, -50%);
transition: transform 0.15s ease, width 0.2s, height 0.2s;
}
.cursor-ring.hovered { width: 60px; height: 60px; border-color: var(--neon); }

/* SCANLINE OVERLAY */
body::before {
content: '';
position: fixed; inset: 0; z-index: 9998; pointer-events: none;
background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,255,170,0.018) 2px,
    rgba(0,255,170,0.018) 4px
);
}

/* GRID PATTERN */
body::after {
content: '';
position: fixed; inset: 0; z-index: 0; pointer-events: none;
background-image:
    linear-gradient(rgba(0,255,170,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,170,0.025) 1px, transparent 1px);
background-size: 60px 60px;
mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* ══ NAV ══ */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
display: flex; align-items: center; justify-content: space-between;
padding: 20px 60px;
background: linear-gradient(180deg, rgba(2,13,10,0.95) 0%, transparent 100%);
backdrop-filter: blur(6px);
border-bottom: 1px solid var(--border-lit);
}

.nav-logo {
font-family: 'Orbitron', monospace;
font-weight: 900;
font-size: 1.4rem;
letter-spacing: 0.15em;
color: var(--neon);
text-shadow: 0 0 20px var(--neon), 0 0 40px var(--neon-dim);
text-decoration: none;
display: flex; align-items: center; gap: 10px;
}

.logo-img {
    width: 42px;
    height: 42px; 
    object-fit: contain; 
    filter: drop-shadow(0 0 4px var(--neon));
}

.nav-links {
display: flex; gap: 40px; list-style: none;
}

.nav-links a {
font-family: 'Space Mono', monospace;
font-size: 0.72rem;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--text-muted);
text-decoration: none;
transition: color 0.3s, text-shadow 0.3s;
position: relative;
}

.nav-links a::after {
content: '';
position: absolute; bottom: -4px; left: 0; right: 0;
height: 1px; background: var(--neon);
transform: scaleX(0); transform-origin: right;
transition: transform 0.3s ease;
}

.nav-links a:hover { color: var(--neon); text-shadow: 0 0 12px var(--neon); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
font-family: 'Space Mono', monospace;
font-size: 0.72rem;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--bg-void);
background: var(--neon);
padding: 10px 24px;
border: none; cursor: none;
clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
transition: box-shadow 0.3s, transform 0.2s;
font-weight: 700;
}

.nav-cta:hover {
box-shadow: 0 0 24px var(--neon), 0 0 48px var(--neon-dim);
transform: translateY(-1px);
}

/* ══ HERO ══ */
.hero {
min-height: 100vh;
display: flex; align-items: center; justify-content: center;
position: relative;
padding: 120px 60px 80px;
overflow: hidden;
}

.hero-orb {
position: absolute;
border-radius: 50%;
filter: blur(80px);
pointer-events: none;
}

.orb-1 {
width: 600px; height: 600px;
background: radial-gradient(circle, rgba(0,255,170,0.12) 0%, transparent 70%);
top: -100px; left: -100px;
animation: orbFloat1 12s ease-in-out infinite;
}

.orb-2 {
width: 400px; height: 400px;
background: radial-gradient(circle, rgba(0,200,255,0.08) 0%, transparent 70%);
bottom: 0; right: -50px;
animation: orbFloat2 9s ease-in-out infinite;
}

@keyframes orbFloat1 {
0%, 100% { transform: translate(0, 0) scale(1); }
50% { transform: translate(60px, 40px) scale(1.1); }
}
@keyframes orbFloat2 {
0%, 100% { transform: translate(0, 0) scale(1); }
50% { transform: translate(-40px, -60px) scale(0.9); }
}

.hero-content {
max-width: 1000px;
text-align: center;
position: relative; z-index: 2;
}

.hero-eyebrow {
font-family: 'Space Mono', monospace;
font-size: 0.7rem;
letter-spacing: 0.4em;
text-transform: uppercase;
color: var(--neon);
margin-bottom: 30px;
display: flex; align-items: center; justify-content: center; gap: 16px;
opacity: 0;
animation: fadeSlideUp 0.8s 0.2s ease forwards;
}

.eyebrow-line {
height: 1px; width: 60px;
background: linear-gradient(90deg, transparent, var(--neon));
}
.eyebrow-line.right { background: linear-gradient(270deg, transparent, var(--neon)); }

.hero-title {
font-family: 'Orbitron', monospace;
font-weight: 900;
font-size: clamp(3rem, 8vw, 6.5rem);
line-height: 0.95;
letter-spacing: -0.02em;
margin-bottom: 30px;
opacity: 0;
animation: fadeSlideUp 0.8s 0.4s ease forwards;
}

.title-line-1 { color: var(--text-main); display: block; }
.title-line-2 {
display: block;
color: transparent;
-webkit-text-stroke: 2px var(--neon);
text-shadow: 0 0 60px var(--neon-dim);
position: relative;
}

.title-line-2::after {
content: attr(data-text);
position: absolute; left: 0; top: 0;
color: var(--neon);
-webkit-text-stroke: 0;
clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
animation: textReveal 2s 1.5s ease forwards;
text-shadow: 0 0 40px var(--neon), 0 0 80px var(--neon-dim);
}

@keyframes textReveal {
to { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
}

.hero-sub {
font-size: 1.1rem;
line-height: 1.7;
color: var(--text-muted);
max-width: 600px;
margin: 0 auto 50px;
font-weight: 300;
opacity: 0;
animation: fadeSlideUp 0.8s 0.6s ease forwards;
}

.hero-actions {
display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
opacity: 0;
animation: fadeSlideUp 0.8s 0.8s ease forwards;
}

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

.btn-primary {
font-family: 'Space Mono', monospace;
font-size: 0.8rem;
letter-spacing: 0.15em;
text-transform: uppercase;
font-weight: 700;
color: var(--bg-void);
background: var(--neon);
padding: 16px 40px;
border: none; text-decoration: none;
cursor: none; display: inline-flex; align-items: center; gap: 10px;
clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
transition: box-shadow 0.3s, transform 0.2s;
position: relative; overflow: hidden;
}

.btn-primary::before {
content: '';
position: absolute; inset: 0;
background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
transform: translateX(-100%);
transition: transform 0.5s ease;
}

.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
box-shadow: 0 0 32px var(--neon), 0 0 64px var(--neon-dim);
transform: translateY(-2px);
}

.btn-ghost {
font-family: 'Space Mono', monospace;
font-size: 0.8rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--neon);
background: transparent;
padding: 15px 40px;
border: 1px solid var(--neon-dim);
text-decoration: none; cursor: none;
display: inline-flex; align-items: center; gap: 10px;
clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
transition: all 0.3s;
}

.btn-ghost:hover {
background: var(--neon-glow);
border-color: var(--neon);
box-shadow: 0 0 20px var(--neon-dim);
}

.yt-badge {
display: inline-flex; align-items: center; gap: 6px;
background: rgba(255,40,60,0.12);
border: 1px solid rgba(255,40,60,0.3);
border-radius: 4px; padding: 4px 12px;
font-family: 'Space Mono', monospace;
font-size: 0.65rem; letter-spacing: 0.1em;
color: #ff6070;
}

.yt-dot { width: 6px; height: 6px; background: #ff4050; border-radius: 50%; animation: pulse 2s infinite; }

/* HERO STATS */
.hero-stats {
display: flex; gap: 60px; justify-content: center;
margin-top: 80px; padding-top: 60px;
border-top: 1px solid var(--border-lit);
opacity: 0;
animation: fadeSlideUp 0.8s 1s ease forwards;
}

.stat-item { text-align: center; }

.stat-num {
font-family: 'Orbitron', monospace;
font-size: 2.2rem;
font-weight: 700;
color: var(--neon);
text-shadow: 0 0 20px var(--neon);
display: block;
line-height: 1;
margin-bottom: 6px;
}

.stat-label {
font-family: 'Space Mono', monospace;
font-size: 0.65rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--text-muted);
}

/* ══ TICKER ══ */
.ticker-wrap {
overflow: hidden;
background: var(--bg-surface);
border-top: 1px solid var(--border-lit);
border-bottom: 1px solid var(--border-lit);
padding: 14px 0;
position: relative; z-index: 2;
}

.ticker-track {
display: flex; gap: 0;
animation: ticker 30s linear infinite;
width: max-content;
}

.ticker-item {
font-family: 'Space Mono', monospace;
font-size: 0.7rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--text-muted);
padding: 0 40px;
display: flex; align-items: center; gap: 20px;
white-space: nowrap;
}

.ticker-item span { color: var(--neon); }
.ticker-sep { color: var(--text-faint); }

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

/* ══ SECTION LAYOUT ══ */
section { position: relative; z-index: 2; }

.section-header {
margin-bottom: 70px;
}

.section-tag {
font-family: 'Space Mono', monospace;
font-size: 0.65rem;
letter-spacing: 0.35em;
text-transform: uppercase;
color: var(--neon);
margin-bottom: 16px;
display: flex; align-items: center; gap: 12px;
}

.tag-dash { height: 1px; width: 40px; background: var(--neon); }

.section-title {
font-family: 'Orbitron', monospace;
font-weight: 700;
font-size: clamp(1.8rem, 4vw, 3rem);
line-height: 1.1;
letter-spacing: -0.01em;
}

/* ══ ABOUT ══ */
.about { padding: 120px 60px; }

.about-grid {
max-width: 1200px; margin: 0 auto;
display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

.about-visual {
position: relative;
aspect-ratio: 1;
max-width: 460px;
}

.about-hexagon {
width: 100%; aspect-ratio: 1;
position: relative; display: flex; align-items: center; justify-content: center;
}

.hex-ring {
position: absolute;
border: 1px solid var(--neon-dim);
border-radius: 50%;
animation: hexSpin linear infinite;
}

.hex-ring:nth-child(1) { width: 100%; height: 100%; animation-duration: 20s; }
.hex-ring:nth-child(2) { width: 80%; height: 80%; animation-duration: 15s; animation-direction: reverse; border-color: rgba(0,200,255,0.15); }
.hex-ring:nth-child(3) { width: 60%; height: 60%; animation-duration: 10s; }

.hex-ring::before {
content: '';
position: absolute; top: -3px; left: 50%;
transform: translateX(-50%);
width: 6px; height: 6px;
background: var(--neon);
border-radius: 50%;
box-shadow: 0 0 10px var(--neon);
}

@keyframes hexSpin { to { transform: rotate(360deg); } }

.hex-core {
width: 200px; height: 200px;
background: var(--bg-card);
border: 1px solid var(--border-lit);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
flex-direction: column; gap: 8px;
box-shadow: 0 0 40px var(--neon-glow), inset 0 0 40px rgba(0,255,170,0.04);
position: relative; z-index: 2;
}

.hex-logo {
    width: 80px;
    height: 80px; 
    object-fit: contain; 
    filter: drop-shadow(0 0 8px var(--neon));
}                                                                                                                                          
.hex-label {
font-family: 'Space Mono', monospace;
font-size: 0.6rem;
letter-spacing: 0.2em;
color: var(--text-muted);
text-transform: uppercase;
}

.about-text p {
font-size: 1.05rem;
line-height: 1.8;
color: var(--text-muted);
margin-bottom: 20px;
font-weight: 300;
}

.about-text p strong { color: var(--text-main); font-weight: 600; }

.about-features {
margin-top: 40px;
display: flex; flex-direction: column; gap: 16px;
}

.feature-row {
display: flex; align-items: center; gap: 16px;
padding: 16px 20px;
border: 1px solid var(--border);
background: var(--bg-card);
transition: border-color 0.3s, transform 0.3s;
}

.feature-row:hover {
border-color: var(--neon-dim);
transform: translateX(8px);
}

.feature-icon {
width: 36px; height: 36px;
background: var(--neon-glow);
border: 1px solid var(--neon-dim);
display: flex; align-items: center; justify-content: center;
font-size: 1rem; flex-shrink: 0;
}

.feature-text {
font-family: 'Space Mono', monospace;
font-size: 0.75rem;
color: var(--text-main);
letter-spacing: 0.05em;
}

/* ══ COURSES ══ */
.courses { padding: 120px 60px; background: var(--bg-deep); }

.courses-inner { max-width: 1200px; margin: 0 auto; }

.courses-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2px;
}

.course-card {
background: var(--bg-card);
padding: 40px;
border: 1px solid var(--border);
position: relative; overflow: hidden;
transition: border-color 0.3s, transform 0.3s;
cursor: none;
}

.course-card::before {
content: '';
position: absolute; top: 0; left: 0; right: 0;
height: 2px;
background: var(--neon);
transform: scaleX(0); transform-origin: left;
transition: transform 0.4s ease;
}

.course-card:hover { border-color: var(--border-lit); transform: translateY(-4px); }
.course-card:hover::before { transform: scaleX(1); }

.course-card.featured {
border-color: var(--neon-dim);
background: linear-gradient(135deg, var(--bg-card), #0d2a20);
}

.course-card.featured::before { transform: scaleX(1); }

.course-num {
font-family: 'Orbitron', monospace;
font-size: 0.65rem;
color: var(--text-faint);
letter-spacing: 0.2em;
margin-bottom: 30px;
}

.course-badge {
display: inline-flex; align-items: center; gap: 6px;
background: var(--neon-glow);
border: 1px solid var(--neon-dim);
padding: 4px 12px; margin-bottom: 20px;
font-family: 'Space Mono', monospace;
font-size: 0.6rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--neon);
}

.course-title {
font-family: 'Orbitron', monospace;
font-weight: 700;
font-size: 1.1rem;
line-height: 1.3;
color: var(--text-main);
margin-bottom: 16px;
letter-spacing: 0.02em;
}

.course-desc {
font-size: 0.9rem;
line-height: 1.7;
color: var(--text-muted);
margin-bottom: 30px;
}

.course-meta {
display: flex; gap: 20px;
font-family: 'Space Mono', monospace;
font-size: 0.65rem;
color: var(--text-faint);
letter-spacing: 0.1em;
border-top: 1px solid var(--border);
padding-top: 20px;
}

.course-meta span { color: var(--text-muted); }

/* ══ HOW IT WORKS ══ */
.process { padding: 120px 60px; }
.process-inner { max-width: 1200px; margin: 0 auto; }

.process-steps {
display: grid; grid-template-columns: repeat(4, 1fr);
gap: 2px; position: relative;
}

.process-steps::before {
content: '';
position: absolute; top: 60px; left: 0; right: 0;
height: 1px;
background: linear-gradient(90deg,
    transparent 0%,
    var(--neon-dim) 20%,
    var(--neon-dim) 80%,
    transparent 100%
);
z-index: 0;
}

.step {
background: var(--bg-card);
border: 1px solid var(--border);
padding: 40px 30px;
position: relative; z-index: 1;
transition: border-color 0.3s;
}

.step:hover { border-color: var(--border-lit); }

.step-num {
font-family: 'Orbitron', monospace;
font-size: 0.65rem;
letter-spacing: 0.2em;
color: var(--text-faint);
margin-bottom: 20px;
}

.step-icon-wrap {
width: 52px; height: 52px;
border: 1px solid var(--neon-dim);
background: var(--bg-surface);
display: flex; align-items: center; justify-content: center;
margin-bottom: 24px;
font-size: 1.4rem;
position: relative;
}

.step-icon-wrap::after {
content: '';
position: absolute; inset: -4px;
border: 1px solid transparent;
border-top-color: var(--neon);
animation: spinCorner 3s linear infinite;
}

@keyframes spinCorner { to { transform: rotate(360deg); } }

.step-title {
font-family: 'Orbitron', monospace;
font-weight: 600;
font-size: 0.9rem;
color: var(--text-main);
margin-bottom: 12px;
letter-spacing: 0.05em;
}

.step-desc {
font-size: 0.88rem;
line-height: 1.7;
color: var(--text-muted);
}

/* ══ YOUTUBE ══ */
.youtube { padding: 120px 60px; background: var(--bg-deep); }
.youtube-inner { max-width: 1200px; margin: 0 auto; }

.yt-showcase {
display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center;
}

.yt-player-mock {
position: relative;
aspect-ratio: 16/9;
background: #0a0a0a;
border: 1px solid var(--border-lit);
overflow: hidden;
cursor: none;
}

.yt-player-mock::before {
content: '';
position: absolute; inset: 0;
background: linear-gradient(135deg, rgba(0,255,170,0.06) 0%, transparent 60%);
}

.yt-grid-lines {
position: absolute; inset: 0;
background-image:
    linear-gradient(rgba(0,255,170,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,170,0.04) 1px, transparent 1px);
background-size: 40px 40px;
}

.yt-play-btn {
position: absolute; inset: 0;
display: flex; align-items: center; justify-content: center;
flex-direction: column; gap: 16px;
}

.play-circle {
width: 80px; height: 80px;
border: 2px solid var(--neon);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
box-shadow: 0 0 30px var(--neon-dim), 0 0 60px var(--neon-glow);
animation: playPulse 2s ease-in-out infinite;
transition: transform 0.3s;
cursor: none;
}

.play-circle:hover { transform: scale(1.1); }

.play-triangle {
width: 0; height: 0;
border-top: 14px solid transparent;
border-bottom: 14px solid transparent;
border-left: 22px solid var(--neon);
margin-left: 4px;
filter: drop-shadow(0 0 8px var(--neon));
}

@keyframes playPulse {
0%, 100% { box-shadow: 0 0 30px var(--neon-dim), 0 0 60px var(--neon-glow); }
50% { box-shadow: 0 0 50px rgba(0,255,170,0.5), 0 0 100px var(--neon-dim); }
}

.yt-label {
font-family: 'Space Mono', monospace;
font-size: 0.65rem;
letter-spacing: 0.2em;
color: var(--text-muted);
text-transform: uppercase;
}

.yt-bar {
position: absolute; bottom: 0; left: 0; right: 0;
background: rgba(0,0,0,0.8);
padding: 12px 20px;
display: flex; align-items: center; gap: 12px;
}

.yt-progress {
flex: 1; height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden;
}

.yt-progress-fill {
height: 100%; width: 35%;
background: linear-gradient(90deg, var(--neon), var(--accent-2));
border-radius: 2px;
}

.yt-time {
font-family: 'Space Mono', monospace;
font-size: 0.6rem; color: var(--text-muted);
}

.yt-info { }

.yt-sub-count {
font-family: 'Orbitron', monospace;
font-size: 2.5rem;
font-weight: 700;
color: var(--neon);
text-shadow: 0 0 20px var(--neon);
margin-bottom: 8px;
}

.yt-sub-label {
font-family: 'Space Mono', monospace;
font-size: 0.7rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--text-muted);
margin-bottom: 30px;
}

.yt-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }

.yt-feat {
display: flex; align-items: center; gap: 12px;
font-size: 0.9rem;
color: var(--text-muted);
}

.yt-feat::before {
content: '▸';
color: var(--neon);
font-size: 0.8rem;
}

/* ══ TESTIMONIALS ══ */
.testimonials { padding: 120px 60px; }
.testimonials-inner { max-width: 1200px; margin: 0 auto; }

.testimonials-grid {
display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}

.testi-card {
background: var(--bg-card);
border: 1px solid var(--border);
padding: 36px;
position: relative; overflow: hidden;
transition: border-color 0.3s;
}

.testi-card:hover { border-color: var(--border-lit); }

.testi-quote {
font-family: 'Orbitron', monospace;
font-size: 2.5rem;
color: var(--neon-dim);
line-height: 1;
margin-bottom: 16px;
}

.testi-text {
font-size: 0.92rem;
line-height: 1.75;
color: var(--text-muted);
margin-bottom: 28px;
font-style: italic;
}

.testi-author { display: flex; align-items: center; gap: 14px; }

.testi-avatar {
width: 42px; height: 42px;
border: 1px solid var(--neon-dim);
background: var(--bg-surface);
display: flex; align-items: center; justify-content: center;
font-family: 'Orbitron', monospace;
font-size: 0.9rem;
color: var(--neon);
font-weight: 700;
}

.testi-name {
font-family: 'Space Mono', monospace;
font-size: 0.75rem;
color: var(--text-main);
letter-spacing: 0.05em;
margin-bottom: 3px;
}

.testi-role {
font-size: 0.75rem;
color: var(--text-faint);
}

/* ══ CTA ══ */
.cta-section {
padding: 120px 60px;
background: var(--bg-deep);
text-align: center;
position: relative; overflow: hidden;
}

.cta-section::before {
content: '';
position: absolute; top: 50%; left: 50%;
transform: translate(-50%, -50%);
width: 800px; height: 400px;
background: radial-gradient(ellipse, rgba(0,255,170,0.06) 0%, transparent 70%);
pointer-events: none;
}

.cta-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }

.cta-title {
font-family: 'Orbitron', monospace;
font-weight: 900;
font-size: clamp(2rem, 5vw, 4rem);
line-height: 1.1;
margin-bottom: 20px;
color: var(--text-main);
}

.cta-title .highlight {
color: var(--neon);
text-shadow: 0 0 30px var(--neon), 0 0 60px var(--neon-dim);
}

.cta-sub {
font-size: 1rem; color: var(--text-muted); margin-bottom: 50px; line-height: 1.7;
}

.cta-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ══ FOOTER ══ */
footer {
background: var(--bg-void);
border-top: 1px solid var(--border-lit);
padding: 60px;
position: relative; z-index: 2;
}

.footer-grid {
max-width: 1200px; margin: 0 auto;
display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
margin-bottom: 60px;
}

.footer-brand .nav-logo { font-size: 1.2rem; margin-bottom: 20px; display: inline-flex; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; color: var(--text-muted); }

.footer-col h4 {
font-family: 'Space Mono', monospace;
font-size: 0.65rem;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--neon);
margin-bottom: 24px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.footer-col a {
font-size: 0.88rem;
color: var(--text-muted);
text-decoration: none;
transition: color 0.3s;
}

.footer-col a:hover { color: var(--text-main); }

.footer-bottom {
max-width: 1200px; margin: 0 auto;
display: flex; align-items: center; justify-content: space-between;
padding-top: 30px;
border-top: 1px solid var(--border);
font-family: 'Space Mono', monospace;
font-size: 0.65rem;
letter-spacing: 0.1em;
color: var(--text-faint);
}

.status-dot { display: flex; align-items: center; gap: 8px; }
.dot { width: 6px; height: 6px; background: var(--neon); border-radius: 50%; animation: pulse 2s infinite; }

@keyframes pulse {
0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--neon-dim); }
50% { opacity: 0.6; box-shadow: 0 0 0 6px transparent; }
}

/* ══ SCROLL ANIMATIONS ══ */
.reveal {
opacity: 0; transform: translateY(30px);
transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
.courses-grid { grid-template-columns: 1fr 1fr; }
.process-steps { grid-template-columns: 1fr 1fr; }
.about-grid { grid-template-columns: 1fr; }
.about-visual { max-width: 300px; margin: 0 auto; }
.yt-showcase { grid-template-columns: 1fr; }
.footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
nav { padding: 16px 24px; }
.nav-links { display: none; }
.hero, .about, .courses, .process, .youtube, .testimonials, .cta-section { padding: 80px 24px; }
.courses-grid, .testimonials-grid { grid-template-columns: 1fr; }
.process-steps { grid-template-columns: 1fr; }
.hero-stats { flex-direction: column; gap: 30px; }
.footer-grid { grid-template-columns: 1fr; gap: 40px; }
footer { padding: 40px 24px; }
}