:root {
    --bg-deep: #0a0a0f;
    --bg-surface: #12121a;
    --bg-elevated: #1a1a24;
    --accent-primary: #00f0ff;
    --accent-secondary: #7c3aed;
    --accent-tertiary: #f472b6;
    --accent-gold: #ffd700;
    --accent-success: #10b981;
    --text-primary: #f4f4f5;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --gradient-glow: linear-gradient(135deg, #00f0ff 0%, #7c3aed 50%, #f472b6 100%);
    --gradient-subtle: linear-gradient(180deg, rgba(124, 58, 237, 0.1) 0%, rgba(0, 240, 255, 0.05) 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
}

/* Skip to content (accessibility) */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    z-index: 10000;
    text-decoration: none;
    transition: top 0.2s;
}

.skip-to-content:focus {
    top: 0;
}

/* Improve touch targets */
a,
button {
    min-height: 44px;
    min-width: 44px;
}

/* Safe area insets for notched phones */
@supports (padding: env(safe-area-inset-bottom)) {
    .game-hud {
        bottom: calc(20px + env(safe-area-inset-bottom));
    }

    footer {
        padding-bottom: calc(2rem + env(safe-area-inset-bottom));
    }
}

/* Level Up Overlay - hidden by default, shown via JS */
.level-up-overlay {
    display: none;
}

