/**
 * Xeon Games — Futuristic / Cyberpunk Redesign
 * Design Language: Cyber HUD, neon grid, sharp geometry, glitch accents
 */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    /* Core Colors */
    --bg: #070501;
    --bg-surface: #0e0a04;
    --bg-card: rgba(255, 140, 0, 0.02);

    /* Neon Accents */
    --neon-orange: #ff8c00;
    --neon-amber: #ffd000;
    /* Aliases for compatibility */
    --neon-cyan: #ff8c00;
    --neon-purple: #ffd000;
    --neon-cyan-dim: rgba(255, 140, 0, 0.5);
    --neon-purple-dim: rgba(255, 208, 0, 0.5);

    /* Borders */
    --border: rgba(255, 140, 0, 0.2);
    --border-hover: rgba(255, 140, 0, 0.55);
    --border-subtle: rgba(255, 255, 255, 0.06);

    /* Text */
    --text-primary: #fff5e8;
    --text-secondary: #8a7060;
    --text-mono: #c4834a;

    /* Typography */
    --font-display: 'Orbitron', monospace;
    --font-body: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Geometry */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    --max-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
}

h2 {
    font-size: 3rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img,
svg {
    max-width: 100%;
    display: block;
}

.mono {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
}

.text-neon {
    color: var(--neon-cyan);
}

.text-purple {
    color: var(--neon-purple);
}

.text-center {
    text-align: center;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section {
    padding: 7rem 0;
}

/* ============================================================
   ANIMATED CYBER GRID BACKGROUND
   ============================================================ */
#cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            rgba(0, 243, 255, 0.02) 0px,
            rgba(0, 243, 255, 0.02) 1px,
            transparent 1px,
            transparent 4px);
    pointer-events: none;
    z-index: 1;
}

/* ============================================================
   HUD CORNER ORNAMENTS
   ============================================================ */
.hud-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    pointer-events: none;
    z-index: 5;
}

.hud-tl {
    top: -1px;
    left: -1px;
    border-top: 2px solid var(--neon-cyan);
    border-left: 2px solid var(--neon-cyan);
}

.hud-tr {
    top: -1px;
    right: -1px;
    border-top: 2px solid var(--neon-cyan);
    border-right: 2px solid var(--neon-cyan);
}

.hud-bl {
    bottom: -1px;
    left: -1px;
    border-bottom: 2px solid var(--neon-cyan);
    border-left: 2px solid var(--neon-cyan);
}

.hud-br {
    bottom: -1px;
    right: -1px;
    border-bottom: 2px solid var(--neon-cyan);
    border-right: 2px solid var(--neon-cyan);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid var(--border);
    background: rgba(4, 6, 8, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition);
}

.navbar.scrolled {
    border-bottom-color: var(--border-hover);
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.1);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition);
}

.nav-code {
    font-family: var(--font-mono);
    color: var(--neon-cyan);
    font-size: 0.75rem;
    opacity: 0.6;
}

.nav-link:hover {
    color: var(--neon-cyan);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* ============================================================
   LANGUAGE SELECTOR & GOOGLE TRANSLATE OVERRIDES
   ============================================================ */
.lang-selector {
    position: relative;
    display: inline-block;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.lang-btn:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.1);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: rgba(4, 6, 8, 0.95);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-sm);
    min-width: 140px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-align: left;
    transition: var(--transition);
}

.lang-option:hover {
    background: rgba(0, 243, 255, 0.05);
    color: var(--neon-cyan);
    padding-left: 1.25rem;
}

/* Hide Default Google Translate UI */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

.goog-tooltip {
    display: none !important;
}

.goog-tooltip:hover {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.sys-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--neon-cyan);
    letter-spacing: 0.1em;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 8px var(--neon-cyan);
    }

    50% {
        opacity: 0.4;
        box-shadow: 0 0 3px var(--neon-cyan);
    }
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    letter-spacing: 0.08em;
    font-size: 0.875rem;
}

.btn-cyber {
    background: transparent;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-cyber::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn-cyber:hover::before {
    left: 100%;
}

.btn-cyber:hover {
    background: rgba(0, 243, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3), inset 0 0 20px rgba(0, 243, 255, 0.05);
    color: var(--neon-cyan);
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.btn-ghost:hover {
    border-color: var(--border);
    color: var(--text-primary);
}

.btn-large {
    padding: 0.9rem 2.25rem;
    font-size: 0.9rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 64px;
    position: relative;
    z-index: 2;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5rem 2rem;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid var(--border);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-family: var(--font-mono);
    color: var(--neon-orange);
    margin-bottom: 2.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(255, 140, 0, 0.05);
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 2rem;
    font-size: clamp(1.4rem, 8vw, 3.5rem);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title .line-1 {
    font-family: var(--font-display);
    color: var(--text-secondary);
    font-size: 0.65em;
    letter-spacing: 0.3em;
    font-weight: 400;
}

.hero-title .line-2 {
    font-family: var(--font-display);
    color: var(--text-primary);
    letter-spacing: 0.05em;
    font-size: 1em;
    text-shadow: 0 0 40px rgba(255, 140, 0, 0.25);
    word-break: keep-all;
}

.hero-title .line-3 {
    font-family: var(--font-body);
    color: var(--text-secondary);
    font-size: 0.55em;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.5;
}

.text-neon {
    color: var(--neon-orange);
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
}

.text-amber {
    color: var(--neon-amber);
    text-shadow: 0 0 20px rgba(255, 208, 0, 0.4);
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    color: var(--text-primary);
}

.glitch::before {
    color: var(--neon-orange);
    animation: glitch-1 3s infinite;
    clip-path: polygon(0 30%, 100% 30%, 100% 55%, 0 55%);
    opacity: 0;
}

.glitch::after {
    color: var(--neon-amber);
    animation: glitch-2 3.2s infinite;
    clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%);
    opacity: 0;
}

@keyframes glitch-1 {

    0%,
    85%,
    100% {
        opacity: 0;
        transform: translate(0);
    }

    86% {
        opacity: 0.6;
        transform: translate(-4px, 2px);
    }

    88% {
        opacity: 0;
        transform: translate(0);
    }

    90% {
        opacity: 0.5;
        transform: translate(3px, -1px);
    }

    92% {
        opacity: 0;
    }
}

@keyframes glitch-2 {

    0%,
    88%,
    100% {
        opacity: 0;
        transform: translate(0);
    }

    89% {
        opacity: 0.5;
        transform: translate(4px, -2px);
    }

    91% {
        opacity: 0;
    }

    93% {
        opacity: 0.4;
        transform: translate(-3px, 1px);
    }

    95% {
        opacity: 0;
    }
}

.hero-subtitle {
    font-size: 1.0625rem;
    max-width: 550px;
    margin-bottom: 3rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hero Features Bar */
.hero-features-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px dashed var(--border-hover);
}

.hero-feature-item {
    flex: 1 1 30%;
    min-width: 250px;
    text-align: left;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.hero-feature-item:hover {
    border-color: var(--neon-orange);
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.15);
    background: rgba(255, 140, 0, 0.05);
}

.hero-feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
}

.hero-feature-item p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* Hero Ticker */
.hero-ticker {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: rgba(0, 243, 255, 0.03);
    max-width: max-content;
}

.ticker-item {
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ticker-label {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ticker-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-orange);
    line-height: 1;
    text-shadow: 0 0 15px rgba(255, 140, 0, 0.5);
}

.ticker-unit {
    font-size: 0.75em;
    opacity: 0.7;
}

.ticker-divider {
    width: 1px;
    align-self: stretch;
    background: var(--border);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 140, 0, 0.02);
    padding: 1.25rem 0;
    position: relative;
    z-index: 2;
}

