/* ==========================================================
   PROJECT VISION · v3 — Custom cursor + particles + reveal
   ========================================================== */

:root {
    --bg: #0a0d12;
    --bg-2: #0f141b;
    --surface: #131a24;
    --surface-2: #1a232f;
    --border: #1f2a38;
    --border-bright: #2a3a4d;
    --text: #e8eef5;
    --text-dim: #8a99ab;
    --text-faint: #4a5663;
    --cyan: #00e5ff;
    --cyan-glow: #00e5ff44;
    --cyan-dim: #00b8cc;
    --cyan-bright: #44efff;
    --success: #00ff9f;
    --danger: #ff3860;
    --warn: #ffb800;

    --font-display: 'Syne', system-ui, sans-serif;
    --font-mono: 'Space Mono', 'Courier New', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 15px;
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
.accent { color: var(--cyan); }
.hidden { display: none !important; }

/* ==========================================================
   CUSTOM CURSOR
   ========================================================== */

@media (hover: hover) and (pointer: fine) {
    body { cursor: none; }
    a, button, input, textarea, select, .nav-link, .btn-discord,
    .about-card, .rule-item, .team-card, .form-input, .submit-btn,
    .mobile-menu-toggle { cursor: none; }

    .cursor-dot {
        position: fixed;
        top: 0; left: 0;
        width: 6px; height: 6px;
        background: var(--cyan);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: width 0.2s, height 0.2s, opacity 0.2s;
        box-shadow: 0 0 12px var(--cyan), 0 0 24px var(--cyan-glow);
    }

    .cursor-ring {
        position: fixed;
        top: 0; left: 0;
        width: 36px; height: 36px;
        border: 1px solid var(--cyan);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0.6;
    }

    .cursor-ring.hover {
        width: 60px; height: 60px;
        border-color: var(--cyan-bright);
        opacity: 0.8;
        background: rgba(0, 229, 255, 0.05);
    }

    .cursor-dot.hover {
        width: 10px; height: 10px;
    }

    .cursor-ring.click {
        width: 28px; height: 28px;
        opacity: 1;
    }
}

@media (hover: none), (pointer: coarse) {
    .cursor-dot, .cursor-ring { display: none; }
}

/* ==========================================================
   PARTIKLER (animated dots i bakgrunnen)
   ========================================================== */

.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px; height: 3px;
    background: var(--cyan);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 6px var(--cyan-glow);
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(110vh) translateX(0);
        opacity: 0;
    }
    10% { opacity: 0.4; }
    90% { opacity: 0.4; }
    100% {
        transform: translateY(-10vh) translateX(50px);
        opacity: 0;
    }
}

/* ==========================================================
   BAKGRUNNS-EFFEKTER
   ========================================================== */

.bg-grid {
    position: fixed; inset: 0;
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none; z-index: 0;
    mask-image: radial-gradient(circle at 50% 30%, black 30%, transparent 80%);
    animation: gridMove 60s linear infinite;
}

@keyframes gridMove {
    from { background-position: 0 0; }
    to { background-position: 60px 60px; }
}

.bg-glow {
    position: fixed; border-radius: 50%;
    filter: blur(120px); pointer-events: none; z-index: 0;
}

.bg-glow-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--cyan-glow), transparent 70%);
    top: -200px; right: -200px; opacity: 0.5;
    animation: float1 18s ease-in-out infinite;
}

.bg-glow-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #7c4dff33, transparent 70%);
    bottom: -100px; left: -100px; opacity: 0.3;
    animation: float2 22s ease-in-out infinite;
}

.bg-glow-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 159, 0.15), transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
    animation: float3 25s ease-in-out infinite;
}

@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-50px,50px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(50px,-50px); } }
@keyframes float3 { 0%,100% { transform: translate(-50%,-50%) scale(1); } 50% { transform: translate(-50%,-50%) scale(1.3); } }

.noise {
    position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================
   FORM ENHANCEMENTS - FIRE EDITION 🔥
   ========================================================== */

/* Form-cards med animert border */
.form-card {
    position: relative;
}

.form-card::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    background: linear-gradient(135deg, transparent, var(--cyan), transparent);
    background-size: 300% 300%;
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
    animation: borderShift 4s linear infinite;
}

.form-card:focus-within::before {
    opacity: 0.6;
}

/* Form-section-num glitcher ved hover */
.form-section-num {
    transition: text-shadow 0.3s ease;
    cursor: pointer;
}