/* Gamification HUD */
.game-hud {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.game-hud.visible {
    opacity: 1;
    transform: translateX(0);
}

.xp-container {
    background: rgba(18, 18, 26, 0.95);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 160px;
    backdrop-filter: blur(10px);
}

.level-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.level-badge {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.xp-text {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.xp-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.xp-fill {
    height: 100%;
    background: var(--gradient-glow);
    border-radius: 3px;
    width: 0%;
    transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.streak-container {
    background: rgba(18, 18, 26, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.streak-container.active {
    opacity: 1;
    transform: scale(1);
}

.streak-fire {
    font-size: 1.2rem;
    animation: fireWiggle 0.5s ease-in-out infinite;
}

@keyframes fireWiggle {

    0%,
    100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

.streak-count {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Achievement Toast */
.achievement-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    align-items: flex-end;
}

.achievement-toast {
    background: linear-gradient(135deg, rgba(18, 18, 26, 0.98) 0%, rgba(26, 26, 36, 0.98) 100%);
    border: 2px solid;
    border-image: var(--gradient-gold) 1;
    border-radius: 16px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: achievementSlide 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(20px);
}

.achievement-toast.exit {
    animation: achievementExit 0.3s ease-in forwards;
}

@keyframes achievementSlide {
    from {
        opacity: 0;
        transform: translateX(100px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes achievementExit {
    to {
        opacity: 0;
        transform: translateX(100px) scale(0.9);
    }
}

.achievement-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: iconPop 0.5s ease-out 0.2s both;
}

@keyframes iconPop {
    0% {
        transform: scale(0) rotate(-180deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

.achievement-content {
    flex: 1;
}

.achievement-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    margin-bottom: 2px;
}

.achievement-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.achievement-xp {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Particle Canvas */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Confetti Canvas */
#confettiCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* Level Up Toast */
.level-up-toast-container {
    position: fixed;
    top: 180px;
    right: 20px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    align-items: flex-end;
}

.level-up-toast {
    background: rgba(18, 18, 26, 0.95);
    border: 1px solid var(--accent-gold);
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    animation: toastSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    pointer-events: auto;
    min-width: 200px;
    text-align: center;
}

.level-up-toast.exit {
    animation: toastSlideOut 0.3s ease-in forwards;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes toastSlideOut {
    to {
        opacity: 0;
        transform: translateX(100%) scale(0.8);
    }
}

.level-up-toast-header {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.level-up-toast-level {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin: 5px 0;
}

.level-up-toast-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Easter Egg Badge */
.easter-egg-badge {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--gradient-gold);
    color: var(--bg-deep);
    padding: 8px 16px;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1000;
    transform: translateY(100px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.easter-egg-badge.visible {
    transform: translateY(0);
}

/* Animated background */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-secondary);
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-primary);
    bottom: -100px;
    left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-tertiary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, 50px) scale(1.1);
    }

    50% {
        transform: translate(0, 100px) scale(1);
    }

    75% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(10, 10, 15, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-glow);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.75rem 1.75rem;
    background: var(--gradient-glow);
    border: none;
    border-radius: 100px;
    color: var(--bg-deep);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem 2rem;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--accent-primary);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-audience {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.8rem 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: var(--text-secondary);
    display: inline-block;
    backdrop-filter: blur(5px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.15s;
    opacity: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-audience:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-audience::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.urgency-badge {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 0.75rem;
    margin-bottom: 2rem;
}

.urgency-badge span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #f87171;
    animation: pulse-urgency 2s ease-in-out infinite;
}

.urgency-badge span::before {
    content: '🔥';
}

@keyframes pulse-urgency {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }

    50% {
        box-shadow: 0 0 20px 5px rgba(239, 68, 68, 0.2);
    }
}

/* Hero Profile Image */
.hero-profile {
    position: relative;
    margin-top: 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.1s;
}

.hero-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    background: linear-gradient(var(--bg-deep), var(--bg-deep)) padding-box,
        var(--gradient-glow) border-box;
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.3),
        0 0 80px rgba(124, 58, 237, 0.2);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.hero-avatar:hover {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 0 60px rgba(0, 240, 255, 0.5),
        0 0 120px rgba(124, 58, 237, 0.3);
}

.hero-profile-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: var(--gradient-glow);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
    z-index: -1;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    max-width: 900px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero h1 .gradient-text {
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 100px;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.hero-guarantee strong {
    color: var(--accent-success);
}

.guarantee-icon {
    font-size: 1.2rem;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
    margin-bottom: 1rem;
}

.hero-social-proof {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

/* Trust Strip */
.trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.trust-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(0, 240, 255, 0.3), transparent);
}

@media (max-width: 768px) {
    .trust-strip {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .trust-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.3), transparent);
    }

    .trust-number {
        font-size: 1.25rem;
    }

    .trust-label {
        font-size: 0.7rem;
    }
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--gradient-glow);
    border: none;
    border-radius: 100px;
    color: var(--bg-deep);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    text-decoration: none;
    position: relative;
    background-size: 200% 100%;
    background-position: 0% 0%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.4);
    background-position: 100% 0%;
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    background: rgba(0, 240, 255, 0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: relative;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    animation: bounce 2s ease-in-out infinite;
    padding-bottom: 2rem;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-muted);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* Stats Section */
.stats {
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.3);
}

.stat-card.counted .stat-number {
    animation: numberPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes numberPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* Arsenal Section */
.arsenal {
    padding: 8rem 2rem;
    position: relative;
    z-index: 1;
    background: var(--bg-surface);
}

.arsenal-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tool-card {
    padding: 2rem;
    background: var(--bg-elevated);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 240, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tool-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 240, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.15);
}

.tool-card:hover::before {
    opacity: 1;
}

.tool-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 240, 255, 0.15);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.tool-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-primary);
}

.tool-image {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.tool-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tool-card:hover .tool-image img {
    transform: scale(1.05);
}

.tool-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.tool-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.tool-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.tool-btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    min-height: auto;
    min-width: auto;
}

.arsenal-footer {
    max-width: 1200px;
    margin: 3rem auto 0;
    text-align: center;
}

.arsenal-footer p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Choose Your Path Section */
.choose-path {
    padding: 8rem 2rem;
    position: relative;
    z-index: 1;
}

.path-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.path-card {
    padding: 2.5rem;
    background: var(--bg-surface);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.path-card.path-solo {
    border-color: rgba(0, 240, 255, 0.3);
}

.path-card.path-coop {
    border-color: rgba(124, 58, 237, 0.3);
}

.path-card:hover {
    transform: translateY(-5px);
}

.path-card.path-solo:hover {
    border-color: rgba(0, 240, 255, 0.6);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.1);
}

.path-card.path-coop:hover {
    border-color: rgba(124, 58, 237, 0.6);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.1);
}

.path-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.path-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.path-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.path-solo .path-title {
    color: var(--accent-primary);
}

.path-coop .path-title {
    color: var(--accent-secondary);
}

.path-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.path-steps {
    margin-bottom: 2rem;
}

.path-step {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.path-step:last-child {
    border-bottom: none;
}

.path-unlocks {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.path-unlocks-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.path-unlock {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.4rem 0;
}

.path-solo .path-unlock {
    color: var(--accent-primary);
}

.path-coop .path-unlock {
    color: var(--accent-secondary);
}

.path-cta {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* Services Section */
.services {
    padding: 8rem 2rem;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-subtle);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.clicked {
    animation: cardClick 0.3s ease;
}

@keyframes cardClick {
    0% {
        transform: scale(1) translateY(-8px);
    }

    50% {
        transform: scale(0.98) translateY(-8px);
    }

    100% {
        transform: scale(1) translateY(-8px);
    }
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-glow);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--bg-deep);
}

.service-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Mission Logs Section */
.mission-logs {
    padding: 8rem 2rem;
    position: relative;
    z-index: 1;
    background: var(--bg-surface);
}

.mission-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    color: var(--accent-primary);
    opacity: 0.8;
}

.mission-icon svg {
    width: 100%;
    height: 100%;
}

.mission-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.mission-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.mission-card {
    background: transparent;
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 240, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mission-card:hover {
    border-color: rgba(0, 240, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.1);
}

.mission-card:hover::before {
    opacity: 1;
}

.mission-player {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    position: relative;
    z-index: 1;
}

.mission-company {
    font-size: 0.9rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.mission-result {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--accent-success);
    position: relative;
    z-index: 1;
}

/* Process Section */
.process {
    padding: 8rem 2rem;
    position: relative;
    z-index: 1;
    background: var(--bg-surface);
}

.process-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 0;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 2rem 0;
    position: relative;
    cursor: pointer;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 80px;
    width: 2px;
    height: calc(100% - 40px);
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--bg-deep);
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

.step-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.step-proof {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    font-size: 0.85rem;
    color: var(--primary-cyan);
}

.step-proof .proof-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: bold;
}