.marquee-label {
    text-align: center;
    font-size: 0.6875rem;
    color: var(--neon-cyan);
    letter-spacing: 0.2em;
    margin-bottom: 1.25rem;
    opacity: 0.6;
}

.marquee-container {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 4rem;
    animation: marquee-scroll 30s linear infinite;
}

.client-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-secondary);
    opacity: 0.5;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
}

.client-logo:hover {
    opacity: 1;
    color: var(--neon-cyan);
}

.client-logo i {
    font-size: 1.2rem;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================================
   SYSTEMS GRID (BENTO)
   ============================================================ */
.systems {
    position: relative;
    z-index: 2;
}

.section-header {
    margin-bottom: 4rem;
}

.section-label {
    color: var(--neon-orange);
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

/* Individual System Cards */
.sys-card {
    background: var(--bg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
}

.sys-card:hover {
    background: rgba(0, 243, 255, 0.03);
}

/* Neon line sweep on hover */
.sys-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    transition: left 0.6s ease;
}

.sys-card:hover::after {
    left: 150%;
}

.sys-card-large {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.sys-card-wide {
    grid-column: span 3;
}

.sys-card-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.card-id {
    color: var(--neon-cyan);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    opacity: 0.6;
}

.card-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--neon-cyan);
    border-radius: var(--radius-sm);
    background: rgba(0, 243, 255, 0.05);
}

.sys-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.sys-card p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.card-link {
    color: var(--neon-orange);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    text-transform: uppercase;
    margin-top: auto;
}

.card-link:hover {
    gap: 0.75rem;
}

/* Tag Row */
.card-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.card-tag {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    color: var(--neon-amber);
    border: 1px solid rgba(255, 208, 0, 0.2);
    padding: 0.2rem 0.6rem;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    background: rgba(255, 208, 0, 0.04);
}

/* Mini chart in large card */
.card-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 60px;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.chart-bar {
    flex: 1;
    background: rgba(0, 243, 255, 0.2);
    border-radius: 2px 2px 0 0;
    transition: height 0.3s;
}

.chart-bar.active {
    background: var(--neon-orange);
    box-shadow: 0 0 12px rgba(255, 140, 0, 0.6);
}

/* Sharp corner accents */
.card-corner-tr,
.card-corner-bl {
    position: absolute;
    width: 14px;
    height: 14px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.card-corner-tr {
    top: 10px;
    right: 10px;
    border-top: 1px solid var(--neon-cyan);
    border-right: 1px solid var(--neon-cyan);
}

.card-corner-bl {
    bottom: 10px;
    left: 10px;
    border-bottom: 1px solid var(--neon-cyan);
    border-left: 1px solid var(--neon-cyan);
}

.sys-card:hover .card-corner-tr,
.sys-card:hover .card-corner-bl {
    opacity: 1;
}

/* Wide card layout */
.wide-card-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.wide-card-text {
    flex: 1;
}

.wide-card-stats {
    display: flex;
    gap: 3rem;
    flex-shrink: 0;
}

.stat-block {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
    letter-spacing: 0.02em;
}

.stat-unit {
    font-size: 0.6em;
}

.stat-label {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.features-action {
    margin-top: 3rem;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 2rem;
}

.stat-card {
    background: var(--bg);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    transition: background 0.3s;
}

.stat-card:hover {
    background: rgba(0, 243, 255, 0.03);
}

.stat-num-large {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.02em;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-top: -0.5rem;
}

.stat-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* ============================================================
   CTA PANEL
   ============================================================ */
.cta-section {
    position: relative;
    z-index: 2;
}

.cta-panel {
    border: 1px solid var(--border);
    background: var(--bg-surface);
    padding: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    overflow: hidden;
}

.cta-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-purple), transparent);
}

.cta-panel-content {
    flex: 1;
}

.cta-panel-content h2 {
    font-size: 2.75rem;
    margin: 1rem 0;
}

.cta-panel-content p {
    margin-bottom: 2rem;
    max-width: 440px;
}

.cta-form {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cta-form input {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.25rem;
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    flex: 1;
    outline: none;
    transition: var(--transition);
}

.cta-form input::placeholder {
    color: var(--text-mono);
    opacity: 0.5;
}

.cta-form input:focus {
    border-color: var(--border-hover);
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.12);
}

.cta-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* HUD Ring Visual */
.cta-panel-visual {
    position: relative;
    width: 250px;
    height: 250px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hud-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
}

.hud-ring-outer {
    width: 240px;
    height: 240px;
    border-color: rgba(0, 243, 255, 0.15);
    animation: ring-spin 20s linear infinite;
    border-style: dashed;
}

.hud-ring-mid {
    width: 170px;
    height: 170px;
    border-color: rgba(0, 243, 255, 0.25);
    animation: ring-spin 12s linear infinite reverse;
}

.hud-ring-inner {
    width: 100px;
    height: 100px;
    border-color: rgba(0, 243, 255, 0.5);
    animation: ring-spin 6s linear infinite;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.15);
}

.hud-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neon-cyan);
    box-shadow: 0 0 20px var(--neon-cyan);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes ring-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border);
    padding-bottom: 3rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 2rem;
}

.brand-desc {
    margin-top: 1.25rem;
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--text-mono);
    line-height: 1.8;
    opacity: 0.7;
}

