/* ════════════════════════════════════════════════════════════
   EARNSIDE WEBSITE STYLES
   Clean, production-ready stylesheet
   ════════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────────────────────────
   1. CSS VARIABLES & RESET
   ──────────────────────────────────────────────────────────── */

:root {
    /* Colors */
    --color-bg:          #010F1C;
    --color-surface:     #081624;
    --color-surface2:    #0F2030;
    --color-surface3:    #16293C;
    --color-accent:      #E3652F;
    --color-accent-dim:  #F78E4B;
    --color-accent-glow: rgba(227, 101, 47, 0.15);
    --color-text:        #FDFAF6;
    --color-text-sub:    #94A3B8;
    --color-text-dim:    #64748B;
    --color-border:      #1E293B;
    --color-border-light:#334155;
    
    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body:    'DM Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    background: var(--color-bg);
}

body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ────────────────────────────────────────────────────────────
   2. NAVIGATION
   ──────────────────────────────────────────────────────────── */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px max(20px, calc(50% - 600px));
    background: rgba(1, 15, 28, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--color-border);
    transition: padding var(--transition-normal);
}

.nav-logo-wrap {
    display: flex;
    align-items: center;
}

.logo-svg {
    display: block;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    color: var(--color-text-sub);
    letter-spacing: 0.4px;
    transition: color var(--transition-fast);
}

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

.nav-cta {
    background: var(--color-accent);
    color: var(--color-bg) !important;
    font-weight: 600;
    font-size: 13px;
    padding: 9px 20px;
    border-radius: 6px;
    transition: background var(--transition-fast), transform 0.15s ease;
}

.nav-cta:hover {
    background: var(--color-accent-dim);
    transform: translateY(-1px);
}

/* Nav Toggle (Hamburger) */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 102;
}

.hamburger {
    display: block;
    width: 24px;
    height: 18px;
    position: relative;
}

.hamburger .line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger .line:nth-child(1) { top: 0; }
.hamburger .line:nth-child(2) { top: 8px; }
.hamburger .line:nth-child(3) { top: 16px; }

/* Hamburger Active State */
.nav-toggle.active .hamburger .line:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}
.nav-toggle.active .hamburger .line:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active .hamburger .line:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ────────────────────────────────────────────────────────────
   3. HERO SECTION
   ──────────────────────────────────────────────────────────── */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 160px max(20px, calc(50% - 600px)) 90px;
    position: relative;
    overflow: hidden;
    background: var(--color-bg);
}

/* Grid texture overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(var(--color-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.18;
    pointer-events: none;
}

/* Ghost watermark */
.hero-ghost {
    position: absolute;
    right: -2vw;
    bottom: -8vh;
    font-family: var(--font-display);
    font-size: 38vw;
    line-height: 0.78;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-border);
    pointer-events: none;
    white-space: nowrap;
    user-select: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 32px;
}

.eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--color-accent);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(68px, 11vw, 148px);
    line-height: 0.9;
    letter-spacing: -1px;
    color: var(--color-text);
    margin-bottom: 36px;
}

.hero h1 .hl {
    color: var(--color-accent);
}

.hero-sub {
    max-width: 500px;
    font-size: 17px;
    font-weight: 300;
    color: var(--color-text-sub);
    line-height: 1.75;
    margin-bottom: 44px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

/* ────────────────────────────────────────────────────────────
   4. BUTTONS
   ──────────────────────────────────────────────────────────── */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-accent);
    color: var(--color-bg);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 15px 30px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background var(--transition-fast), 
                transform 0.15s ease, 
                box-shadow 0.25s ease;
}

.btn-primary:hover {
    background: var(--color-accent-dim);
    transform: translateY(-2px);
    box-shadow: 0 10px 36px var(--color-accent-glow);
}

.btn-ghost {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-sub);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 2px;
    transition: color var(--transition-fast), border-color var(--transition-fast);
    cursor: pointer;
}

.btn-ghost:hover {
    color: var(--color-text);
    border-color: var(--color-text-sub);
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    color: var(--color-bg);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 16px 34px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.25s ease;
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.35);
}

/* ────────────────────────────────────────────────────────────
   5. STAT BAR
   ──────────────────────────────────────────────────────────── */

.stat-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 0 max(20px, calc(50% - 600px));
}

.stat-item {
    padding: 52px 40px;
    border-right: 1px solid var(--color-border);
    position: relative;
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 58px;
    line-height: 1;
    color: var(--color-text);
    margin-bottom: 10px;
}

.stat-num .ac {
    color: var(--color-accent);
}

.stat-label {
    font-size: 13px;
    color: var(--color-text-sub);
    font-weight: 400;
}

