/* styles.css */
:root {
    --cyber-cyan: #00f0ff;
    --cyber-cyan-glow: rgba(0, 240, 255, 0.4);
    --bright-emerald: #00e676;
    --crimson-flare: #ff1744;
    --neon-purple: #f000ff;
    --text-dim: #a0abc0;
    --text-bright: #ffffff;
    --bg-black: #020408;
    --glass-surface: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-h: 'Outfit', sans-serif;
    --font-b: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    scroll-behavior: smooth;
    /* Smooth scrolling for all anchors */
}

/* Scroll Offset Fixes */
section[id] {
    scroll-margin-top: 150px;
}

#about {
    scroll-margin-top: 130px;
}

#pricing {
    scroll-margin-top: 100px;
    /* Reduced from 200px to allow deeper scrolling */
}

body {
    background-color: var(--bg-black);
    color: var(--text-bright);
    font-family: var(--font-b);
    overflow-x: hidden;
    cursor: default;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Stunning Background System */
.matrix-background {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% -20%, #0a101f 0%, #020408 60%);
}

.scanlines {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
        linear-gradient(90deg, rgba(255, 0, 0, 0.02), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.02));
    background-size: 100% 4px, 3px 100%;
    pointer-events: none;
    z-index: 10;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--glass-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 10%, transparent 80%);
    opacity: 0.3;
}

.glow-sphere {
    position: absolute;
    top: 20%;
    left: 80%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.07) 0%, transparent 70%);
    filter: blur(80px);
}

/* Glass & Glow */
.glass-morph {
    background: var(--glass-surface);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Navigation */
.elite-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 1000;
    background: rgba(2, 4, 8, 0.6);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-link {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.logo-link:hover {
    opacity: 0.8;
}

.nav-logo {
    height: 35px;
    filter: drop-shadow(0 0 10px var(--cyber-cyan-glow));
}

.brand {
    font-family: var(--font-h);
    font-weight: 900;
    letter-spacing: 3px;
    font-size: 1.4rem;
}

.brand .shield {
    color: var(--cyber-cyan);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
    /* Compacted for desktop */
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.75rem;
    /* Shrunk text to prevent wrapping */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--text-bright);
}

/* Software Styled Nav Items (Matches Software UI Exactly) */
.nav-item-software {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Reduced gap */
    padding: 8px 12px;
    /* Reduced padding */
    background: rgba(0, 5, 12, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Precise software boundary */
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.3px;
    color: #fff !important;
    min-width: 145px;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    transition: background 0.2s ease;
}

/* Unique Colors Mapping - 3px Software Sidebar Match */
.nav-item-about {
    border-left: 3px solid #00F0FF;
}

.nav-item-protocols {
    border-left: 3px solid #00E676;
}

.nav-item-console {
    border-left: 3px solid #F000FF;
}

/* Unique Hover States (Background ONLY) */
.nav-item-about:hover {
    background: rgba(0, 240, 255, 0.1);
}

.nav-item-protocols:hover {
    background: rgba(0, 230, 118, 0.1);
}

.nav-item-console:hover {
    background: rgba(240, 0, 255, 0.1);
}

/* Software Icons Styling */
.nav-software-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

.nav-item-about .nav-software-icon {
    fill: #00F0FF;
}

.nav-item-protocols .nav-software-icon {
    fill: #00E676;
}

.nav-item-console .nav-software-icon {
    fill: #F000FF;
}

/* Grid Icon (4 squares) - Kept for secondary usage if any, but removed from main nav */
.nav-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.nav-icon-grid span {
    background: var(--cyber-cyan);
    border-radius: 1px;
}

.nav-close {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--cyber-cyan);
    transition: 0.3s;
}

/* Hamburger transition */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* Neon Button */
.btn-neon {
    position: relative;
    padding: 12px 28px;
    background: transparent;
    border: 1px solid var(--cyber-cyan);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
}

.btn-neon .text {
    position: relative;
    z-index: 2;
    color: var(--cyber-cyan);
}

.btn-neon:hover {
    background: var(--cyber-cyan);
    box-shadow: 0 0 30px var(--cyber-cyan-glow);
}

.btn-neon:hover .text {
    color: var(--bg-black);
}

/* Hero Section */
.hero-stunning {
    min-height: calc(100vh - 86px);
    padding: 86px 0 0;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    transform: translateY(28px);
}

.sys-status {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    background: rgba(0, 230, 118, 0.08);
    width: fit-content;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid rgba(0, 230, 118, 0.2);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--bright-emerald);
    border-radius: 50%;
}

