/* ==========================================================================
   DEVGRID HOST - CUSTOM STYLESHEET CONFIGURATION
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
    --bg-base-dark: #020407;
    --bg-surface-box: #0a0e17;
    --bg-inner-card: #111827;
    
    --neon-blue: #00e5ff;
    --neon-blue-glow: rgba(0, 229, 255, 0.35);
    --neon-blue-dim: rgba(0, 229, 255, 0.04);
    
    --border-subtle-lines: #162032;
    --border-accent-bright: #22314d;
    
    --text-main: #ffffff;
    --text-muted-gray: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-base-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

/* 🌀 ENGINE FOR SCROLL RENDERING OVERLAYS */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.scroll-reveal.render-active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* NAVBAR STRUCTURE */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 8%;
    background: rgba(2, 4, 7, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle-lines);
    z-index: 10000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    object-fit: cover;
}

.brand-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
}

.brand-text .accent-text { color: var(--neon-blue); }

.nav-links { display: flex; list-style: none; gap: 28px; }
.nav-links a {
    color: var(--text-muted-gray);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--neon-blue); }

.btn-client-area {
    background: linear-gradient(135deg, #0099ff, var(--neon-blue));
    color: #000000;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 0 15px var(--neon-blue-glow);
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-client-area:hover { transform: translateY(-1px); box-shadow: 0 0 25px var(--neon-blue); }

/* 🌌 HERO ENERGY CORE */
.hero-arena {
    position: relative;
    padding: 220px 8% 160px 8%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border-subtle-lines);
}

.hero-image-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    mix-blend-mode: luminosity;
    pointer-events: none;
    z-index: 1;
}

.hero-arena .grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(var(--border-subtle-lines) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-subtle-lines) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
    opacity: 0.6;
}

.hero-arena .ambient-mesh {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    animation: breathingCoreGlow 8s infinite ease-in-out;
}

.hero-content { position: relative; z-index: 10; max-width: 850px; }

.support-pill {
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.2);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    color: var(--neon-blue);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    letter-spacing: 0.05em;
}

.hero-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.glow-blue { color: var(--neon-blue); text-shadow: 0 0 30px rgba(0, 229, 255, 0.4); }