/* ────────────────────────────────────────────────────────────
   6. SHARED SECTION STYLES
   ──────────────────────────────────────────────────────────── */

.sec {
    padding: 120px max(20px, calc(50% - 600px));
    background: var(--color-bg);
}

.sec-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 18px;
}

.sec-label::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--color-accent);
}

.sec-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 5.5vw, 66px);
    line-height: 0.98;
    color: var(--color-text);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.sec-sub {
    font-size: 16px;
    color: var(--color-text-sub);
    max-width: 540px;
    font-weight: 300;
    line-height: 1.75;
}

/* ────────────────────────────────────────────────────────────
   7. PROOF / TESTIMONIALS SECTION
   ──────────────────────────────────────────────────────────── */

.proof {
    background: var(--color-surface);
}

.proof-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 24px;
}

/* Fade edges */
.proof-wrap {
    overflow: hidden;
    position: relative;
}

.proof-wrap::before,
.proof-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.proof-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-surface), transparent);
}

.proof-wrap::after {
    right: 0;
    background: linear-gradient(-90deg, var(--color-surface), transparent);
}

.proof-track {
    display: flex;
    gap: 20px;
    animation: scrollProof 45s linear infinite;
    width: max-content;
}

.proof-track:hover {
    animation-play-state: paused;
}

@keyframes scrollProof {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.proof-card {
    flex-shrink: 0;
    width: 370px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 230px;
    transition: border-color var(--transition-normal);
}

.proof-card:hover {
    border-color: rgba(232, 96, 28, 0.35);
}

.proof-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 96, 28, 0.07);
    border: 1px solid rgba(232, 96, 28, 0.18);
    border-radius: 20px;
    padding: 5px 13px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 18px;
    width: fit-content;
}

.proof-tag .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
}

.proof-quote {
    font-size: 14px;
    color: var(--color-text-sub);
    line-height: 1.75;
    font-style: italic;
    flex-grow: 1;
}

.proof-meta {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.proof-ava {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-surface2);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--color-text-sub);
}

.proof-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
}

.proof-role {
    font-size: 11.5px;
    color: var(--color-text-dim);
    margin-top: 1px;
}

/* ────────────────────────────────────────────────────────────
   8. PROCESS SECTION
   ──────────────────────────────────────────────────────────── */

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    margin-top: 68px;
    background: var(--color-border);
    border-radius: 14px;
    overflow: hidden;
}

.p-step {
    background: var(--color-surface);
    padding: 40px 26px;
    position: relative;
    transition: background var(--transition-normal);
}

.p-step:hover {
    background: var(--color-surface2);
}

.p-num {
    font-family: var(--font-display);
    font-size: 46px;
    color: var(--color-text-dim);
    line-height: 1;
    margin-bottom: 18px;
    transition: color var(--transition-normal);
}

.p-step:hover .p-num {
    color: var(--color-accent);
}

.p-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.p-desc {
    font-size: 13px;
    color: var(--color-text-sub);
    line-height: 1.65;
}

.p-arrow {
    position: absolute;
    right: 18px;
    top: 38px;
    color: var(--color-text-dim);
    font-size: 18px;
    transition: color var(--transition-normal), transform var(--transition-normal);
}

.p-step:hover .p-arrow {
    color: var(--color-accent);
    transform: translateX(4px);
}

.p-step:last-child .p-arrow {
    display: none;
}

/* ────────────────────────────────────────────────────────────
   9. INDUSTRIES SECTION
   ──────────────────────────────────────────────────────────── */

.industries {
    background: var(--color-surface);
}

.ind-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 52px;
    flex-wrap: wrap;
    gap: 24px;
}

.ind-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.ind-item {
    background: var(--color-bg);
    padding: 26px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: background 0.25s ease;
    cursor: default;
}

.ind-item:hover {
    background: var(--color-surface2);
}

.ind-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--color-surface2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--color-accent);
    flex-shrink: 0;
    transition: background 0.25s ease;
}

.ind-icon svg {
    width: 20px;
    height: 20px;
}

.ind-item:hover .ind-icon {
    background: rgba(227, 101, 47, 0.1);
}

.ind-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
}

/* ────────────────────────────────────────────────────────────
   10. FINANCING SECTION
   ──────────────────────────────────────────────────────────── */

.fin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-top: 68px;
    align-items: start;
}

.fin-left .sec-title {
    margin-bottom: 20px;
}

.fin-left .sec-sub {
    margin-bottom: 36px;
}

.fin-list {
    list-style: none;
}

.fin-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--color-border);
}

.fin-list li:first-child {
    border-top: 1px solid var(--color-border);
}