.footer-nav {
    display: flex;
    gap: 5rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col h4 {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    color: var(--neon-orange);
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.footer-col a {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--neon-cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.5;
    letter-spacing: 0.1em;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.social-icons a:hover {
    border-color: var(--neon-orange);
    color: var(--neon-orange);
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.25);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .systems-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sys-card-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .sys-card-wide {
        grid-column: span 2;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-ticker {
        display: none;
    }

    .cta-panel {
        flex-direction: column;
        padding: 3rem;
    }

    .cta-panel-visual {
        display: none;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .sys-status {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .systems-grid {
        grid-template-columns: 1fr;
    }

    .sys-card-large,
    .sys-card-wide {
        grid-column: span 1;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .wide-card-layout {
        flex-direction: column;
    }

    .wide-card-stats {
        gap: 1.5rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .cta-form {
        flex-direction: column;
    }

    .cta-form input {
        width: 100%;
    }
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Left — Form Panel */
.contact-form-panel {
    border: 1px solid var(--border);
    background: var(--bg-surface);
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}

.contact-form-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-orange), var(--neon-amber), transparent);
}

.contact-icon-box {
    width: 52px;
    height: 52px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--neon-orange);
    background: rgba(255, 140, 0, 0.06);
    margin-bottom: 1.25rem;
}

.contact-form-panel h2 {
    font-size: 2rem;
    margin: 0.5rem 0 0.25rem;
}

.contact-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Right — Info Panel */
.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-block {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid var(--border);
    background: var(--bg-surface);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.contact-info-block:hover {
    border-color: rgba(255, 140, 0, 0.3);
    background: rgba(255, 140, 0, 0.03);
}

.info-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--neon-orange);
    background: rgba(255, 140, 0, 0.06);
    flex-shrink: 0;
}

.contact-info-block h4 {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--neon-orange);
    margin-bottom: 0.25rem;
}

.contact-info-block p,
.contact-info-block a {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-block a:hover {
    color: var(--neon-orange);
}

/* Meet Card */
.meet-card {
    border: 1px solid rgba(255, 140, 0, 0.25);
    background: var(--bg-surface);
    padding: 1.75rem;
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.meet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-orange), var(--neon-amber), transparent);
}

.meet-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.meet-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--neon-orange);
    background: rgba(255, 140, 0, 0.08);
    flex-shrink: 0;
}

.meet-card h3 {
    font-size: 1.15rem;
    margin: 0;
}

.meet-card>p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.meet-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.meet-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.meet-features li i {
    color: var(--neon-orange);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-primary);
    letter-spacing: 0.04em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-label-opt {
    color: var(--text-secondary);
    font-size: 0.6875rem;
    opacity: 0.7;
}

.form-input {
    background: rgba(255, 140, 0, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.85rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    outline: none;
    transition: var(--transition);
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}

.form-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.45;
}

.form-input:focus {
    border-color: var(--neon-orange);
    background: rgba(255, 140, 0, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.08);
}

.form-textarea {
    min-height: 130px;
    resize: vertical;
    font-family: var(--font-body);
    line-height: 1.6;
}

/* Phone row */
.phone-input-row {
    display: flex;
}

.form-select {
    background: rgba(255, 140, 0, 0.03);
    border: 1px solid var(--border);
    border-right: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    padding: 0.85rem 0.75rem;
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    outline: none;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    -webkit-appearance: none;
    appearance: none;
}

.form-select option,
.form-input option {
    background: #0e0a04;
    color: var(--text-primary);
}

.phone-number-input {
    border-radius: 0 var(--radius-md) var(--radius-md) 0 !important;
    flex: 1;
}

/* Custom searchable phone code picker */
.phone-code-picker {
    position: relative;
    flex-shrink: 0;
}

.phone-code-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 140, 0, 0.03);
    border: 1px solid var(--border);
    border-right: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    padding: 0.85rem 0.65rem;
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
    min-width: 80px;
}

.phone-code-trigger:hover {
    border-color: var(--neon-orange);
    background: rgba(255, 140, 0, 0.05);
}

.phone-code-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 999;
    width: 160px;
    background: #0e0a04;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.phone-code-search-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-bottom: 1px solid var(--border-subtle);
}

.phone-code-search {
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    width: 100%;
}

.phone-code-search::placeholder {
    color: var(--text-secondary);
    opacity: 0.5;
}

.phone-code-list {
    list-style: none;
    margin: 0;
    padding: 4px 0;
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 140, 0, 0.3) transparent;
}

.phone-code-list li {
    padding: 7px 12px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: background 0.12s, color 0.12s;
}

.phone-code-list li:hover,
.phone-code-list li.selected {
    background: rgba(255, 140, 0, 0.08);
    color: var(--neon-orange);
}

.phone-code-list li[hidden] {
    display: none;
}

/* Role picker (career page) */
.role-picker-wrap {
    position: relative;
    width: 100%;
}

.role-picker-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    background: rgba(255, 140, 0, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.85rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    cursor: pointer;
    white-space: nowrap;
    text-align: left;
    transition: var(--transition);
}

.role-picker-trigger:hover {
    border-color: var(--neon-orange);
    background: rgba(255, 140, 0, 0.05);
}

.role-picker-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 999;
    background: #0e0a04;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.role-picker-list li {
    padding: 10px 14px;
    font-size: 0.875rem;
}

/* Group headers */
.role-group-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 9px 14px !important;
    font-family: var(--font-mono) !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--neon-orange) !important;
    background: rgba(255, 140, 0, 0.04);
    border-top: 1px solid var(--border-subtle);
    cursor: pointer !important;
    user-select: none;
}

.role-group-header:first-child {
    border-top: none;
}

.role-group-header:hover {
    background: rgba(255, 140, 0, 0.08) !important;
    color: var(--neon-orange) !important;
}