.form-card:hover .form-section-num {
    animation: numGlow 2s ease-in-out infinite;
}

@keyframes numGlow {
    0%, 100% { text-shadow: 0 0 30px var(--cyan-glow); }
    50% { text-shadow: 0 0 60px var(--cyan), 0 0 80px var(--cyan-glow); }
}

/* Q-num badges pulser når focus i feltet */
.form-group:focus-within .q-num {
    background: rgba(0, 229, 255, 0.2);
    border-color: var(--cyan);
    box-shadow: 0 0 20px var(--cyan-glow);
    animation: badgePulse 1.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Form-input med scanner-effekt ved focus */
.form-input {
    position: relative;
    overflow: hidden;
}

.form-group {
    position: relative;
}

.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    transform: translateX(-50%);
    transition: width 0.5s ease;
    pointer-events: none;
}

.form-group:focus-within::after {
    width: 100%;
}

/* Filled-state glødende */
.form-input.filled {
    border-color: var(--success);
    background: linear-gradient(135deg, var(--surface-2), rgba(0, 255, 159, 0.05));
    box-shadow: 0 0 0 1px rgba(0, 255, 159, 0.3), inset 0 0 20px rgba(0, 255, 159, 0.05);
}

.form-input.filled + .char-counter {
    color: var(--success);
}

/* Submit-btn ultra fett */
.submit-btn {
    position: relative;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-bright), var(--cyan));
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

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

/* Progress-fill med glow-trail */
.progress-fill {
    background: linear-gradient(90deg, var(--cyan-dim), var(--cyan), var(--cyan-bright));
    background-size: 200% 100%;
    animation: progressShimmer 2s linear infinite;
}

@keyframes progressShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Progress percent counter */
.progress-percent {
    font-variant-numeric: tabular-nums;
    transition: color 0.3s;
}

.progress-percent[data-percent="100"] {
    color: var(--success);
    animation: completeGlow 1s ease;
}

@keyframes completeGlow {
    0% { text-shadow: 0 0 0 transparent; }
    50% { text-shadow: 0 0 20px var(--success); }
    100% { text-shadow: 0 0 0 transparent; }
}

/* Counter-animasjon for stats-num */
.counter {
    display: inline-block;
}

/* Hero på form-sider får sykt fet glow på tittel */
.hero-title-small .hero-word-accent {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-bright), var(--cyan));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite, glowPulse 4s ease-in-out infinite;
}

/* Submit-area floating effekt */
.submit-area {
    position: relative;
    overflow: hidden;
}

.submit-area::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0, 229, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    transition: opacity 0.3s;
    opacity: 0;
}

.submit-area:hover::before {
    opacity: 1;
}

/* Success ikon roterer + pulser */
.success-icon {
    animation: successPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), successPulse 2s ease-in-out infinite 0.6s;
}

@keyframes successPulse {
    0%, 100% { box-shadow: 0 0 60px rgba(0, 255, 159, 0.3); }
    50% { box-shadow: 0 0 100px rgba(0, 255, 159, 0.6), 0 0 140px rgba(0, 255, 159, 0.3); }
}

/* Checklist items animeres inn */
.checklist li {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.5s ease forwards;
}

.checklist li:nth-child(1) { animation-delay: 0.1s; }
.checklist li:nth-child(2) { animation-delay: 0.2s; }
.checklist li:nth-child(3) { animation-delay: 0.3s; }
.checklist li:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInLeft {
    to { opacity: 1; transform: translateX(0); }
}

/* ==========================================================
   GLITCH EFFEKT
   ========================================================== */

