/**
 * XK Interactive — Unified Stylesheet
 * Single CSS file for the entire public site.
 * ~ Tokens → Reset → Layout → Components → Pages → Responsive
 */

/* ==========================================================
   0. DESIGN TOKENS (CSS Custom Properties)
   ========================================================== */
:root {
    /* Colors */
    --c-primary: #FF6B35;
    --c-primary-dark: #e05520;
    --c-accent: #FFD23F;
    --c-bg: #0D1117;
    --c-surface: #161B22;
    --c-card: #21262D;
    --c-text: #F0F6FC;
    --c-muted: #8B949E;
    --c-border: #30363D;
    --c-glow: rgba(255, 107, 53, 0.15);

    /* Typography */
    --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --ff-heading: 'Inter', sans-serif;
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.75rem;
    --fs-4xl: 3.5rem;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px var(--c-glow);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --container-max: 1200px;
    --nav-height: 70px;

    /* Futuristic & Cyberpunk Extension */
    --c-neon-cyan: #00F0FF;
    --c-neon-purple: #BC13FE;
    --c-neon-orange: #FFAC2E;
    --c-glass-bg: rgba(22, 27, 34, 0.75);
    --c-glass-border: rgba(255, 255, 255, 0.08);
    --c-grid-color: rgba(255, 107, 53, 0.04);

    /* Animation Timings */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-in-out-quad: cubic-bezier(0.45, 0, 0.55, 1);
}

/* ── FUTURISTIC BACKGROUND SYSTEM ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(0, 240, 255, 0.03) 0%, transparent 50%),
        var(--c-bg);
    pointer-events: none;
}

/* Global Animated Grid Background */
.futuristic-grid {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(var(--c-grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--c-grid-color) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
    opacity: 0.5;
    pointer-events: none;
}

/* ── ADVANCED KEYFRAMES ── */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes titleGlow {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
    }

    50% {
        text-shadow: 0 0 40px rgba(255, 107, 53, 0.5), 0 0 10px var(--c-primary);
    }
}

@keyframes revealLine {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes borderRotate {
    100% {
        filter: hue-rotate(360deg);
    }
}

@keyframes subtlePulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}


/* ==========================================================
   1. RESET & BASE
   ========================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-bg);
    overflow-x: hidden;
}

a {
    color: var(--c-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--c-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--ff-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--c-text);
}


/* ==========================================================
   2. CONTAINER & LAYOUT UTILITIES
   ========================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-3xl) 0;
}

.section-dark {
    background: var(--c-surface);
}

/* ── Text Utilities ── */
.text-center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--c-muted);
    max-width: 600px;
    line-height: 1.7;
}

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ── Grid System ── */
.grid {
    display: grid;
    gap: var(--space-lg);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ── Button System ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: var(--fs-sm);
    border-radius: var(--radius-md);
    padding: 0.75rem 1.5rem;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform var(--transition-fast),
        box-shadow var(--transition-fast),
        background var(--transition-fast);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
    border-color: var(--c-primary);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
    color: #000;
}

.btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--c-text);
}

.btn-outline:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
    background: rgba(255, 107, 53, 0.08);
}

.btn-ghost {
    background: transparent;
    border-color: transparent;
    color: var(--c-primary);
    padding: 0.5rem 0;
}

.btn-ghost:hover {
    color: var(--c-accent);
}

.btn-ghost i {
    transition: transform var(--transition-fast);
}

.btn-ghost:hover i {
    transform: translateX(4px);
}

.btn-lg {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

/* ── Card System ── */
.card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-base),
        box-shadow var(--transition-base),
        border-color var(--transition-base);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: var(--c-primary);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: var(--space-lg);
}

.card-body h3 {
    font-size: 1.15rem;
    color: var(--c-text);
    margin-bottom: 0.5rem;
}

.card-body p {
    font-size: var(--fs-sm);
    color: var(--c-muted);
    margin: 0;
}

