/* ==========================================================================
   DESIGN SYSTEM - AISLE SENSE ROBOTICS
   Theme: Understated Luxury Tech (Champagne, Graphite, Alabaster)
   ========================================================================== */

:root {
    /* Palette: Aisle Sense-Inspired Premium Safety Orange Light */
    --bg-deep: #f6f8fa;      /* Clean Faint Off-white/Gray */
    --bg-surface: #ffffff;   /* Pure White */
    --card-bg: #f2f4f6;      /* Cool Flat Gray Bento Card Background */
    --border-dim: rgba(255, 102, 0, 0.12); /* Safety Orange at 12% */
    
    --primary: #ff6600;      /* Vibrant Safety Orange */
    --accent: #e65100;       /* Vibrant Dark Orange for deep-tech contrast */
    --secondary: #111111;    /* Stark Charcoal Slate */
    --success: #ff6600;      /* Safety Orange */
    
    --text-main: #111111;    /* High-Contrast Bold Slate Black */
    --text-muted: #555555;   /* Readable Charcoal Slate */
    
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --container-pad: clamp(16px, 3vw, 24px);
    --section-gap: clamp(60px, 8vw, 120px);
    --card-pad: clamp(20px, 3vw, 32px);
    --card-gap: clamp(16px, 3vw, 24px);
    --nav-height: 64px;
    --nav-height-mobile: 56px;

    --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
    
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(255, 102, 0, 0.02);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --grid-color: rgba(255, 102, 0, 0.04); /* Faint perspective lines */
    --glow-color: rgba(255, 102, 0, 0.06);

    /* Component-specific variables */
    --status-pill-bg: rgba(255, 102, 0, 0.04);
    --status-pill-border: rgba(255, 102, 0, 0.15);
    --calc-results-bg: rgba(255, 102, 0, 0.02);
    --calc-results-border: rgba(255, 102, 0, 0.12);
}

:root[data-theme="dark"] {
    /* Palette: Bioluminescent Cyber Safety Orange Dark */
    --bg-deep: #040608;      /* Stark Void Black */
    --bg-surface: #090b0e;   /* Carbon Slate Black */
    --card-bg: #0d0f13;      /* Deep Charcoal Slate */
    --border-dim: rgba(255, 119, 17, 0.22); /* Glowing Cyber Safety Orange at 22% */
    
    --primary: #ff7711;      /* Glowing Safety Orange */
    --accent: #ffaa44;       /* Glowing Soft Warm Orange */
    --secondary: #ffffff;
    --success: #ff7711;
    
    --text-main: #ffffff;    /* Absolute White */
    --text-muted: #94a3b8;   /* Cool Silver Slate */
    
    --card-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 119, 17, 0.08);
    --glass-bg: rgba(9, 11, 14, 0.85);
    --grid-color: rgba(255, 119, 17, 0.05);
    --glow-color: rgba(255, 119, 17, 0.12);

    /* Component-specific variables */
    --status-pill-bg: rgba(255, 119, 17, 0.05);
    --status-pill-border: rgba(255, 119, 17, 0.18);
    --calc-results-bg: rgba(255, 119, 17, 0.02);
    --calc-results-border: rgba(255, 119, 17, 0.15);
}

/* --- BASE HTML DEFAULTS --- */
html, body {
    margin: 0; padding: 0; box-sizing: border-box;
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
}

input, select, textarea, button, option {
    font-family: inherit;
}

input::placeholder, textarea::placeholder {
    font-family: inherit;
}

*, *::before, *::after { box-sizing: border-box; }

body, .bento-card, .card-content, h1, h2, h3, p, .navbar, .btn-glass, input, .specs-list td, .currency-btn, .product-tab-btn, .nav-link, footer {
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

@media (pointer: fine) {
    html, body, *, *::before, *::after { cursor: none !important; }
    a, button, input, select, textarea, .calc-slider { cursor: none !important; }
}

/* Hide Scrollbar */
html::-webkit-scrollbar, body::-webkit-scrollbar {
    display: none !important;
    width: 0 !important; height: 0 !important;
    background: transparent !important;
}

::-webkit-scrollbar-track { background: transparent !important; }
::-webkit-scrollbar-thumb { background: transparent !important; }
html, body { scrollbar-width: none !important; -ms-overflow-style: none !important; }
html.lenis { height: auto; } 
.lenis.lenis-smooth { scroll-behavior: auto; } 

.container { 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 0 var(--container-pad); 
    width: 100%;
}

/* --- CUSTOM CURSOR --- */
.cursor-dot {
    width: 8px; height: 8px; background: var(--text-main);
    border-radius: 50%; position: fixed; top: 0; left: 0;
    transform: translate(-50%, -50%); pointer-events: none; z-index: 10000;
    opacity: 0; 
}

.cursor-circle {
    width: 32px; height: 32px; border: 1px solid var(--primary);
    border-radius: 50%; position: fixed; top: 0; left: 0;
    transform: translate(-50%, -50%); pointer-events: none; z-index: 9999;
    transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1), 
                height 0.4s cubic-bezier(0.19, 1, 0.22, 1), 
                background-color 0.4s, 
                border-color 0.4s;
    opacity: 0;
}