.pulsing {
    animation: pulse-green 2s infinite;
}

.status-text {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--bright-emerald);
}

/* Global Asset Protection */
img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.glitch-text {
    font-size: 4.7rem;
    margin-bottom: 18px;
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1.02;
    padding-bottom: 10px;
    /* Fixed clipping */
    overflow: visible;
    /* Prevent cut-off */
}

.cyan-gradient {
    background: linear-gradient(to bottom, #fff, var(--cyber-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 5px;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-dim);
    max-width: 600px;
    margin-bottom: 24px;
    font-weight: 300;
    line-height: 1.42;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.btn-prime {
    background: var(--cyber-cyan);
    color: var(--bg-black);
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 800 !important;
    text-decoration: none;
    box-shadow: 0 10px 40px var(--cyber-cyan-glow);
    transition: 0.3s;
    font-size: 1rem;
    display: inline-block;
    cursor: pointer;
}

.btn-prime:hover {
    scale: 1.05;
    box-shadow: 0 15px 50px var(--cyber-cyan-glow);
}

.btn-sub {
    padding: 18px 40px;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--glass-border);
    background: var(--glass-surface);
    transition: 0.3s;
}

.btn-sub:hover {
    background: var(--glass-border);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat-val {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    font-family: var(--font-h);
}

.stat-lbl {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

/* Shield Visual */
.hero-visual {
    position: relative;
}

.shield-container {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-frame {
    position: relative;
    padding: 30px;
    border: none;
    background: transparent;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Darken all edges with inset shadow */
    box-shadow: inset 0 0 140px 80px var(--bg-black);
}

.main-shield {
    width: 100%;
    max-width: 520px;
    display: block;
    /* Mask directly on image to fade all edges softly */
    -webkit-mask-image: radial-gradient(ellipse 65% 65% at 50% 50%, black 30%, transparent 85%);
    mask-image: radial-gradient(ellipse 65% 65% at 50% 50%, black 30%, transparent 85%);
    filter: drop-shadow(0 0 60px rgba(0, 240, 255, 0.25));
}

.hero-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Composite software effect: digital tint + scanlines */
    background:
        linear-gradient(rgba(0, 240, 255, 0.12) 0%, rgba(0, 240, 255, 0.05) 100%),
        repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0px, transparent 1px, transparent 2px);
    background-size: 100% 100%, 100% 3px;
    z-index: 8;
    pointer-events: none;
    border-radius: inherit;
    animation: scanner 8s linear infinite;
}

@keyframes scanner {
    0% {
        background-position: 0 0, 0 0;
    }

    100% {
        background-position: 0 0, 0 100%;
    }
}

.hero-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
    background-size: 200% 200%;
    animation: flow 4s linear infinite;
    z-index: 12;
    /* Brighter glass sweep on top */
    pointer-events: none;
}

.frame-hud-top,
.frame-hud-bot {
    position: absolute;
    left: 40px;
    font-family: monospace;
    font-size: 0.6rem;
    color: var(--cyber-cyan);
    letter-spacing: 2px;
    opacity: 1;
    z-index: 20;
    pointer-events: none;
    text-shadow: 0 0 10px var(--cyber-cyan);
}

.frame-hud-top {
    top: 25px;
}

.frame-hud-bot {
    bottom: 25px;
}

.main-shield {
    width: 100%;
    max-width: 480px;
    filter: drop-shadow(0 0 30px var(--cyber-cyan-glow)) brightness(0.7);
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 1;
    /* Tucked behind */
}

.shield-orb {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--cyber-cyan-glow) 0%, transparent 75%);
    filter: blur(40px);
    z-index: 5;
    /* On top of image */
    pointer-events: none;
    opacity: 0.8;
}

.data-rings .ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
}

.ring-1 {
    width: 550px;
    height: 550px;
    border-style: dashed;
    animation: spin 20s linear infinite;
}