.card-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-primary);
    margin-bottom: 0.5rem;
}

/* ── Default image behavior ── */
img {
    max-width: 100%;
    height: auto;
}

.section-title {
    font-size: var(--fs-3xl);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--c-primary);
    margin-top: var(--space-sm);
    transition: width 0.6s var(--ease-out-expo);
}

.text-center .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

.section-title:hover::after {
    width: 100px;
}

/* --- CTA Banner Upgrades --- */
.cta-banner {
    position: relative;
    background: var(--c-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--c-glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl) var(--space-xl);
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 0% 0%, rgba(255, 107, 53, 0.1), transparent 40%);
    pointer-events: none;
}

.cta-banner h2 {
    font-size: var(--fs-3xl);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
    animation: titleGlow 4s ease-in-out infinite;
}

.cta-banner p {
    color: var(--c-muted);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: var(--fs-lg);
}


/* ==========================================================
   9. CONTACT FORM
   ========================================================== */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: var(--space-xs);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    color: var(--c-text);
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast);
    outline: none;
}

.form-control:focus {
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-control::placeholder {
    color: var(--c-muted);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}


/* ==========================================================
   10. FOOTER
   ========================================================== */
.footer {
    background: var(--c-surface);
    border-top: 1px solid var(--c-border);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand p {
    color: var(--c-muted);
    font-size: var(--fs-sm);
    margin-top: var(--space-sm);
    max-width: 300px;
    line-height: 1.7;
}

.footer h4 {
    font-size: var(--fs-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-text);
    margin-bottom: var(--space-md);
}

.footer-links a {
    display: block;
    padding: 0.3rem 0;
    font-size: var(--fs-sm);
    color: var(--c-muted);
}

.footer-links a:hover {
    color: var(--c-primary);
}

.footer-contact p {
    font-size: var(--fs-sm);
    color: var(--c-muted);
    margin-bottom: 0.4rem;
}

.footer-contact i {
    color: var(--c-primary);
    width: 18px;
    margin-right: 0.4rem;
}

/* Social icons */
.social-icons {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-icons a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--c-card);
    color: var(--c-muted);
    font-size: var(--fs-sm);
    transition: all var(--transition-fast);
}

.social-icons a:hover {
    background: var(--c-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid var(--c-border);
    padding-top: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: var(--fs-xs);
    color: var(--c-muted);
}


/* ==========================================================
   11. ABOUT PAGE
   ========================================================== */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-intro h2 {
    font-size: var(--fs-3xl);
    margin-bottom: var(--space-md);
}

.about-intro p {
    color: var(--c-muted);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

/* Process steps */
.process-step {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.process-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-md);
    background: rgba(255, 107, 53, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-lg);
    font-weight: 800;
    color: var(--c-primary);
}

.process-step h3 {
    font-size: var(--fs-lg);
    margin-bottom: 0.3rem;
}

.process-step p {
    color: var(--c-muted);
    font-size: var(--fs-sm);
    line-height: 1.6;
}


/* ==========================================================
   12. PORTFOLIO FILTERS
   ========================================================== */
.filter-bar {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.filter-btn {
    padding: 0.45rem 1.2rem;
    font-size: var(--fs-sm);
    font-weight: 500;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--c-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: var(--ff-body);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: #fff;
}


/* ==========================================================
   13. PAGE HERO (inner pages)
   ========================================================== */
.page-hero {
    padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-2xl);
    text-align: center;
    background: var(--c-surface);
    border-bottom: 1px solid var(--c-border);
}

.page-hero h1 {
    font-size: var(--fs-3xl);
    margin-bottom: var(--space-sm);
}

.page-hero p {
    font-size: var(--fs-lg);
    color: var(--c-muted);
    max-width: 550px;
    margin: 0 auto;
}

/* Contact info cards */
.contact-info-card {
    margin-bottom: var(--space-lg);
}

.contact-info-card:last-child {
    margin-bottom: 0;
}

.contact-info-card h4 {
    margin-bottom: var(--space-md);
}

.contact-info-card h4 i {
    color: var(--c-primary);
    margin-right: 0.5rem;
}

.contact-info-card p {
    color: var(--c-muted);
}

/* About mission card */
.about-mission {
    background: var(--c-surface);
    text-align: center;
    padding: var(--space-2xl);
}

.about-mission-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.about-mission h3 {
    margin-bottom: var(--space-sm);
}

.about-mission p {
    color: var(--c-muted);
    line-height: 1.8;
}

/* Process grid */
.process-grid {
    max-width: 800px;
    margin: 0 auto;
    gap: var(--space-xl);
}

/* Contact layout */
.contact-layout {
    gap: var(--space-2xl);
    align-items: start;
}

/* ==========================================================
   14. SCROLL ANIMATIONS
   ========================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================================
   15. MOBILE MENU — Full-Screen Sliding Panel
   ========================================================== */

/* Backdrop overlay */
.mm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 17, 23, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mm-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Panel container — slides in from the right */
.mm-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--c-bg) 0%, var(--c-surface) 100%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.mm-panel.active {
    right: 0;
    pointer-events: auto;
}

/* Header: brand + close X */
.mm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--c-border);
    background: rgba(255, 107, 53, 0.04);
    min-height: 60px;
}