.step-proof span:last-child {
    color: var(--text-muted);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .step-proof {
        font-size: 0.8rem;
    }
}

/* Testimonials */
.testimonials {
    padding: 8rem 2rem;
    position: relative;
    z-index: 1;
}

/* Case Study */
.case-study {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(124, 58, 237, 0.05));
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.case-study::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-purple));
}

.case-study-header {
    margin-bottom: 1.5rem;
}

.case-study-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.case-study-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
}

.case-study-story {
    margin-bottom: 2rem;
}

.case-study-story p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.case-study-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.case-metric {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(18, 18, 26, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.case-metric .metric-value {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.case-metric .metric-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.case-study-quote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary-cyan);
    margin: 0;
}

.case-study-quote cite {
    display: block;
    margin-top: 0.75rem;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .case-study {
        padding: 2rem 1.5rem;
    }

    .case-study-title {
        font-size: 1.35rem;
    }

    .case-study-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .case-metric .metric-value {
        font-size: 1.5rem;
    }
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2.5rem;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.3);
}

.testimonial-card::before {
    content: '"';
    font-family: 'Outfit', sans-serif;
    font-size: 8rem;
    font-weight: 800;
    position: absolute;
    top: -20px;
    left: 20px;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--bg-deep);
}

.author-info h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
}

.author-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Operator Section */
.operator {
    padding: 8rem 2rem;
    position: relative;
    z-index: 1;
    background: var(--bg-surface);
}

.operator-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.operator-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    margin: 0 auto;
}

.operator-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: 3px solid transparent;
    background: linear-gradient(var(--bg-surface), var(--bg-surface)) padding-box,
        linear-gradient(135deg, var(--accent-primary), var(--accent-success)) border-box;
    animation: ringPulse 4s ease-in-out infinite;
}

@keyframes ringPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 240, 255, 0.2),
            inset 0 0 20px rgba(0, 240, 255, 0.05);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 240, 255, 0.4),
            inset 0 0 40px rgba(0, 240, 255, 0.1);
    }
}

.operator-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 50%;
}

.operator-badge {
    position: absolute;
    padding: 0.4rem 0.9rem;
    background: rgba(18, 18, 26, 0.9);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

.badge-level {
    top: 5%;
    left: -5%;
}

.badge-xp {
    top: 30%;
    right: -10%;
}

.badge-ai {
    bottom: 20%;
    right: -5%;
    color: var(--accent-success);
    border-color: rgba(16, 185, 129, 0.4);
}

.badge-specialty {
    bottom: 5%;
    left: -5%;
}

.operator-content {
    text-align: left;
}

.operator-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.operator-icon svg {
    width: 100%;
    height: 100%;
}

.operator-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.operator-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 2rem;
}