body.hovering .cursor-circle {
    width: 60px; height: 60px; 
    background-color: var(--glow-color); 
    border-color: transparent;
}

@media (hover: none) and (pointer: coarse) {
    .cursor-dot, .cursor-circle { display: none !important; }
    * { cursor: auto !important; }
}

@media (max-width: 1024px) {
    .cursor-dot, .cursor-circle { display: none !important; }
    * { cursor: auto !important; }
}

/* --- NOISE & BACKGROUNDS --- */
.noise {
    position: fixed; inset: 0; pointer-events: none; z-index: 999;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
}

.perspective-grid {
    position: fixed; inset: 0; z-index: -1;
    perspective: 1000px; overflow: hidden;
    pointer-events: none; opacity: 1;
}
.grid-plane {
    position: absolute; width: 200%; height: 200%; left: -50%; top: -50%;
    background-image: 
        linear-gradient(to right, var(--grid-color) 1px, transparent 1px),
        linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: rotateX(60deg) translateY(0);
    animation: grid-scroll 20s linear infinite;
    mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 60%);
}
@keyframes grid-scroll { 0% { transform: rotateX(60deg) translateY(0); } 100% { transform: rotateX(60deg) translateY(60px); } }

/* --- SKELETON LOADER --- */
#skeleton-loader {
    position: fixed; inset: 0; z-index: 10001;
    background: var(--bg-deep);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: opacity 0.5s ease;
}
.skeleton-block {
    background: rgba(28, 25, 23, 0.05);
    border-radius: 4px;
    animation: pulse-load 1.5s infinite ease-in-out;
}
:root[data-theme="dark"] .skeleton-block {
    background: rgba(255, 255, 255, 0.05);
}
.sk-nav { position: absolute; top: 24px; left: 24px; width: 150px; height: 30px; }
.sk-pill { width: 180px; height: 32px; border-radius: 100px; margin-bottom: 40px; }
.sk-h1 { width: 60vw; max-width: 600px; height: 100px; margin-bottom: 20px; }
.sk-h1-2 { width: 40vw; max-width: 400px; height: 100px; margin-bottom: 56px; }
.sk-p { width: 300px; height: 20px; margin-bottom: 10px; }
@keyframes pulse-load { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.7; } }

/* --- GLASS BUTTONS --- */
.btn-glass {
    background: rgba(28, 25, 23, 0.04); backdrop-filter: blur(10px);
    border: 1px solid var(--border-dim); color: var(--text-main);
    padding: 10px 24px; border-radius: 100px;
    font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none; transition: 0.3s var(--ease-out);
    overflow: hidden; position: relative;
    white-space: nowrap;
    box-shadow: var(--card-shadow);
    z-index: 1;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}
:root[data-theme="dark"] .btn-glass {
    background: rgba(255, 255, 255, 0.04);
}
.btn-glass::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: translateX(-100%); transition: 0.5s;
}
.btn-glass:hover { background: rgba(28, 25, 23, 0.08); transform: scale(1.02); }
:root[data-theme="dark"] .btn-glass:hover { background: rgba(255, 255, 255, 0.08); }
.btn-glass:hover::before { transform: translateX(100%); }

/* --- HEADER / NAVBAR --- */
.navbar {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
    width: calc(100% - 48px); max-width: 1200px; z-index: 1000;
    min-height: var(--nav-height);
    padding: 8px 24px; display: flex; justify-content: space-between; align-items: center;
    background: var(--glass-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-dim); border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}
.logo {
    font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; 
    letter-spacing: -0.03em; color: var(--text-main); text-decoration: none; 
    display: flex; align-items: center; gap: 6px;
    text-transform: lowercase;
}
.logo svg { color: var(--primary); }

