:root {
    --bg-dark: #0D0221;
    --bg-grad: linear-gradient(180deg, #0D0221 0%, #1A0533 100%);
    --neon-pink: #B04BFF;
    --neon-blue: #00D4FF;
    --text-main: #E8E8F0;
    --text-muted: #8B8BA8;
    --glow-pink: 0 0 20px rgba(176, 75, 255, 0.4);
    --glow-blue: 0 0 20px rgba(0, 212, 255, 0.4);
    --panel-bg: rgba(26, 5, 51, 0.6);
    --panel-border: rgba(176, 75, 255, 0.2);
    --success: #00FF88;
    --warning: #FFB000;
}

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

body {
    background: var(--bg-grad);
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, .glitch-title {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.max-w-lg { max-width: 900px; margin: 0 auto; }
.max-w-md { max-width: 700px; margin: 0 auto; }
.text-center { text-align: center; }

.section { padding: 100px 0; }
.section-title { font-size: 2.5rem; margin-bottom: 40px; text-shadow: 0 0 10px rgba(232, 232, 240, 0.1); }

.header {
    background: rgba(13, 2, 33, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.neon-border-bottom { border-bottom: 1px solid var(--panel-border); box-shadow: 0 5px 20px rgba(176, 75, 255, 0.1); }

.nav-link {
    color: var(--text-muted);
    transition: color 0.3s, text-shadow 0.3s;
}
.nav-link:hover {
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

@media (max-width: 992px) {
    .header-nav { display: none !important; }
}

.neon-text {
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(176,75,255,0.6);
}

/* Glass / Neon Panels */
.glass-panel {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.glow-panel {
    background: var(--panel-bg);
    border: 1px solid var(--neon-pink);
    border-radius: 16px;
    box-shadow: var(--glow-pink);
    backdrop-filter: blur(10px);
}

.neon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--neon-blue);
    color: #000;
    font-weight: 700;
    font-family: 'Clash Display', sans-serif;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    box-shadow: var(--glow-blue);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.neon-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
}

.neon-btn.outline {
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
    box-shadow: none;
}
.neon-btn.outline:hover { box-shadow: inset 0 0 15px rgba(0,212,255,0.3); }

/* --- HERO --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.glitch-title { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 24px; }
.hero-sub { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 40px; max-width: 500px; }

/* Laptop & Chains */
.laptop-unchain-container {
    position: relative;
    perspective: 1000px;
}

.laptop {
    width: 100%;
    aspect-ratio: 16/10;
    position: relative;
    transform: rotateX(10deg) rotateY(-15deg);
    transform-style: preserve-3d;
}

.screen {
    width: 100%;
    height: 100%;
    background: #111;
    border: 8px solid #222;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.screen.freed {
    background: radial-gradient(circle at center, #2a0b4d 0%, #111 80%);
    box-shadow: inset 0 0 50px rgba(176,75,255,0.2), 0 0 40px rgba(176,75,255,0.3);
    border-color: var(--neon-pink);
}

.keyboard {
    height: 20px;
    background: #1a1a1a;
    position: absolute;
    bottom: -20px;
    width: 105%;
    left: -2.5%;
    border-radius: 0 0 12px 12px;
    transform: rotateX(60deg);
    transform-origin: top;
}

.screen-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 100%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease 0.3s;
}

.screen.freed .screen-content {
    opacity: 1;
    transform: scale(1);
}

.icon {
    background: rgba(255,255,255,0.1);
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Chains overlay */
.chains-overlay {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    pointer-events: none;
    z-index: 10;
}

.chain {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chains-overlay.broken .chain-1 { transform: translateY(-50px) rotate(-15deg); opacity: 0; }
.chains-overlay.broken .chain-2 { transform: translateY(50px) rotate(15deg); opacity: 0; }

.chain-break-flash {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 0; height: 0;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 100px 50px #fff;
    opacity: 0;
}

.chains-overlay.broken .chain-break-flash {
    animation: flash 0.8s ease-out forwards;
}

@keyframes flash {
    0% { width: 0; height: 0; opacity: 1; }
    50% { width: 300px; height: 300px; opacity: 1; }
    100% { width: 400px; height: 400px; opacity: 0; }
}

.status-bar {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--success);
    border: 1px solid var(--success);
    box-shadow: 0 0 10px rgba(0,255,136,0.2);
    opacity: 0;
    transition: opacity 0.5s ease 1s;
    white-space: nowrap;
}
.status-bar.unlocked { opacity: 1; }

/* --- LOCATIONS SECTION --- */
.section-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: -20px;
    margin-bottom: 50px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.loc-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.loc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(176,75,255,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.loc-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.15);
}

.loc-flag {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.loc-info {
    flex: 1;
    min-width: 0;
}

.loc-name {
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.loc-city {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.loc-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.loc-ping {
    font-size: 0.78rem;
    font-family: monospace;
    color: var(--neon-blue);
    background: rgba(0,212,255,0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.loc-speed {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: monospace;
}

.loc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #555;
    flex-shrink: 0;
}

.loc-dot.active {
    background: var(--success);
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 8px rgba(0, 255, 136, 0.6); }
    50% { box-shadow: 0 0 16px rgba(0, 255, 136, 1); }
}

.loc-more {
    background: rgba(176, 75, 255, 0.08);
    border-color: rgba(176, 75, 255, 0.35);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    min-height: 90px;
}

.loc-more .loc-name { font-size: 1.2rem; color: var(--neon-pink); }
.loc-more .loc-city { color: var(--text-muted); }

.loc-link {
    margin-top: 4px;
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--neon-blue);
    font-family: 'Clash Display', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: text-shadow 0.2s;
}
.loc-link:hover { text-shadow: 0 0 10px rgba(0,212,255,0.8); }



/* --- DASHBOARD --- */
.terminal-dashboard {
    background: #05010f;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    font-family: 'Courier New', Courier, monospace;
}
.term-header {
    background: #111;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #333;
    color: var(--text-muted);
}
.live-indicator { color: var(--neon-pink); animation: blink 2s infinite; }
@keyframes blink { 50% { opacity: 0.3; } }

.term-body { padding: 30px; display: flex; flex-direction: column; gap: 20px; }
.sys-item { display: flex; align-items: center; gap: 15px; }
.sys-label { width: 180px; font-size: 0.9rem; }
.sys-bar {
    flex: 1;
    height: 14px;
    background: #222;
    border: 1px solid #444;
    position: relative;
}
.sys-fill {
    height: 100%;
    width: 0%;
    background: var(--text-main);
    transition: width 1.5s ease-out;
}
.sys-status { width: 140px; text-align: right; font-size: 0.9rem; opacity: 0; transition: opacity 0.3s ease 1.5s; }
.sys-status.success { color: var(--success); }
.sys-status.warning { color: var(--warning); }
.terminal-dashboard.in-view .sys-status { opacity: 1; }

/* --- SCENARIOS --- */
.scenario-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.scen-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--panel-border);
    color: var(--text-main);
    padding: 12px 24px;
    border-radius: 30px;
    font-family: 'Clash Display', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}
.scen-btn:hover { background: rgba(255,255,255,0.1); }
.scen-btn.active {
    background: var(--neon-pink);
    border-color: var(--neon-pink);
    box-shadow: var(--glow-pink);
}
.scenario-content {
    padding: 40px;
    min-height: 250px;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }

.scen-title { font-family: 'Clash Display'; font-size: 1.5rem; color: var(--neon-blue); margin-bottom: 20px; }
.scen-text { color: var(--text-muted); margin-bottom: 24px; }
.scen-server { background: rgba(0,212,255,0.1); padding: 12px; border-left: 3px solid var(--neon-blue); margin-bottom: 24px; }

/* --- STEPPER --- */
.horizontal-stepper {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
}
.horizontal-stepper::-webkit-scrollbar { height: 6px; }
.horizontal-stepper::-webkit-scrollbar-thumb { background: var(--panel-border); border-radius: 3px; }

.step-card {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 16px;
    padding: 30px;
}
.step-icon {
    width: 50px; height: 50px;
    background: #222;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-family: 'Clash Display';
    margin-bottom: 20px;
}
.step-icon.glow { background: var(--neon-pink); box-shadow: var(--glow-pink); }
.step-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.step-card p { color: var(--text-muted); font-size: 0.9rem; }

/* --- PRICING --- */
.pricing-toggle-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
    font-family: 'Clash Display';
    font-size: 1.2rem;
}
.toggle-switch { position: relative; width: 60px; height: 32px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #333; transition: .4s; border-radius: 34px; border: 1px solid #555; }
.slider:before { position: absolute; content: ""; height: 24px; width: 24px; left: 4px; bottom: 3px; background-color: var(--text-main); transition: .4s; border-radius: 50%; }
input:checked + .slider { background-color: var(--neon-pink); border-color: var(--neon-pink); box-shadow: var(--glow-pink); }
input:checked + .slider:before { transform: translateX(26px); }

.pricing-grid { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 30px; align-items: stretch; max-width: 1100px; margin: 0 auto; }
.price-box { padding: 40px; display: flex; flex-direction: column; }
.price-box .neon-btn { margin-top: auto; }
.price-box.pvar-main { border-color: var(--neon-pink); position: relative; transform: scale(1.05); }
.badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--neon-pink); padding: 4px 16px; border-radius: 20px; font-weight: bold; font-size: 0.85rem; white-space: nowrap; }
.pvar-name { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 10px; font-family: 'Clash Display'; }
.pvar-price { font-size: 3.5rem; font-family: 'Clash Display'; font-weight: 700; margin-bottom: 30px; display: flex; align-items: baseline;}
.pvar-price small { font-size: 1rem; color: var(--text-muted); margin-left: 10px; }
.pvar-features { margin-bottom: 40px; }
.pvar-features li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }

/* Rolling Numbers Anim */
.digit-roller { display: inline-block; overflow: hidden; height: 1.2em; vertical-align: bottom;}
.d-text { display: block; transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.d-text.rolling { transform: translateY(-100%); }

/* --- MARQUEE --- */
.marquee-container {
    background: var(--neon-pink);
    color: #000;
    padding: 16px 0;
    overflow: hidden;
    font-family: 'Clash Display';
    font-size: 1.2rem;
    text-transform: uppercase;
    transform: rotate(-2deg) scale(1.05);
    box-shadow: 0 0 30px rgba(176,75,255,0.3);
    margin: 100px 0;
}
.marquee-track { display: flex; width: max-content; }
.track-left { animation: scrollL 30s linear infinite; }
.track-right { animation: scrollR 30s linear infinite; }
@keyframes scrollL { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scrollR { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.marquee-track span { padding: 0 20px; font-weight: 600; white-space: nowrap; }
.star { opacity: 0.5; margin: 0 10px; }

/* --- REVIEWS --- */
.reviews-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
}
.reviews-carousel::-webkit-scrollbar { display: none; }
.review-slide {
    flex: 0 0 calc(50% - 12px);
    scroll-snap-align: center;
    padding: 30px;
}
.stars { color: var(--warning); margin-bottom: 10px; }
.r-author { font-weight: bold; margin-bottom: 15px; color: var(--neon-blue); }

/* --- FAQ & SEO --- */
.faq-list { display: flex; flex-direction: column; gap: 20px; }
.faq-item { background: var(--panel-bg); border: 1px solid var(--panel-border); border-radius: 12px; padding: 24px; }
.faq-item h4 { font-family: 'Inter'; font-size: 1.1rem; margin-bottom: 15px; }
.seo-text { background: rgba(0,0,0,0.3); }
.seo-text h3 { margin-bottom: 20px; font-size: 1.5rem; }
.seo-text p { color: var(--text-muted); font-size: 0.9rem; }

/* --- CTA TIMER --- */
.timer-card { padding: 60px; }
.timer-card h2 { margin-bottom: 30px; }
.countdown-timer {
    font-size: 3.5rem;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    color: var(--neon-blue);
    margin-bottom: 40px;
    text-shadow: var(--glow-blue);
}
.l-btn { font-size: 1.3rem; padding: 20px 40px; }
.cta-terms { margin-top: 20px; color: var(--text-muted); font-size: 0.9rem; }

/* Responsive */
@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-sub { margin: 0 auto 40px; }
    .status-bar { bottom: -80px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .review-slide { flex: 0 0 80%; }
    .step-card { flex: 0 0 80%; }
}
@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .glitch-title { font-size: 2.5rem; }
    .countdown-timer{ font-size: 2.5rem; }
    .sys-label { width: 120px; font-size: 0.8rem; }
    .sys-status { width: 100px; font-size: 0.8rem; }
}
