/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --bg-dark: #020205;
    /* Deep, sleek black from the bottom of the home page */
    --bg-card: rgba(8, 8, 12, 0.85);
    --accent-purple: #6366f1;
    --accent-blue: #3b82f6;
    --accent-glow: rgba(99, 102, 241, 0.25);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --grad-primary: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
    --grad-surface: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow: hidden;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    /* Deep black base */
    background-image: url('main-bg.png');
    background-size: cover !important;
    background-position: center bottom;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
}

/* Atmospheric Noise Layer - Applied to Body to ensure site-wide depth */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.05;
    pointer-events: none;
    z-index: 10000;
}

/* Floating Elements Container */
.light-orb {
    position: fixed;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.12;
    z-index: -1;
    pointer-events: none;
    animation: floatOrb 25s infinite alternate ease-in-out;
}

.orb-1 {
    background: #6366f1;
    top: -30%;
    left: -10%;
}

.orb-2 {
    background: #3b82f6;
    bottom: -30%;
    right: -10%;
    animation-delay: -7s;
}

@keyframes floatOrb {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(50px, 30px) scale(1.05);
        /* Reduced drift to prevent overflow */
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    letter-spacing: -0.04em;
}

/* --- Container & Utilities --- */
.container {
    max-width: 1400px;
    /* Wider container for better balance */
    margin: 0 auto;
    padding: 0 60px;
    /* Increased breathing room */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Reusable Glass with 3D Depth */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    border: 1px solid var(--glass-border);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.8),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s ease;
}

.glass:hover {
    transform: translateZ(20px) rotateX(1deg) rotateY(-0.5deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9), 0 0 20px rgba(99, 102, 241, 0.1);
}