.nav-links {
    display: flex; gap: 24px; align-items: center;
}
@media (min-width: 1025px) {
    .nav-links {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}
.nav-link {
    font-family: var(--font-display); font-size: 0.8rem; font-weight: 600;
    color: var(--text-muted); text-decoration: none; position: relative;
    padding: 6px 0; letter-spacing: 0.5px; text-transform: uppercase;
    display: inline-flex; align-items: center;
}
.nav-link:hover { color: var(--text-main); }
.nav-link.active {
    color: var(--text-main); font-weight: 700;
}
.nav-link.active::after {
    content: ""; position: absolute; bottom: 0px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px; background-color: var(--primary); border-radius: 50%;
}

@media (max-width: 1024px) {
    .nav-link.active::after {
        left: -12px;
        bottom: 50%;
        transform: translateY(50%);
    }
}

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

.nav-mobile-actions {
    display: none;
    width: 100%;
    gap: 16px;
    flex-direction: column;
    padding-top: 16px;
    margin-top: 12px;
    border-top: 1px solid var(--border-dim);
}

.nav-mobile-actions .theme-switch-container {
    width: 100%;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 14px;
    background: var(--bg-deep);
}

.nav-mobile-actions .theme-toggle-slider {
    width: 44px;
    height: 22px;
}

.nav-mobile-actions .theme-toggle-thumb {
    width: 14px;
    height: 14px;
    top: 4px;
    left: 4px;
}

:root[data-theme="dark"] .nav-mobile-actions .theme-toggle-thumb {
    transform: translateX(22px);
}

.nav-toggle {
    display: none;
    width: 40px; height: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-dim);
    background: var(--glass-bg);
    color: var(--text-main);
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 4px;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1300;
}
.nav-toggle span {
    display: block;
    width: 18px; height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle span:nth-child(2) { width: 14px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1024px) {
    .nav-links { gap: 16px; }
    .navbar { padding: 8px 16px; }
    .nav-link { font-size: 0.72rem; }
}

@media (max-width: 1024px) {
    .navbar {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: none;
        min-height: var(--nav-height-mobile);
        border-radius: 0;
        padding: 10px var(--container-pad);
    }
    .nav-toggle { display: inline-flex; }
    .nav-actions .theme-switch-container,
    .nav-actions .btn-nav-cta {
        display: none;
    }
    .nav-links {
        position: fixed;
        inset: 0;
        height: 100dvh;
        min-height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        background: var(--bg-surface);
        border: none;
        border-radius: 0;
        padding: calc(var(--nav-height-mobile) + 32px + env(safe-area-inset-top)) var(--container-pad) 24px;
        gap: 12px;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        overflow-y: auto;
        z-index: 1200;
    }
    body.nav-open .nav-links {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    body.nav-open { overflow: hidden; }
    .nav-link { min-height: 44px; padding: 10px 0; }
    .nav-item-dropdown { display: block; width: 100%; }
    .nav-item-dropdown .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 10px 0;
        color: var(--text-main);
    }
    .nav-dropdown-caret {
        width: 24px;
        height: 24px;
        align-items: center;
        justify-content: center;
    }
    .nav-dropdown-caret { display: inline-flex; }
    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        padding: 0 0 0 12px;
        border: none;
        background: transparent;
        box-shadow: none;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, padding 0.3s ease;
    }
    .nav-item-dropdown.is-open .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 6px 0 0 12px;
    }
    .nav-item-dropdown.is-open .nav-dropdown-caret {
        transform: rotate(180deg);
        color: var(--primary);
    }
    .dropdown-link { padding: 6px 0; transform: none; }
    .dropdown-link:hover { transform: none; }
    .nav-mobile-actions { display: flex; }
}

@media (max-width: 1024px) {
    .nav-links .nav-item-dropdown .nav-dropdown-menu {
        position: static !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 0 0 0 12px !important;
    }
}

@media (max-width: 420px) {
    .navbar { padding: 10px 14px; }
}

/* Centered Menu & Capsule Dropdowns */
.nav-item-dropdown {
    position: relative;
    display: inline-block;
}
.nav-dropdown-caret {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 10px;
    margin-left: 4px;
    opacity: 0.7;
    transition: transform 0.3s ease;
}
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 260px;
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-dim);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1100;
}
.dropdown-link {
    display: flex;
    flex-direction: column;
    padding: 10px 14px;
    color: var(--text-main);
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    text-align: left;
}
.dropdown-link:hover {
    background: rgba(255, 102, 0, 0.05); /* Safety Orange hover */
    transform: translateX(2px);
}
:root[data-theme="dark"] .dropdown-link:hover {
    background: rgba(255, 119, 17, 0.08);
}
.dropdown-title {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-transform: none;
    color: var(--text-main);
}
.dropdown-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
    text-transform: none;
    font-weight: 400;
    line-height: 1.35;
}