.ring-2 {
    width: 650px;
    height: 650px;
    border-style: dotted;
    animation: spin 30s linear reverse infinite;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-areas:
        "content visual"
        "origin telemetry";
    grid-template-columns: 1fr 1fr;
    gap: 15px 100px;
    /* Highly tightened vertical gap */
    align-items: start;
    /* Pull everything higher */
}

.about-content {
    grid-area: content;
}

.about-visual {
    grid-area: visual;
}

.about-origin {
    grid-area: origin;
    margin-top: 40px;
    /* Restored margin to move lower */
}

.about-telemetry {
    grid-area: telemetry;
    margin-top: 40px;
    /* Restored margin to move lower */
}

.about-content h3 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.about-content p {
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.a-feat {
    display: flex;
    gap: 20px;
}

.a-icon {
    color: var(--cyber-cyan);
    font-size: 1.2rem;
    margin-top: 5px;
}

.a-feat h5 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;
}

.a-feat p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.preview-frame {
    padding: 20px;
    position: relative;
    border-radius: 20px;
}

.frame-label {
    position: absolute;
    top: -10px;
    left: 40px;
    background: var(--bg-black);
    padding: 0 15px;
    font-family: monospace;
    font-size: 0.7rem;
    color: var(--cyber-cyan);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
}

.preview-img {
    width: 100%;
    border-radius: 12px;
    filter: brightness(0.9) contrast(1.1);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.1);
    display: none;
    animation: slide-up 0.5s ease-out;
}

.preview-img.active {
    display: block;
}

.origin-flex {
    display: flex;
    align-items: stretch;
    gap: 25px;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.origin-logo {
    width: 80px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px var(--cyber-cyan-glow));
}

.origin-text-block {
    flex: 1;
    display: flex;
    align-items: center;
}

.origin-text {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
    opacity: 0.9;
}

.telemetry-widget {
    padding: 25px;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.telemetry-widget h4 {
    margin-bottom: 20px;
    text-align: right;
    font-size: 0.7rem;
}

.t-line {
    display: flex;
    justify-content: space-between;
    font-family: monospace;
    font-size: 0.65rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.t-line span:first-child {
    color: var(--text-dim);
}

.t-line span:last-child {
    color: var(--cyber-cyan);
    font-weight: 800;
}

.t-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 15px 0;
    opacity: 0.5;
}

.preview-slider {
    cursor: grab;
    user-select: none;
    overflow: hidden;
}

.preview-slider:active {
    cursor: grabbing;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.slide-btn {
    width: 30px;
    height: 4px;
    background: var(--glass-border);
    border: none;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 2px;
}

.slide-btn.active {
    background: var(--cyber-cyan);
    box-shadow: 0 0 10px var(--cyber-cyan-glow);
    width: 50px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: var(--glass-surface);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--cyber-cyan);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 100;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(10px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    bottom: 50px;
}

.back-to-top:hover {
    border-color: var(--cyber-cyan);
    box-shadow: 0 0 20px var(--cyber-cyan-glow);
    transform: translateY(-5px);
}

.back-to-top .arrow {
    font-size: 1.5rem;
    font-weight: 800;
}

/* Protocol Section */
.section-gap {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.eyebrow {
    font-size: 0.8rem;
    letter-spacing: 5px;
    color: var(--cyber-cyan);
    margin-bottom: 16px;
}

.section-title h3 {
    font-size: 3rem;
}

.cards-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.p-card {
    padding: 50px;
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.p-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.p-icon {
    font-size: 2rem;
}

.p-card h4 {
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.p-card p {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.6;
}

.cyan-txt {
    color: var(--cyber-cyan);
    text-shadow: 0 0 10px var(--cyber-cyan);
}

.orange-txt {
    color: #ff9100;
    text-shadow: 0 0 15px rgba(255, 145, 0, 0.4);
}

.crimson-txt {
    color: #ff1744;
    text-shadow: 0 0 15px rgba(255, 23, 68, 0.4);
}

.neon-green-txt {
    color: #39ff14;
    text-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
}

.indigo-txt {
    color: #4b0082;
    text-shadow: 0 0 15px rgba(75, 0, 130, 0.6);
}

.purple-txt {
    color: #a020f0;
    text-shadow: 0 0 15px rgba(160, 32, 240, 0.4);
}

.blue-txt {
    color: #2196f3;
    text-shadow: 0 0 15px rgba(33, 150, 243, 0.4);
}

/* Console Section */
.live-console .console-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.health-indicator {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.circular-progress {
    position: relative;
    width: 100px;
    height: 100px;
}

.circular-progress svg {
    transform: rotate(-90deg);
    overflow: visible;
    /* Prevent glow cutoff */
}

.circular-progress circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
}

.circular-progress .bg {
    stroke: var(--glass-border);
}

.circular-progress .fg {
    stroke: var(--bright-emerald);
    stroke-dasharray: 283;
    stroke-dashoffset: 60;
    filter: drop-shadow(0 0 8px var(--bright-emerald));
}

.progress-val {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 800;
    color: var(--bright-emerald);
}

.health-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.health-label {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-bright);
    letter-spacing: 2px;
}

.engine-meta {
    display: flex;
    gap: 15px;
    font-size: 0.65rem;
    font-family: monospace;
    color: var(--text-dim);
}

.console-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: #000;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.c-header {
    background: #111;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #222;
}

.c-dots {
    display: flex;
    gap: 8px;
}

.c-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333;
}

.c-title {
    font-size: 0.65rem;
    color: #555;
    font-family: monospace;
    letter-spacing: 1px;
}

.c-body {
    height: 400px;
    padding: 25px;
    overflow-y: auto;
    font-family: 'Consolas', monospace;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
    scroll-behavior: smooth;
}

.c-body::-webkit-scrollbar {
    width: 4px;
}

.c-body::-webkit-scrollbar-thumb {
    background: #222;
}

.log-line {
    display: flex;
    gap: 15px;
    opacity: 0;
    transform: translateY(10px);
    animation: log-in 0.4s forwards;
}

.l-time {
    color: #555;
    white-space: nowrap;
}

.l-type {
    font-weight: 900;
    min-width: 70px;
}

.l-msg {
    color: #ccc;
    word-break: break-all;
}

.c-footer {
    padding: 10px 25px;
    background: #080808;
    border-top: 1px solid #1a1a1a;
    font-size: 0.65rem;
    color: #444;
    font-family: monospace;
    display: flex;
    align-items: center;
    gap: 10px;
}

.f-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyber-cyan);
    animation: log-pulse 1s infinite;
}