/* --- Reveal System --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}


/* Premium Button with Elevation */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 14px;
    gap: 12px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    /* Glossy Primary - based on btn-glass-primary */
    background: linear-gradient(135deg, rgba(68, 100, 255, 0.15) 0%, rgba(68, 100, 255, 0.05) 100%);
    border: 1px solid rgba(100, 130, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 4px 24px -1px rgba(68, 100, 255, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgba(68, 100, 255, 0.25) 0%, rgba(68, 100, 255, 0.1) 100%);
    border-color: rgba(100, 130, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(68, 100, 255, 0.3);
}

.btn-white {
    /* Glossy Secondary - based on btn-glass-secondary */
    background: rgba(255, 255, 255, 0.02);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-pill {
    border-radius: 50px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.section-title {
    font-size: 4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.highlight {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* --- Navigation --- */
.navbar {
    height: 90px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
    /* Boosted to stay above ALL atmospheric layers and content */
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(2, 2, 5, 0.95) !important;
    /* High density for scroll visibility */
    backdrop-filter: blur(30px) !important;
    -webkit-backdrop-filter: blur(30px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    height: 80px !important;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6) !important;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
}

.nav-logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-links {
    display: flex;
    gap: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    z-index: 1;
}

/* Remove old underline */
.nav-links a::after {
    display: none;
}

/* Fluid Hover Pill */
.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

/* Dashboard Panel Luxury Refinement */
.dashboard-panel {
    background: rgba(13, 13, 20, 0.8) !important;
    border: 1px solid var(--glass-border) !important;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.6),
        inset 0 1px 1px rgba(255, 255, 255, 0.05) !important;
    position: relative;
    overflow: hidden;
}

.dashboard-panel::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

.dash-stat {
    padding: 20px;
    background: rgba(255, 255, 255, 0.01);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.fill-green {
    background: linear-gradient(90deg, #10b981, #34d399) !important;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.4) !important;
}

.fill-red {
    background: linear-gradient(90deg, #ef4444, #f87171) !important;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Centering fix */
    overflow: hidden;
    background: transparent;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centering fix for inline-flex children like pills */
}

.hero-bg-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
    background: transparent;
    /* Ensure dark background backing */
    perspective: 1000px;
    /* Essential for 3D depth */
}

/* Common Depth Panel Styles */
.depth-panel {
    position: absolute;
    top: 50%;
    width: 65vw;
    /* Wider panels */
    height: 1100px;
    /* Taller */
    background:
        radial-gradient(circle at center, rgba(48, 79, 254, 0.15) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 8px 8px, 100% 8px;
    /* Dot pattern + subtle lines */
    transform-style: preserve-3d;
    opacity: 0.6;
    mix-blend-mode: color-dodge;
}

/* Left Panel - Triangular Wedge */
.panel-left {
    left: 0;
    transform: translateY(-50%) rotateY(25deg) scaleX(1.8);
    transform-origin: left center;
    clip-path: polygon(0 0, 100% 45%, 100% 55%, 0 100%);
    /* Triangle pointing right */
    background-image:
        radial-gradient(rgba(48, 79, 254, 0.4) 1px, transparent 1px);
    background-size: 12px 12px;
    mask-image: linear-gradient(to right, black 20%, transparent 100%);
}

/* Right Panel - Triangular Wedge */
.panel-right {
    right: 0;
    transform: translateY(-50%) rotateY(-25deg) scaleX(1.8);
    transform-origin: right center;
    clip-path: polygon(100% 0, 0 45%, 0 55%, 100% 100%);
    /* Triangle pointing left */
    background-image:
        radial-gradient(rgba(48, 79, 254, 0.4) 1px, transparent 1px);
    background-size: 12px 12px;
    mask-image: linear-gradient(to left, black 20%, transparent 100%);
}

.light-beam {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: 2;
    /* On top of panels */
}

/* Creating the X spotlight effect overlays */
.light-beam.left {
    top: -30%;
    left: -10%;
    background: radial-gradient(ellipse at center, rgba(48, 79, 254, 0.5) 0%, transparent 60%);
    transform: rotate(-25deg);
    filter: blur(80px);
    opacity: 0.7;
}

.light-beam.right {
    top: -30%;
    right: -10%;
    background: radial-gradient(ellipse at center, rgba(48, 79, 254, 0.5) 0%, transparent 60%);
    transform: rotate(25deg);
    filter: blur(80px);
    opacity: 0.7;
}

/* Floating Particles Texture */
.hero-bg-lights::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
        radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 60px 60px, 120px 120px;
    background-position: 0 0, 30px 30px;
    opacity: 0.3;
    animation: particleDrift 20s linear infinite;
    z-index: 1;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

@keyframes particleDrift {
    0% {
        background-position: 0 0, 30px 30px;
    }

    100% {
        background-position: 0 100px, 30px 130px;
    }
}

/* Center Brand - Logo Style */
.hero-brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
    padding: 12px 36px;
    background: rgba(255, 255, 255, 0.08);
    /* Dark glass */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    /* Pill shape */
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(48, 79, 254, 0.15);
    /* Soft blue glow */
    transition: all 0.3s ease;
    cursor: default;
}

/* ... hover remains same ... */

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 3.5rem;
}

/* Hero Typography */
.hero-title {
    font-size: 5.5rem;
    /* Reduced size */
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;

    /* Premium Darker Blue Gradient */
    background: linear-gradient(135deg,
            #ffffff 0%,
            #82b1ff 25%,
            #2962ff 50%,
            #82b1ff 75%,
            #ffffff 100%);
    background-size: 200% auto;
    animation: textShimmer 8s linear infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    /* Fallback */

    filter: drop-shadow(0 0 40px rgba(48, 79, 254, 0.4));
    /* Stronger Deep Blue Glow */
}

@keyframes textShimmer {
    to {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 3.5rem;
    font-weight: 400;
}

/* Button Variants */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

/* Glass Button Base */
.btn-glass {
    border-radius: 12px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Primary Glass Button (Get Started) */
.btn-glass-primary {
    background: linear-gradient(135deg, rgba(68, 100, 255, 0.15) 0%, rgba(68, 100, 255, 0.05) 100%);
    border: 1px solid rgba(100, 130, 255, 0.3);
}

.btn-glass-primary:hover {
    background: linear-gradient(135deg, rgba(68, 100, 255, 0.25) 0%, rgba(68, 100, 255, 0.1) 100%);
    border-color: rgba(100, 130, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(68, 100, 255, 0.25);
}

/* Secondary Glass Button (Download Free) */
.btn-glass-secondary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-glass-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.btn-glass-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Games Marquee Row */
.games-ticker-wrapper {
    position: absolute;
    /* Move to bottom */
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    /* Center it */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    max-width: 1100px;
    /* Less wide */
    padding-bottom: 2rem;
    gap: 3rem;
    z-index: 10;
}

.ticker-label {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #8c9eff;
    /* Muted neon blue */
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-label .separator {
    opacity: 0.3;
}

.hero-marquee-container {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.hero-marquee {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: marquee-slide 30s linear infinite;
}

.hero-marquee span {
    color: #94a3b8;
    font-size: 1.5rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0.4;
    transition: color 0.3s, opacity 0.3s;
}

/* Hover Effect: Pause and highlight */
.hero-marquee:hover {
    animation-play-state: paused;
}

.hero-marquee span:hover {
    color: #fff;
    opacity: 1;
    cursor: default;
}

@keyframes marquee-slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- Performance Dashboard Section --- */
.performance-section {
    padding: 140px 0 100px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.dashboard-panel {
    background: rgba(13, 13, 16, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
    max-width: 900px;
    margin: 4rem auto 0;
    overflow: hidden;
    position: relative;
}

/* Mac-like Header */
.dashboard-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dash-dot.red {
    background: #ff5f56;
}

.dash-dot.yellow {
    background: #ffbd2e;
}

.dash-dot.green {
    background: #27c93f;
}

.dashboard-header span {
    margin-left: auto;
    font-family: 'Consolas', monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

/* Dashboard Content */
.dash-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 60px 40px;
    position: relative;
}

@media (max-width: 768px) {
    .dash-content {
        flex-direction: column;
        gap: 30px;
    }
}


.stat-label-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dash-divider {
    color: var(--text-secondary);
    font-size: 1.5rem;
    opacity: 0.3;
}

.dash-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 320px;
}

.dash-stat.professional {
    background: rgba(16, 185, 129, 0.03);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 16px;
    padding: 20px;
}

.dash-stat .stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.dash-stat .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.stat-value .unit {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    opacity: 0.6;
}

.text-red {
    color: #ff5252;
}

.text-green {
    color: #00e676;
}

/* Bars */
.stat-bar-bg {
    width: 100%;
    /* Full width of the contained stat */
    max-width: 200px;
    /* Limit width */
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    border-radius: 10px;
}

.fill-red {
    background: #ef4444;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
    transition: width 0.3s ease;
}

.fill-green {
    background: #10b981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
    transition: width 0.3s ease;
}

.stat-meta {
    font-size: 0.9rem;
    color: #ff5252;
    font-weight: 600;
}

.stat-meta.text-green {
    color: #00e676;
}


/* --- Steps Minimal Strip --- */
.cta-section-wrapper {
    background: #050507;
    padding: 40px 0;
}

.minimal-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.min-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.step-num {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-purple);
    background: rgba(48, 79, 254, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
}

.step-txt {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.step-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .dash-content {
        flex-direction: column;
        gap: 40px;
    }

    .dash-divider {
        transform: rotate(90deg);
    }

    .minimal-steps {
        flex-direction: column;
        gap: 30px;
    }

    .step-line {
        width: 1px;
        height: 30px;
    }
}


/* --- Features Section (Bento Grid) --- */
.features-section {
    padding: 140px 0;
    position: relative;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Column Grid */
    grid-auto-rows: minmax(280px, auto);
    /* Slightly taller */
    gap: 30px;
    margin-top: 5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.bento-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    /* More padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Horizontal Center */
    justify-content: center;
    /* Vertical Center */
    text-align: center;
    /* Text Center */
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.bento-item:hover {
    transform: translateY(-5px);
    border-color: rgba(48, 79, 254, 0.4);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

/* Specific Grid Spans REMOVED for uniform grid */

/* Icon Styling */
.bento-icon {
    width: 70px;
    height: 70px;
    background: rgba(48, 79, 254, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    /* Fixed margin */
    transition: all 0.3s ease;
}

.bento-item:hover .bento-icon {
    background: var(--accent-purple);
    color: white;
    box-shadow: 0 5px 15px rgba(48, 79, 254, 0.3);
}

.bento-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #fff;
}

.bento-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
    /* Prevent text from getting too wide */
    margin: 0 auto;
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
        /* Single column on mobile */
        max-width: 500px;
    }
}

/* --- Reviews Section --- */
.reviews-section {
    padding: 140px 0 160px;
    background: transparent;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Add a subtle background pattern to reviews */
.reviews-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: rgba(48, 79, 254, 0.3);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-purple), #8c9eff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.2rem;
}

.reviewer-info h4 {
    font-size: 1rem;
    line-height: 1.2;
}

.review-role {
    font-size: 0.8rem;
    color: var(--accent-purple);
    font-weight: 600;
}

.review-rating {
    margin-left: auto;
    color: #ffd700;
    font-size: 0.8rem;
}

.review-text {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
}

/* --- Final CTA Section --- */
.cta-section {
    padding: 100px 20px;
    background: #050507;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    background: linear-gradient(135deg, rgba(48, 79, 254, 0.1), rgba(48, 79, 254, 0.05));
    border: 1px solid rgba(48, 79, 254, 0.2);
    border-radius: 24px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    backdrop-filter: blur(20px);
}

/* Glowing orb behind CTA */
.cta-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(48, 79, 254, 0.4) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-content .hero-cta-group {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-content {
        padding: 50px 20px;
    }
}

/* --- Footer --- */
.footer {
    padding: 80px 0 40px;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.link-group h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.link-group a {
    display: block;
    color: #94a3b8;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.link-group a:hover {
    color: var(--accent-purple);
    transform: translateX(4px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: #52525b;
    font-size: 0.85rem;
}

/* --- Global Enhancements --- */



/* Selection Color */
::selection {
    background: rgba(48, 79, 254, 0.3);
    color: white;
}



/* Reveal Animation Base */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Glass Cards */
.step-card,
.review-card,
.fps-card {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.step-card:hover,
.review-card:hover {
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.3), 0 0 15px rgba(48, 79, 254, 0.1);
}

/* Refined Gradients */
.hero-brand-pill {
    background: rgba(48, 79, 254, 0.1);
    border: 1px solid rgba(48, 79, 254, 0.2);
}

.section-title .highlight {
    background: linear-gradient(120deg, var(--accent-purple), #82b1ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}



/* --- Form Elements --- */
.hero-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.hero-input:focus {
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(48, 79, 254, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

/* Responsive */
@media (max-width: 768px) {

    .nav-links,
    .nav-auth {
        display: none;
        /* simple hide for mobile for now */
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-form {
        flex-direction: column;
    }

    .btn-primary.btn-lg {
        width: 100%;
    }

    .comparison-container {
        height: 300px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        gap: 30px;
        flex-direction: column;
    }
}

/* --- Global Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* --- Pricing Page Styles --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(20, 20, 25, 0.4);
    /* Lighter/more transparent */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-radius: 24px;
    padding: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 460px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border-color: rgba(48, 79, 254, 0.3);
    background: rgba(25, 25, 35, 0.6);
}

.pricing-card .btn {
    padding: 10px 20px;
    /* Much smaller than btn-pill */
    font-size: 0.95rem;
    width: 100%;
    margin-top: auto;
    /* Push to bottom if space exists */
    border-radius: 12px;
    /* Soft square > Pill for cards */
}

.pricing-card.featured-glow {
    background: linear-gradient(145deg, rgba(48, 79, 254, 0.1) 0%, rgba(20, 20, 25, 0.4) 100%);
    border: 1px solid rgba(48, 79, 254, 0.3);
    box-shadow: 0 0 30px rgba(48, 79, 254, 0.15);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-purple);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(48, 79, 254, 0.4);
    white-space: nowrap;
}

.pricing-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 8px;
}

.pricing-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
    flex-grow: 1;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.pricing-features li i {
    color: #00e676;
}

/* Review Section */
.pricing-review {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 12px;
}

.review-avatar img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--accent-purple);
}

.review-content {
    font-size: 0.8rem;
}

.review-author {
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.badge-pro {
    background: #FFD700;
    color: #000;
    padding: 2px 6px;
    font-size: 0.6rem;
    border-radius: 4px;
    font-weight: 800;
}

.review-stars {
    color: #FFD700;
    font-size: 0.7rem;
    margin-bottom: 6px;
}

.review-text {
    color: #94a3b8;
    font-style: italic;
    line-height: 1.4;
}

/* --- FAQ Styles --- */
.faq-card {
    background: rgba(20, 20, 25, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card:hover {
    background: rgba(25, 25, 35, 0.6);
    border-color: rgba(48, 79, 254, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-card details {
    width: 100%;
}

.faq-card summary {
    padding: 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    list-style: none;
    position: relative;
    padding-right: 50px;
    transition: color 0.3s ease;
}

.faq-card summary::-webkit-details-marker {
    display: none;
}

.faq-card summary::after {
    content: '\f107';
    /* FontAwesome Chevron Down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-purple);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-card details[open] summary {
    color: var(--accent-purple);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-card details[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-card p {
    padding: 24px;
    padding-top: 10px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Clean & Minimal Scrollbar --- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    background-clip: padding-box;
    border: 1px solid transparent;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
    background-clip: padding-box;
    border: 1px solid transparent;
}

/* --- Footer Premium Design --- */
.footer {
    padding: 60px 0 30px;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    margin-top: auto;
}

/* Gradient Top Border Line Effect */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(99, 102, 241, 0.5) 50%,
            transparent 100%);
    box-shadow: 0 -1px 10px rgba(99, 102, 241, 0.3);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 30px;
    text-align: center;
}

.footer-copyright p {
    color: #52525b;
    font-size: 0.85rem;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

/* --- Login Modal --- */
.login-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.login-modal {
    background: rgba(13, 13, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.8),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 24px;
    width: 90%;
    max-width: 420px;
    text-align: center;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.login-modal-overlay.active .login-modal {
    transform: translateY(0) scale(1);
}

.lm-icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.15);
}

.lm-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.lm-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.lm-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-lm-primary {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-lm-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.btn-lm-secondary {
    background: transparent;
    color: #cbd5e1;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.btn-lm-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.15);
}

.lm-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s;
}

.lm-close:hover {
    color: #fff;
}

/* --- Responsive Overhaul --- */

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 100001;
    transition: transform 0.3s ease;
}

.mobile-menu-btn:active {
    transform: scale(0.9);
}

.mobile-only-link {
    display: none !important;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
    }

    .benchmark-grid {
        grid-template-columns: 1fr !important;
        gap: 60px !important;
        text-align: center;
    }

    .benchmark-grid ul {
        align-items: center;
        width: 100%;
    }
}

@media (max-width: 768px) {

    /* Global fixes to prevent horizontal overflow */
    html,
    body {
        overflow-x: hidden !important;
        position: relative;
    }

    .container {
        padding: 0 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    /* Navbar Mobile Menu Drawer */
    .mobile-menu-btn {
        display: block;
    }

    .nav-auth {
        display: none !important;
        /* Hidden on mobile in favor of link in menu */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        /* Full width for cleaner feel */
        height: 100vh;
        background: rgba(2, 2, 5, 0.98);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 99999;
        left: auto;
        transform: none;
        margin: 0;
        padding: 60px 40px;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links.active {
        right: 0;
        /* Show drawer */
    }

    .mobile-only-link {
        display: block !important;
        width: 100%;
        margin-top: 10px;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 12px 20px;
        width: 100%;
        max-width: 280px;
        /* Constrain buttons */
        text-align: center;
        display: block;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    /* Hero Responsive scaling */
    .navbar {
        height: 70px !important;
    }

    .hero-brand-pill {
        padding: 8px 16px !important;
        font-size: 0.65rem !important;
        margin-bottom: 25px !important;
        letter-spacing: 2px !important;
        backdrop-filter: blur(10px);
    }

    .hero {
        padding: 100px 0 50px !important;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.4rem !important;
        letter-spacing: -1.5px !important;
        line-height: 1 !important;
        margin-bottom: 1.5rem !important;
        word-wrap: break-word;
        width: 100% !important;
        text-align: center !important;
        filter: drop-shadow(0 0 20px rgba(48, 79, 254, 0.3));
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
        padding: 0 5px !important;
        margin-bottom: 2rem !important;
        line-height: 1.4 !important;
        width: 100% !important;
        text-align: center !important;
        opacity: 0.8;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 12px !important;
        padding: 0 10px;
    }

    .btn-glass {
        width: 100%;
        justify-content: center;
        padding: 18px 24px !important;
        font-size: 0.95rem !important;
    }

    .section-title {
        font-size: 2.4rem !important;
        letter-spacing: -1px !important;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
        line-height: 1.5;
    }

    /* Trusted Bar */
    .trusted-bar {
        margin-top: 50px !important;
    }

    .hero-marquee span {
        font-size: 1.1rem !important;
        gap: 2rem !important;
    }

    /* Dashboard Metrics Control */
    .dashboard-panel {
        margin-top: 2rem;
        border-radius: 20px;
    }

    .dash-content {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 30px 15px !important;
    }

    .dash-stat {
        width: 100%;
    }

    .dash-divider {
        transform: rotate(90deg);
        opacity: 0.2;
    }

    /* Grid & Global Layout Fixes */
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: center;
    }

    .footer-col {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    /* Prevent atmospheric drift from causing overflow horizontal */
    .light-orb {
        width: 400px;
        height: 400px;
    }
}

/* Ensure benchmark grid is responsive if used via class */
.benchmark-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}