@media (min-width: 1025px) and (hover: hover) {
    .nav-item-dropdown:hover .nav-dropdown-caret {
        transform: rotate(180deg);
        color: var(--primary);
    }
    .nav-item-dropdown:hover .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #111111; color: #ffffff; border: none;
    padding: 10px 24px; border-radius: 100px;
    font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
    text-decoration: none; transition: background-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
    letter-spacing: 0.5px; box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    z-index: 1; overflow: hidden; -webkit-mask-image: -webkit-radial-gradient(white, black);
}
:root[data-theme="dark"] .btn-nav-cta {
    background: #ffffff; color: #111111;
}
.btn-nav-cta:hover {
    background: #222222; color: #ffffff;
    transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
:root[data-theme="dark"] .btn-nav-cta:hover {
    background: #e2e8f0; color: #111111;
    transform: translateY(-1px); box-shadow: 0 6px 16px rgba(255, 255, 255, 0.1);
}

/* Theme switch capsule */
.theme-switch-container {
    display: flex; align-items: center; gap: 6px;
    background: rgba(28, 25, 23, 0.03); border: 1px solid var(--border-dim);
    padding: 3px 6px; border-radius: 100px;
}
:root[data-theme="dark"] .theme-switch-container {
    background: rgba(255, 255, 255, 0.03);
}
.theme-toggle-slider {
    width: 36px; height: 18px; background: rgba(28, 25, 23, 0.10);
    border-radius: 100px; border: none; position: relative;
    cursor: pointer; outline: none; padding: 0;
}
:root[data-theme="dark"] .theme-toggle-slider {
    background: rgba(255, 255, 255, 0.15);
}
.theme-toggle-thumb {
    width: 12px; height: 12px; background: var(--text-main);
    border-radius: 50%; position: absolute; top: 3px; left: 3px;
    transition: transform 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2);
}
:root[data-theme="dark"] .theme-toggle-thumb {
    transform: translateX(18px); background: var(--primary);
}
.theme-icon {
    display: flex; align-items: center; color: var(--text-muted);
    opacity: 0.5; transition: opacity 0.3s, color 0.3s;
}
:root:not([data-theme="dark"]) .sun-icon { color: #b45309; opacity: 1; }
:root[data-theme="dark"] .moon-icon { color: var(--primary); opacity: 1; }

/* --- HERO SECTION --- */
.hero {
    min-height: clamp(520px, 85vh, 820px);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; position: relative; padding-top: clamp(110px, 18vw, 140px); padding-bottom: clamp(40px, 8vw, 60px);
}

.status-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; border-radius: 100px;
    background: var(--status-pill-bg); border: 1px solid var(--status-pill-border);
    font-family: var(--font-display); font-size: 0.7rem; color: var(--primary);
    font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
    margin-bottom: 32px;
}
.status-blink {
    width: 6px; height: 6px; background: var(--primary); border-radius: 50%;
    box-shadow: 0 0 10px var(--primary); animation: pulse 2s infinite;
}

h1 {
    font-family: var(--font-display); font-weight: 700; line-height: 1.0;
    font-size: clamp(2.5rem, 7.5vw, 6rem);
    letter-spacing: -0.03em; margin-bottom: 24px; padding: 0 10px;
}
h2 {
    font-family: var(--font-display); font-weight: 700; line-height: 1.15;
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: -0.02em; margin-bottom: 24px; color: var(--text-main);
}
.subtitle {
    font-family: var(--font-display); font-size: clamp(0.95rem, 1.8vw, 1.15rem); color: var(--text-muted); 
    max-width: 650px; line-height: 1.6; margin-bottom: 40px; font-weight: 500;
}