.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.glitch::before {
    color: #ff00ff;
    z-index: -1;
    animation: glitchBefore 4s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch::after {
    color: var(--cyan);
    z-index: -1;
    animation: glitchAfter 4s infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitchBefore {
    0%, 90%, 100% { transform: translate(0, 0); opacity: 0; }
    91% { transform: translate(-3px, -2px); opacity: 0.8; }
    92% { transform: translate(3px, 2px); opacity: 0.8; }
    93% { transform: translate(-2px, 1px); opacity: 0.8; }
    94% { transform: translate(2px, -1px); opacity: 0.8; }
    95% { transform: translate(0, 0); opacity: 0; }
}

@keyframes glitchAfter {
    0%, 90%, 100% { transform: translate(0, 0); opacity: 0; }
    91% { transform: translate(3px, 2px); opacity: 0.8; }
    92% { transform: translate(-3px, -2px); opacity: 0.8; }
    93% { transform: translate(2px, -1px); opacity: 0.8; }
    94% { transform: translate(-2px, 1px); opacity: 0.8; }
    95% { transform: translate(0, 0); opacity: 0; }
}

/* Glitch hover for logo */
.logo:hover .logo-name {
    animation: textGlitch 0.4s linear;
}

@keyframes textGlitch {
    0% { transform: translate(0); text-shadow: 0 0 0 var(--cyan); }
    20% { transform: translate(-2px, 2px); text-shadow: 2px 0 var(--danger), -2px 0 var(--cyan); }
    40% { transform: translate(-2px, -2px); text-shadow: 2px 0 var(--cyan), -2px 0 var(--danger); }
    60% { transform: translate(2px, 2px); text-shadow: 2px 0 var(--danger), -2px 0 var(--cyan); }
    80% { transform: translate(2px, -2px); text-shadow: 2px 0 var(--cyan), -2px 0 var(--danger); }
    100% { transform: translate(0); text-shadow: 0 0 0 var(--cyan); }
}

/* ==========================================================
   TYPING EFFEKT
   ========================================================== */

.typed-cursor {
    color: var(--cyan);
    animation: blink 0.8s infinite;
    font-weight: 100;
    margin-left: 2px;
}

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

/* ==========================================================
   3D ROTERENDE LOGO
   ========================================================== */

.logo-svg {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.logo:hover .logo-svg {
    transform: rotateY(360deg) scale(1.1);
}

/* 3D tilt på kort */
.about-card,
.team-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* 3D-rotasjon på team-avatar ved hover */
.team-card:hover .team-avatar {
    transform: rotateY(360deg) scale(1.15);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================
   FORBEDREDE EFFEKTER
   ========================================================== */

/* Skyer av cyan-punkter rundt kortene ved hover */
.about-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0, 229, 255, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.about-card:hover::before {
    opacity: 1;
}

/* Animerte tall i CTA */
.cta-title {
    background: linear-gradient(135deg, var(--text) 30%, var(--cyan) 50%, var(--text) 70%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Animert border på CTA */
.cta {
    position: relative;
}

.cta::after {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    background: linear-gradient(135deg, var(--cyan), transparent, var(--cyan));
    background-size: 300% 300%;
    border-radius: 8px;
    z-index: -1;
    animation: borderShift 4s linear infinite;
}

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

/* Hover ripple effekt på knapper */
.btn-primary,
.btn-secondary,
.submit-btn {
    position: relative;
    overflow: hidden;
}

.btn-primary::after,
.btn-secondary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:active::after,
.btn-secondary:active::after {
    width: 400px;
    height: 400px;
    transition: width 0.4s, height 0.4s;
}

/* Floating dots på status-card */
.status-dot {
    position: relative;
}

.status-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 1px solid var(--success);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: ripple 2s linear infinite;
}

@keyframes ripple {
    0% { width: 10px; height: 10px; opacity: 1; }
    100% { width: 40px; height: 40px; opacity: 0; }
}

/* Scanner line over hero */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    animation: scanLine 6s linear infinite;
    pointer-events: none;
    z-index: 5;
    opacity: 0.6;
}

@keyframes scanLine {
    0% { transform: translateY(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(88vh); opacity: 0; }
}

/* ==========================================================
   SUBMIT BUTTON ULTRA FIRE
   ========================================================== */

.submit-btn {
    position: relative;
    animation: submitGlow 3s ease-in-out infinite;
}

@keyframes submitGlow {
    0%, 100% {
        box-shadow: 0 4px 24px rgba(0, 229, 255, 0.3), 0 0 0 0 rgba(0, 229, 255, 0);
    }
    50% {
        box-shadow: 0 4px 40px rgba(0, 229, 255, 0.6), 0 0 60px 10px rgba(0, 229, 255, 0.2);
    }
}

.submit-btn::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--cyan), var(--cyan-bright), var(--cyan), var(--cyan-bright));
    background-size: 200% 200%;
    border-radius: 4px;
    z-index: -1;
    animation: submitBorder 3s linear infinite;
    opacity: 0.7;
}

@keyframes submitBorder {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 200%; }
}

/* Q-num hover effekt (1, 2, 3 boksene) */
.q-num {
    transition: all 0.3s ease;
    position: relative;
}

.form-group:hover .q-num,
.form-group:focus-within .q-num {
    background: var(--cyan);
    color: var(--bg);
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--cyan-glow);
}