.fin-chk {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(232, 96, 28, 0.08);
    border: 1px solid rgba(232, 96, 28, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 11px;
    color: var(--color-accent);
}

.fin-t {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 2px;
}

.fin-d {
    font-size: 13px;
    color: var(--color-text-sub);
}

/* Right panel */
.fin-panel {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.fin-panel::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(232, 96, 28, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.fin-panel-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.fin-panel-num {
    font-family: var(--font-display);
    font-size: 76px;
    line-height: 1;
    color: var(--color-text);
    margin-bottom: 6px;
}

.fin-panel-num em {
    font-style: normal;
    color: var(--color-accent);
}

.fin-panel-desc {
    font-size: 14px;
    color: var(--color-text-sub);
    line-height: 1.75;
    margin-bottom: 36px;
    position: relative;
}

.fin-panel-stats {
    display: flex;
    gap: 36px;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
    position: relative;
}

.fin-s-val {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--color-text);
}

.fin-s-val.ac {
    color: var(--color-accent);
}

.fin-s-label {
    font-size: 11.5px;
    color: var(--color-text-dim);
    margin-top: 4px;
}

/* ────────────────────────────────────────────────────────────
   11. CTA BAND
   ──────────────────────────────────────────────────────────── */

.cta-band {
    position: relative;
    overflow: hidden;
    background: var(--color-accent);
    padding: 110px max(20px, calc(50% - 600px));
    text-align: center;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.055) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
}

.cta-band > * {
    position: relative;
    z-index: 2;
}

.cta-band .sec-label {
    color: rgba(255, 255, 255, 0.6);
}

.cta-band .sec-label::before {
    background: rgba(255, 255, 255, 0.6);
}

.cta-band .sec-title {
    color: #FFFFFF;
    max-width: 660px;
    margin: 0 auto 14px;
}

.cta-band .sec-sub {
    color: rgba(255, 255, 255, 0.75);
    margin: 0 auto 40px;
    text-align: center;
}

/* ────────────────────────────────────────────────────────────
   12. FOOTER
   ──────────────────────────────────────────────────────────── */

footer {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: 64px max(20px, calc(50% - 600px)) 36px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--color-border);
}

.f-brand .nav-logo {
    font-size: 18px;
    margin-bottom: 14px;
    display: block;
}

.f-brand p {
    font-size: 13px;
    color: var(--color-text-sub);
    line-height: 1.7;
    max-width: 290px;
}

.f-col h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-dim);
    margin-bottom: 18px;
}

.f-col a {
    display: block;
    font-size: 14px;
    color: var(--color-text-sub);
    margin-bottom: 11px;
    transition: color var(--transition-fast);
}

.f-col a:hover {
    color: var(--color-text);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-bottom p {
    font-size: 11.5px;
    color: var(--color-text-dim);
    max-width: 560px;
    line-height: 1.6;
}

.footer-phone {
    font-size: 14px;
    color: var(--color-text-sub);
    font-weight: 500;
}

.footer-phone em {
    font-style: normal;
    color: var(--color-accent);
}

/* ────────────────────────────────────────────────────────────
   13. SCROLL REVEAL ANIMATIONS
   ──────────────────────────────────────────────────────────── */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.vis {
    opacity: 1;
    transform: translateY(0);
}

.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ────────────────────────────────────────────────────────────
   14. RESPONSIVE DESIGN
   ──────────────────────────────────────────────────────────── */

@media (max-width: 960px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fin-grid {
        grid-template-columns: 1fr;
    }
    
    .ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    
    .stat-bar {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 14px 20px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 280px;
        background: var(--color-surface);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 40px;
        gap: 0;
        border-left: 1px solid var(--color-border);
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 101;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 16px;
        font-weight: 500;
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid var(--color-border);
        white-space: nowrap;
    }

    .nav-links a:last-child {
        border-bottom: none;
        margin-top: 10px;
    }

    .nav-cta {
        margin-top: 10px;
        width: 100%;
        text-align: center;
        display: block;
        padding: 14px 20px !important;
    }

    .hero,
    .sec {
        padding-left: 20px;
        padding-right: 20px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .ind-grid {
        grid-template-columns: 1fr 1fr;
    }

    .proof-card {
        width: 290px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .cta-band {
        padding: 72px 20px;
    }
}

@media (max-width: 480px) {
    .ind-grid {
        grid-template-columns: 1fr;
    }
}

/* ────────────────────────────────────────────────────────────
   15. ACCESSIBILITY
   ──────────────────────────────────────────────────────────── */

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Reduced motion for users who prefer it */
@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;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --color-text: #FFFFFF;
        --color-bg: #000000;
        --color-border: #FFFFFF;
    }
}