.gradient-text {
    background: linear-gradient(135deg, var(--text-main) 30%, var(--text-muted) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.gradient-accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero p, .page-header-p {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem); color: var(--text-muted); 
    max-width: 620px; line-height: 1.6; margin-bottom: 48px; padding: 0 20px;
}

/* --- FORMS & INPUTS --- */
.form-wrapper { width: 100%; max-width: 480px; position: relative; padding: 0 20px; }
.input-container {
    position: relative; display: flex; padding: 6px;
    background: var(--bg-surface);
    border: 1px solid var(--border-dim); border-radius: 16px;
    transition: 0.3s; flex-direction: row;
    box-shadow: var(--card-shadow);
}
.input-container:focus-within { border-color: var(--primary); box-shadow: 0 0 30px var(--glow-color); }
input {
    flex: 1; background: transparent; border: none; padding: 14px 18px;
    color: var(--text-main); font-family: var(--font-body); font-size: 0.95rem; outline: none; min-width: 0;
}
input::placeholder { color: var(--text-muted); opacity: 0.6; }

.submit-btn {
    background: var(--text-main); color: var(--bg-deep); border: none; padding: 0 28px;
    border-radius: 12px; font-weight: 600;
    transition: 0.3s; font-family: var(--font-display);
    z-index: 1; overflow: hidden; -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.submit-btn:hover { background: var(--primary); color: #ffffff; box-shadow: 0 0 20px var(--glow-color); }

#feedback {
    margin-top: 16px; font-family: var(--font-mono); font-size: 0.75rem;
    opacity: 0; transform: translateY(10px); transition: 0.3s;
}

/* --- BENTO GRID SYSTEM --- */
.grid-system {
    display: grid; grid-template-columns: 1fr;
    gap: var(--card-gap); margin-bottom: var(--section-gap);
}
@media(min-width: 768px) and (max-width: 1023px) {
    .grid-system { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
    .span-2, .span-3 { grid-column: span 1; }
}
@media(min-width: 1024px) {
    .grid-system { grid-template-columns: repeat(3, 1fr); }
    .span-2 { grid-column: span 2; }
    .span-3 { grid-column: span 3; }
}

.bento-card {
    background: var(--card-bg); border-radius: 20px; position: relative;
    padding: 1px; overflow: hidden; display: flex; flex-direction: column;
    border: 1px solid var(--border-dim); box-shadow: var(--card-shadow);
    transition: transform 0.4s ease, border-color 0.4s ease;
}
.bento-card::before {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y), var(--glow-color), transparent 45%);
    opacity: 0; transition: opacity 0.5s; pointer-events: none;
}
@media (hover: hover) {
    .grid-system:hover .bento-card::before { opacity: 1; }
    .bento-card:hover { transform: translateY(-4px); border-color: var(--primary); }
}

.card-content {
    background: var(--bg-surface); border-radius: 19px; padding: var(--card-pad); height: 100%;
    position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: space-between;
}

.card-text {
    position: relative;
    z-index: 2;
}

.card-text.pad-right {
    padding-right: clamp(0px, 8vw, 90px);
}

.card-split {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.bento-graphic {
    position: absolute;
    right: 16px;
    bottom: 12px;
    width: 120px;
    height: auto;
    opacity: 0.28;
    z-index: 1;
    pointer-events: none;
}

.bento-graphic-lg {
    width: 160px;
}

.card-tall {
    min-height: 280px;
}

.card-xl {
    min-height: 320px;
}

.icon-box {
    width: 48px; height: 48px; border: 1px solid var(--border-dim); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
    color: var(--text-main); background: rgba(28, 25, 23, 0.02); transition: 0.3s;
}
:root[data-theme="dark"] .icon-box { background: rgba(255, 255, 255, 0.02); }
.bento-card:hover .icon-box { border-color: var(--primary); color: var(--primary); box-shadow: 0 0 15px var(--glow-color); }

h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--text-main); margin-bottom: 12px; font-weight: 600; }
p.card-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin: 0; }

.specs-list { width: 100%; font-family: var(--font-body); font-size: 0.8rem; margin-top: 20px; border-collapse: collapse; }
.specs-list td { padding: 12px 16px; border-bottom: 1px solid var(--border-dim); }
.specs-list tr:last-child td { border-bottom: none; }
.specs-list .label { color: var(--text-muted); font-weight: 500; }
.specs-list .val { color: var(--primary); text-align: right; font-family: var(--font-display); font-weight: 600; }

/* Metric stats */
.metric-big-num {
    font-size: 3.5rem; font-weight: 700; color: var(--primary); font-family: var(--font-display);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.metric-label {
    font-size: 0.75rem; color: var(--text-muted); letter-spacing: 2px; font-weight: 600; margin-top: 8px;
}

/* Ping animation */
.ping-container {
    position: relative; width: 100%; display: flex; align-items: center; justify-content: center; height: 60px;
}
.ping-dot {
    width: 8px; height: 8px; background: var(--success); border-radius: 50%;
    box-shadow: 0 0 10px var(--success);
}
.ping-ring {
    position: absolute; width: 8px; height: 8px; border: 1px solid var(--success);
    border-radius: 50%; animation: pulse-ring 2s infinite;
}
.ping-ring:nth-child(2) { animation-delay: 0.5s; }
@keyframes pulse-ring { 
    0% { transform: scale(1); opacity: 1; } 
    100% { transform: scale(6); opacity: 0; } 
}

/* --- SOLUTIONS TABS --- */
.product-tab-container {
    display: flex; justify-content: flex-start; margin: 32px 0 40px;
}
.product-tabs {
    display: flex; background: rgba(28, 25, 23, 0.03); border: 1px solid var(--border-dim);
    padding: 4px; border-radius: 100px; position: relative; box-shadow: var(--card-shadow);
}
:root[data-theme="dark"] .product-tabs { background: rgba(255, 255, 255, 0.03); }
.product-tab-btn {
    font-family: var(--font-display); font-size: 0.9rem; font-weight: 500;
    color: var(--text-muted); background: transparent; border: none;
    padding: 10px 24px; border-radius: 100px; cursor: pointer; z-index: 2;
    transition: color 0.3s; white-space: nowrap;
}
.product-tab-btn.active { color: var(--text-main); }
.tab-slider-pill {
    position: absolute; top: 4px; left: 4px; height: calc(100% - 8px);
    background: var(--bg-surface); border: 1px solid var(--border-dim);
    border-radius: 100px; z-index: 1;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* --- ROI CALCULATOR ELEMENTS --- */
.calculator-container { display: flex; flex-direction: column; width: 100%; }
.calculator-header { width: 100%; }
.calculator-controls {
    display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 30px;
}
@media(min-width: 768px) { .calculator-controls { grid-template-columns: 1fr 1fr; } }
.currency-selector {
    display: inline-flex; background: rgba(28, 25, 23, 0.03); border: 1px solid var(--border-dim);
    padding: 3px; border-radius: 8px; align-self: flex-start;
}
:root[data-theme="dark"] .currency-selector { background: rgba(255, 255, 255, 0.03); }
.currency-btn {
    font-family: var(--font-display); font-size: 0.75rem; color: var(--text-muted);
    background: transparent; border: none; padding: 6px 14px; border-radius: 6px;
    cursor: pointer; font-weight: 700;
}
.currency-btn.active {
    background: var(--bg-surface); color: var(--text-main);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05); border: 1px solid var(--border-dim);
}
.slider-group { display: flex; flex-direction: column; gap: 8px; }
.slider-header { display: flex; justify-content: space-between; align-items: center; }
.slider-label { font-size: 0.8rem; font-weight: 500; color: var(--text-muted); }
.slider-val-display { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--primary); }
.calc-slider {
    -webkit-appearance: none; appearance: none; width: 100%; height: 44px;
    background: transparent; outline: none; transition: background 0.3s;
}
.calc-slider::-webkit-slider-runnable-track {
    height: 6px;
    background: var(--border-dim);
    border-radius: 100px;
}
.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none; width: 24px; height: 24px;
    border-radius: 50%; background: var(--text-main); cursor: pointer;
    transition: transform 0.1s, background 0.3s; border: 2px solid var(--bg-surface);
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
    margin-top: -9px;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); background: var(--primary); }