/* Form input glow når fokusert */
.form-input:focus {
    animation: inputFocusPulse 1.5s ease-in-out infinite;
}

@keyframes inputFocusPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1), inset 0 0 0 1px var(--cyan); }
    50% { box-shadow: 0 0 0 5px rgba(0, 229, 255, 0.2), inset 0 0 0 1px var(--cyan-bright), 0 0 20px rgba(0, 229, 255, 0.3); }
}

/* Form section glitcher ved scroll-in */
.form-section-num {
    animation: numGlitch 8s ease-in-out infinite;
}

@keyframes numGlitch {
    0%, 95%, 100% {
        text-shadow: 0 0 30px var(--cyan-glow);
        transform: translate(0);
    }
    96% {
        text-shadow: 2px 0 var(--danger), -2px 0 var(--cyan);
        transform: translate(-1px, 1px);
    }
    97% {
        text-shadow: -2px 0 var(--danger), 2px 0 var(--cyan);
        transform: translate(1px, -1px);
    }
    98% {
        text-shadow: 2px 0 var(--danger), -2px 0 var(--cyan);
        transform: translate(-1px, 1px);
    }
}

/* Submit-area animert kant */
.submit-area {
    position: relative;
    overflow: hidden;
}

.submit-area::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    animation: scanArea 4s linear infinite;
}

@keyframes scanArea {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Counter-animasjon på stat-num */
.counter {
    display: inline-block;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-variant-numeric: tabular-nums;
}

/* ==========================================================
   REVEAL ANIMATIONS (trygg fallback: vises selv om JS feiler)
   ========================================================== */

/* Default: alt vises normalt */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--delay, 0s);
}

/* Bare hvis JS har lastet og lagt til .js-loaded på body */
.js-loaded .reveal {
    opacity: 0;
    transform: translateY(30px);
}

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

/* ==========================================================
   MOBILE MENU TOGGLE
   ========================================================== */

.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 200;
    width: 44px;
    height: 44px;
    background: rgba(10, 13, 18, 0.9);
    border: 1px solid var(--border-bright);
    border-radius: 4px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cyan);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================
   HEADER
   ========================================================== */

