/* =========================================================================
   IMS Landing Page CSS - Pure Vanilla
   Respects both Dark and Light mode via CSS variables
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Syne:wght@600;700;800&display=swap');

:root {
    /* Base typography */
    --font-body: 'Inter', sans-serif;
    --font-display: 'Syne', sans-serif;

    /* Transition defaults */
    --ease-out-spring: cubic-bezier(0.22, 1, 0.36, 1);
    --transition-base: all 0.3s var(--ease-out-spring);
}

/* --------------------------------------------------------------------------
   DARK MODE COLORS (DEFAULT) 
   -------------------------------------------------------------------------- */
[data-theme="dark"] {
    --bg-primary: #0A0A0F;
    --bg-secondary: rgba(255, 255, 255, 0.02);
    --bg-glass: rgba(255, 255, 255, 0.05);
    
    --text-primary: #FFFFFF;
    --text-secondary: #9898B0;
    --text-muted: #55556A;
    
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.15);
    
    --accent-brand: #6C63FF;
    --accent-brand-hover: #5A52D9;
    --accent-red: #FF3B30;
    --accent-cyan: #00D4FF;
    
    --gradient-brand: linear-gradient(135deg, var(--accent-brand) 0%, var(--accent-cyan) 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(108, 99, 255, 0.15) 0%, transparent 70%);
}

/* --------------------------------------------------------------------------
   LIGHT MODE COLORS
   -------------------------------------------------------------------------- */
[data-theme="light"] {
    --bg-primary: #FAFAFA;
    --bg-secondary: #FFFFFF;
    --bg-glass: rgba(0, 0, 0, 0.03);
    
    --text-primary: #111118;
    --text-secondary: #5C5C77;
    --text-muted: #8F8FA3;
    
    --border-subtle: rgba(0, 0, 0, 0.08);
    --border-strong: rgba(0, 0, 0, 0.15);
    
    --accent-brand: #5A52D9; /* Slightly darker for contrast on light */
    --accent-brand-hover: #463EC0;
    --accent-red: #E12A1F;
    --accent-cyan: #00B1D6;
    
    --gradient-brand: linear-gradient(135deg, var(--accent-brand) 0%, var(--accent-cyan) 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(108, 99, 255, 0.08) 0%, transparent 70%);
}

/* --------------------------------------------------------------------------
   GLOBAL RESET & DEFAULTS
   -------------------------------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Typography Helpers */
.font-syne { font-family: var(--font-display); }
.text-gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-secondary { color: var(--text-secondary); }

/* --------------------------------------------------------------------------
   NAVIGATION
   -------------------------------------------------------------------------- */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-subtle);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-color: color-mix(in srgb, var(--bg-primary) 80%, transparent);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.brand-logo {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: var(--gradient-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.nav-links {
    display: none;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 2rem;
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
    transition: var(--transition-base);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition-base);
}

.theme-toggle:hover {
    color: var(--text-primary);
    background: var(--bg-glass);
}

/* Hide/Show icons based on theme */
[data-theme="dark"] .icon-moon,
[data-theme="light"] .icon-sun {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: scale(1.05);
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background: var(--gradient-brand);
    color: #fff;
    box-shadow: 0 4px 14px 0 rgba(108, 99, 255, 0.39);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(108, 99, 255, 0.6);
}

/* --------------------------------------------------------------------------
   UTILITY & LAYOUT
   -------------------------------------------------------------------------- */
.landing-main {
    flex: 1;
    margin-top: 72px; /* offset nav */
    display: flex;
    flex-direction: column;
}

.center-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section {
    padding: 6rem 1.5rem;
    min-height: calc(100vh - 72px);
    position: relative;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.site-footer {
    border-top: 1px solid var(--border-subtle);
    padding: 3rem 1.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   ANIMATIONS (Vanilla alternatives to Framer Motion)
   -------------------------------------------------------------------------- */

/* Intersection Observer Initial State */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-spring), transform 0.8s var(--ease-out-spring);
    will-change: opacity, transform;
}

/* State when scrolled into view */
.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay modifiers for staggering */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* --------------------------------------------------------------------------
   BUTTONS & BADGES
   -------------------------------------------------------------------------- */
.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    gap: 0.5rem;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-strong);
}