.calc-slider::-moz-range-track {
    height: 6px;
    background: var(--border-dim);
    border-radius: 100px;
}
.calc-slider::-moz-range-thumb {
    width: 24px; height: 24px; border-radius: 50%; background: var(--text-main);
    cursor: pointer; transition: transform 0.1s, background 0.3s; border: 2px solid var(--bg-surface);
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.calc-slider::-moz-range-thumb:hover { transform: scale(1.15); background: var(--primary); }

.calculator-results {
    display: grid; grid-template-columns: 1fr; gap: 16px;
    background: var(--calc-results-bg); border: 1px dashed var(--calc-results-border);
    padding: 24px; border-radius: 16px;
}
@media(min-width: 768px) { .calculator-results { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 1024px) { .calculator-results { grid-template-columns: repeat(3, 1fr); } }
.result-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 12px; }
.result-label { font-size: 0.65rem; font-family: var(--font-display); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.result-val { font-size: 1.8rem; font-weight: 700; font-family: var(--font-display); color: var(--text-main); }
.result-val.highlight { color: var(--success); }
.result-subtext { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; line-height: 1.4; }

/* --- PAGES HEADERS --- */
.page-header {
    padding: clamp(110px, 16vw, 140px) 0 40px;
}

/* --- ABOUT & MISSION --- */
.about-section {
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-deep) 100%);
    border: 1px solid var(--border-dim); border-radius: 24px; padding: clamp(24px, 5vw, 48px);
    position: relative; overflow: hidden; margin-bottom: var(--section-gap); box-shadow: var(--card-shadow);
}
.about-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media(min-width: 900px) { .about-grid { grid-template-columns: 1fr 1.2fr; } }
.about-badge-list { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.about-badge {
    font-family: var(--font-body); font-size: 0.75rem; border: 1px solid var(--border-dim);
    padding: 6px 14px; border-radius: 8px; color: var(--text-main); background: var(--bg-deep);
    display: flex; align-items: center; gap: 6px; font-weight: 600;
}
.about-badge svg { color: var(--primary); }

/* --- CTA PLATFORMS --- */
.cta-box {
    background: linear-gradient(180deg, var(--bg-surface) 0%, rgba(28, 25, 23, 0.01) 100%);
    border: 1px solid var(--border-dim); border-radius: 24px; padding: clamp(40px, 6vw, 60px) var(--container-pad);
    text-align: center; position: relative; overflow: hidden; margin-bottom: var(--section-gap);
    box-shadow: var(--card-shadow);
}
:root[data-theme="dark"] .cta-box {
    background: linear-gradient(180deg, var(--bg-surface) 0%, #000 100%);
}
.cta-flare {
    position: absolute; top: -150px; left: 50%; transform: translateX(-50%);
    width: 500px; height: 500px; background: var(--primary); filter: blur(150px); opacity: 0.05;
    pointer-events: none;
}
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--text-main); color: var(--bg-deep); padding: 14px 32px; border-radius: 50px;
    text-decoration: none; font-weight: 700; margin-top: 24px; transition: 0.3s;
    position: relative; z-index: 10;
    box-shadow: 0 10px 20px -10px rgba(28, 25, 23, 0.2);
    overflow: hidden; -webkit-mask-image: -webkit-radial-gradient(white, black);
}
:root[data-theme="dark"] .btn-primary {
    box-shadow: 0 10px 20px -10px rgba(0,0,0,0.5);
}
.btn-primary:hover { transform: scale(1.03); background: var(--primary); color: #ffffff; box-shadow: 0 15px 30px -10px var(--glow-color); }

.btn-glass,
.btn-primary,
.btn-nav-cta,
.btn-submit-large,
.submit-btn,
.currency-btn,
.product-tab-btn {
    z-index: 1;
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    min-height: 44px;
}

/* --- CORRESPONDING FOOTERS --- */
footer.main-footer {
    border-top: 1px solid var(--border-dim);
    background: var(--bg-surface);
    padding: clamp(40px, 6vw, 60px) var(--container-pad);
    color: var(--text-muted);
}
.footer-grid {
    display: grid; grid-template-columns: 1fr; gap: clamp(24px, 4vw, 40px); margin-bottom: 40px;
}
@media(min-width: 768px) {
    .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); }
}
.footer-logo-area {
    display: flex; flex-direction: column; gap: 16px;
}
.footer-p { font-size: 0.9rem; line-height: 1.6; max-width: 280px; margin: 0; }
.footer-links-col {
    display: flex; flex-direction: column; gap: 16px;
}
.footer-h4 {
    font-family: var(--font-display); font-size: 0.95rem; font-weight: 600;
    color: var(--text-main); margin: 0;
}
.footer-ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-li a {
    color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.3s;
}
.footer-li a:hover { color: var(--text-main); }
.footer-bottom {
    border-top: 1px solid var(--border-dim);
    padding-top: 30px; display: flex; flex-direction: column; gap: 16px;
    justify-content: space-between; align-items: center; font-family: var(--font-body); font-size: 0.75rem;
}
@media(min-width: 768px) {
    .footer-bottom { flex-direction: row; }
}