.header {
    position: sticky; top: 0; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 48px;
    background: rgba(10, 13, 18, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

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

.logo-svg {
    width: 36px; height: 30px;
    color: var(--cyan);
    filter: drop-shadow(0 0 8px var(--cyan-glow));
    transition: transform 0.3s ease;
}

.logo:hover .logo-svg { transform: scale(1.1) rotate(-5deg); }

.logo-text { display: flex; flex-direction: column; line-height: 1; }

.logo-name {
    font-family: var(--font-display);
    font-weight: 800; font-size: 16px;
    letter-spacing: 0.05em;
}

.logo-sub {
    font-family: var(--font-mono);
    font-size: 10px; color: var(--text-faint);
    letter-spacing: 0.15em; margin-top: 3px;
}

.nav { display: flex; gap: 24px; }

.nav-link {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.15em;
    padding: 8px 4px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.nav-link:hover { color: var(--text); border-bottom-color: var(--cyan); }

.nav-link-cta {
    color: var(--cyan);
    padding: 8px 16px;
    border: 1px solid var(--cyan);
    border-radius: 2px;
    transition: all 0.2s ease;
}

.nav-link-cta:hover { background: var(--cyan); color: var(--bg); border-bottom-color: var(--cyan); box-shadow: 0 0 20px var(--cyan-glow); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.btn-discord {
    display: flex; align-items: center; gap: 8px;
    background: #5865f2;
    color: white;
    padding: 10px 18px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: all 0.2s ease;
}

.btn-discord:hover { background: #4752c4; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4); }

/* ==========================================================
   HERO
   ========================================================== */

.hero {
    position: relative; z-index: 2;
    min-height: 88vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center;
    padding: 60px 24px 40px;
}

.hero-small { min-height: auto; padding: 80px 24px 40px; }

.hero-marker {
    font-family: var(--font-mono);
    font-size: 12px; color: var(--cyan);
    letter-spacing: 0.25em;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.1s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(56px, 13vw, 200px);
    line-height: 0.85;
    letter-spacing: -0.04em;
    display: flex; flex-direction: column;
    gap: 0;
}

.hero-title-small { font-size: clamp(48px, 10vw, 160px); }

.hero-word {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-word:nth-child(1) { animation-delay: 0.2s; }

.hero-word-accent {
    color: var(--cyan);
    font-style: italic;
    animation-delay: 0.4s !important;
    text-shadow: 0 0 60px var(--cyan-glow);
    animation: fadeUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards, glowPulse 4s ease-in-out infinite 1.4s;
}

@keyframes glowPulse {
    0%, 100% { text-shadow: 0 0 60px var(--cyan-glow); }
    50% { text-shadow: 0 0 80px var(--cyan), 0 0 120px var(--cyan-glow); }
}

.hero-tagline {
    font-family: var(--font-mono);
    font-size: clamp(13px, 1.6vw, 18px);
    color: var(--text-dim);
    letter-spacing: 0.2em;
    margin: 28px 0 16px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.6s forwards;
}

.hero-description {
    max-width: 540px;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.7s forwards;
}

.hero-actions {
    display: flex; gap: 16px;
    margin: 32px 0 48px;
    flex-wrap: wrap; justify-content: center;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.8s forwards;
}

.btn-primary, .btn-secondary {
    display: inline-flex; align-items: center; gap: 14px;
    padding: 18px 36px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--cyan);
    color: var(--bg);
    box-shadow: 0 4px 24px rgba(0, 229, 255, 0.3);
}

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

.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(0, 229, 255, 0.5); background: var(--cyan-bright); }

.btn-secondary {
    background: transparent;
    color: var(--cyan);
    border: 1px solid var(--cyan);
}

.btn-secondary:hover { background: rgba(0, 229, 255, 0.1); transform: translateY(-2px); box-shadow: 0 0 30px var(--cyan-glow); }

.btn-large { padding: 22px 44px; font-size: 17px; }
.btn-icon { font-size: 18px; }

.hero-status {
    margin-top: 32px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 1s forwards;
}

.status-card {
    display: inline-flex; flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 20px 32px;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.status-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, var(--cyan), transparent 50%, var(--cyan));
    border-radius: 6px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.status-card:hover::before { opacity: 0.3; }

.status-indicator { display: flex; align-items: center; gap: 10px; }

.status-dot {
    width: 10px; height: 10px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--success);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 12px var(--success); }
    50% { opacity: 0.4; transform: scale(0.9); box-shadow: 0 0 20px var(--success), 0 0 30px var(--success); }
}

.status-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-faint);
    letter-spacing: 0.2em;
}

.status-value {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 28px;
    color: var(--success);
    letter-spacing: 0.1em;
}

.status-meta {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}

.hero-stats {
    display: flex; align-items: center;
    gap: 32px;
    margin: 8px 0 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 1s forwards;
}

.stat { display: flex; flex-direction: column; align-items: center; gap: 6px; }

.stat-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 48px;
    color: var(--cyan);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-faint);
    letter-spacing: 0.2em;
}

.stat-divider {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--border-bright);
}

.scroll-hint {
    margin-top: 60px;
    display: flex; flex-direction: column; align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-faint);
    letter-spacing: 0.3em;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 1.2s forwards;
}

.scroll-arrow {
    font-size: 16px;
    color: var(--cyan);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(8px); opacity: 1; }
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================
   MARQUEE
   ========================================================== */

.marquee {
    position: relative; z-index: 2;
    overflow: hidden;
    background: var(--cyan);
    color: var(--bg);
    padding: 16px 0;
    border-top: 1px solid var(--cyan-dim);
    border-bottom: 1px solid var(--cyan-dim);
}

.marquee-track {
    display: flex; gap: 32px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 24px;
    letter-spacing: 0.08em;
}

.marquee-dot {
    font-size: 16px;
    align-self: center;
    opacity: 0.5;
}

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

/* ==========================================================
   SECTIONS
   ========================================================== */

.section {
    position: relative; z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 48px;
}

.section-header-wrap {
    display: flex; align-items: baseline;
    gap: 24px;
    margin-bottom: 64px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.section-num {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--cyan);
    letter-spacing: 0.1em;
}

.section-heading {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(32px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -0.03em;
}

.section-divider {
    flex: 1; height: 1px;
    background: linear-gradient(to right, var(--border-bright), transparent);
}

/* Om Oss */
.about-lead {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(18px, 2.5vw, 28px);
    line-height: 1.5;
    color: var(--text);
    max-width: 900px;
    margin-bottom: 64px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.about-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.08), transparent);
    transition: left 0.6s ease;
}