.operator-bio p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.operator-bio p:last-child {
    margin-bottom: 0;
}

.operator-bio .bio-highlight {
    color: var(--accent-primary);
}

.operator-links {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

/* CTA Section */
.cta {
    padding: 8rem 2rem;
    position: relative;
    z-index: 1;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 5rem 3rem;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-subtle);
    opacity: 0.5;
}

/* CTA Profile Image */
.cta-profile {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    background: linear-gradient(var(--bg-surface), var(--bg-surface)) padding-box,
        var(--gradient-glow) border-box;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.25);
    transition: transform 0.3s ease;
}

.cta-avatar:hover {
    transform: scale(1.1);
}

.cta h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* CTA Trust Bullets */
.cta-trust-bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.trust-bullet {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.trust-bullet .bullet-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    font-size: 0.7rem;
    color: var(--accent-success);
}

@media (max-width: 768px) {
    .cta-trust-bullets {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .trust-bullet {
        font-size: 0.85rem;
    }
}

.cta-guarantee {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--accent-success);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta .btn-primary {
    position: relative;
    z-index: 1;
}

/* Dual CTA Layout */
.cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.dual-cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.cta-option {
    padding: 2rem;
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.cta-option-solo {
    border-color: rgba(0, 240, 255, 0.3);
}

.cta-option-coop {
    border-color: rgba(124, 58, 237, 0.3);
}

.cta-option:hover {
    transform: translateY(-4px);
}

.cta-option-solo:hover {
    border-color: rgba(0, 240, 255, 0.6);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.15);
}

.cta-option-coop:hover {
    border-color: rgba(124, 58, 237, 0.6);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.15);
}

.cta-btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    text-align: center;
}

.cta-option-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Inquiry Form */
.inquiry-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.inquiry-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.inquiry-subtext {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.cyber-form {
    max-width: 520px;
    margin: 0 auto;
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    transition: border-color 0.3s ease;
}

.cyber-form:hover {
    border-color: rgba(0, 240, 255, 0.15);
}

.form-progress {
    position: relative;
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
    transition: width 0.4s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
}

.progress-steps .step {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-deep);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.progress-steps .step.active {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.3);
}

.progress-steps .step.completed {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: var(--bg-deep);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.cyber-form .field {
    margin-bottom: 1.25rem;
}

.cyber-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

.cyber-form label .optional {
    color: var(--text-muted);
    font-weight: 400;
}

.cyber-form input,
.cyber-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-deep);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.cyber-form input:focus,
.cyber-form textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
}

.cyber-form input.error,
.cyber-form textarea.error {
    border-color: #ef4444;
}

.field-error {
    font-size: 0.8rem;
    color: #ef4444;
    margin-top: 0.25rem;
    display: none;
}

.char-counter {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: right;
    margin-top: 0.25rem;
}

.cyber-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-nav {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.next-btn,
.submit-btn {
    width: 100%;
    padding: 0.85rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    border-radius: 8px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.1s ease;
}

.next-btn:hover,
.submit-btn:hover {
    opacity: 0.9;
}

.next-btn:active,
.submit-btn:active {
    transform: scale(0.98);
}

.prev-btn {
    padding: 0.85rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-secondary);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s ease;
    white-space: nowrap;
}

.prev-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.form-success {
    text-align: center;
    padding: 2rem 1rem;
}

.success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin: 0 auto 1rem;
}

.form-success h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 480px) {
    .cyber-form {
        padding: 1.25rem;
    }

    .form-nav {
        flex-direction: column-reverse;
    }

    .prev-btn {
        width: 100%;
        text-align: center;
    }
}