.reveal-y { opacity: 0; transform: translateY(30px); }

/* ==========================================================================
   MOBILE MEDIA OVERRIDES
   ========================================================================== */
@media (max-width: 768px) {
    .navbar { padding: 10px 14px; }
    .logo { font-size: 1.05rem; }
    .coordinate-badge { display: none; }
    .nav-link { font-size: 0.8rem; }
    .btn-glass { padding: 8px 16px; font-size: 0.7rem; }

    .hero { padding-top: clamp(100px, 18vw, 120px); min-height: auto; }
    h1 { font-size: 11vw !important; }
    .hero p { padding: 0; }
    
    .input-container { flex-direction: column; gap: 10px; padding: 8px; }
    .submit-btn { width: 100%; padding: 12px 0; }

    .product-tab-container { margin: 24px 0; }
    .product-tab-btn { padding: 8px 16px; font-size: 0.8rem; }

    .grid-system { grid-template-columns: 1fr; }
    .bento-card { width: 100%; min-height: auto; }
    .card-content { padding: clamp(18px, 4vw, 24px); }
    
    h3 { font-size: 1.15rem; }
    .specs-list { font-size: 0.75rem; }
    .accordion-summary { flex-direction: column; align-items: flex-start; gap: 12px; }
    .accordion-summary-left { gap: 16px; }
    .accordion-title { font-size: 1.2rem; }
    .calculator-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 1024px) {
    .card-split { flex-direction: column; align-items: flex-start; }
    .card-text.pad-right { padding-right: 0; }
    .bento-graphic {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 16px;
        align-self: flex-end;
        width: 96px;
        opacity: 0.2;
    }
    .bento-graphic-lg { width: 120px; }
    .grid-overlay-map {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 12px;
        align-self: flex-end;
        width: 90px;
        height: 90px;
        opacity: 0.18;
    }
}

@media (max-width: 600px) {
    .card-content { min-height: auto !important; }
}

@media (max-width: 420px) {
    .word-pill { padding: 2px 12px; white-space: normal; flex-wrap: wrap; }
    h1 { line-height: 1.12; }
}

/* --- TECHNOLOGY TAGS --- */
.tech-tag {
    font-family: var(--font-display); font-size: 0.8rem; color: var(--primary);
    display: inline-block; margin-bottom: 16px;
    letter-spacing: 0.08em; font-weight: 700; text-transform: uppercase;
}


/* --- SEVENLOOP STYLING UTILITIES --- */

/* Outlined Word Pill heading accent */
.word-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--primary);
    padding: 0 24px;
    border-radius: 100px;
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.1;
    position: relative;
    white-space: nowrap;
    flex-wrap: nowrap;
    text-transform: none;
}
.word-pill svg {
    color: var(--primary);
    width: 24px;
    height: 24px;
    margin-left: 6px;
    transition: transform 0.3s ease;
}
.word-pill:hover svg {
    transform: translateX(4px);
}