/* =========================================
   NEW SECTIONS: Compare, Specs, Feed, FAQ
   ========================================= */

/* Core Capabilities Custom Grid */
#capabilities .cards-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Comparison Table */
.compare-section .container {
    max-width: 1000px;
}

.table-responsive {
    overflow-x: auto;
    border-radius: 12px;
    padding: 1px;
    /* border gradient container */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
}

.cyber-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background: var(--bg-black);
    border-radius: 11px;
}

.cyber-table th,
.cyber-table td {
    padding: 24px;
    border-bottom: 1px solid var(--glass-border);
}

.cyber-table th {
    font-family: var(--font-h);
    font-size: 1.1rem;
    color: var(--text-dim);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cyber-table td {
    font-size: 1rem;
    color: #fff;
}

.cyber-table .highlight-col {
    background: rgba(0, 240, 255, 0.03);
    color: var(--cyber-cyan);
    font-weight: 600;
    border-left: 1px solid rgba(0, 240, 255, 0.1);
    border-right: 1px solid rgba(0, 240, 255, 0.1);
    width: 23%;
}

.cyber-table th.highlight-col {
    background: rgba(0, 240, 255, 0.08);
    border-top: 1px solid rgba(0, 240, 255, 0.3);
}

.cyber-table .x-mark {
    color: var(--crimson-flare);
    margin-right: 8px;
}

/* System Specs Terminal */
.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.specs-text p {
    color: var(--text-dim);
    line-height: 1.8;
    margin-top: 20px;
    font-size: 1.1rem;
}

.specs-terminal {
    width: 100%;
    border: 1px solid var(--glass-border);
}

.spec-lines {
    padding: 30px;
    font-family: 'Consolas', monospace;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #050505;
}

.s-key {
    color: var(--bright-emerald);
    min-width: 100px;
    display: inline-block;
}

.s-val {
    color: #ccc;
}

/* Changelog Grid Redesign */
.changelog-feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.cl-item {
    background: transparent;
    border: none;
    border-top: 2px solid rgba(0, 240, 255, 0.2);
    padding: 30px 0;
    transition: 0.3s border-color;
    border-radius: 0;
    backdrop-filter: none;
}

.cl-item:hover {
    border-top-color: var(--cyber-cyan);
    transform: none;
    box-shadow: none;
}

.cl-ver {
    display: block;
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 1.8rem;
    padding: 0;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.cl-date {
    display: block;
    color: var(--cyber-cyan);
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 0;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cl-notes {
    list-style: none;
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.cl-notes li {
    position: relative;
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 25px;
}

.cl-notes .dot {
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 0;
    background: var(--text-dim);
    box-shadow: none;
    transition: 0.3s;
}

.cl-item:hover .cl-notes .dot {
    background: var(--cyber-cyan);
    box-shadow: 0 0 10px var(--cyber-cyan-glow);
}

.cl-notes strong {
    color: #e0e0e0;
}

/* Beta CTA */
.beta-cta-section {
    padding: 80px 0;
}

.beta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(0, 240, 255, 0.05));
}

.beta-text h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.beta-text p {
    color: var(--text-dim);
    max-width: 500px;
    line-height: 1.6;
}

.beta-action {
    display: flex;
    gap: 15px;
}

.cyber-input {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    padding: 0 25px;
    border-radius: 8px;
    color: #fff;
    font-family: monospace;
    width: 300px;
    font-size: 0.9rem;
}

.cyber-input:focus {
    border-color: var(--cyber-cyan);
    box-shadow: 0 0 15px var(--cyber-cyan-glow);
}

/* FAQ Accordion */
.faq-section .container {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 10px;
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    font-family: var(--font-h);
    padding: 25px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.faq-q:hover {
    color: var(--cyber-cyan);
}

.faq-q::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--cyber-cyan);
    transition: 0.3s transform;
}

.faq-q.active::after {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-a p {
    color: var(--text-dim);
    line-height: 1.8;
    padding-bottom: 30px;
    font-size: 1rem;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 0 28px;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
}

.trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: 600;
}

.trust-badges .icon {
    font-style: normal;
    font-size: 1rem;
    color: var(--bright-emerald);
}

/* Footer Support */
.foot-support h4 {
    color: #fff;
    font-family: var(--font-h);
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.foot-support ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.foot-support a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.foot-support a:hover {
    color: var(--cyber-cyan);
}

.btn-discord {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.5);
    color: #5865F2 !important;
    border-radius: 6px;
}

.btn-discord:hover {
    background: rgba(88, 101, 242, 0.2);
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.4);
}