.role-group-caret {
    font-size: 0.65rem;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.role-group-header.open .role-group-caret {
    transform: rotate(90deg);
}

/* Sub-roles (collapsed by default) */
li[data-group-member] {
    padding-left: 22px !important;
    font-size: 0.8rem !important;
}

/* File Drop */
.file-drop-zone {
    border: 1px dashed rgba(255, 140, 0, 0.25);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(255, 140, 0, 0.02);
    position: relative;
}

.file-drop-zone:hover,
.file-drop-zone.drag-over {
    border-color: var(--neon-orange);
    background: rgba(255, 140, 0, 0.05);
}

.file-input-hidden {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.file-drop-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    pointer-events: none;
}

.file-drop-icon {
    font-size: 2rem;
    color: var(--neon-orange);
    opacity: 0.5;
    margin-bottom: 0.25rem;
}

.file-drop-text {
    font-size: 0.9375rem;
    color: var(--text-primary);
}

.file-drop-hint {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-family: var(--font-mono);
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Right — Info Panel */
.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: sticky;
    top: 90px;
}

.contact-info-block {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: rgba(255, 140, 0, 0.015);
    transition: var(--transition);
}

.contact-info-block:hover {
    border-color: var(--border);
    background: rgba(255, 140, 0, 0.04);
}

.info-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: var(--neon-orange);
    background: rgba(255, 140, 0, 0.06);
}

.contact-info-block h4 {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    color: var(--neon-orange);
    margin-bottom: 0.3rem;
}

.contact-info-block p,
.contact-info-block a {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-info-block a:hover {
    color: var(--neon-orange);
}

/* Google Meet Card */
.meet-card {
    border: 1px solid var(--border);
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.meet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-orange), var(--neon-amber), transparent);
}

.meet-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.meet-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    color: var(--neon-orange);
    background: rgba(255, 140, 0, 0.07);
    flex-shrink: 0;
}

.meet-card-header h3 {
    font-size: 1.125rem;
    margin-bottom: 0.1rem;
}

.meet-card-header p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--neon-amber);
    font-family: var(--font-mono);
}

.meet-card>p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 1rem 0;
    line-height: 1.7;
}

.meet-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.meet-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.meet-features li i {
    color: var(--neon-orange);
    font-size: 1rem;
}

/* ============================================================
   GOOGLE MEET MODAL
   ============================================================ */
.meet-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 3, 1, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.meet-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.meet-modal {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    max-width: 520px;
    width: 100%;
    padding: 2.5rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
}

.meet-modal-overlay.active .meet-modal {
    transform: translateY(0);
}

.meet-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-orange), var(--neon-amber), transparent);
}

.meet-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.meet-modal-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.meet-modal-title i {
    font-size: 1.5rem;
    color: var(--neon-orange);
}

.meet-modal-title h3 {
    font-size: 1.25rem;
}

.modal-close {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.modal-close:hover {
    border-color: var(--neon-orange);
    color: var(--neon-orange);
}

.meet-modal-sub {
    color: var(--neon-amber);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    opacity: 0.8;
    display: block;
}

.meet-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.meet-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-num {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--neon-orange);
    opacity: 0.55;
    flex-shrink: 0;
    width: 32px;
    line-height: 1.5;
}

.meet-step div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.meet-step strong {
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.meet-step span {
    color: var(--text-secondary);
    font-size: 0.8125rem;
}

.meet-note {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.45;
    letter-spacing: 0.03em;
    line-height: 1.8;
    display: block;
}

/* ============================================================
   CONTACT RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        position: static;
    }

    .contact-form-panel {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }
}

/* Form Feedback Modern Styling */
.form-feedback-success {
    display: none;
    margin-top: 1.5rem;
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--neon-orange);
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.4);
    letter-spacing: 0.05em;
    font-weight: 500;
    text-align: center;
}

.form-feedback-error {
    display: none;
    margin-top: 1.5rem;
    font-family: var(--font-mono);
    font-size: 1rem;
    color: #ff4d4d;
    text-shadow: 0 0 10px rgba(255, 77, 77, 0.4);
    letter-spacing: 0.05em;
    font-weight: 500;
    text-align: center;
}

/* ============================================================
   CAREER PAGE (MISSION COMMAND)
   ============================================================ */
.career-hero {
    padding: 3rem 0 2rem;
    position: relative;
}

.career-hero .hero-badge {
    margin-bottom: 2rem;
}

.bounty-board {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.bounty-card {
    position: relative;
    background: #0a0805;
    border: 1px solid rgba(255, 140, 0, 0.1);
    border-radius: var(--radius-sm);
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.bounty-card:hover {
    border-color: rgba(255, 140, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.05);
}

.card-corner-tl-styled {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 16px;
    height: 16px;
    border-top: 1px solid var(--neon-orange);
    border-left: 1px solid var(--neon-orange);
    pointer-events: none;
}

.card-corner-tl-styled::after {
    content: '';
    position: absolute;
    bottom: -150%;
    left: -1px;
    width: 16px;
    height: 16px;
    border-bottom: 1px solid var(--neon-orange);
    border-left: 1px solid var(--neon-orange);
    pointer-events: none;
}

.bounty-dept {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--neon-orange);
    margin-bottom: 0.6rem;
    display: inline-block;
    font-weight: 600;
}

.bounty-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-weight: 700;
}

.bounty-meta {
    display: flex;
    color: #8c7e73;
    font-size: 0.8rem;
}

.bounty-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-outline-cyber {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(255, 140, 0, 0.5);
    background: transparent;
    color: var(--neon-orange);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
    border-radius: 4px;
}

.btn-outline-cyber:hover {
    background: rgba(255, 140, 0, 0.05);
    border-color: var(--neon-orange);
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.2);
}

.bounty-action .btn {
    min-width: 160px;
    justify-content: center;
}

.armory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.tech-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    padding: 2rem 1rem;
    border-radius: var(--radius-sm);
    text-align: center;
    transition: var(--transition);
}

.tech-card:hover {
    border-color: var(--neon-orange);
    background: rgba(255, 140, 0, 0.03);
    color: var(--neon-orange);
}

.tech-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.tech-card:hover i {
    color: var(--neon-orange);
}

@media (max-width: 768px) {
    .bounty-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .bounty-action {
        width: 100%;
    }

    .bounty-action .btn {
        width: 100%;
    }
}

/* ============================================================
   PRODUCTS SECTION — Listing + Detail Pages
   ============================================================ */

/* ---- Products hero (listing page) ---- */
.products-hero {
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.products-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--neon-orange);
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    background: rgba(255, 140, 0, 0.04);
}

.products-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.products-hero p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ---- Products grid (listing page) ---- */
.products-grid-section {
    padding: 2rem 0 6rem;
    position: relative;
    z-index: 2;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product-card {
    border: 1px solid var(--border);
    background: var(--bg-surface);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-orange), var(--neon-amber), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover {
    border-color: rgba(255, 140, 0, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(255, 140, 0, 0.08);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card-icon {
    width: 56px;
    height: 56px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--neon-orange);
    background: rgba(255, 140, 0, 0.06);
    margin-bottom: 1.5rem;
    transition: background 0.3s, border-color 0.3s;
}

.product-card:hover .product-card-icon {
    background: rgba(255, 140, 0, 0.12);
    border-color: rgba(255, 140, 0, 0.4);
}

.product-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

.product-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.75rem;
}

.product-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    color: var(--neon-orange);
    text-transform: uppercase;
}