.mm-close {
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    position: relative;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mm-close span {
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--c-text);
    border-radius: 1px;
    transition: background var(--transition-fast);
}

.mm-close span:first-child {
    transform: rotate(45deg);
}

.mm-close span:last-child {
    transform: rotate(-45deg);
}

.mm-close:hover span {
    background: var(--c-primary);
}

/* Scrollable body */
.mm-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    -webkit-overflow-scrolling: touch;
    /* Thin custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 107, 53, 0.25) transparent;
}

.mm-body::-webkit-scrollbar {
    width: 3px;
}

.mm-body::-webkit-scrollbar-track {
    background: transparent;
}

.mm-body::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 53, 0.25);
    border-radius: 3px;
}

/* Disable the scan-line effect — it creates distracting red horizontal lines */
.mm-panel .mm-body::after {
    display: none !important;
}

/* Sliding levels */
.mm-level {
    position: absolute;
    inset: 0;
    overflow-y: auto;
    padding: 0.75rem 0;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease,
        visibility 0s 0.4s;
    background: var(--c-bg);
}

.mm-level.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease,
        visibility 0s;
}

/* Level 0 is shown by default when panel opens */
.mm-level[data-level="0"] {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

/* Sub-level header with back button */
.mm-sub-header {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--c-border);
    background: rgba(255, 107, 53, 0.04);
}

.mm-sub-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-text);
    margin: 0;
}

.mm-back {
    background: none;
    border: none;
    color: var(--c-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-family: var(--ff-body);
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    border-radius: var(--radius-sm);
    margin-right: 1rem;
    transition: background var(--transition-fast);
}

.mm-back:hover {
    background: rgba(255, 107, 53, 0.1);
}

/* Nav list */
.mm-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Staggered animate-in for each item */
.mm-item {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mm-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Nav link */
.mm-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.875rem 1.25rem;
    min-height: 52px; /* Apple HIG: 44px min touch target */
    color: var(--c-text);
    text-decoration: none;
    border: none;
    background: none;
    text-align: left;
    font-family: var(--ff-body);
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: rgba(255, 107, 53, 0.15);
    transition: background var(--transition-fast),
        color var(--transition-fast),
        padding-left var(--transition-fast);
}

/* Sweep highlight on hover */
.mm-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.08), transparent);
    transition: left 0.5s ease;
}

.mm-link:hover::before {
    left: 100%;
}

.mm-link:hover {
    background: rgba(255, 107, 53, 0.04);
    color: var(--c-primary);
    padding-left: 2rem;
}