.hero-subtitle {
    font-size: 16px;
    color: var(--text-muted-gray);
    margin-bottom: 40px;
    line-height: 1.65;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons { display: flex; gap: 18px; justify-content: center; }

.btn-glow-primary {
    background: #ffffff;
    color: #000000;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-glow-primary:hover { background: var(--neon-blue); box-shadow: 0 0 25px var(--neon-blue); transform: translateY(-1px); }

.btn-outline-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid var(--border-accent-bright);
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-outline-secondary:hover { border-color: #ffffff; background: rgba(255,255,255,0.03); }

/* 🧱 GENERAL SECTION STRUCTURES */
.section-container { padding: 100px 8%; position: relative; border-bottom: 1px solid var(--border-subtle-lines); }
.section-container.alternate-bg { background-color: #05080e; }
.section-header { text-align: center; margin-bottom: 60px; }

.cyber-badge {
    font-size: 11px;
    color: var(--neon-blue);
    font-weight: 700;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.cyber-badge-alert {
    font-size: 11px;
    color: #ff0055;
    font-weight: 700;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title { font-family: 'Space Grotesk', sans-serif; font-size: 36px; font-weight: 700; margin-bottom: 10px; }
.section-desc { color: var(--text-muted-gray); font-size: 15px; }

/* 📊 REWARDS DATA TABLES */
.rewards-split-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.table-container-neon {
    background: var(--bg-surface-box);
    border: 1px solid var(--border-subtle-lines);
    border-radius: 8px;
    overflow: hidden;
}

.data-matrix-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

.data-matrix-table th {
    background: var(--bg-inner-card);
    padding: 16px 24px;
    font-weight: 600;
    border-bottom: 1px solid var(--border-subtle-lines);
}

.data-matrix-table td {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(22, 32, 50, 0.5);
}

.highlight-blue { color: var(--neon-blue); font-weight: 700; }

.rules-card-matrix {
    background: var(--bg-surface-box);
    border: 1px solid var(--border-subtle-lines);
    padding: 35px;
    border-radius: 8px;
    height: fit-content;
}

.rules-card-matrix h3 { font-size: 16px; margin-bottom: 24px; color: #ffffff; border-left: 3px solid var(--neon-blue); padding-left: 12px; font-family: 'Space Grotesk', sans-serif; }
.rules-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.rules-list li { font-size: 13px; color: var(--text-muted-gray); line-height: 1.6; position: relative; padding-left: 24px; }
.rules-list li::before { content: '▪'; position: absolute; left: 0; color: var(--neon-blue); font-size: 14px; top: -1px; }

/* 🎛️ PREMIUM INTERACTIVE CYBER ACCORDION ENGINE */
.vault-accordion-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item-cyber {
    background: var(--bg-surface-box);
    border: 1px solid var(--border-subtle-lines);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.accordion-item-cyber:hover {
    border-color: var(--border-accent-bright);
}

.accordion-item-cyber.panel-expanded {
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 0 20px var(--neon-blue-dim);
}

.accordion-trigger-button {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.trigger-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-indicator-cube {
    font-size: 24px;
    background: var(--bg-inner-card);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid var(--border-subtle-lines);
}

.trigger-title-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trigger-title-group strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
}

.trigger-title-group small {
    color: var(--text-muted-gray);
    font-size: 13px;
}

.trigger-chevron {
    color: var(--text-muted-gray);
    font-size: 12px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item-cyber.panel-expanded .trigger-chevron {
    transform: rotate(180deg);
    color: var(--neon-blue);
}

/* ACCORDION EXPANSION SUB-PANEL SHOWCASE */
.accordion-panel-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.panel-inner-showcase {
    padding: 10px 30px 40px 30px;
    border-top: 1px solid rgba(22, 32, 50, 0.5);
    background: rgba(2, 4, 7, 0.3);
}

.panel-graphic-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(22, 32, 50, 0.4);
    flex-wrap: wrap;
    gap: 20px;
}

.panel-badge-asset {
    max-height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.feature-ticks-row { display: flex; flex-wrap: wrap; gap: 10px; }
.feature-ticks-row span {
    font-size: 12px;
    background: var(--bg-inner-card);
    border: 1px solid var(--border-subtle-lines);
    padding: 6px 14px;
    border-radius: 4px;
    color: var(--text-main);
}

/* 🏁 GRID PRICING BOX CARDS MATRIX */
.pricing-matrix-scroller-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.price-box-neon {
    background: var(--bg-surface-box);
    border: 1px solid var(--border-subtle-lines);
    border-radius: 6px;
    padding: 24px;
    text-align: center;
    position: relative;
    transition: all 0.25s ease;
}

.price-box-neon:hover {
    border-color: var(--border-accent-bright);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4), 0 0 15px var(--neon-blue-dim);
}

.price-box-neon.highlighted {
    border-color: var(--neon-blue);
    background: linear-gradient(180deg, var(--bg-surface-box) 0%, rgba(0, 229, 255, 0.02) 100%);
}

.price-box-neon.extreme { border-color: #ff0055; }

.popular-ribbon {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 9px;
    font-weight: 800;
    background: var(--neon-blue);
    color: #000000;
    padding: 2px 6px;
    border-radius: 3px;
    letter-spacing: 0.05em;
}

.price-box-neon h4 { font-size: 13px; color: var(--text-muted-gray); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.price-box-neon .cost { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; color: #ffffff; margin-bottom: 20px; }
.price-box-neon .cost span { font-size: 12px; color: var(--text-muted-gray); font-weight: 400; }

.btn-card-action {
    display: block;
    width: 100%;
    background: var(--bg-inner-card);
    border: 1px solid var(--border-subtle-lines);
    color: #ffffff;
    padding: 10px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.2s;
}

.price-box-neon:hover .btn-card-action {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.price-box-neon.highlighted .btn-card-action {
    background: var(--neon-blue);
    color: #000000;
    border-color: var(--neon-blue);
}

.price-box-neon.highlighted:hover .btn-card-action {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.custom-ticket-notice {
    text-align: center;
    margin-top: 36px;
    font-size: 13px;
    color: var(--text-muted-gray);
}
.custom-ticket-notice a { color: var(--neon-blue); text-decoration: none; font-weight: 600; }
.custom-ticket-notice a:hover { text-decoration: underline; }

/* 🛡️ SECURITY SPLIT DOUBLE BOXES */
.security-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.security-card-box {
    background: var(--bg-surface-box);
    border: 1px solid var(--border-subtle-lines);
    border-radius: 8px;
    padding: 35px;
}

.shield-title-header h3 { font-family: 'Space Grotesk', sans-serif; font-size: 20px; color: #ffffff; margin-bottom: 4px; }
.shield-title-header span { font-size: 13px; color: var(--neon-blue); display: block; margin-bottom: 24px; }

.mini-table-scroller {
    max-height: 280px;
    overflow-y: auto;
    border: 1px solid var(--border-subtle-lines);
    border-radius: 6px;
}

.mini-data-table { width: 100%; border-collapse: collapse; font-size: 13px; text-align: left; }
.mini-data-table th { background: var(--bg-inner-card); padding: 12px 18px; font-weight: 600; position: sticky; top: 0; z-index: 5; border-bottom: 1px solid var(--border-subtle-lines); }
.mini-data-table td { padding: 11px 18px; border-bottom: 1px solid rgba(22, 32, 50, 0.4); color: var(--text-muted-gray); }
.mini-data-table tr:hover td { color: #ffffff; background: rgba(255,255,255,0.02); }

/* 👥 DISCORD HUB PROMOTION REGION */
.community-card-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0b1426 0%, #070a12 100%);
    border: 1px solid var(--border-subtle-lines);
    border-radius: 12px;
    padding: 50px 60px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
    overflow: hidden;
    position: relative;
}

.community-text-side h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 14px;
}

.community-text-side p {
    color: var(--text-muted-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.btn-discord-join {
    display: inline-block;
    background: #5865F2;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
    transition: transform 0.2s, background 0.2s;
}
.btn-discord-join:hover { background: #4752c4; transform: translateY(-1px); }

.community-graphic-side { display: flex; justify-content: center; }
.floating-render-asset {
    max-width: 75%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(88, 101, 242, 0.2));
    animation: floatAssetAnimation 4s infinite alternate ease-in-out;
}

/* FOOTER ARCHITECTURE */
.system-footer { background: #010204; padding: 40px 8%; border-top: 1px solid var(--border-subtle-lines); }
.footer-secondary-row { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text-muted-gray); }
.payment-badges-row { display: flex; gap: 16px; font-weight: 700; color: #ffffff; }

/* 🔄 KEYFRAME GRAPHIC ENGINE */
@keyframes breathingCoreGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(0.96); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.04); opacity: 1; }
}

@keyframes floatAssetAnimation {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-14px); }
}

/* 📱 RESPONSIVE MEDIA QUERIES */
@media (max-width: 900px) {
    .rewards-split-wrapper, .security-split-grid, .community-card-wrapper {
        grid-template-columns: 1fr;
    }
    .community-card-wrapper { padding: 40px 30px; }
    .nav-links { display: none; }
    .hero-content h1 { font-size: 38px; }
    .panel-graphic-intro { flex-direction: column; align-items: flex-start; }
    .accordion-trigger-button { padding: 20px; }
    .trigger-left { gap: 12px; }
    .trigger-title-group strong { font-size: 15px; }
}
/* ==========================================================================
   DEVGRID HOST — EXTENDED FEATURE STYLESHEET (v2)
   New sections: status strip, mobile nav, stats, features, hardware,
   comparison table, locations, testimonials, FAQ, newsletter CTA, footer++
   ========================================================================== */

/* 📏 SCROLL PROGRESS BAR */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #0099ff, var(--neon-blue));
    z-index: 100000;
    box-shadow: 0 0 10px var(--neon-blue);
    transition: width 0.1s ease-out;
}

/* 📢 STATUS ANNOUNCEMENT STRIP */
.status-announce-strip {
    background: #00121a;
    border-bottom: 1px solid var(--border-subtle-lines);
    padding: 8px 8%;
    position: relative;
    z-index: 10001;
    overflow: hidden;
}

.status-announce-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 11.5px;
    color: var(--text-muted-gray);
    letter-spacing: 0.02em;
}

.status-announce-inner strong { color: var(--neon-blue); font-weight: 700; }
.status-divider { color: var(--border-accent-bright); }

.status-dot-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
    animation: statusDotPulse 2s infinite ease-in-out;
    flex-shrink: 0;
}

@keyframes statusDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* NAVBAR: adjust for status strip stacking + scrolled state */
.navbar {
    top: 0;
    transition: padding 0.3s ease, background 0.3s ease;
}

.navbar.navbar-scrolled {
    padding-top: 12px;
    padding-bottom: 12px;
    background: rgba(2, 4, 7, 0.96);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.btn-nav-login {
    color: var(--text-muted-gray);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    transition: color 0.2s;
}
.btn-nav-login:hover { color: #ffffff; }

.nav-actions { display: flex; align-items: center; gap: 6px; }

/* 📱 MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10002;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: #05070c;
    border-left: 1px solid var(--border-subtle-lines);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    padding: 100px 32px 32px 32px;
    gap: 6px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
}

.mobile-nav-drawer.active { right: 0; }

.mobile-nav-drawer a {
    color: var(--text-muted-gray);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(22, 32, 50, 0.5);
    transition: color 0.2s;
}
.mobile-nav-drawer a:hover { color: var(--neon-blue); }

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}
.mobile-nav-actions a { text-align: center; border-bottom: none; padding: 12px; }

/* 🌟 HERO TRUST STRIP */
.hero-trust-strip {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-trust-strip > span {
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--text-muted-gray);
    text-transform: uppercase;
}

.trust-logo-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.trust-logo-chip {
    font-size: 12px;
    color: var(--text-muted-gray);
    border: 1px solid var(--border-subtle-lines);
    background: rgba(255,255,255,0.02);
    padding: 8px 16px;
    border-radius: 20px;
}

/* 🖱️ SCROLL CUE */
.scroll-cue {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-cue span {
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--text-muted-gray);
}

.scroll-cue-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--neon-blue), transparent);
    animation: scrollCueMove 1.8s infinite ease-in-out;
}

@keyframes scrollCueMove {
    0% { opacity: 0; transform: translateY(-8px) scaleY(0.5); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(8px) scaleY(1); }
}

/* 🔢 LIVE STAT STRIP */
.stat-strip-section {
    padding: 56px 8%;
    background: var(--bg-surface-box);
    border-bottom: 1px solid var(--border-subtle-lines);
}

.stat-strip-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-strip-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--neon-blue);
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.25);
}

.stat-strip-label {
    font-size: 12px;
    color: var(--text-muted-gray);
    margin-top: 6px;
    letter-spacing: 0.03em;
}

/* 🧩 FEATURE GRID */
.feature-grid-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card-cyber {
    background: var(--bg-surface-box);
    border: 1px solid var(--border-subtle-lines);
    border-radius: 10px;
    padding: 32px 28px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.feature-card-cyber:hover {
    border-color: rgba(0, 229, 255, 0.4);
    transform: translateY(-4px);
}

.feature-icon-badge {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-inner-card);
    border: 1px solid var(--border-subtle-lines);
    border-radius: 10px;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-card-cyber h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.feature-card-cyber p {
    font-size: 13.5px;
    color: var(--text-muted-gray);
    line-height: 1.65;
}

/* 🖥️ HARDWARE SHOWCASE SPLIT */
.hardware-showcase-section { padding: 100px 8%; }

.hardware-split-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.hardware-image-side {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-subtle-lines);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.hardware-photo-asset {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.02);
}

.hardware-text-side h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin: 10px 0 18px 0;
    line-height: 1.25;
}

.hardware-desc-text {
    color: var(--text-muted-gray);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.hardware-spec-list { list-style: none; display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border-subtle-lines); }
.hardware-spec-list li {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-subtle-lines);
    font-size: 13.5px;
}
.spec-label { color: var(--text-muted-gray); }
.spec-value { color: #ffffff; font-weight: 600; text-align: right; }

/* 🎮 MINECRAFT RENDER FOOTER STRIP (inside accordion panel) */
.mc-render-footer {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid rgba(22, 32, 50, 0.5);
}

.mc-render-asset {
    width: 70px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.5));
}

.mc-render-footer p {
    font-size: 13px;
    color: var(--text-muted-gray);
    line-height: 1.6;
}

/* 📊 COMPARISON TABLE */
.comparison-table-wrapper {
    max-width: 1100px;
    margin: 90px auto 0 auto;
}

.comparison-table-scroller {
    overflow-x: auto;
    border: 1px solid var(--border-subtle-lines);
    border-radius: 8px;
    background: var(--bg-surface-box);
}

.comparison-data-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    font-size: 13.5px;
    text-align: left;
}