.about-card:hover { border-color: var(--cyan); transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 60px rgba(0, 229, 255, 0.2); }
.about-card:hover::before { opacity: 1; }
.about-card:hover::after { left: 100%; }

.card-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 56px;
    color: var(--cyan);
    line-height: 0.8;
    margin-bottom: 20px;
    opacity: 0.4;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.about-card:hover .card-num { opacity: 1; transform: scale(1.1); }

.card-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.card-text {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.7;
}

/* Regler */
.rules-lead {
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.7;
    max-width: 700px;
    margin-bottom: 48px;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.rule-item {
    display: flex;
    gap: 18px;
    padding: 24px;
    background: var(--surface);
    border-left: 3px solid var(--cyan);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.rule-item:hover {
    background: var(--surface-2);
    border-left-color: var(--cyan-bright);
    transform: translateX(8px);
    box-shadow: -4px 0 30px rgba(0, 229, 255, 0.15);
}

.rule-num {
    font-size: 28px;
    color: var(--cyan);
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.rule-item:hover .rule-num { transform: scale(1.2) rotate(-10deg); }

.rule-item h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.rule-item p {
    color: var(--text-dim);
    font-size: 13px;
    line-height: 1.6;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.team-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover {
    border-color: var(--cyan);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 229, 255, 0.25);
}

.team-card-featured {
    border-color: var(--cyan);
    background: linear-gradient(135deg, var(--surface), rgba(0, 229, 255, 0.05));
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dim));
    color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 32px;
    margin: 0 auto 20px;
    box-shadow: 0 0 30px var(--cyan-glow);
    transition: transform 0.4s ease;
}

.team-card:hover .team-avatar { transform: scale(1.1) rotate(5deg); }

.team-avatar-empty {
    background: var(--surface-2);
    color: var(--text-faint);
    border: 2px dashed var(--border-bright);
    box-shadow: none;
}

.team-card-empty { border-style: dashed; }

.team-info h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.team-info span {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-faint);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ==========================================================
   FAQ
   ========================================================== */

.faq-lead {
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.7;
    max-width: 700px;
    margin-bottom: 48px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-item:hover {
    border-color: var(--border-bright);
}

.faq-item.open {
    border-color: var(--cyan);
    box-shadow: 0 4px 30px rgba(0, 229, 255, 0.1);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: rgba(0, 229, 255, 0.03);
}

.faq-q-num {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 0.15em;
    padding: 4px 8px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 2px;
    flex-shrink: 0;
}

.faq-q-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    flex: 1;
    line-height: 1.4;
}

.faq-toggle {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--cyan);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 800px;
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 12px;
}

.faq-answer p:first-child {
    margin-top: 0;
}

.faq-answer ul {
    margin-top: 12px;
    padding-left: 20px;
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.7;
}

.faq-answer ul li {
    margin-bottom: 6px;
}

.faq-answer a {
    color: var(--cyan);
    text-decoration: underline;
    text-decoration-color: rgba(0, 229, 255, 0.3);
    transition: text-decoration-color 0.2s;
}

.faq-answer a:hover {
    text-decoration-color: var(--cyan);
}

/* ==========================================================
/* ==========================================================
   CTA
   ========================================================== */

.cta {
    position: relative; z-index: 2;
    margin: 80px auto 60px;
    padding: 80px 48px;
    background: linear-gradient(135deg, var(--surface), var(--surface-2));
    border: 1px solid var(--cyan);
    border-radius: 8px;
    max-width: 1100px;
    text-align: center;
    box-shadow: 0 20px 80px rgba(0, 229, 255, 0.15);
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, var(--cyan-glow), transparent 40%);
    opacity: 0.3;
    pointer-events: none;
    animation: ctaPulse 6s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

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

.cta-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(32px, 5vw, 56px);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.1;
}

.cta-text {
    color: var(--text-dim);
    font-size: 16px;
    margin-bottom: 32px;
}

/* ==========================================================
   PROGRESS BAR
   ========================================================== */