.mm-link:active {
    transform: scale(0.98);
}

.mm-link.active {
    color: var(--c-primary);
}

/* Icon */
.mm-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.875rem;
    font-size: 1rem;
    color: var(--c-primary);
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.12);
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.mm-link:hover .mm-icon,
.mm-link:active .mm-icon {
    background: rgba(255, 107, 53, 0.16);
    border-color: rgba(255, 107, 53, 0.25);
    transform: scale(1.05);
}

/* Text + optional small description */
.mm-text {
    flex: 1;
    font-weight: 500;
}

.mm-text small {
    display: block;
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--c-muted);
    margin-top: 0.2rem;
}

/* Arrow for submenu triggers */
.mm-arrow {
    margin-left: auto;
    color: var(--c-muted);
    font-size: 0.8rem;
    transition: transform var(--transition-fast), color var(--transition-fast);
}

.mm-link:hover .mm-arrow {
    color: var(--c-primary);
    transform: translateX(4px);
}

/* Footer with quick actions */
.mm-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--c-border);
    background: rgba(255, 107, 53, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mm-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
}

.mm-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 0.75rem;
    min-height: 48px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid var(--c-border);
    color: var(--c-text);
    background: rgba(255, 255, 255, 0.03);
    -webkit-tap-highlight-color: rgba(255, 107, 53, 0.15);
    transition: all var(--transition-fast);
}

.mm-action:active {
    transform: scale(0.97);
}

.mm-action-primary {
    background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
    border-color: var(--c-primary);
    color: #000;
    font-weight: 700;
}

.mm-action-primary:active {
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.35);
}

/* Social row */
.mm-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.mm-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--c-border);
    color: var(--c-muted);
    font-size: 0.9rem;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(255, 107, 53, 0.15);
    transition: all 0.2s ease;
}

.mm-social a:active {
    background: rgba(255, 107, 53, 0.12);
    border-color: var(--c-primary);
    color: var(--c-primary);
}

.mm-copyright {
    text-align: center;
    font-size: 0.7rem;
    color: var(--c-muted);
    margin: 0;
    letter-spacing: 0.3px;
}

/* ── Mobile-specific responsive overrides ── */
@media (max-width: 480px) {
    .mm-panel {
        max-width: 100%;
    }

    .mm-header {
        padding: 0.875rem 1rem;
    }

    .mm-link {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .mm-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 0.9rem;
    }

    .mm-footer {
        padding: 0.875rem 1rem;
    }

    .mm-actions {
        grid-template-columns: 1fr;
    }

    .mm-sub-header {
        padding: 0.875rem 1rem;
    }
}

/* Ensure safe-area insets for notched phones */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .mm-footer {
        padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    }

    .mm-panel {
        padding-top: env(safe-area-inset-top);
    }
}

/* Hamburger → X animation */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--c-primary);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-8px);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: var(--c-primary);
}

/* Body scroll lock when menu is open */
body.mm-open {
    overflow: hidden;
}

/* Accessibility: focus rings */
.mm-link:focus,
.mm-back:focus,
.mm-close:focus,
.mm-action:focus {
    outline: 2px solid var(--c-primary);
    outline-offset: 2px;
}

/* ── CYBERPUNK EFFECTS ── */

/* Keyframes */
@keyframes cyberpunkGlow {

    0%,
    100% {
        box-shadow: 0 0 5px var(--c-primary), 0 0 10px var(--c-primary), 0 0 15px var(--c-primary);
        text-shadow: 0 0 5px var(--c-primary);
    }

    50% {
        box-shadow: 0 0 10px var(--c-accent), 0 0 20px var(--c-accent), 0 0 30px var(--c-accent);
        text-shadow: 0 0 10px var(--c-accent);
    }
}

