:root {
    /* Base Colors - Deep Space & Technical Gray */
    --bg-root: #020202;
    --bg-surface: #0a0a0a;
    --bg-card: #0f0f0f;
    --bg-hover: #161616;

    /* Borders & Separators */
    --border-subtle: #1f1f1f;
    --border-default: #333333;
    --border-active: #444444;

    /* Primary Accent - Electric Blue */
    --primary: #3b82f6;
    --primary-glow: rgba(59, 130, 246, 0.4);
    --primary-dim: rgba(59, 130, 246, 0.1);

    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #0ea5e9;

    /* Typography */
    --text-main: #ffffff;
    --text-secondary: #a1a1aa;
    --text-tertiary: #52525b;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Sizing */
    --nav-height: 70px;
    --container-width: 1200px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* Animation Timing */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-root);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-root);
}

::-webkit-scrollbar-thumb {
    background: var(--border-default);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-tertiary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scanline {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(59, 130, 246, 0.1);
    }

    50% {
        box-shadow: 0 0 25px rgba(59, 130, 246, 0.3);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.mono {
    font-family: var(--font-mono);
}

.text-sec {
    color: var(--text-secondary);
}

.text-pri {
    color: var(--primary);
}

/* Dynamic Background Grid */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    pointer-events: none;
}

/* Reveal on Scroll Class */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out-expo);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

/* Navbar */
.navbar {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(2, 2, 2, 0.8);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-mono);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.05em;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.logo::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
    transform: rotate(45deg);
}

.nav-link {
    padding: 8px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
    font-weight: 500;
}

.nav-link:hover {
    color: #fff;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0 1.5rem;
    height: 44px;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #fff;
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.15);
}

.btn-ghost {
    background: transparent;
    border-color: var(--border-subtle);
    color: var(--text-secondary);
}

.btn-ghost:hover {
    border-color: var(--text-main);
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.03);
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s var(--ease-out-expo);
}

.hero h1 span {
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    background: none;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1s var(--ease-out-expo) 0.1s backwards;
}

.hero-actions {
    animation: fadeInUp 1s var(--ease-out-expo) 0.2s backwards;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 1.5rem;
    margin: 4rem 0;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
}

/* Shine effect on hover */
.bento-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.02) 45%, transparent 50%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-default);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.bento-card:hover::after {
    transform: translateX(0%);
}

.bento-card.wide {
    grid-column: span 2;
}

.bento-card.tall {
    grid-row: span 2;
}

.bento-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    transition: transform 0.3s var(--ease-out-expo);
}

.bento-card:hover .bento-icon {
    transform: scale(1.1) rotate(-5deg);
    border-color: var(--text-tertiary);
}

.bento-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #fff;
}

.bento-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Diagram Nodes Hover Logic */
.diagram-node {
    transition: all 0.3s;
    cursor: default;
}

.diagram-node:hover {
    transform: scale(1.05);
    background: var(--bg-hover) !important;
    border-color: var(--border-default) !important;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-subtle);
    padding: 6rem 0;
    background: var(--bg-root);
    position: relative;
    z-index: 10;
}

/* FAQ Section Styles */
.faq-section {
    padding: 8rem 0;
    position: relative;
    z-index: 5;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
}

.faq-item:hover {
    border-color: var(--border-default);
    background: linear-gradient(to right, var(--bg-card), #111);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.1);
    background: rgba(59, 130, 246, 0.02);
}

.faq-question {
    padding: 1.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
    color: #fff;
    user-select: none;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s var(--ease-out-expo);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    border-top-color: rgba(255, 255, 255, 0.05);
}

.faq-content-inner {
    padding: 2rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Integration Marquee */
.marquee-container {
    overflow: hidden;
    padding: 3rem 0;
    position: relative;
    background: var(--bg-root);
    border-bottom: 1px solid var(--border-subtle);
}

.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-root), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-root), transparent);
}

.marquee-content {
    display: flex;
    gap: 4rem;
    animation: marquee 30s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.tech-logo {
    font-size: 1.5rem;
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Code Diff Viewer */
.diff-section {
    padding: 8rem 0;
    background: #050505;
    position: relative;
}

.diff-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.7);
}

.diff-pane {
    padding: 0;
    background: #0d0d0d;
}

.diff-pane.left {
    border-right: 1px solid var(--border-subtle);
}

