/* ============================================================
   Vexus Studios — Creative Production Studio
   style.css  v4.0  |  Dark default + Light theme
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── CSS Custom Properties — Dark Theme (default) ── */
:root {
    --primary:       #6366f1;
    --primary-dark:  #4f52c8;
    --secondary:     #8b5cf6;
    --accent:        #ec4899;
    --text:          #ffffff;
    --text-muted:    #94a3b8;
    --text-dim:      #64748b;
    --bg:            #0f172a;
    --bg-mid:        #131d31;
    --bg-card:       #1e293b;
    --bg-card-hover: #253044;
    --border:        rgba(99,102,241,0.18);
    --border-hover:  rgba(99,102,241,0.45);
    --glow:          rgba(99,102,241,0.25);
    --shadow:        rgba(0,0,0,0.40);
    --radius-sm:     0.5rem;
    --radius:        0.875rem;
    --radius-lg:     1.25rem;
    --transition:    0.3s ease;
    --nav-h:         72px;
    --section-pad:   6rem;
}

/* ── CSS Custom Properties — Light Theme ── */
[data-theme="light"] {
    --text:          #0f172a;
    --text-muted:    #475569;
    --text-dim:      #94a3b8;
    --bg:            #f8fafc;
    --bg-mid:        #f1f5f9;
    --bg-card:       #ffffff;
    --bg-card-hover: #f8fafc;
    --border:        rgba(99,102,241,0.14);
    --border-hover:  rgba(99,102,241,0.38);
    --glow:          rgba(99,102,241,0.10);
    --shadow:        rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.4s ease, color 0.3s ease;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }

/* ── Accessibility ── */
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* Skip link — hidden until focused via keyboard */
.skip-link {
    position: fixed; top: -5rem; left: 50%;
    transform: translateX(-50%);
    background: var(--primary); color: #fff;
    padding: 0.75rem 1.5rem; border-radius: 0 0 var(--radius) var(--radius);
    font-size: 0.875rem; font-weight: 600; text-decoration: none;
    z-index: 9999; white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    transition: top 0.15s ease;
}
.skip-link:focus, .skip-link:focus-visible { top: 0; outline: none; }

/* ── Focus Visible — keyboard navigation ring ── */
:focus                { outline: none; }
:focus-visible        { outline: 2px solid var(--primary); outline-offset: 3px; }
a:focus-visible       { border-radius: 4px; }
button:focus-visible  { border-radius: 4px; }
.btn:focus-visible    { outline-offset: 4px; border-radius: 50px; }
.nav-links a:focus-visible, .filter-btn:focus-visible { border-radius: var(--radius-sm); }
.theme-toggle:focus-visible, .social-icon:focus-visible { border-radius: 50%; outline-offset: 4px; }
.platform-icon:focus-visible { border-radius: 6px; outline-offset: 3px; }
.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible { outline: 2px solid var(--primary); outline-offset: 0; }

/* ── Touch Targets (WCAG 2.5.5 — minimum 44×44 px on touch devices) ── */
@media (pointer: coarse) {
    .nav-links a   { padding-top: 0.65rem; padding-bottom: 0.65rem; }
    .filter-btn    { min-height: 44px; }
    .platform-icon { width: 44px; height: 44px; }
    .social-icon   { width: 44px; height: 44px; }
    .theme-toggle  { width: 44px; height: 44px; }
    .nav-toggle    { padding: 10px; }
}

/* ── High Contrast / Forced Colors (Windows High Contrast Mode) ── */
@media (forced-colors: active) {
    .btn-primary, .btn-discord { border: 2px solid ButtonText; forced-color-adjust: none; }
    .service-card, .creator-card, .review-card, .network-card, .contact-lane { border-color: ButtonText; }
    .hero-headline, .stat-number, .stat-suffix {
        -webkit-text-fill-color: CanvasText; background: none;
    }
    .section-eyebrow, .creator-niche, .service-tags span { border-color: ButtonText; }
    .nav-links a::after, #scrollProgress { background: Highlight; }
    .scroll-mouse { border-color: ButtonText; }
    .scroll-dot   { background: ButtonText; }
}

/* ── Scroll Progress Bar ── */
#scrollProgress {
    position: fixed; top: 0; left: 0;
    width: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    z-index: 9999; pointer-events: none;
    border-radius: 0 2px 2px 0;
}