.btn-secondary:hover {
    background: var(--bg-glass);
    border-color: var(--text-secondary);
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.badge-red {
    background: rgba(255, 59, 48, 0.1);
    color: var(--accent-red);
    border: 1px solid rgba(255, 59, 48, 0.2);
}

.badge-brand {
    background: rgba(108, 99, 255, 0.1);
    color: var(--accent-brand);
    border: 1px solid rgba(108, 99, 255, 0.2);
}

/* --------------------------------------------------------------------------
   LAYOUT UTILS
   -------------------------------------------------------------------------- */
.wrapper {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.section-padding {
    padding: 6rem 1.5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.mt-12 { margin-top: 3rem; }
.mb-8 { margin-bottom: 2rem; }

.grid-3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* --------------------------------------------------------------------------
   GLASS CARDS
   -------------------------------------------------------------------------- */
.glass-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: var(--transition-base);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-strong);
    background: var(--bg-glass);
}

.card-red:hover::before { background: var(--accent-red); }
.card-brand:hover::before { background: var(--gradient-brand); }

.glass-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.icon-wrap {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   HERO SECTION SPECIFICS
   -------------------------------------------------------------------------- */
.hero-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 800px;
    background: var(--gradient-glow);
    z-index: -1;
    pointer-events: none;
}

.hero-subtitle {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-cta-group {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-trust {
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 4rem;
}

.hero-trust svg {
    width: 1rem;
    height: 1rem;
}

/* Mockup */
.hero-mockup {
    width: 100%;
    max-width: 1000px;
    perspective: 1000px;
}

.mockup-window {
    background: var(--bg-secondary);
    border: 1px solid var(--border-strong);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    aspect-ratio: 16/9;
}

.mockup-header {
    height: 3rem;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    gap: 1rem;
    background: var(--bg-glass);
}

.mockup-header .dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-header .dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-strong);
}

.mockup-search {
    flex: 1;
    max-width: 300px;
    height: 1.5rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 0.25rem;
    margin: 0 auto;
}

.mockup-body {
    flex: 1;
    display: flex;
    background: var(--bg-primary);
}

.mockup-sidebar {
    width: 200px;
    border-right: 1px solid var(--border-subtle);
    padding: 1rem;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .mockup-sidebar { display: flex; }
}

.mockup-nav-item {
    height: 2rem;
    border-radius: 0.5rem;
    background: var(--bg-secondary);
    opacity: 0.5;
}

.mockup-nav-item.active {
    background: var(--bg-glass);
    opacity: 1;
}

.mockup-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mockup-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.mockup-stat-card {
    height: 80px;
    border-radius: 0.5rem;
    border: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mockup-stat-card .line {
    background: var(--border-strong);
    border-radius: 2px;
}
.mockup-stat-card .line.sm { height: 12px; width: 40%; opacity: 0.5; }
.mockup-stat-card .line.lg { height: 24px; width: 80%; }

.mockup-chart {
    flex: 1;
    border: 1px solid var(--border-subtle);
    border-radius: 0.5rem;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   PAIN POINTS SECTION
   -------------------------------------------------------------------------- */
.transition-banner {
    text-align: center;
    padding: 3rem;
    border-radius: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
}

.transition-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* --------------------------------------------------------------------------
   LIFECYCLE PIPELINE SECTION
   -------------------------------------------------------------------------- */
.max-w-2xl { max-width: 42rem; margin: 0 auto; }

.pipeline-container {
    position: relative;
    padding: 2rem 0;
}

.pipeline-track {
    position: absolute;
    top: 2rem;
    bottom: 2rem;
    left: 1.5rem;
    width: 2px;
    background: var(--border-subtle);
}

@media (min-width: 768px) {
    .pipeline-track {
        top: 3.5rem;
        bottom: auto;
        left: 2rem;
        right: 2rem;
        width: auto;
        height: 2px;
    }
    
    .pipeline-container {
        display: flex;
        justify-content: space-between;
    }
}

.pipeline-step {
    position: relative;
    padding-left: 4rem;
    margin-bottom: 3rem;
}

.pipeline-step:last-child { margin-bottom: 0; }

@media (min-width: 768px) {
    .pipeline-step {
        padding-left: 0;
        margin-bottom: 0;
        text-align: center;
        width: 15rem;
    }
}

.step-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid var(--accent-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-brand);
    z-index: 2;
    transition: var(--transition-base);
}

@media (min-width: 768px) {
    .step-dot {
        position: relative;
        margin: 0 auto 1.5rem auto;
    }
}

.pipeline-step:hover .step-dot {
    background: var(--accent-brand);
    color: #fff;
    box-shadow: 0 0 20px rgba(108, 99, 255, 0.4);
}

.step-content h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   ROLE BASED SECTION
   -------------------------------------------------------------------------- */
.roles-container {
    border: 1px solid var(--border-subtle);
    border-radius: 1rem;
    background: var(--bg-secondary);
    overflow: hidden;
}

.roles-tabs {
    display: flex;
    overflow-x: auto;
    border-bottom: 1px solid var(--border-subtle);
    scrollbar-width: none; /* Firefox */
}
.roles-tabs::-webkit-scrollbar { display: none; } /* Chrome */

.role-tab {
    flex: 1;
    min-width: 120px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.role-tab:hover {
    color: var(--text-primary);
    background: var(--bg-glass);
}

.role-tab.active {
    color: var(--accent-brand);
    border-bottom-color: var(--accent-brand);
    background: var(--bg-primary);
}

.roles-content-area {
    padding: 2rem;
}

@media (min-width: 768px) {
    .roles-content-area { padding: 4rem; }
}

.role-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.role-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.role-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

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

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.text-brand { color: var(--accent-brand); }

.role-visual {
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.large-icon {
    width: 4rem;
    height: 4rem;
    color: var(--text-primary);
    opacity: 0.5;
}

.visual-placeholder {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.visual-placeholder .line {
    background: var(--border-strong);
    height: 12px;
    border-radius: 4px;
}
.visual-placeholder .line.lg { width: 100%; }
.visual-placeholder .line.sm { width: 70%; }

/* --------------------------------------------------------------------------
   ANALYTICS & STATS SECTION
   -------------------------------------------------------------------------- */
.align-center { align-items: center; }

.grid-2-stacked {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-box {
    padding: 1.5rem;
}

.stat-box.full-width {
    grid-column: 1 / -1;
}

.stat-icon {
    display: inline-flex;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.bg-brand-light {
    background: rgba(108, 99, 255, 0.1);
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bg-secondary { background: var(--bg-secondary); }
.rounded-3xl { border-radius: 1.5rem; }
.border-subtle { border: 1px solid var(--border-subtle); }
.border-y-subtle { border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.p-8 { padding: 2rem; }
.pb-12 { padding-bottom: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }

.flex-column { display: flex; flex-direction: column; }
.center-align { align-items: center; }
.text-center { text-align: center; }

.stat-huge {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1;
}

.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.font-semibold { font-weight: 600; }
.text-sm { font-size: 0.875rem; }

.italic { font-style: italic; }
.not-italic { font-style: normal; }
.text-xl { font-size: 1.25rem; }
.block { display: block; }
.text-primary { color: var(--text-primary); }

/* --------------------------------------------------------------------------
   PRICING SECTION
   -------------------------------------------------------------------------- */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: center; }
}

.pricing-card {
    padding: 2.5rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    transform: scale(1.05);
    border-color: var(--accent-brand);
    background: var(--bg-glass);
    z-index: 2;
}

.pricing-card.popular:hover { transform: scale(1.05) translateY(-5px); }

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-brand);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 14px 0 rgba(108, 99, 255, 0.39);
}

.text-4xl { font-size: 2.25rem; }
.font-bold { font-weight: 700; }
.w-full { width: 100%; display: flex; }

/* --------------------------------------------------------------------------
   FAQ SECTION
   -------------------------------------------------------------------------- */
.faq-accordion {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border-subtle);
    border-radius: 0.75rem;
    background: var(--bg-secondary);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.faq-question:hover { background: var(--bg-glass); }

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent-brand);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out-spring), padding 0.4s var(--ease-out-spring);
    background: var(--bg-secondary);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* generous estimate to allow expanding */
    padding: 0 1.5rem 1.25rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   FINAL CTA
   -------------------------------------------------------------------------- */
.cta-box {
    margin-top: 2rem;
}

.p-12 { padding: 3rem; }
@media(min-width: 768px) { .p-12 { padding: 5rem; } }

.relative { position: relative; }
.z-10 { z-index: 10; }
.overflow-hidden { overflow: hidden; }

.bg-glow-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: var(--gradient-glow);
    z-index: 1;
    pointer-events: none;
    border-radius: 50%;
}