.product-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 2px;
    margin-bottom: 1.25rem;
    border: 1px solid var(--border);
    opacity: 0.85;
    transition: opacity 0.3s;
}

.product-card:hover .product-card-img {
    opacity: 1;
}

/* ---- Individual product page hero ---- */
.product-page-hero {
    padding: 5rem 0 4rem;
    position: relative;
    z-index: 2;
}

.product-page-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-page-hero-text .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--neon-orange);
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    background: rgba(255, 140, 0, 0.04);
}

.product-page-hero-text h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.1;
    margin-bottom: 1.15rem;
}

.product-page-hero-text p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.product-page-hero-img {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

.product-page-hero-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.06) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.product-page-hero-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    opacity: 0.9;
}

/* ---- Stat bar ---- */
.product-stats-bar {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0;
    position: relative;
    z-index: 2;
}

.product-stats-inner {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.product-stat {
    text-align: center;
}

.product-stat-value {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--neon-orange);
    display: block;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.product-stat-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* ---- Features section ---- */
.product-features-section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.product-features-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.product-features-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.product-features-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.product-feature-card {
    border: 1px solid var(--border);
    background: var(--bg-surface);
    padding: 1.75rem;
    border-radius: 2px;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.product-feature-card:hover {
    border-color: rgba(255, 140, 0, 0.3);
    box-shadow: 0 8px 32px rgba(255, 140, 0, 0.06);
}

.product-feature-icon {
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--neon-orange);
    background: rgba(255, 140, 0, 0.06);
    flex-shrink: 0;
}

.product-feature-text h4 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.product-feature-text p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* ---- Product CTA ---- */
.product-cta-section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
    text-align: center;
}

.product-cta-box {
    border: 1px solid rgba(255, 140, 0, 0.25);
    background: var(--bg-surface);
    padding: 4rem;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    max-width: 760px;
    margin: 0 auto;
}

.product-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-orange), var(--neon-amber), transparent);
}

.product-cta-box h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.product-cta-box p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* ---- Breadcrumb ---- */
.product-breadcrumb {
    padding: 1.25rem 0 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

.product-breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.product-breadcrumb a:hover {
    color: var(--neon-orange);
}

.product-breadcrumb .sep {
    opacity: 0.4;
}

.product-breadcrumb .current {
    color: var(--neon-orange);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-page-hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .product-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-cta-box {
        padding: 2.5rem 1.5rem;
    }
}

/* ============================================================
   HOME PAGE — Products Grid Cards
   ============================================================ */
.home-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.home-product-card {
    border: 1px solid var(--border);
    background: var(--bg-surface);
    padding: 1.75rem;
    position: relative;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.home-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-orange), var(--neon-amber), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.home-product-card:hover {
    border-color: rgba(255, 140, 0, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(255, 140, 0, 0.08);
}

.home-product-card:hover::before {
    opacity: 1;
}

.home-product-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.home-product-icon {
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--neon-orange);
    background: rgba(255, 140, 0, 0.06);
    transition: background 0.3s, border-color 0.3s;
}

.home-product-card:hover .home-product-icon {
    background: rgba(255, 140, 0, 0.14);
    border-color: rgba(255, 140, 0, 0.4);
}

.home-product-id {
    font-size: 0.65rem;
    color: var(--text-secondary);
    letter-spacing: 0.06em;
    opacity: 0.5;
}

.home-product-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.home-product-card>p {
    font-size: 0.825rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.home-product-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
}

.home-product-bullets li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.775rem;
    color: var(--text-secondary);
    font-family: var(--font-mono);
}

.home-product-bullets li i {
    color: var(--neon-orange);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.home-product-cta {
    font-size: 0.7rem;
    letter-spacing: 0.07em;
    color: var(--neon-orange);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    opacity: 0.7;
    transition: opacity 0.2s, gap 0.2s;
    margin-top: auto;
}

.home-product-card:hover .home-product-cta {
    opacity: 1;
    gap: 0.55rem;
}

/* Responsive */
@media (max-width: 1100px) {
    .home-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .home-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .home-products-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   HERO — Animated Gradient Title
   ============================================================ */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-gradient-text {
    background: linear-gradient(120deg, #ff8c00, #ffd000, #ff4500, #ff8c00);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease infinite;
}

/* Bigger hero headline */
.hero-title {
    font-size: clamp(3.2rem, 7vw, 6rem) !important;
    letter-spacing: -0.01em;
}

/* ============================================================
   STATS COUNTER SECTION
   ============================================================ */
.stats-counter-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 4rem 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.stats-counter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255, 140, 0, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.stats-counter-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}

.stats-counter-item {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.stats-counter-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: var(--border);
}

.stats-counter-icon {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 140, 0, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--neon-orange);
    background: rgba(255, 140, 0, 0.07);
    margin-bottom: 0.25rem;
}

.stats-counter-value {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
    line-height: 1;
}

.stats-counter-value .counter {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800 !important;
    color: var(--neon-orange);
    line-height: 1;
}

.counter-suffix {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--neon-orange);
    opacity: 0.8;
    white-space: nowrap;
}

.stats-counter-label {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* ============================================================
   HOME PRODUCT CARDS — Decorative Background Number
   ============================================================ */
.home-product-card {
    counter-increment: none;
}

.home-product-card::after {
    content: attr(data-num);
    position: absolute;
    bottom: -0.5rem;
    right: 0.75rem;
    font-family: var(--font-display);
    font-size: 5.5rem;
    font-weight: 900;
    color: rgba(255, 140, 0, 0.04);
    line-height: 1;
    pointer-events: none;
    transition: color 0.3s;
    z-index: 0;
    letter-spacing: -0.02em;
}

.home-product-card:hover::after {
    color: rgba(255, 140, 0, 0.07);
}

/* Make card content sit above the decorative number */
.home-product-card>* {
    position: relative;
    z-index: 1;
}

/* ============================================================
   HOME CTA BANNER
   ============================================================ */
.home-cta-banner {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.home-cta-banner-inner {
    border: 1px solid rgba(255, 140, 0, 0.2);
    background: var(--bg-surface);
    padding: 4rem;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.home-cta-banner-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-orange), var(--neon-amber), var(--neon-orange), transparent);
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200%;
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.home-cta-banner-inner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.home-cta-banner-text {
    flex: 1;
    min-width: 280px;
}

.home-cta-banner-text .section-label {
    margin-bottom: 0.75rem;
}

.home-cta-banner-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.home-cta-banner-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 520px;
    margin: 0;
}