/* ── Cursor Glow (desktop only) ── */
#cursorGlow {
    position: fixed; top: 50%; left: 50%;
    width: 360px; height: 360px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99,102,241,0.07) 0%, transparent 70%);
    pointer-events: none; z-index: 0; will-change: left, top;
    opacity: 0; transition: opacity 1s ease;
}
@media (hover: none), (pointer: coarse) { #cursorGlow { display: none; } }

/* ── Scroll-reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Staggered reveal delays */
.services-grid  .reveal:nth-child(2) { transition-delay: 0.08s; }
.services-grid  .reveal:nth-child(3) { transition-delay: 0.16s; }
.services-grid  .reveal:nth-child(4) { transition-delay: 0.24s; }
.services-grid  .reveal:nth-child(5) { transition-delay: 0.32s; }
.services-grid  .reveal:nth-child(6) { transition-delay: 0.40s; }
.creators-grid  .reveal:nth-child(2) { transition-delay: 0.08s; }
.creators-grid  .reveal:nth-child(3) { transition-delay: 0.16s; }
.creators-grid  .reveal:nth-child(4) { transition-delay: 0.24s; }
.creators-grid  .reveal:nth-child(5) { transition-delay: 0.32s; }
.creators-grid  .reveal:nth-child(6) { transition-delay: 0.40s; }
.creators-grid  .reveal:nth-child(7) { transition-delay: 0.48s; }
.reviews-grid   .reveal:nth-child(2) { transition-delay: 0.12s; }
.reviews-grid   .reveal:nth-child(3) { transition-delay: 0.24s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--nav-h); z-index: 200;
    background: rgba(15,23,42,0.75);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
[data-theme="light"] .site-nav { background: rgba(248,250,252,0.85); }

.site-nav.scrolled {
    background: rgba(15,23,42,0.95);
    border-color: var(--border-hover);
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
[data-theme="light"] .site-nav.scrolled {
    background: rgba(248,250,252,0.97);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 2rem;
    height: 100%; display: flex; align-items: center; gap: 1.5rem;
}

.nav-logo { display: flex; align-items: center; margin-right: auto; }

/* Dual logos — CSS controls which shows */
.nav-logo .logo-dark, .nav-logo .logo-light { height: 36px; width: auto; display: block; }
[data-theme="light"] .logo-dark  { display: none; }
[data-theme="dark"]  .logo-light { display: none; }

.nav-links { display: flex; gap: 1.75rem; align-items: center; }
.nav-links a {
    font-size: 0.875rem; font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative; padding-bottom: 2px;
}
.nav-links a::after {
    content: ''; position: absolute;
    bottom: -2px; left: 0; width: 0; height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 1px; transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-discord {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: #5865f2; color: #fff;
    font-size: 0.82rem; font-weight: 600;
    padding: 0.45rem 1rem; border-radius: 20px;
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
}
.nav-discord:hover { background: #4752c4; transform: translateY(-1px); }

/* ── Theme Toggle ── */
.theme-toggle {
    background: none; border: 1px solid var(--border);
    border-radius: 50%; width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); flex-shrink: 0; position: relative; overflow: hidden;
    transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.theme-toggle:hover { color: var(--text); border-color: var(--primary); background: var(--bg-card); }

.theme-toggle .icon-sun, .theme-toggle .icon-moon {
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.theme-toggle .icon-sun  { opacity: 0; transform: rotate(90deg) scale(0.7); }
.theme-toggle .icon-moon { opacity: 1; transform: rotate(0deg) scale(1); }
[data-theme="light"] .theme-toggle .icon-sun  { opacity: 1; transform: rotate(0deg) scale(1); }
[data-theme="light"] .theme-toggle .icon-moon { opacity: 0; transform: rotate(-90deg) scale(0.7); }

/* ── Hamburger → × ── */
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; padding: 6px; cursor: pointer;
}
.nav-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--text-muted); border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.site-nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative; min-height: 100svh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden; background: var(--bg);
    padding: calc(var(--nav-h) + 3rem) 2rem 4rem;
}

#heroCanvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none; z-index: 0;
}

.hero::before, .hero::after {
    content: ''; position: absolute; border-radius: 50%;
    pointer-events: none; z-index: 0;
    animation: auroraFloat 14s ease-in-out infinite alternate;
}
.hero::before {
    top: 10%; left: 5%;
    width: 50vw; height: 50vw; max-width: 600px; max-height: 600px;
    background: radial-gradient(ellipse, rgba(99,102,241,0.14) 0%, transparent 70%);
}
.hero::after {
    bottom: 5%; right: 5%;
    width: 40vw; height: 40vw; max-width: 500px; max-height: 500px;
    background: radial-gradient(ellipse, rgba(139,92,246,0.11) 0%, transparent 70%);
    animation-direction: alternate-reverse; animation-duration: 18s;
}
@keyframes auroraFloat {
    0%   { transform: translate(0,0) scale(1); }
    50%  { transform: translate(3%,5%) scale(1.06); }
    100% { transform: translate(-3%,2%) scale(0.97); }
}

.hero-inner {
    position: relative; z-index: 1;
    max-width: 760px; margin: 0 auto;
    display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
}

.hero-logo {
    height: 72px; width: auto;
    filter: drop-shadow(0 0 32px rgba(99,102,241,0.45));
    animation: heroLogoPulse 4s ease-in-out infinite;
}
[data-theme="dark"]  .hero-logo.logo-light { display: none; }
[data-theme="light"] .hero-logo.logo-dark  { display: none; }
[data-theme="light"] .hero-logo {
    filter: drop-shadow(0 0 24px rgba(99,102,241,0.30));
}

@keyframes heroLogoPulse {
    0%, 100% { filter: drop-shadow(0 0 28px rgba(99,102,241,0.40)); }
    50%       { filter: drop-shadow(0 0 50px rgba(139,92,246,0.58)); }
}

.hero-eyebrow {
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--primary);
    background: rgba(99,102,241,0.1);
    padding: 0.3rem 1rem; border-radius: 20px;
    border: 1px solid rgba(99,102,241,0.25);
}
.hero-headline {
    font-size: clamp(2.25rem, 6vw, 4rem);
    font-weight: 700; line-height: 1.12; letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text) 30%, var(--primary) 70%, var(--accent) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-muted); max-width: 580px; line-height: 1.7;
}
.hero-ctas {
    display: flex; gap: 1rem; flex-wrap: wrap;
    justify-content: center; margin-top: 0.5rem;
}
.hero-scroll-indicator {
    position: absolute; bottom: 2rem; left: 50%;
    transform: translateX(-50%); z-index: 1;
    animation: scrollIndicatorFade 2s ease-in-out infinite;
}
.scroll-mouse {
    width: 24px; height: 40px;
    border: 2px solid rgba(99,102,241,0.6);
    border-radius: 12px;
    display: flex; justify-content: center;
    padding-top: 7px; box-sizing: border-box;
}
.scroll-dot {
    width: 4px; height: 7px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollDotBounce 1.8s ease-in-out infinite;
}
@keyframes scrollDotBounce {
    0%, 100% { transform: translateY(0);    opacity: 1; }
    60%       { transform: translateY(13px); opacity: 0.2; }
}
@keyframes scrollIndicatorFade {
    0%, 100% { opacity: 0.8; }
    50%       { opacity: 0.35; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    background: var(--bg-mid);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 3rem 2rem; position: relative; overflow: hidden;
}
.stats-bar::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(99,102,241,0.04), transparent);
    pointer-events: none;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.stat-number, .stat-suffix {
    font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-suffix { font-size: clamp(1.5rem, 3vw, 2.25rem); }
.stat-label { font-size: 0.8rem; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: var(--section-pad) 0; position: relative; }
.section-alt { background: var(--bg-mid); }

/* Subtle dot-grid texture */
.section::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(99,102,241,0.06) 1px, transparent 1px);
    background-size: 28px 28px; pointer-events: none; z-index: 0;
}
.section .section-inner, .section > * { position: relative; z-index: 1; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow {
    display: inline-block; font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase; color: var(--primary);
    background: rgba(99,102,241,0.1); padding: 0.25rem 0.85rem;
    border-radius: 20px; border: 1px solid rgba(99,102,241,0.22); margin-bottom: 0.75rem;
}
.section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.85rem; line-height: 1.2; }
.section-sub { font-size: 1rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.75rem; border-radius: 50px;
    font-size: 0.9rem; font-weight: 600; border: none; cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    text-decoration: none; white-space: nowrap;
}
.btn:active { transform: scale(0.97) !important; }
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff; box-shadow: 0 4px 20px rgba(99,102,241,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(99,102,241,0.48); }
.btn-discord { background: #5865f2; color: #fff; box-shadow: 0 4px 16px rgba(88,101,242,0.3); }
.btn-discord:hover { background: #4752c4; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(88,101,242,0.45); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border-hover); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.service-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 2rem 1.75rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease, background 0.3s ease;
    cursor: default; will-change: transform; position: relative; overflow: hidden;
}
.service-card::after {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
    transition: left 0.5s ease; pointer-events: none;
}
.service-card:hover::after { left: 150%; }
.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 40px var(--glow), 0 0 0 1px rgba(99,102,241,0.1);
    background: var(--bg-card-hover);
}