@keyframes neonPulse {

    0%,
    100% {
        border-color: var(--c-primary);
        box-shadow: 0 0 5px var(--c-primary), inset 0 0 5px rgba(255, 107, 53, 0.15);
    }

    50% {
        border-color: var(--c-accent);
        box-shadow: 0 0 20px var(--c-accent), inset 0 0 10px rgba(255, 210, 63, 0.15);
    }
}

@keyframes glitchEffect {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-2px);
    }

    40% {
        transform: translateX(2px);
    }

    60% {
        transform: translateX(-1px);
    }

    80% {
        transform: translateX(1px);
    }
}

@keyframes dataStream {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

@keyframes scanline {
    0% {
        top: -10%;
    }

    100% {
        top: 110%;
    }
}

/* Neon-pulse border on the panel itself */
.mm-panel.active {
    border-left: 2px solid var(--c-primary);
    animation: neonPulse 3s ease-in-out infinite;
}

/* Data-stream particles behind the menu */
.mm-body::before,
.mm-body::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 30%;
    background: linear-gradient(180deg, transparent, var(--c-primary), transparent);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    animation: dataStream 6s linear infinite;
}

.mm-body::before {
    left: 15%;
    animation-delay: 0s;
}

.mm-body::after {
    right: 20%;
    animation-delay: 3s;
}

/* Scanline sweep */
.mm-panel::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
    z-index: 10001;
    pointer-events: none;
    animation: scanline 4s linear infinite;
}

/* Start Project button — cyberpunk glow */
.mm-action-primary {
    animation: cyberpunkGlow 2.5s ease-in-out infinite;
}

/* Glitch effect on brand text on hover */
.mm-header .nav-brand:hover {
    animation: glitchEffect 0.3s ease;
}

/* Neon accent on active nav item */
.mm-link.active {
    background: rgba(255, 107, 53, 0.06);
    border-left: 3px solid var(--c-primary);
    box-shadow: inset 4px 0 8px rgba(255, 107, 53, 0.1);
}

/* Enhanced icon glow for active links */
.mm-link.active .mm-icon {
    text-shadow: 0 0 8px var(--c-primary);
}

/* Shimmer on the close X when hovered */
.mm-close:hover span {
    box-shadow: 0 0 8px var(--c-primary);
}

/* Neon underline on links when hovered */
.mm-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 1px;
    background: linear-gradient(90deg, var(--c-primary), transparent);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    .mm-panel,
    .mm-overlay,
    .mm-level,
    .mm-item,
    .mm-link,
    .mm-link::before {
        transition: none;
    }

    .mm-panel.active,
    .mm-action-primary,
    .mm-header .nav-brand:hover {
        animation: none;
    }

    .mm-body::before,
    .mm-body::after,
    .mm-panel::after {
        display: none;
    }
}


/* ==========================================================
   3. DESKTOP NAVIGATION — Center-Logo Split
   The nav uses: .navbar > .container.nav-grid > .nav-group
   custom.css / missing-styles.css target Bootstrap classes
   that no longer exist — override them here.
   ========================================================== */

/* ── Navbar bar ── */
nav.navbar#mainNav {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000 !important;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--c-border);
    padding: 0 !important;
    height: var(--nav-height);
}

nav.navbar#mainNav.scrolled {
    background: rgba(13, 17, 23, 0.98);
    box-shadow: var(--shadow-md);
}

/* ── Grid container: left | logo | right ── */
nav.navbar#mainNav>.container.nav-grid {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    justify-content: initial !important;
    flex-wrap: initial !important;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg) !important;
}