/* Footer */
footer {
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-brand {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-columns {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-column {
    min-width: 120px;
}

.footer-column-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-column-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column-links li {
    margin-bottom: 0.5rem;
}

.footer-column-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column-links a:hover {
    color: var(--accent-primary);
}

.footer-coming-soon {
    color: var(--text-muted);
    font-size: 0.9rem;
    opacity: 0.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-legal-links {
    margin-top: 0.75rem;
    font-size: 0.8rem;
}

.footer-legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--accent-primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 2rem;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    position: relative;
}

.mobile-menu a:hover,
.mobile-menu a:active {
    color: var(--accent-primary);
    background: rgba(0, 240, 255, 0.1);
}

.mobile-menu a.btn-primary {
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.mobile-menu a.btn-primary:hover {
    color: var(--bg-deep);
    background: var(--gradient-glow);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {

    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    nav {
        padding: 1.25rem 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .nav-cta {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }

    .hero {
        padding: 6rem 2rem 3rem;
    }

    .game-hud {
        right: 15px;
    }

    .operator-container {
        gap: 3rem;
    }

    .operator-image-wrapper {
        max-width: 350px;
    }
}

/* Responsive - Small Tablet / Large Phone */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .operator-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .operator-content {
        text-align: center;
    }

    .operator-icon {
        margin: 0 auto 1.5rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    nav {
        padding: 0.875rem 1rem;
        gap: 0.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero {
        padding: 5rem 1.25rem 1.25rem;
        min-height: auto;
        gap: 0;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 11vw, 3.5rem);
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        padding: 0 1rem;
        color: var(--text-muted);
    }

    .hero-badge {
        font-size: 0.6rem;
        padding: 0.25rem 0.6rem;
        margin-bottom: 0.4rem;
        opacity: 0.7;
    }

    .hero-audience {
        font-size: 0.55rem;
        padding: 0.4rem 0.85rem;
        margin-bottom: 0.5rem;
        letter-spacing: 0.12em;
        opacity: 0.6;
        border-color: rgba(255, 255, 255, 0.04);
        box-shadow: none;
    }

    .urgency-badge {
        margin-top: 0.25rem;
        margin-bottom: 0.5rem;
    }

    .urgency-badge span {
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
    }

    .hero-guarantee {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .hero-avatar {
        width: 72px;
        height: 72px;
        box-shadow: 0 0 25px rgba(0, 240, 255, 0.25),
            0 0 50px rgba(124, 58, 237, 0.15);
    }

    .hero-profile {
        margin-top: 0.25rem;
        margin-bottom: 0.35rem;
    }

    .hero-profile-glow {
        width: 95px;
        height: 95px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        padding: 0 0.5rem;
        margin-bottom: 0.5rem;
        gap: 0.5rem;
    }

    .hero-social-proof {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    .trust-strip {
        margin: 0.5rem 0;
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .scroll-indicator {
        display: none;
    }

    .cta-avatar {
        width: 70px;
        height: 70px;
    }

    .services-grid,
    .testimonials-grid,
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .mission-card {
        padding: 1.5rem 1.25rem;
    }

    .mission-player {
        font-size: 1.1rem;
    }

    .mission-result {
        font-size: 1.15rem;
    }

    .services-grid {
        padding: 0;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .service-icon svg {
        width: 24px;
        height: 24px;
    }

    .service-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .service-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .stat-card {
        padding: 1.25rem 0.75rem;
        border-radius: 16px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }

    .section-label {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.5rem 0;
    }

    .process-step::after {
        display: none;
    }

    .step-number {
        margin: 0 auto 1rem;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .step-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .testimonial-card {
        padding: 1.75rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .testimonial-card::before {
        font-size: 5rem;
        top: -10px;
        left: 15px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-columns {
        justify-content: center;
        gap: 2rem;
    }

    .footer-column {
        text-align: center;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .cta-container {
        padding: 2.5rem 1.25rem;
        border-radius: 24px;
    }

    .cta h2 {
        font-size: 1.5rem;
    }

    .cta p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .cta-guarantee {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .dual-cta-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-option {
        padding: 1.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    /* Game HUD - repositioned for mobile */
    .game-hud {
        top: auto;
        bottom: 20px;
        right: 12px;
        left: auto;
        flex-direction: row;
        align-items: center;
    }

    .xp-container {
        min-width: 130px;
        padding: 8px 12px;
    }

    .level-badge {
        font-size: 0.7rem;
    }

    .xp-text {
        font-size: 0.65rem;
    }

    .xp-bar {
        height: 5px;
    }

    .streak-container {
        padding: 6px 10px;
    }

    .streak-fire {
        font-size: 1rem;
    }

    .streak-count {
        font-size: 0.9rem;
    }

    .achievement-container {
        top: 70px;
    }

    .achievement-toast {
        padding: 10px 14px;
        gap: 10px;
        max-width: calc(100vw - 24px);
        margin: 0 12px;
    }

    .achievement-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .achievement-title {
        font-size: 0.65rem;
    }

    .achievement-name {
        font-size: 0.85rem;
    }

    .achievement-xp {
        font-size: 0.75rem;
    }

    /* Hide cursor effects on touch devices */
    .cursor-glow {
        display: none;
    }

    .services,
    .process,
    .testimonials,
    .mission-logs,
    .operator,
    .cta,
    .stats {
        padding: 4rem 1.25rem;
    }

    .operator-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .operator-content {
        text-align: center;
    }

    .operator-icon {
        margin: 0 auto 1.25rem;
        width: 35px;
        height: 35px;
    }

    .operator-title {
        font-size: 1.5rem;
        letter-spacing: 0.08em;
    }

    .operator-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .operator-bio p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .operator-image-wrapper {
        max-width: 260px;
        order: -1;
    }

    .operator-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }

    .badge-level {
        top: -5%;
        left: 0;
    }

    .badge-xp {
        top: 20%;
        right: -5%;
    }

    .badge-ai {
        bottom: 20%;
        right: -5%;
    }

    .badge-specialty {
        bottom: -5%;
        left: 0;
    }

    /* Mission Logs specific mobile styles */
    .mission-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }

    .mission-title {
        letter-spacing: 0.1em;
    }

    /* Level up overlay mobile */
    .level-up-number {
        font-size: 5rem;
    }

    .level-up-text {
        font-size: 1rem;
        letter-spacing: 0.2em;
    }

    .level-up-subtitle {
        font-size: 1.1rem;
    }

    /* Easter egg badge mobile */
    .easter-egg-badge {
        bottom: 70px;
        left: 12px;
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

/* Responsive - Small phones */
@media (max-width: 480px) {
    nav {
        padding: 0.75rem 0.875rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .mobile-menu-btn span {
        width: 22px;
    }

    .hero {
        padding: 4.5rem 1rem 1rem;
    }

    .hero-avatar {
        width: 64px;
        height: 64px;
    }

    .hero-profile {
        margin-top: 0.15rem;
        margin-bottom: 0.25rem;
    }

    .hero-profile-glow {
        width: 85px;
        height: 85px;
    }

    .hero h1 {
        font-size: 2.25rem;
        line-height: 1.1;
        margin-bottom: 0.4rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .hero-badge {
        font-size: 0.55rem;
        padding: 0.2rem 0.5rem;
        margin-bottom: 0.3rem;
    }

    .hero-audience {
        font-size: 0.5rem;
        padding: 0.35rem 0.65rem;
        margin-bottom: 0.35rem;
    }

    .hero-guarantee {
        font-size: 0.65rem;
        padding: 0.35rem 0.5rem;
        flex-direction: column;
        gap: 0.2rem;
    }

    .hero-cta-group {
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-social-proof {
        font-size: 0.65rem;
        margin-bottom: 0.35rem;
    }

    .trust-strip {
        margin: 0.35rem 0;
        padding: 0.5rem;
    }

    .urgency-badge {
        margin-top: 0.15rem;
        margin-bottom: 0.35rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .cta-guarantee {
        font-size: 0.7rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .stat-card {
        padding: 1rem 0.5rem;
        border-radius: 12px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-label {
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-icon {
        width: 45px;
        height: 45px;
    }

    .service-icon svg {
        width: 22px;
        height: 22px;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .service-description {
        font-size: 0.85rem;
    }

    .mission-card {
        padding: 1.25rem 1rem;
    }

    .mission-player {
        font-size: 1rem;
    }

    .mission-company {
        font-size: 0.8rem;
    }

    .mission-result {
        font-size: 1.05rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
    }

    .author-info h4 {
        font-size: 0.9rem;
    }

    .author-info p {
        font-size: 0.8rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.85rem;
    }

    .cta-container {
        padding: 2rem 1rem;
        border-radius: 20px;
    }

    .cta h2 {
        font-size: 1.35rem;
    }

    .cta p {
        font-size: 0.85rem;
    }

    .cta-title {
        font-size: 1.35rem;
    }

    .cta-option {
        padding: 1.25rem;
    }

    .cta-option-text {
        font-size: 0.8rem;
    }

    .cta-avatar {
        width: 60px;
        height: 60px;
    }

    .operator-image-wrapper {
        max-width: 220px;
    }

    .operator-title {
        font-size: 1.3rem;
    }

    .operator-subtitle {
        font-size: 1rem;
    }

    .operator-bio p {
        font-size: 0.85rem;
    }

    .operator-badge {
        font-size: 0.55rem;
        padding: 0.2rem 0.4rem;
    }

    .services,
    .process,
    .testimonials,
    .mission-logs,
    .operator,
    .cta,
    .stats {
        padding: 3rem 1rem;
    }

    /* Game HUD small phones */
    .game-hud {
        bottom: 16px;
        right: 10px;
    }

    .xp-container {
        min-width: 110px;
        padding: 6px 10px;
    }

    .level-badge {
        font-size: 0.6rem;
    }

    .xp-text {
        font-size: 0.55rem;
    }

    .xp-bar {
        height: 4px;
    }

    .streak-container {
        padding: 5px 8px;
    }

    .streak-fire {
        font-size: 0.85rem;
    }

    .streak-count {
        font-size: 0.8rem;
    }

    .achievement-toast {
        padding: 8px 12px;
        gap: 8px;
    }

    .achievement-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .achievement-title {
        font-size: 0.6rem;
    }

    .achievement-name {
        font-size: 0.8rem;
    }

    .achievement-xp {
        font-size: 0.7rem;
    }

    .level-up-number {
        font-size: 4rem;
    }

    .level-up-text {
        font-size: 0.85rem;
    }

    .level-up-subtitle {
        font-size: 1rem;
    }

    .easter-egg-badge {
        bottom: 60px;
        left: 10px;
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    .footer-columns {
        gap: 1.5rem;
        flex-direction: column;
    }

    .footer-column-links a {
        font-size: 0.8rem;
    }

    .footer-logo {
        font-size: 1.25rem;
    }
}

/* Responsive - Extra small phones (iPhone SE, etc.) */
@media (max-width: 360px) {
    nav {
        padding: 0.65rem 0.75rem;
    }

    .logo {
        font-size: 1rem;
    }

    .hero {
        padding: 5rem 0.75rem 2rem;
    }

    .hero h1 {
        font-size: 1.4rem;
    }

    .hero-avatar {
        width: 75px;
        height: 75px;
    }

    .hero-profile-glow {
        width: 95px;
        height: 95px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-badge {
        font-size: 0.65rem;
    }

    .hero-guarantee {
        font-size: 0.7rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.7rem 1.25rem;
        font-size: 0.85rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .service-title {
        font-size: 1rem;
    }

    .cta h2 {
        font-size: 1.2rem;
    }

    .operator-title {
        font-size: 1.15rem;
    }

    .xp-container {
        min-width: 95px;
        padding: 5px 8px;
    }

    .level-badge {
        font-size: 0.55rem;
    }

    .xp-text {
        font-size: 0.5rem;
    }
}

/* Cursor glow effect */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
    transition: opacity 0.3s ease;
}

/* Click ripple effect */
.click-ripple {
    position: fixed;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.4) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    animation: rippleExpand 0.6s ease-out forwards;
    z-index: 9998;
}

@keyframes rippleExpand {
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

/* Bonus XP floating text */
.floating-xp {
    position: fixed;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--accent-gold);
    pointer-events: none;
    z-index: 9999;
    animation: floatUp 1s ease-out forwards;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@keyframes floatUp {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-50px) scale(1.2);
    }
}

/* ===========================================
   PROBLEM AGITATION SECTION
   =========================================== */
.problem-section {
    padding: 6rem 2rem 8rem;
    max-width: 1400px;
    margin: 0 auto;
}

.text-danger {
    color: #ef4444;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.problem-card {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #f97316);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.1);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-icon {
    width: 48px;
    height: 48px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.problem-icon svg {
    width: 24px;
    height: 24px;
    color: #ef4444;
}

.problem-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.problem-consequence {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.bridge-statement {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.03), rgba(124, 58, 237, 0.03));
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 24px;
}

.bridge-statement p {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.5;
}

/* ===========================================
   SOLUTION OVERVIEW SECTION
   =========================================== */
.solution-section {
    padding: 6rem 2rem 8rem;
    max-width: 1400px;
    margin: 0 auto;
}

.solution-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.flow-step {
    background: rgba(18, 18, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    min-width: 140px;
    transition: all 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 240, 255, 0.3);
}

.flow-step.ai-step {
    border-color: rgba(124, 58, 237, 0.3);
    background: rgba(124, 58, 237, 0.05);
}

.flow-step.success-step {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.05);
}

.flow-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.flow-step.ai-step .flow-icon {
    background: rgba(124, 58, 237, 0.1);
}

.flow-step.success-step .flow-icon {
    background: rgba(16, 185, 129, 0.1);
}

.flow-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-primary);
}

.flow-step.ai-step .flow-icon svg {
    color: var(--accent-secondary);
}

.flow-step.success-step .flow-icon svg {
    color: var(--accent-success);
}

.flow-step h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.flow-step p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.flow-arrow {
    color: var(--text-muted);
    opacity: 0.5;
}

.flow-arrow svg {
    width: 24px;
    height: 24px;
}

.solution-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.solution-stat-card {
    background: rgba(18, 18, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.solution-stat-card.highlight {
    border-color: rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
}

.solution-stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-stat-card.highlight .solution-stat-number {
    background: linear-gradient(135deg, var(--accent-success), #34d399);
    -webkit-background-clip: text;
    background-clip: text;
}

.solution-stat-label {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.solution-stat-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===========================================
   COMPARISON TABLE SECTION
   =========================================== */
.comparison-section {
    padding: 6rem 2rem 8rem;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.comparison-column {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.comparison-column.you-column {
    border-color: rgba(0, 240, 255, 0.3);
    background: linear-gradient(180deg, rgba(0, 240, 255, 0.05), transparent);
}

.comparison-column.you-column:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 240, 255, 0.1);
}

.column-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.column-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.column-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.item-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.item-icon.check {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-success);
}

.item-icon.check svg {
    width: 14px;
    height: 14px;
}

.item-icon.x {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.item-icon.x svg {
    width: 14px;
    height: 14px;
}

.item-icon.neutral {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.item-content strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.item-content span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.comparison-bottom-line {
    text-align: center;
    padding: 2rem;
    background: rgba(18, 18, 26, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-bottom-line p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.comparison-bottom-line em {
    color: var(--accent-primary);
    font-style: normal;
}

/* ===========================================
   USE CASES SECTION
   =========================================== */
.use-cases-section {
    padding: 6rem 2rem 8rem;
    max-width: 1400px;
    margin: 0 auto;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.use-case-card {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.use-case-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.use-case-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-primary);
}

.use-case-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.use-case-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===========================================
   FAQ SECTION
   =========================================== */
.faq-section {
    padding: 6rem 2rem 8rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 240, 255, 0.2);
}

.faq-item.active {
    border-color: rgba(0, 240, 255, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ===========================================
   RESPONSIVE STYLES FOR NEW SECTIONS
   =========================================== */
@media (max-width: 1024px) {
    .comparison-table {
        grid-template-columns: 1fr;
    }

    .solution-flow {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .problem-section,
    .solution-section,
    .comparison-section,
    .use-cases-section,
    .faq-section {
        padding: 4rem 1rem 5rem;
    }

    .problem-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .problem-card,
    .use-case-card {
        padding: 1.5rem;
    }

    .bridge-statement {
        padding: 2rem 1.5rem;
    }

    .solution-stats {
        grid-template-columns: 1fr;
    }

    .solution-stat-card {
        padding: 2rem;
    }

    .solution-stat-number {
        font-size: 2.5rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .problem-title,
    .use-case-title {
        font-size: 1rem;
    }

    .problem-consequence,
    .use-case-desc {
        font-size: 0.9rem;
    }

    .flow-step {
        min-width: 100%;
        padding: 1.25rem;
    }

    .comparison-column {
        padding: 1.5rem;
    }
}