/* Solid Violet Bento Card with nested premium squircles */
.brand-glow-card {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%) !important;
    color: #ffffff !important;
    position: relative;
    overflow: hidden;
    border: none !important;
}
.brand-glow-card .card-content {
    background: transparent !important;
    color: #ffffff !important;
    justify-content: space-between;
    min-height: 280px;
}
.brand-glow-card h3 {
    color: #ffffff !important;
    font-size: 2.2rem;
    line-height: 1.15;
    font-weight: 700;
    max-width: 90%;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.brand-glow-card .card-desc {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 0.95rem !important;
}
.brand-glow-card .tech-tag {
    color: rgba(255, 255, 255, 0.9) !important;
}
.brand-glow-card .icon-box {
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
}
.brand-glow-card::after {
    content: '';
    position: absolute;
    right: -10%;
    top: -20%;
    width: 320px;
    height: 320px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
    z-index: 1;
    transform: rotate(15deg);
}
.brand-glow-card::before {
    content: '';
    position: absolute;
    right: -25%;
    top: -40%;
    width: 440px;
    height: 440px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    z-index: 1;
    transform: rotate(30deg);
}
.brand-glow-card .wave-circle-3 {
    position: absolute;
    right: -40%;
    top: -60%;
    width: 560px;
    height: 560px;
    border-radius: 80px;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: 1;
    transform: rotate(45deg);
}

/* Details Accordion Styles */
.accordion-group {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-dim);
    margin: 40px 0;
}

details[name="platform-accordion"] {
    border-bottom: 1px solid var(--border-dim);
    transition: background-color 0.3s ease;
}

details[name="platform-accordion"]:hover {
    background: rgba(255, 102, 0, 0.01);
}

.accordion-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0;
    cursor: pointer;
    list-style: none;
    outline: none;
    user-select: none;
}

.accordion-summary::-webkit-details-marker {
    display: none !important;
}

.accordion-summary-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.accordion-index {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}

.accordion-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.accordion-icon-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    opacity: 0.6;
    transition: color 0.3s, opacity 0.3s;
}

details[name="platform-accordion"][open] .accordion-icon-preview {
    color: var(--primary);
    opacity: 1;
}

.accordion-arrow-circle {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: transform 0.4s cubic-bezier(0.2, 0.85, 0.32, 1.2), border-color 0.3s;
}

details[name="platform-accordion"][open] .accordion-arrow-circle {
    transform: rotate(180deg);
    border-color: var(--primary);
    color: var(--primary);
}

.accordion-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 0 40px 0;
    overflow: hidden;
    animation: sweep 0.4s var(--ease-out) forwards;
}

@media(min-width: 768px) {
    .accordion-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media(min-width: 1024px) {
    .accordion-content {
        grid-template-columns: 1.2fr 1.2fr 1fr;
    }
}

@keyframes sweep {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.accordion-desc-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.accordion-link-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: gap 0.3s ease;
}
.accordion-link-more:hover {
    gap: 12px;
}

.accordion-vector-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--bg-surface);
    border-radius: 16px;
    border: 1px solid var(--border-dim);
    box-shadow: var(--card-shadow);
}

.accordion-specs-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-spec-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-dim);
    font-family: var(--font-body);
    font-size: 0.85rem;
}

.accordion-spec-item:last-child {
    border-bottom: none;
}

.accordion-spec-label {
    color: var(--text-muted);
    font-weight: 500;
}

.accordion-spec-val {
    color: var(--text-main);
    font-weight: 600;
}

/* Custom Outlined SVGs and bento tweaks */
.card-content svg.outline-vector {
    stroke: var(--text-muted);
    stroke-width: 1.25;
    fill: none;
    transition: stroke 0.3s, transform 0.3s;
}
.bento-card:hover svg.outline-vector {
    stroke: var(--primary);
}
.highlight-accent {
    fill: var(--primary) !important;
    stroke: var(--primary) !important;
}
.stroke-accent {
    stroke: var(--primary) !important;
}
.grid-overlay-map {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 120px;
    height: 120px;
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.bento-card:hover .grid-overlay-map {
    opacity: 0.25;
    transform: scale(1.02);
}
.flat-grey-bento {
    background: var(--card-bg) !important;
    border-radius: 20px !important;
}
.flat-grey-bento .card-content {
    background: transparent !important;
}

/* Hero Sweep Background for index.html */
.hero-sweep {
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 40vw;
    background: radial-gradient(50% 50% at 50% 100%, rgba(255, 102, 0, 0.08) 0%, rgba(255, 102, 0, 0) 100%);
    pointer-events: none;
    z-index: -1;
    filter: blur(40px);
}
:root[data-theme="dark"] .hero-sweep {
    background: radial-gradient(50% 50% at 50% 100%, rgba(255, 119, 17, 0.12) 0%, rgba(255, 119, 17, 0) 100%);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .cursor-dot, .cursor-circle { display: none !important; }
}