/* ── Left & right link groups ── */
.nav-group {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-right {
    justify-content: flex-end;
}

/* ── Individual nav links ── */
nav.navbar .nav-link {
    color: var(--c-muted) !important;
    font-size: var(--fs-sm);
    font-weight: 500;
    padding: 0.5rem 0.75rem !important;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

nav.navbar .nav-link:hover,
nav.navbar .nav-link.active {
    color: var(--c-primary) !important;
    background: rgba(255, 107, 53, 0.08);
}

/* ── Center brand ── */
nav.navbar .nav-brand {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--c-text);
    text-decoration: none;
    letter-spacing: -0.02em;
    text-align: center;
    white-space: nowrap;
}

nav.navbar .nav-brand:hover {
    color: var(--c-text);
}

.brand-highlight {
    color: var(--c-primary);
}

/* ── CTA button in navbar ── */
.nav-cta-btn {
    margin-left: var(--space-sm);
    font-size: var(--fs-sm) !important;
    padding: 0.45rem 1.1rem !important;
    white-space: nowrap;
}

/* ── Chevron icon on Services ── */
.nav-link .chevron {
    font-size: 0.6rem;
    transition: transform var(--transition-fast);
}

.has-mega:hover .chevron {
    transform: rotate(180deg);
}

/* ── Hamburger toggle (hidden on desktop) ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* ── Mega menu parent positioning ── */
.has-mega {
    position: static;
}

/* ==========================================================
   16. RESPONSIVE
   ========================================================== */

/* Tablet */
@media (max-width: 991px) {
    :root {
        --fs-4xl: 2.5rem;
        --fs-3xl: 2rem;
        --fs-2xl: 1.5rem;
    }

    .nav-group,
    .nav-cta-btn {
        display: none;
    }

    /* On mobile, switch to 2-column: brand + hamburger */
    .nav-grid {
        display: flex;
        justify-content: space-between;
    }

    .nav-toggle {
        display: flex;
    }

    .mega-menu {
        display: none !important;
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .about-intro {
        grid-template-columns: 1fr;
    }

    /* Video hero: tablet adjustments */
    .video-controls {
        bottom: 1rem;
        padding: 0.6rem 1rem;
        gap: 0.6rem;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        padding: 0.85rem 1.75rem;
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 600px) {
    :root {
        --fs-4xl: 2rem;
        --fs-3xl: 1.75rem;
        --space-3xl: 3.5rem;
        --space-2xl: 2.5rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    /* Video hero: mobile adjustments */
    .hero-content {
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.05rem;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .video-controls {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
    }

    .video-indicator {
        width: 8px;
        height: 8px;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Large desktop */
@media (min-width: 1400px) {
    .container {
        max-width: 1300px;
    }
}


/* ==========================================================
   17. FOCUS & ACCESSIBILITY
   ========================================================== */
:focus-visible {
    outline: 2px solid var(--c-primary);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* ==========================================================
   18. STATS COUNTER BAR
   Glassmorphic cards with animated count-up numbers.
   ========================================================== */
.stats-bar {
    position: relative;
    padding: var(--space-2xl) 0;
    background: var(--c-surface);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.stat-card {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    transition: transform var(--transition-base), border-color var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 53, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    display: inline;
}

.stat-suffix {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.stat-label {
    font-size: var(--fs-sm);
    color: var(--c-muted);
    margin-top: var(--space-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ==========================================================
   19. SERVICES SHOWCASE (4-Category Cards)
   ========================================================== */
.services-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.showcase-card {
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.showcase-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
}

.showcase-card h3 {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: var(--space-md);
}

.showcase-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg) 0;
}

.showcase-list li {
    font-size: var(--fs-sm);
    color: var(--c-muted);
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.showcase-list li i {
    font-size: 0.7rem;
}

.showcase-link {
    font-size: var(--fs-sm);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap var(--transition-fast);
}

.showcase-link:hover {
    gap: 0.7rem;
}


/* ==========================================================
   20. TESTIMONIALS CAROUSEL
   ========================================================== */
.testimonial-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: var(--space-lg);
}

.testimonial-card {
    min-width: calc(33.333% - var(--space-lg) * 2 / 3);
    flex-shrink: 0;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: transform var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--c-accent);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
    display: flex;
    gap: 0.2rem;
}

.testimonial-quote {
    font-size: var(--fs-base);
    color: var(--c-muted);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.author-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
}

.testimonial-author strong {
    display: block;
    font-size: var(--fs-sm);
    color: var(--c-text);
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--c-muted);
}

/* Carousel controls */
.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.testimonial-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--c-border);
    background: var(--c-card);
    color: var(--c-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.testimonial-btn:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-border);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-dot.active {
    background: var(--c-primary);
    width: 24px;
    border-radius: 4px;
}


/* ==========================================================
   21. 4-COLUMN FOOTER
   ========================================================== */
.footer-grid-4 {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--c-border);
    margin-bottom: var(--space-lg);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: var(--c-muted);
    text-decoration: none;
    font-size: var(--fs-sm);
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--c-primary);
}

.footer-dot {
    color: var(--c-border);
    font-size: var(--fs-sm);
}

.footer-tagline {
    font-size: var(--fs-sm);
    color: var(--c-muted);
}


/* ==========================================================
   22. FADE-UP ANIMATION (scroll reveal)
   ========================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================================
   23. RESPONSIVE — NEW COMPONENTS
   ========================================================== */

/* Tablet */
@media (max-width: 991.98px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card {
        min-width: calc(50% - var(--space-lg) / 2);
    }

    .footer-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .stat-card {
        padding: var(--space-md);
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-suffix {
        font-size: 1.2rem;
    }

    .services-showcase {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .footer-grid-4 {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    /* Mobile-first: stack 2-column grids */
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    /* Contact form: stack name/email fields */
    #contactForm .grid-2 {
        grid-template-columns: 1fr;
    }

    /* Smaller section padding on mobile */
    .section {
        padding: var(--space-2xl) 0;
    }

    /* Better touch targets on mobile */
    .btn {
        min-height: 44px;
    }

    .btn-lg {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Cyber hero mobile adjustments */
    .cyber-hero h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        line-height: 1.25;
    }
}


/* ── NEW FUTURISTIC UTILITIES ── */

/* Neon Soft Glow */
.neon-soft {
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.05);
    transition: all var(--transition-base);
}

.neon-soft:hover {
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.2);
    border-color: var(--c-primary);
}

/* Floating Card Animation */
.floating-card {
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--float-delay, 0s);
}

.showcase-card:nth-child(2) {
    --float-delay: 1.5s;
}

.showcase-card:nth-child(3) {
    --float-delay: 3s;
}

.showcase-card:nth-child(4) {
    --float-delay: 4.5s;
}

/* Reveal Item Base */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out-expo);
}

.reveal-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays */
.animate-delay-1 {
    transition-delay: 0.1s;
    animation-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
    animation-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
    animation-delay: 0.3s;
}

.animate-delay-4 {
    transition-delay: 0.4s;
    animation-delay: 0.4s;
}

/* Enhanced Hover for Work Items */
.portfolio-card {
    background: var(--c-surface);
    border: 1px solid var(--c-glass-border);
}

.portfolio-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--c-primary);
    border-radius: inherit;
    opacity: 0;
    transform: scale(1.05);
    transition: all 0.3s var(--ease-out-expo);
    pointer-events: none;
    z-index: 2;
}

.portfolio-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Glass Header for Sections */
.glass-header {
    background: var(--c-glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--c-glass-border);
    padding: var(--space-xl) 0;
}

/* Title Glow Effect */
.title-glow {
    animation: titleGlow 4s ease-in-out infinite;
}

/* Futuristic Hero with advanced glassmorphism */
.futuristic-hero {
    position: relative;
    padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-2xl);
    background: radial-gradient(circle at 50% 10%, rgba(255, 107, 53, 0.08), transparent 50%),
        linear-gradient(180deg, var(--c-bg), var(--c-surface));
    border-bottom: 1px solid var(--c-glass-border);
    overflow: hidden;
}

.futuristic-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(255, 107, 53, 0.15), transparent 70%);
    pointer-events: none;
    z-index: 0;
}