.home-cta-banner-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .stats-counter-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-counter-item:nth-child(3)::after {
        display: none;
    }

    .home-cta-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .home-cta-banner-actions {
        flex-direction: row;
        justify-content: center;
    }

    .home-cta-banner-text p {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .stats-counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-counter-item:nth-child(2)::after,
    .stats-counter-item:nth-child(4)::after {
        display: none;
    }

    .stats-counter-value .counter {
        font-size: 2rem;
    }

    .home-cta-banner-actions {
        flex-direction: column;
    }
}

/* ============================================================
   HOME PRODUCT CARDS — PREMIUM REDESIGN
   Animated gradient border + shimmer + icon pulse + float
   ============================================================ */

/* Override base card reset */
.home-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.home-product-card {
    /* Gradient border trick via padding-box + border-box */
    border: 1px solid transparent;
    background:
        linear-gradient(var(--bg-surface), var(--bg-surface)) padding-box,
        linear-gradient(135deg, rgba(255, 140, 0, 0.25), rgba(255, 200, 0, 0.06) 50%, rgba(255, 140, 0, 0.12)) border-box;
    padding: 2rem 1.75rem 1.75rem;
    position: relative;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.45s ease;
    cursor: pointer;
}

/* Gradient border on hover — animated gradient rotates */
.home-product-card:hover {
    transform: translateY(-7px) scale(1.01);
    box-shadow:
        0 0 0 1px rgba(255, 140, 0, 0.5),
        0 20px 60px rgba(255, 140, 0, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.5);
    background:
        linear-gradient(var(--bg-surface), var(--bg-surface)) padding-box,
        linear-gradient(135deg, var(--neon-orange), var(--neon-amber) 40%, rgba(255, 140, 0, 0.3) 70%, var(--neon-orange)) border-box;
}

/* Shimmer sweep on hover */
.home-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 200, 0, 0.06),
            transparent);
    transform: skewX(-20deg);
    transition: none;
    opacity: 0;
}

.home-product-card:hover::before {
    animation: cardShimmer 0.6s ease forwards;
    opacity: 1;
}

@keyframes cardShimmer {
    0% {
        left: -80%;
    }

    100% {
        left: 120%;
    }
}

/* Remove old ::after decorative number (redefine below) */
.home-product-card::after {
    display: none;
}

/* Decorative number — positioned boldly in lower-right */
.home-product-num-bg {
    position: absolute;
    bottom: -1rem;
    right: 0.5rem;
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(180deg, rgba(255, 140, 0, 0.08) 0%, transparent 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: opacity 0.4s;
}

.home-product-card:hover .home-product-num-bg {
    background: linear-gradient(180deg, rgba(255, 140, 0, 0.18) 0%, transparent 80%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Bottom glow beam on hover */
.home-product-card .card-glow-beam {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-orange), var(--neon-amber), var(--neon-orange), transparent);
    border-radius: 0 0 4px 4px;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s;
    opacity: 0;
}

.home-product-card:hover .card-glow-beam {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}

/* Card top / header */
.home-product-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

/* Icon — circular with glowing pulse ring on hover */
.home-product-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--neon-orange);
    background: radial-gradient(circle, rgba(255, 140, 0, 0.15), rgba(255, 140, 0, 0.04));
    border: 1px solid rgba(255, 140, 0, 0.3);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
    flex-shrink: 0;
}

.home-product-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(255, 140, 0, 0.4);
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s;
}

.home-product-card:hover .home-product-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.35);
    background: radial-gradient(circle, rgba(255, 140, 0, 0.25), rgba(255, 140, 0, 0.08));
}

.home-product-card:hover .home-product-icon::after {
    transform: scale(1.2);
    opacity: 1;
}

/* Product number badge */
.home-product-id {
    font-size: 0.62rem;
    color: var(--neon-orange);
    letter-spacing: 0.1em;
    opacity: 0.4;
    margin-top: 0.25rem;
    transition: opacity 0.3s;
}

.home-product-card:hover .home-product-id {
    opacity: 0.8;
}

/* Title */
.home-product-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.55rem;
    color: var(--text-primary);
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.home-product-card:hover h3 {
    color: #fff;
}

/* Description */
.home-product-card>p {
    font-size: 0.84rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

/* Bullet list */
.home-product-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.38rem;
    margin-bottom: 1.5rem;
    padding: 0;
    position: relative;
    z-index: 1;
}

.home-product-bullets li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.775rem;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-mono);
    transition: color 0.3s;
}

.home-product-card:hover .home-product-bullets li {
    color: rgba(255, 255, 255, 0.75);
}