/* Pricing */
.cta-section {
    padding-top: 250px;
    padding-bottom: 150px;
}

.pricing-card {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 60px;
    text-align: left;
    position: relative;
}

.pricing-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(360px, 1.05fr);
    gap: 56px;
    align-items: start;
}

.pricing-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.pricing-details {
    display: flex;
    flex-direction: column;
}

.p-best-seller {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cyber-cyan);
    color: #000;
    padding: 5px 20px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.p-cost {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}

.p-cost .val {
    font-size: 2.7rem;
    line-height: 1.05;
    font-weight: 900;
    font-family: var(--font-h);
    letter-spacing: -1px;
}

.p-cost .unit {
    font-size: 1rem;
    color: var(--text-dim);
    margin-left: 0;
    padding-bottom: 0;
    max-width: 420px;
    line-height: 1.45;
}

.p-features {
    list-style: none;
    text-align: left;
    max-width: none;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.check {
    color: var(--cyber-cyan);
    margin-right: 12px;
}

.btn-full {
    width: 100%;
}

.pricing-card .btn-prime {
    background: linear-gradient(135deg, var(--cyber-cyan) 0%, #00b8d4 100%);
    border: none;
    position: relative;
    padding: 22px;
    font-size: 1.1rem;
    letter-spacing: 2px;
    box-shadow: 0 10px 40px var(--cyber-cyan-glow), inset 0 2px 0 rgba(255, 255, 255, 0.3);
    overflow: hidden;
    margin-bottom: 35px;
    display: block;
    width: 100%;
    text-align: center;
}

.p-note {
    max-width: 520px;
}

@media (max-width: 980px) {
    .pricing-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pricing-card {
        max-width: 700px;
        text-align: center;
    }

    .p-cost {
        align-items: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .p-note {
        max-width: none;
    }
}

.pricing-card .btn-prime::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

/* Footer */
.cyber-footer {
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
}

.foot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.foot-brand p {
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-top: 8px;
    letter-spacing: 1px;
}

.foot-brand .logo-wrap.mini img {
    height: 28px !important;
    width: auto !important;
    filter: drop-shadow(0 0 8px var(--cyber-cyan-glow)) !important;
    opacity: 1;
}

.mini .brand {
    font-size: 1.1rem !important;
    letter-spacing: 2px !important;
    opacity: 1;
}

.mini .brand .shield {
    color: var(--cyber-cyan);
}

.foot-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.foot-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.75rem;
    font-weight: 600;
    transition: 0.3s;
}

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

.foot-copy {
    font-size: 0.7rem;
    color: #444;
    font-weight: 700;
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* Animations */
@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 230, 118, 0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Vertical Tab System */
.legal-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    padding-bottom: 120px;
}

.legal-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tab-link {
    padding: 18px 24px;
    background: var(--glass-surface);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
}

.tab-link:hover {
    background: var(--glass-border);
    color: #fff;
    transform: translateX(5px);
}

.tab-link.active {
    border-color: var(--cyber-cyan);
    color: var(--cyber-cyan);
    background: rgba(0, 240, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.legal-main {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--glass-border);
    padding: 60px;
    border-radius: 24px;
    min-height: 600px;
}

.legal-pane {
    display: none;
    animation: slide-up 0.4s ease-out;
}

.legal-pane.active {
    display: block;
}

.legal-pane h2 {
    font-size: 2.2rem;
    color: var(--cyber-cyan);
    margin-bottom: 30px;
    font-family: var(--font-h);
}

.legal-pane h3 {
    font-size: 1.2rem;
    color: #fff;
    margin: 30px 0 15px;
}

.legal-pane p {
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 20px;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

@keyframes log-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes log-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* FINAL HUD RESPONSIVENESS OVERHAUL */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    /* GRID STACKING */
    .hero-grid,
    .about-grid,
    .protocol-grid .cards-wrap,
    .live-console .console-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 60px;
    }

    .hero-visual,
    .about-visual {
        order: -1 !important;
        margin: 0 auto !important;
        max-width: 500px;
    }

    .about-content h3,
    .section-title h3 {
        font-size: 2.2rem !important;
    }

    /* MOBILE FULL-SCREEN HUD MENU */
    .nav-toggle {
        display: flex !important;
    }

    /* HUD RESPONSIVENESS (1024px and below) */
    .nav-links-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(2, 4, 8, 0.98);
        backdrop-filter: blur(40px);
        z-index: 5000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    }

    body.nav-open .nav-links-wrapper {
        right: 0 !important;
    }

    .nav-close {
        display: block !important;
        position: absolute;
        top: 30px;
        right: 30px;
        background: transparent;
        border: none;
        color: var(--cyber-cyan);
        font-size: 2.5rem;
        cursor: pointer;
    }

    .nav-links {
        flex-direction: column !important;
        gap: 20px !important;
        width: 100%;
        max-width: 300px;
    }

    .nav-item-software {
        width: 100% !important;
        max-width: 260px;
        text-align: center;
        justify-content: center;
        padding: 18px !important;
        font-size: 1.1rem !important;
        border-radius: 20px !important;
        /* Even softer for mobile */
    }

    .nav-item-about {
        border-left: 5px solid #00F0FF !important;
    }

    .nav-item-protocols {
        border-left: 5px solid #00E676 !important;
    }

    .nav-item-console {
        border-left: 5px solid #F000FF !important;
    }

    .about-grid,
    .hero-grid,
    .live-console .console-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 60px;
    }

    /* LEGAL VERTICAL STACK */
    .legal-wrapper {
        grid-template-columns: 1fr !important;
    }

    .legal-sidebar {
        position: static !important;
        flex-direction: column !important;
        overflow-x: visible !important;
        gap: 12px !important;
        margin-bottom: 40px !important;
        border: none !important;
    }

    .tab-link {
        white-space: normal !important;
        width: 100% !important;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .foot-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 50px !important;
        justify-items: center;
    }

    .foot-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .foot-links {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
    }

    .foot-copy {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        padding-top: 30px !important;
        border-top: 1px solid var(--glass-border);
        margin-top: 30px !important;
    }

    .divider {
        display: none !important;
    }
}