.comparison-data-table th {
    background: var(--bg-inner-card);
    padding: 16px 20px;
    font-weight: 700;
    border-bottom: 1px solid var(--border-subtle-lines);
    font-family: 'Space Grotesk', sans-serif;
}

.comparison-data-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(22, 32, 50, 0.5);
    color: var(--text-muted-gray);
}

.comparison-highlight-col {
    color: var(--neon-blue) !important;
    font-weight: 700;
    background: rgba(0, 229, 255, 0.04);
}

.comparison-data-table th.comparison-highlight-col { color: #05070b !important; background: var(--neon-blue); }

/* 🌍 LOCATIONS GRID */
.locations-grid-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.location-card-cyber {
    background: var(--bg-surface-box);
    border: 1px solid var(--border-subtle-lines);
    border-radius: 8px;
    padding: 26px;
    text-align: center;
    transition: border-color 0.25s, transform 0.25s;
}
.location-card-cyber:hover { border-color: var(--border-accent-bright); transform: translateY(-3px); }

.location-flag { font-size: 30px; display: block; margin-bottom: 12px; }
.location-card-cyber h4 { font-family: 'Space Grotesk', sans-serif; font-size: 16px; margin-bottom: 6px; }
.location-card-cyber p { font-size: 12.5px; color: var(--text-muted-gray); margin-bottom: 16px; }

.location-status-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}
.location-status-tag.online { color: #22c55e; background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.3); }
.location-status-tag.pending { color: #fbbf24; background: rgba(251, 191, 36, 0.1); border: 1px solid rgba(251, 191, 36, 0.3); }

/* 🛡️ SECURITY SHIELD INTRO STRIP */
.security-shield-intro {
    max-width: 1100px;
    margin: 0 auto 50px auto;
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--bg-surface-box);
    border: 1px solid var(--border-subtle-lines);
    border-radius: 10px;
    padding: 24px 32px;
}

.security-shield-asset { width: 56px; height: 56px; object-fit: contain; flex-shrink: 0; filter: invert(1); opacity: 0.9; }
.security-shield-intro p { font-size: 13.5px; color: var(--text-muted-gray); line-height: 1.65; }

/* 💬 TESTIMONIALS */
.testimonial-grid-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card-cyber {
    background: var(--bg-surface-box);
    border: 1px solid var(--border-subtle-lines);
    border-radius: 10px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.testimonial-stars { color: #fbbf24; font-size: 13px; letter-spacing: 2px; }

.testimonial-card-cyber p {
    font-size: 13.5px;
    color: #d1d9e6;
    line-height: 1.65;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author-row { display: flex; align-items: center; gap: 12px; }

.testimonial-avatar-cube {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--bg-inner-card);
    border: 1px solid var(--border-subtle-lines);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--neon-blue);
    flex-shrink: 0;
}

.testimonial-author-row strong { display: block; font-size: 13px; color: #ffffff; }
.testimonial-author-row span { display: block; font-size: 11.5px; color: var(--text-muted-gray); }

/* 👥 COMMUNITY STAT ROW (Discord section) */
.community-stat-row {
    display: flex;
    gap: 32px;
    margin-bottom: 28px;
}
.community-stat-row div { display: flex; flex-direction: column; gap: 2px; }
.community-stat-row strong { font-family: 'Space Grotesk', sans-serif; font-size: 20px; color: var(--neon-blue); }
.community-stat-row span { font-size: 11px; color: var(--text-muted-gray); }

/* ❓ FAQ ACCORDION */
.faq-accordion-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item-cyber {
    background: var(--bg-surface-box);
    border: 1px solid var(--border-subtle-lines);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item-cyber.faq-expanded {
    border-color: rgba(0, 229, 255, 0.4);
}

.faq-trigger-button {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: #ffffff;
    font-size: 14.5px;
    font-weight: 600;
}

.faq-chevron {
    color: var(--text-muted-gray);
    font-size: 11px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item-cyber.faq-expanded .faq-chevron { transform: rotate(180deg); color: var(--neon-blue); }

.faq-panel-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-panel-content p {
    padding: 0 24px 22px 24px;
    font-size: 13.5px;
    color: var(--text-muted-gray);
    line-height: 1.65;
}

/* 📨 NEWSLETTER / FINAL CTA */
.newsletter-cta-section {
    padding: 110px 8%;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(0, 229, 255, 0.08) 0%, transparent 60%), var(--bg-base-dark);
    border-bottom: 1px solid var(--border-subtle-lines);
}

.newsletter-cta-inner { max-width: 640px; margin: 0 auto; }

.newsletter-cta-inner h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
}

.newsletter-cta-inner p {
    color: var(--text-muted-gray);
    font-size: 15px;
    margin-bottom: 34px;
    line-height: 1.6;
}

.newsletter-cta-buttons { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* 🦶 EXPANDED FOOTER */
.footer-main-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-subtle-lines);
    margin-bottom: 24px;
}

.footer-brand-desc {
    color: var(--text-muted-gray);
    font-size: 13px;
    line-height: 1.65;
    margin: 16px 0 20px 0;
    max-width: 280px;
}

.footer-trust-badges { display: flex; gap: 14px; align-items: center; }
.footer-trust-badges img { height: 28px; width: 28px; object-fit: contain; opacity: 0.85; border-radius: 4px; }

.footer-link-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    color: #ffffff;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-link-col a {
    display: block;
    color: var(--text-muted-gray);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 12px;
    transition: color 0.2s;
}
.footer-link-col a:hover { color: var(--neon-blue); }

/* ⬆️ BACK TO TOP BUTTON */
.back-to-top-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--bg-inner-card);
    border: 1px solid var(--border-accent-bright);
    color: var(--neon-blue);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9000;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.back-to-top-btn.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top-btn:hover { background: var(--neon-blue); color: #05070b; border-color: var(--neon-blue); box-shadow: 0 0 25px var(--neon-blue-glow); }

/* 📱 EXTENDED RESPONSIVE RULES */
@media (max-width: 900px) {
    .nav-actions { display: none; }
    .mobile-menu-toggle { display: flex; }
    .status-announce-inner { font-size: 10px; gap: 6px; }
    .status-announce-inner span:nth-child(4),
    .status-announce-inner span:nth-child(5) { display: none; }

    .stat-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
    .feature-grid-wrapper { grid-template-columns: 1fr; }
    .hardware-split-grid { grid-template-columns: 1fr; }
    .hardware-image-side { order: -1; }
    .locations-grid-wrapper { grid-template-columns: 1fr 1fr; }
    .testimonial-grid-wrapper { grid-template-columns: 1fr; }
    .footer-main-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand-col { grid-column: 1 / -1; }
    .comparison-table-wrapper { margin-top: 60px; }
    .community-stat-row { gap: 20px; }
    .mc-render-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
    .stat-strip-grid { grid-template-columns: repeat(2, 1fr); }
    .locations-grid-wrapper { grid-template-columns: 1fr; }
    .footer-main-grid { grid-template-columns: 1fr; }
    .newsletter-cta-inner h2 { font-size: 26px; }
    .security-shield-intro { flex-direction: column; text-align: center; }
}

/* ─── PREMIUM ENTRY ANIMATIONS ─── */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); filter: blur(4px); }
    to { opacity: 1; transform: translateX(0); filter: blur(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(60px); filter: blur(4px); }
    to { opacity: 1; transform: translateX(0); filter: blur(0); }
}