.home-product-bullets li i {
    color: var(--neon-orange);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.home-product-card:hover .home-product-bullets li i {
    transform: scale(1.2);
}

/* CTA row */
.home-product-cta {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: rgba(255, 140, 0, 0.65);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    position: relative;
    z-index: 1;
    transition: color 0.3s, gap 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-product-cta i {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-product-card:hover .home-product-cta {
    color: var(--neon-orange);
    gap: 0.65rem;
}

.home-product-card:hover .home-product-cta i {
    transform: translateX(4px);
}

/* Responsive overrides */
@media (max-width: 1100px) {
    .home-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .home-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .home-products-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   3D FLIP CARDS — Product Grid
   ============================================================ */

/* Override grid to match flip card height */
.home-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Flip card outer wrapper */
.flip-card {
    perspective: 1200px;
    height: 320px;
    cursor: pointer;
}

/* Inner wrapper — the element that flips */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Shared face styles */
.flip-card-front,
.flip-card-back {
    position: absolute;
    inset: 0;
    border-radius: 4px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    overflow: hidden;
}

/* ---- FRONT FACE ---- */
.flip-card-front {
    border: 1px solid rgba(255, 140, 0, 0.2);
    background: linear-gradient(160deg, #0f0b05 0%, #1a1005 100%);
    justify-content: flex-end;
    gap: 0.5rem;
}

/* Animated gradient border on front */
.flip-card-front::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 4px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.4), transparent 50%, rgba(255, 200, 0, 0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.flip-card:hover .flip-card-front::before {
    opacity: 1;
}

/* Large decorative number top-right */
.flip-num {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, rgba(255, 140, 0, 0.15) 0%, transparent 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    pointer-events: none;
    transition: opacity 0.4s;
}

/* Large icon — centered upper half */
.flip-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -65%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--neon-orange);
    background: radial-gradient(circle, rgba(255, 140, 0, 0.18), rgba(255, 140, 0, 0.04));
    border: 1px solid rgba(255, 140, 0, 0.35);
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
}

.flip-card:hover .flip-icon {
    transform: translate(-50%, -65%) scale(1.12);
    box-shadow: 0 0 50px rgba(255, 140, 0, 0.3);
}

/* Front title + tagline */
.flip-card-front h3 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
}

.flip-tagline {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
    margin: 0 0 0.5rem;
    position: relative;
    z-index: 1;
}

/* "HOVER TO EXPLORE" hint */
.flip-hint {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    color: rgba(255, 140, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.flip-hint::before {
    content: '';
    width: 16px;
    height: 1px;
    background: rgba(255, 140, 0, 0.4);
    transition: width 0.3s;
}

.flip-card:hover .flip-hint {
    color: rgba(255, 140, 0, 0.7);
}

.flip-card:hover .flip-hint::before {
    width: 24px;
}

/* Bottom glow line on front */
.flip-card-front::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.5), transparent);
    transition: opacity 0.3s;
}

/* ---- BACK FACE ---- */
.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(160deg, rgba(255, 140, 0, 0.12) 0%, #100c04 100%);
    border: 1px solid rgba(255, 140, 0, 0.45);
    box-shadow: inset 0 0 60px rgba(255, 140, 0, 0.04);
    justify-content: center;
    gap: 0;
    padding: 1.5rem;
}

/* Top glow strip on back */
.flip-card-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-orange), var(--neon-amber), var(--neon-orange), transparent);
    border-radius: 0 0 4px 4px;
}

/* Subtle corner number on back */
.flip-num-back {
    position: absolute;
    bottom: -1rem;
    right: 0.5rem;
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 900;
    color: rgba(255, 140, 0, 0.06);
    line-height: 1;
    pointer-events: none;
}

/* Small icon top of back */
.flip-icon-sm {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--neon-orange);
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

/* Back title */
.flip-card-back h4 {
    font-size: 0.95rem;
    color: #fff;
    margin: 0 0 1rem;
    position: relative;
    z-index: 1;
    letter-spacing: 0.02em;
}

/* Back bullet list */
.flip-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    position: relative;
    z-index: 1;
}

.flip-bullets li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--font-mono);
}

.flip-bullets li i {
    color: var(--neon-orange);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Back CTA link */
.flip-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--neon-orange);
    text-decoration: none;
    padding: 0.55rem 1.25rem;
    border: 1px solid rgba(255, 140, 0, 0.45);
    border-radius: 2px;
    background: rgba(255, 140, 0, 0.07);
    position: relative;
    z-index: 1;
    align-self: flex-start;
    transition: background 0.25s, border-color 0.25s, gap 0.25s;
    margin-top: auto;
}

.flip-cta:hover {
    background: rgba(255, 140, 0, 0.18);
    border-color: var(--neon-orange);
    gap: 0.65rem;
}

/* Responsive */
@media (max-width: 1100px) {
    .home-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .home-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flip-card {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .home-products-grid {
        grid-template-columns: 1fr;
    }

    .flip-card {
        height: 280px;
    }
}

/* ============================================================
   HERO — Two-Column Split Layout with Stats on Right
   ============================================================ */
.hero-split {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 7rem 2rem 5rem;
    min-height: 100vh;
}

.hero-split-left {
    flex: 1 1 55%;
    min-width: 0;
}

.hero-split-right {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255, 140, 0, 0.18);
    border-radius: 4px;
    background: rgba(255, 140, 0, 0.03);
    padding: 0;
    overflow: hidden;
    backdrop-filter: blur(4px);
}

/* Each stat row inside the right panel */
.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    transition: background 0.25s;
}

.hero-stat-item:hover {
    background: rgba(255, 140, 0, 0.06);
}

.hero-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 140, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--neon-orange);
    background: rgba(255, 140, 0, 0.07);
    flex-shrink: 0;
    transition: box-shadow 0.3s;
}

.hero-stat-item:hover .hero-stat-icon {
    box-shadow: 0 0 14px rgba(255, 140, 0, 0.3);
}

.hero-stat-value {
    display: flex;
    align-items: baseline;
    gap: 0.1rem;
    flex: 1;
}

.hero-stat-value .counter {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--neon-orange);
    line-height: 1;
}

.hero-stat-value .counter-suffix {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--neon-orange);
    opacity: 0.75;
    white-space: nowrap;
}

.hero-stat-label {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    text-transform: uppercase;
    display: block;
    line-height: 1;
    opacity: 0.7;
    align-self: center;
}

/* Thin divider line between stats */
.hero-stat-divider {
    height: 1px;
    background: rgba(255, 140, 0, 0.1);
    margin: 0;
}

/* Responsive: stack on smaller screens */
@media (max-width: 960px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
        padding: 7rem 1.5rem 3rem;
        gap: 2.5rem;
    }

    .hero-split-right {
        flex: none;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border-radius: 4px;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stat-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
    }
}

@media (max-width: 560px) {
    .hero-split-right {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Reduce hero height so marquee sits closer */
.hero-split {
    min-height: auto !important;
    padding-top: 6rem !important;
    padding-bottom: 3rem !important;
    align-items: flex-start;
}

/* ============================================================
   HERO GALAXY CANVAS
   ============================================================ */
#hero-galaxy {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.85;
}

#home.hero {
    position: relative;
    overflow: visible;
}

.hero-container.hero-split {
    position: relative;
    z-index: 1;
}

/* Ensure marquee is visible directly below hero */
.hero+.marquee-section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 10;
}


/* Reduce hero title size in split layout */
.hero-split .hero-title {
    font-size: clamp(2rem, 4.5vw, 4rem) !important;
}

/* ============================================================
   NAVBAR LOGO RESTYLING
   ============================================================ */
a.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

a.logo img {
    height: 36px !important;
    width: auto !important;
    /* Convert white SVG to orange matching site neon */
    /* #ff8c00 orange via filter */
    filter:
        brightness(0) saturate(100%) invert(58%) sepia(95%) saturate(700%) hue-rotate(5deg) brightness(103%) contrast(102%);
    transition: filter 0.3s, opacity 0.3s;
}