.service-icon {
    width: 52px; height: 52px; background: rgba(99,102,241,0.12);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem; color: var(--primary);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.service-card:hover .service-icon { background: rgba(99,102,241,0.22); color: var(--secondary); transform: scale(1.1) rotate(5deg); }
.service-icon svg { width: 26px; height: 26px; stroke: currentColor; }

.service-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.65rem; }
.service-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.1rem; }

.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.service-tags span {
    font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--primary); background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.18);
    padding: 0.2rem 0.55rem; border-radius: 10px;
    transition: background 0.2s ease;
}
.service-card:hover .service-tags span { background: rgba(99,102,241,0.18); }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-filters { display: flex; justify-content: center; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
    background: var(--bg-card); border: 1px solid var(--border);
    color: var(--text-muted); padding: 0.5rem 1.25rem;
    border-radius: 50px; font-size: 0.82rem; font-weight: 600;
    transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--primary); color: var(--text); }
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent; color: #fff;
    box-shadow: 0 4px 16px rgba(99,102,241,0.35);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}
.portfolio-item { break-inside: avoid; margin-bottom: 1.25rem; border-radius: var(--radius); overflow: hidden; transition: opacity 0.35s ease; }
.portfolio-item.hidden { display: none; }
.portfolio-img-wrap { position: relative; overflow: hidden; border-radius: var(--radius); }
.portfolio-img-wrap img { width: 100%; height: auto; display: block; transition: transform 0.45s ease; }
.portfolio-item:hover .portfolio-img-wrap img { transform: scale(1.06); }
.portfolio-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.92) 0%, transparent 60%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.25rem; opacity: 0; transition: opacity 0.35s ease;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-title { font-size: 0.9rem; font-weight: 600; color: #fff; }
.portfolio-tag { font-size: 0.7rem; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.25rem; }
.portfolio-play-btn {
    position: absolute; top: 50%; left: 50%; z-index: 2;
    transform: translate(-50%, -50%) scale(0.8);
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(220,0,0,0.9); color: #fff;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}
.portfolio-play-btn svg { width: 22px; height: 22px; margin-left: 3px; }
.portfolio-item:hover .portfolio-play-btn { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.portfolio-video-cover { position: absolute; inset: 0; z-index: 3; display: block; }

/* ============================================================
   CREATORS TILE SLIDER
   ============================================================ */
.cs-viewport {
    position: relative;
    overflow: hidden;
}
.cs-slide {
    display: grid;
    grid-template-columns: repeat(var(--cs-cols, 5), 1fr);
    gap: 1.25rem;
    opacity: 0;
    position: absolute;
    inset: 0;
    pointer-events: none;
    transition: opacity 0.55s ease;
    align-content: start;
    padding: 0.375rem;
}
.cs-slide.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.creator-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 1.5rem 1rem;
    text-align: center; cursor: default; will-change: transform;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease, background 0.3s ease;
}
.creator-card:hover { border-color: var(--primary); box-shadow: 0 8px 32px var(--glow); background: var(--bg-card-hover); }

.creator-avatar {
    width: 72px; height: 72px; border-radius: 50%; overflow: hidden;
    margin: 0 auto 0.875rem; border: 2px solid var(--border);
    transition: border-color 0.3s ease, transform 0.3s ease; background: var(--bg);
}
.creator-card:hover .creator-avatar { border-color: var(--primary); transform: scale(1.05); }
.creator-avatar img { width: 100%; height: 100%; object-fit: cover; }

.creator-info { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.creator-name  { font-size: 0.9rem; font-weight: 600; }
.creator-handle { font-size: 0.75rem; color: var(--text-dim); }
.creator-niche {
    font-size: 0.68rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--primary);
    background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.18);
    padding: 0.18rem 0.5rem; border-radius: 10px; margin: 0.15rem 0;
}
.creator-platforms { display: flex; gap: 0.5rem; margin-top: 0.3rem; justify-content: center; }
.platform-icon { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 6px; transition: transform 0.2s ease, background 0.2s ease; }
.platform-icon svg { width: 14px; height: 14px; }
.platform-icon:hover { transform: translateY(-2px); }
.platform-yt     { background: rgba(255,0,0,0.12); color: #ff4444; }
.platform-twitch { background: rgba(100,65,165,0.15); color: #9146ff; }
.platform-yt:hover     { background: rgba(255,0,0,0.22); }
.platform-twitch:hover { background: rgba(100,65,165,0.28); }

.cs-controls {
    display: flex; align-items: center; justify-content: center;
    gap: 1rem; margin-top: 1.5rem;
}
.cs-btn {
    width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
    background: var(--bg-card); border: 1px solid var(--border); color: var(--text);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
}
.cs-btn:hover    { border-color: var(--primary); background: var(--bg-card-hover); transform: scale(1.08); }
.cs-btn:disabled { opacity: 0.3; cursor: not-allowed; transform: none; }
.cs-btn svg      { width: 16px; height: 16px; pointer-events: none; }
.cs-dots { display: flex; gap: 0.5rem; }
.cs-dot  {
    height: 7px; width: 7px; border-radius: 4px; padding: 0; border: none; cursor: pointer;
    background: var(--border); transition: background 0.3s ease, width 0.3s ease;
}
.cs-dot.active { width: 20px; background: var(--primary); }

/* ============================================================
   NETWORK GRID
   ============================================================ */
.network-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }

.network-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 1.75rem;
    display: flex; gap: 1.25rem; align-items: flex-start;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.network-card:hover { border-color: var(--primary); box-shadow: 0 8px 32px var(--glow); background: var(--bg-card-hover); }

.network-logo { width: 56px; height: 56px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; background: var(--bg); border: 1px solid var(--border); }
.network-logo img { width: 100%; height: 100%; object-fit: cover; }
.network-logo-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; color: var(--primary); background: rgba(99,102,241,0.1); }
.network-info h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
.network-info p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0.85rem; }
.network-link { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.82rem; font-weight: 600; color: var(--primary); transition: gap var(--transition); }
.network-link svg { width: 14px; height: 14px; }
.network-link:hover { gap: 0.6rem; }
.network-subs { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.78rem; font-weight: 500; color: var(--text-muted); margin-bottom: 0.6rem; }
.network-subs svg { width: 13px; height: 13px; color: #ff0000; flex-shrink: 0; }
.network-subs-count { color: var(--text); font-weight: 600; }

/* ============================================================
   REVIEWS GRID
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.review-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 2rem;
    display: flex; flex-direction: column; gap: 1rem;
    cursor: default; will-change: transform;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease, background 0.3s ease;
}
.review-card:hover { border-color: var(--primary); box-shadow: 0 8px 36px var(--glow); background: var(--bg-card-hover); }

.review-stars { display: flex; gap: 0.2rem; }
.star { color: #fbbf24; font-size: 1rem; }
.review-quote { font-size: 0.9rem; font-style: italic; color: var(--text-muted); line-height: 1.7; flex: 1; }
.review-author { display: flex; align-items: center; gap: 0.75rem; border-top: 1px solid var(--border); padding-top: 1rem; }
.review-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; background: var(--bg); }
.review-name { display: block; font-size: 0.88rem; font-weight: 600; }
.review-meta { display: block; font-size: 0.76rem; color: var(--text-dim); }

/* ============================================================
   CONTACT — Turnstile verify layout
   ============================================================ */
.contact-verify { display: flex; justify-content: center; }

.contact-verify-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 3rem 2.5rem;
    max-width: 480px; width: 100%; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.contact-verify-card:hover { border-color: var(--border-hover); }

.contact-verify-icon {
    width: 56px; height: 56px; background: rgba(99,102,241,0.1);
    border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
    color: var(--primary);
}
.contact-verify-icon svg { width: 28px; height: 28px; }
.contact-verify-card h3 { font-size: 1.35rem; font-weight: 700; }
.contact-verify-card > p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* Animation for reveal */
@keyframes contactRevealIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
.contact-reveal {
    display: flex; flex-direction: column; align-items: center;
    gap: 1rem; width: 100%;
    animation: contactRevealIn 0.4s ease;
}
.contact-reveal-note { font-size: 0.875rem; color: var(--text-muted); }
.contact-reveal-btns {
    display: flex; gap: 0.75rem; flex-wrap: wrap;
    justify-content: center; width: 100%;
}
.contact-reveal-btns .btn { flex: 1; min-width: 155px; justify-content: center; }
.contact-response-note { font-size: 0.8rem; color: var(--text-dim); text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg-mid); border-top: 1px solid var(--border); padding: 3rem 2rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; align-items: center; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }

.footer-logo { display: flex; align-items: center; }
.footer-logo .logo-dark, .footer-logo .logo-light { height: 32px; width: auto; }

.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-left: auto; }
.footer-nav a { font-size: 0.84rem; color: var(--text-muted); transition: color var(--transition); }
.footer-nav a:hover { color: var(--text); }

.footer-socials { display: flex; gap: 0.75rem; }
.social-icon {
    width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    transition: color var(--transition), border-color var(--transition), transform var(--transition);
}
.social-icon:hover { color: var(--text); border-color: var(--primary); transform: translateY(-2px); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.footer-bottom p, .footer-bottom a { font-size: 0.8rem; color: var(--text-dim); }
.footer-bottom a:hover { color: var(--primary); }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
    position: fixed; bottom: 1.5rem; left: 50%;
    transform: translateX(-50%) translateY(calc(100% + 2rem));
    opacity: 0;
    background: var(--bg-card); border: 1px solid var(--border-hover);
    color: var(--text); padding: 0.85rem 1.75rem; border-radius: 50px;
    font-size: 0.875rem; font-weight: 500; z-index: 500;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    white-space: nowrap; box-shadow: 0 8px 32px rgba(0,0,0,0.3); pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .services-grid  { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid   { grid-template-columns: repeat(2, 1fr); }
    .contact-grid   { grid-template-columns: 1fr; }
    .stats-grid     { grid-template-columns: repeat(2, 1fr); }

    .nav-links      { gap: 1.25rem; }
}
@media (max-width: 768px) {
    :root { --section-pad: 4rem; }
    .nav-discord { display: none; }
    .nav-toggle  { display: flex; }
    .nav-links {
        position: fixed; top: var(--nav-h); left: 0; right: 0;
        flex-direction: column; background: var(--bg);
        border-bottom: 1px solid var(--border);
        padding: 1.5rem 2rem; gap: 1.25rem;
        transform: translateY(-110%); opacity: 0;
        transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
        pointer-events: none; z-index: 99;
    }
    .site-nav.menu-open .nav-links { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .services-grid  { grid-template-columns: 1fr; }
    .reviews-grid   { grid-template-columns: 1fr; }
    .cs-btn         { width: 34px; height: 34px; }
    .network-grid   { grid-template-columns: 1fr; }
    .hero-headline  { font-size: 2.2rem; }
    .stats-grid     { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 480px) {
    :root { --section-pad: 3rem; }
    .nav-inner     { padding: 0 1.25rem; }
    .section-inner { padding: 0 1.25rem; }
    .contact-lane  { padding: 1.75rem 1.25rem; }
    .cs-btn        { display: none; }
    .hero-ctas     { flex-direction: column; align-items: center; }
    .hero-ctas .btn { width: 100%; max-width: 280px; justify-content: center; }
    .footer-top    { flex-direction: column; align-items: flex-start; }
    .footer-nav    { margin-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero::before, .hero::after { animation: none; }
    .hero-logo { animation: none; }
    .hero-scroll-indicator, .scroll-dot { animation: none; }
}