@keyframes scalePopUp {
    from { opacity: 0; transform: scale(0.85); filter: blur(4px); }
    to { opacity: 1; transform: scale(1); filter: blur(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); filter: blur(4px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Animation Utility Classes */
.anim-left { animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; }
.anim-right { animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; }
.anim-pop { animation: scalePopUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; opacity: 0; }
.anim-fade-up { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; }

/* Staggered Delays for Smooth Flow */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
/* CYBERPUNK NEON LOGOUT BUTTON */
.btn-logout-cyber {
    background: transparent;
    border: 1px solid #ff0055;
    color: #ff0055;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 0 8px rgba(255, 0, 85, 0.2);
    font-family: monospace;
    letter-spacing: 1px;
}

.btn-logout-cyber:hover {
    background: #ff0055;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.6);
    text-shadow: 0 0 3px #fff;
    transform: translateY(-1px);
}

/* 👾 NEON CYBERPUNK LOGOUT COMPONENT */
.btn-logout-cyber {
    background: transparent;
    border: 1px solid #ff0055;
    color: #ff0055;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 0 8px rgba(255, 0, 85, 0.2);
    font-family: monospace;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-logout-cyber:hover {
    background: #ff0055;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.6);
    text-shadow: 0 0 3px #fff;
    transform: translateY(-1px);
}