a.logo:hover img {
    filter:
        brightness(0) saturate(100%) invert(72%) sepia(90%) saturate(600%) hue-rotate(10deg) brightness(110%) contrast(105%);
    opacity: 0.9;
}

/* ============================================================
   HERO THREE-COLUMN LAYOUT + HUMAN FIGURES
   ============================================================ */
.hero-container.hero-three-col {
    display: grid;
    grid-template-columns: 200px 1fr 300px;
    grid-template-rows: 1fr;
    align-items: center;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 1.5rem 3rem;
    min-height: auto;
    width: 100%;
    box-sizing: border-box;
}

/* Left figure column */
.hero-figure-col {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    min-height: 380px;
}

.hero-figure-left {
    align-self: stretch;
}

/* Right column: stats stacked above right figure */
.hero-right-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
}

/* Figure wrapper with glow + scan animation */
.hero-figure-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 320px;
}

/* The actual image */
.hero-figure-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    object-position: bottom;
    position: relative;
    z-index: 2;
    animation: heroFloat 5s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.35));
}

.hero-figure-right .hero-figure-img {
    max-width: 160px;
    max-height: 260px;
    animation: heroFloat 5.8s ease-in-out 0.5s infinite;
}

/* Float keyframes */
@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Glow blob beneath figure */
.hero-figure-glow {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: radial-gradient(ellipse, rgba(255, 140, 0, 0.35), transparent 70%);
    border-radius: 50%;
    filter: blur(8px);
    z-index: 1;
    animation: glowPulse 5s ease-in-out infinite;
}

.hero-figure-glow-right {
    width: 90px;
    height: 20px;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: translateX(-50%) scaleX(1);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1.2);
    }
}

/* Scan line sweeping upward over the figure */
.hero-figure-scan {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 200, 0, 0.6), transparent);
    z-index: 3;
    animation: scanUp 4s linear infinite;
    pointer-events: none;
}

@keyframes scanUp {
    0% {
        bottom: 0%;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    95% {
        opacity: 1;
    }

    100% {
        bottom: 100%;
        opacity: 0;
    }
}

/* Responsive: hide figures on smaller screens */
@media (max-width: 1100px) {
    .hero-container.hero-three-col {
        grid-template-columns: 1fr 260px;
        grid-template-rows: auto auto;
    }

    .hero-figure-left {
        display: none;
    }

    .hero-right-col {
        grid-row: 1;
        grid-column: 2;
    }

    .hero-split-left {
        grid-column: 1;
        grid-row: 1;
    }

    .hero-figure-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-container.hero-three-col {
        grid-template-columns: 1fr;
        padding: 6rem 1.25rem 2rem;
    }

    .hero-right-col,
    .hero-split-right {
        width: 100%;
    }
}

/* Video figure elements — match img sizing */
.hero-figure-img video,
video.hero-figure-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    object-position: bottom;
    display: block;
    filter: drop-shadow(0 0 22px rgba(255, 140, 0, 0.4));
}

.hero-figure-right video.hero-figure-img {
    max-width: 160px;
    max-height: 260px;
}

/* Adjust hero columns when stats are removed */
.hero-container.hero-three-col {
    grid-template-columns: 200px 1fr 200px;
}

.hero-right-col {
    justify-content: flex-end;
}




/* ============================================================
   NAVBAR HOLOGRAPHIC HUD BOX HOVER EFFECT (OPTION 2)
   ============================================================ */
.nav-links a.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

/* Background gradient & scanlines (hidden by default) */
.nav-links a.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 0%, rgba(255, 140, 0, 0.05) 50%, rgba(255, 140, 0, 0.15) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 140, 0, 0.1) 2px, rgba(255, 140, 0, 0.1) 4px);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.nav-links a.nav-link::after {
    display: none;
}

/* HUD Corners for Nav Links */
.nav-hud-corner {
    position: absolute;
    width: 6px;
    height: 6px;
    border-color: var(--neon-orange);
    border-style: solid;
    border-width: 0;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    display: block;
}

.nav-hud-tl {
    top: 0;
    left: 0;
    border-top-width: 1px;
    border-left-width: 1px;
    transform: translate(-5px, -5px);
}

.nav-hud-tr {
    top: 0;
    right: 0;
    border-top-width: 1px;
    border-right-width: 1px;
    transform: translate(5px, -5px);
}

.nav-hud-bl {
    bottom: 0;
    left: 0;
    border-bottom-width: 1px;
    border-left-width: 1px;
    transform: translate(-5px, 5px);
}

.nav-hud-br {
    bottom: 0;
    right: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
    transform: translate(5px, 5px);
}

/* Hover States */
.nav-links a.nav-link:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 140, 0, 0.8);
}

.nav-links a.nav-link:hover::before {
    opacity: 1;
}

.nav-links a.nav-link:hover .nav-hud-corner {
    opacity: 1;
    transform: translate(0, 0);
    box-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
}

/* Active State (if needed later) */
.nav-links a.nav-link.active::before {
    opacity: 0.5;
}

.nav-links a.nav-link.active .nav-hud-corner {
    opacity: 0.8;
    transform: translate(0, 0);
}

/* Persistent subtle glitch animation for the hero title */
.hero-gradient-text {
    position: relative;
    display: inline-block;
    animation: textShift 4s infinite;
}

@keyframes textShift {

    0%,
    100% {
        transform: skew(0deg);
    }

    2% {
        transform: skew(-5deg);
        text-shadow: 2px 0px var(--neon-cyan), -2px 0px var(--neon-purple);
    }

    4% {
        transform: skew(0deg);
        text-shadow: none;
    }

    5% {
        transform: skew(5deg);
        text-shadow: -2px 0px var(--neon-cyan), 2px 0px var(--neon-purple);
    }

    7% {
        transform: skew(0deg);
        text-shadow: none;
    }
}

/* Add a cool floating data container next to the actions */
.hero-data-box {
    margin-top: 2rem;
    padding: 1rem;
    border: 1px solid rgba(255, 140, 0, 0.2);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    display: inline-flex;
    flex-direction: column;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--neon-orange);
    position: relative;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.05);
}

.hero-data-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--neon-orange);
    box-shadow: 0 0 10px var(--neon-orange);
    animation: blink 1.5s infinite;
}

.data-line {
    display: flex;
    gap: 1rem;
}

.data-lbl {
    opacity: 0.6;
}

.data-val {
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}