.progress-bar-wrap {
    position: sticky;
    top: 80px;
    z-index: 50;
    padding: 16px 24px;
    background: rgba(10, 13, 18, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.progress-bar-inner { max-width: 880px; margin: 0 auto; }

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.progress-text {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-faint);
    letter-spacing: 0.2em;
}

.progress-percent {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    color: var(--cyan);
}

.progress-track {
    height: 4px;
    background: var(--surface);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cyan-dim), var(--cyan), var(--cyan-bright));
    border-radius: 999px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px var(--cyan-glow);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 20px; height: 100%;
    background: linear-gradient(90deg, transparent, white);
    opacity: 0.6;
    border-radius: 999px;
}

/* ==========================================================
   FORM
   ========================================================== */

.form-section {
    position: relative; z-index: 2;
    max-width: 880px;
    margin: 0 auto;
    padding: 40px 24px 120px;
}

.form-card {
    background: rgba(19, 26, 36, 0.5);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-card:hover { border-color: var(--border-bright); }

.form-section-header {
    display: flex; align-items: baseline; gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.form-section-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 48px;
    color: var(--cyan);
    line-height: 1;
    letter-spacing: -0.04em;
    text-shadow: 0 0 30px var(--cyan-glow);
    flex-shrink: 0;
}

.form-section-text { flex: 1; }

.form-section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.form-section-desc {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-faint);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.form-group { margin-bottom: 24px; position: relative; }
.form-group:last-child { margin-bottom: 0; }

.form-label {
    display: flex; align-items: baseline; gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.q-num {
    font-family: var(--font-mono);
    font-size: 11px; font-weight: 700;
    color: var(--cyan);
    letter-spacing: 0.15em;
    padding: 4px 8px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 2px;
}

.q-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    color: var(--text);
    flex: 1;
    line-height: 1.4;
}

.q-required {
    font-family: var(--font-mono);
    font-size: 9px; font-weight: 700;
    color: var(--text-faint);
    letter-spacing: 0.2em;
    padding: 3px 7px;
    border: 1px solid var(--border-bright);
    border-radius: 2px;
}

.form-input {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 14px 16px;
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text);
    transition: all 0.2s ease;
    outline: none;
}

.form-input::placeholder { color: var(--text-faint); }
.form-input:hover { border-color: var(--border-bright); }

.form-input:focus {
    border-color: var(--cyan);
    background: var(--surface-2);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1), inset 0 0 0 1px var(--cyan);
}

.form-textarea { resize: vertical; min-height: 100px; line-height: 1.6; }

.form-input.error {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(255, 56, 96, 0.15);
}

.form-input.filled {
    border-color: var(--success);
    background: rgba(0, 255, 159, 0.02);
}

.char-counter {
    text-align: right;
    margin-top: 6px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-faint);
    letter-spacing: 0.05em;
}

.char-counter.warning { color: var(--warn); }

/* Submit */
.submit-area {
    margin-top: 48px;
    padding: 32px;
    background: linear-gradient(135deg, var(--surface), rgba(0, 229, 255, 0.03));
    border: 1px solid var(--cyan);
    border-radius: 8px;
    box-shadow: 0 0 60px rgba(0, 229, 255, 0.1);
}

.submit-checklist { margin-bottom: 24px; }

.checklist-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    color: var(--cyan);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.checklist {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 8px;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: var(--surface-2);
    border-radius: 4px;
    font-size: 13px;
    color: var(--text-dim);
}

.check {
    color: var(--success);
    font-weight: 700;
    font-size: 14px;
}

.submit-btn {
    width: 100%;
    background: var(--cyan);
    color: var(--bg);
    border: none;
    padding: 22px 48px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0.15em;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 229, 255, 0.3);
}

.submit-btn::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(110deg, transparent 40%, rgba(255, 255, 255, 0.3) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.submit-btn:hover::before { transform: translateX(100%); }

.submit-btn:hover {
    background: var(--cyan-bright);
    box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.2), 0 8px 40px rgba(0, 229, 255, 0.5);
    transform: translateY(-2px);
}

.submit-btn:active { transform: translateY(0); }

.submit-btn:disabled {
    background: var(--surface-2);
    color: var(--text-faint);
    cursor: not-allowed;
    box-shadow: none;
}

.submit-arrow { font-size: 24px; transition: transform 0.3s ease; }
.submit-btn:hover .submit-arrow { transform: translateX(6px); }
.submit-btn.loading { pointer-events: none; }
.submit-btn.loading .submit-text { opacity: 0.6; }
.submit-btn.loading .submit-arrow { animation: spin 1s linear infinite; }

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