.diff-header {
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
    background: #151515;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.code-block {
    padding: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    line-height: 1.7;
    position: relative;
    overflow-x: auto;
}

.line {
    display: block;
    position: relative;
    padding-left: 1rem;
}

.line::before {
    content: attr(data-line);
    position: absolute;
    left: -1rem;
    color: rgba(255, 255, 255, 0.1);
    text-align: right;
    width: 20px;
}

/* Highlighting */
.bg-danger-dim {
    background: rgba(239, 68, 68, 0.1);
    border-left: 2px solid var(--danger);
}

.bg-success-dim {
    background: rgba(16, 185, 129, 0.1);
    border-left: 2px solid var(--success);
}

.text-danger {
    color: #f87171;
}

.text-success {
    color: #34d399;
}

.text-comment {
    color: #6b7280;
    font-style: italic;
}

.text-keyword {
    color: #c678dd;
}

.text-func {
    color: #61afef;
}

.text-string {
    color: #98c379;
}

/* Comparison Matrix */
.comparison-section {
    padding: 6rem 0;
    position: relative;
    border-bottom: 1px solid var(--border-subtle);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 3rem;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

.comparison-table th {
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
}

.comparison-table th.highlight,
.comparison-table td.highlight {
    background: rgba(59, 130, 246, 0.03);
    border-left: 1px solid var(--border-subtle);
    border-right: 1px solid var(--border-subtle);
    position: relative;
}

.comparison-table th.highlight {
    color: var(--primary);
    border-top: 2px solid var(--primary);
}

.comparison-table tr:hover td {
    color: #fff;
    background: rgba(255, 255, 255, 0.01);
}

/* Check/Cross Icons */
.fa-check {
    color: var(--success);
}

.fa-times {
    color: var(--border-active);
    opacity: 0.5;
}

/* ------------------ MOBILE RESPONSIVENESS ------------------ */

/* ------------------ MOBILE RESPONSIVENESS ------------------ */

@media (max-width: 768px) {
    :root {
        --nav-height: 60px;
        --container-width: 100%;
    }

    /* Global Container */
    .container {
        padding: 0 1.25rem;
    }

    /* Hero Section */
    .hero {
        padding: 6rem 0 3rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 1rem;
    }

    /* System Status HUD */
    .hero .reveal.delay-100 {
        flex-direction: column;
        gap: 1rem !important;
        align-items: flex-start;
        width: 100%;
        background: rgba(255, 255, 255, 0.02);
    }

    .status-item {
        width: 100%;
        padding: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .status-item:last-child {
        border-bottom: none;
    }

    /* Hide vertical dividers on mobile */
    .hero .reveal.delay-100>div[style*="width: 1px"] {
        display: none;
    }

    /* Active Systems Header */
    .reveal.delay-200>div[style*="display: flex"] {
        flex-direction: column;
        gap: 1rem;
    }

    .reveal.delay-200 form {
        width: 100%;
    }

    .reveal.delay-200 form input {
        width: 100% !important;
    }

    /* Sites Grid */
    .sites-grid {
        grid-template-columns: 1fr !important;
        /* Force single column on mobile */
        gap: 0.75rem !important;
    }

    .site-card {
        padding: 1rem !important;
    }

    /* Modal */
    .modal-content {
        width: 95% !important;
        max-width: none !important;
        margin: 1rem;
    }

    /* Architecture Diagram & Sections */
    section[style*="padding: 10rem"] {
        padding: 4rem 0 !important;
    }

    .diagram-node {
        width: 100% !important;
        margin-bottom: 1rem;
    }

    /* Flex container in architecture section */
    section .container>div[style*="display: flex"] {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        /* Center align items in column mode */
    }

    /* Arrows rotation */
    .fa-chevron-right {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    /* Footer */
    .footer {
        padding: 4rem 0;
    }

    .footer .container {
        flex-direction: column;
        gap: 3rem;
        align-items: flex-start;
    }

    .footer .container>div[style*="grid-template-columns"] {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }

    .footer .container:last-child {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        align-items: center;
    }

    /* Diff Section Mobile */
    .diff-section {
        padding: 4rem 0;
    }

    .diff-container {
        grid-template-columns: 1fr;
    }

    .diff-pane.left {
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
    }
}

@media (min-width: 769px) {

    /* Desktop specific fine-tuning */
    .sites-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
    }
}

/* Dashboard Mobile */
@media (max-width: 1024px) {
    .dash-layout {
        flex-direction: column;
    }

    .dash-sidebar {
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
        position: relative;
        padding: 1rem;
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .dash-sidebar nav {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 1rem;
        padding-bottom: 0px;
    }

    .dash-sidebar .dash-item {
        white-space: nowrap;
        padding: 0.5rem 0.75rem;
        background: var(--bg-surface);
        border: 1px solid var(--border-subtle);
    }

    /* Hide sidebar decorative/extra elements on mobile to save space */
    .dash-sidebar>div[style*="margin-top: 2rem"]>div:first-child,
    .dash-sidebar>div[style*="margin-top: auto"] {
        display: none;
    }

    .dash-sidebar>div[style*="margin-top: 2rem"] {
        margin-top: 1rem !important;
        display: inline-block;
        width: 100%;
    }

    .dash-main {
        padding: 1.5rem;
    }

    .upload-card {
        padding: 2rem 1rem;
    }

    /* Enhance table scrolling */
    .dash-main table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Waving Hand Animation */
@keyframes wave {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(14deg);
    }

    20% {
        transform: rotate(-8deg);
    }

    30% {
        transform: rotate(14deg);
    }

    40% {
        transform: rotate(-4deg);
    }

    50% {
        transform: rotate(10deg);
    }

    60% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* System Trigger Button */
.system-trigger {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 99px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.system-trigger:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-secondary);
    color: #fff;
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.trigger-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--success);
    color: #000;
    font-size: 0.8rem;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@keyframes breathe {
    0% {
        box-shadow: 0 0 5px rgba(16, 185, 129, 0.4);
        opacity: 0.8;
    }

    50% {
        box-shadow: 0 0 15px rgba(16, 185, 129, 0.8);
        opacity: 1;
    }

    100% {
        box-shadow: 0 0 5px rgba(16, 185, 129, 0.4);
        opacity: 0.8;
    }
}

.status-dot,
.blinking-dot {
    animation: breathe 3s ease-in-out infinite;
}

/* New Animations */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.site-card {
    animation: slideUpFade 0.5s ease backwards;
}

.site-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: var(--text-secondary) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.site-card:hover .status-dot {
    background: #00ff9d !important;
    box-shadow: 0 0 15px #00ff9d !important;
}

#siteModal>div {
    animation: modalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Stagger animation for grid items */
.sites-grid .site-card:nth-child(1) {
    animation-delay: 50ms;
}

.sites-grid .site-card:nth-child(2) {
    animation-delay: 100ms;
}

.sites-grid .site-card:nth-child(3) {
    animation-delay: 150ms;
}

.sites-grid .site-card:nth-child(4) {
    animation-delay: 200ms;
}

.sites-grid .site-card:nth-child(5) {
    animation-delay: 250ms;
}

.sites-grid .site-card:nth-child(6) {
    animation-delay: 300ms;
}

.sites-grid .site-card:nth-child(7) {
    animation-delay: 350ms;
}

.sites-grid .site-card:nth-child(8) {
    animation-delay: 400ms;
}

.sites-grid .site-card:nth-child(9) {
    animation-delay: 450ms;
}

.sites-grid .site-card:nth-child(10) {
    animation-delay: 500ms;
}

.sites-grid .site-card:nth-child(11) {
    animation-delay: 550ms;
}

.sites-grid .site-card:nth-child(12) {
    animation-delay: 600ms;
}

/* Scan Line Animation */
@keyframes scan {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 0% 100%;
    }
}

.bg-grid::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 50%,
            rgba(16, 185, 129, 0.02) 50%,
            rgba(16, 185, 129, 0.02) 51%,
            transparent 51%);
    background-size: 100% 4px;
    animation: scan 10s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* Floating Animation for HUD Icons */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0px);
    }
}

.status-item i {
    animation: float 3s ease-in-out infinite;
}

.status-item:nth-child(1) i {
    animation-delay: 0s;
}

.status-item:nth-child(3) i {
    animation-delay: 1s;
}

.status-item:nth-child(5) i {
    animation-delay: 2s;
}

/* Glitch Effect on Hover for Titles */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.wave-emoji {
    margin-left: 0.5rem;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
}