/* Success/Error */
.success-msg, .error-msg {
    text-align: center;
    padding: 80px 24px;
    animation: fadeUp 0.6s ease-out;
}

.success-icon, .error-icon {
    width: 100px; height: 100px;
    margin: 0 auto 32px;
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
    border-radius: 50%;
    font-family: var(--font-display);
    font-weight: 800;
}

.success-icon {
    background: rgba(0, 255, 159, 0.1);
    color: var(--success);
    border: 2px solid var(--success);
    box-shadow: 0 0 60px rgba(0, 255, 159, 0.3);
    animation: successPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.error-icon {
    background: rgba(255, 56, 96, 0.1);
    color: var(--danger);
    border: 2px solid var(--danger);
}

.success-title, .error-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(32px, 5vw, 48px);
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    line-height: 1.1;
}

.success-title { color: var(--success); }
.error-title { color: var(--danger); }

.success-text, .error-text {
    max-width: 540px;
    margin: 0 auto 32px;
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.7;
}

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

/* ==========================================================
   FOOTER
   ========================================================== */

.footer {
    position: relative; z-index: 2;
    border-top: 1px solid var(--border);
    padding: 48px;
    background: rgba(10, 13, 18, 0.5);
    margin-top: 100px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo { width: 32px; height: 26px; color: var(--cyan); }

.footer-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.05em;
}

.footer-sub {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-faint);
    letter-spacing: 0.15em;
    margin-top: 2px;
}

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

.footer-links a {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

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

.footer-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-faint);
    letter-spacing: 0.08em;
}

/* ==========================================================
   RESPONSIVE / MOBILE
   ========================================================== */

@media (max-width: 1024px) {
    .nav { gap: 16px; }
}

@media (max-width: 768px) {
    .mobile-menu-toggle { display: flex; }
    .header { padding: 16px 20px; }

    .nav {
        position: fixed;
        top: 0; right: 0;
        height: 100vh;
        width: 280px;
        max-width: 80vw;
        background: rgba(10, 13, 18, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--cyan);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 60px 40px;
        z-index: 150;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    }

    .nav.active { transform: translateX(0); }

    .nav-link {
        font-size: 14px;
        padding: 12px 4px;
        border-bottom: 1px solid var(--border);
        text-align: left;
    }

    .nav-link-cta {
        border: 1px solid var(--cyan);
        padding: 12px 16px;
        text-align: center;
    }

    .header-actions { display: none; }

    .hero { min-height: 70vh; padding: 40px 20px 32px; }
    .hero-small { padding: 60px 20px 32px; }
    .hero-marker { font-size: 10px; margin-bottom: 24px; }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 24px auto 32px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
        font-size: 14px;
    }

    .hero-stats { gap: 16px; margin-bottom: 16px; }
    .stat-num { font-size: 32px; }
    .stat-divider { font-size: 24px; }

    .status-card { padding: 16px 24px; }
    .status-value { font-size: 24px; }
    .scroll-hint { display: none; }

    .section { padding: 60px 20px; }
    .section-header-wrap { gap: 16px; margin-bottom: 40px; }
    .about-card { padding: 24px; }
    .card-num { font-size: 40px; margin-bottom: 12px; }

    .marquee { padding: 12px 0; }
    .marquee-item { font-size: 16px; }

    .cta { margin: 60px 20px 40px; padding: 48px 24px; }

    .footer {
        padding: 32px 20px;
        margin-top: 60px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-meta { align-items: center; }
    .footer-links { justify-content: center; }

    .form-section { padding: 24px 16px 80px; }
    .form-card { padding: 20px; margin-bottom: 16px; }
    .form-section-num { font-size: 36px; }
    .form-section-title { font-size: 16px; }

    .form-input {
        padding: 12px 14px;
        font-size: 16px;
    }

    .submit-area { padding: 24px; }
    .submit-btn { padding: 18px 24px; font-size: 16px; }
    .checklist { grid-template-columns: 1fr; }
    .progress-bar-wrap { top: 72px; padding: 12px 16px; }

    .success-msg, .error-msg { padding: 60px 20px; }
    .success-icon, .error-icon { width: 80px; height: 80px; font-size: 36px; }

    .success-actions { flex-direction: column; align-items: stretch; }
    .success-actions .btn-primary, .success-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-text { display: none; }
    .hero-stats { flex-wrap: wrap; justify-content: center; }
    .stat-divider { display: none; }

    .form-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .q-text { font-size: 15px; }
}
