/* ============================================
   WESALDIGITAL.COM | Premium Domain Landing
   Unified dark theme with animated backgrounds
   ============================================ */

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

:root {
    --cyan: #35D4EE;
    --cyan-dark: #006177;
    --cyan-glow: rgba(53, 212, 238, 0.15);
    --light: #F2F2F2;
    --dark: #0a0e14;
    --dark-2: #0d1219;
    --dark-3: #111820;
    --dark-surface: #151d28;
    --white: #ffffff;
    --gray: #7a8da3;
    --font-en: 'Outfit', sans-serif;
    --font-ar: 'Cairo', sans-serif;
    --nav-height: 80px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-en);
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
}

html[dir="rtl"] body { font-family: var(--font-ar); }
html[dir="rtl"] { direction: rtl; }

html[dir="rtl"] .hero-desc,
html[dir="rtl"] .section-sub,
html[dir="rtl"] .impact-card p { text-align: center; }
html[dir="rtl"] .footer-grid { direction: rtl; }
html[dir="rtl"] .footer-brand p { text-align: right; }
html[dir="rtl"] .footer-contact { text-align: right; }
html[dir="rtl"] .section-tag::before { right: auto; left: 100%; }
html[dir="rtl"] .section-tag::after { left: auto; right: 100%; }
html[dir="rtl"] .scroll-indicator span { direction: rtl; }
html[dir="rtl"] .hero-domain { direction: ltr; display: inline-block; }

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section {
    padding: 80px 0;
    position: relative;
    background: transparent;
    overflow: hidden;
}

/* ==================== CURSOR ==================== */
.cursor-follow {
    width: 20px; height: 20px;
    border: 2px solid var(--cyan);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background 0.3s;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}
.cursor-follow.hover {
    width: 44px; height: 44px;
    background: rgba(53, 212, 238, 0.15);
}
@media (pointer: coarse) { .cursor-follow { display: none; } }

/* ==================== NAVIGATION ==================== */
#navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000; padding: 0 24px;
    height: var(--nav-height);
    transition: all var(--transition);
}
#navbar.scrolled {
    background: rgba(10, 14, 20, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; height: 100%;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; z-index: 1001; direction: ltr; }
.site-logo { height: 38px; width: auto; max-width: 160px; }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.lang-toggle {
    background: transparent; border: 1px solid rgba(255,255,255,0.2);
    color: var(--white); padding: 6px 14px; border-radius: 6px;
    font-size: 13px; font-weight: 600; cursor: pointer;
    transition: all var(--transition); font-family: var(--font-en);
}
.lang-toggle:hover { border-color: var(--cyan); color: var(--cyan); }

.nav-cta {
    background: var(--cyan); color: var(--dark);
    padding: 10px 24px; border-radius: 8px;
    font-size: 14px; font-weight: 700;
    transition: all var(--transition); position: relative; overflow: hidden;
    z-index: 1; text-transform: uppercase;
}
.nav-cta::before {
    content: ''; position: absolute; inset: 0;
    background: var(--dark); border-radius: 8px;
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.4s var(--ease);
    z-index: -1;
}
.nav-cta:hover { color: var(--cyan); }
.nav-cta:hover::before { transform: scaleX(1); transform-origin: left; }

/* ==================== HERO ==================== */
#hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative; background: transparent;
    overflow: hidden; padding-top: var(--nav-height);
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; }

.hero-glow {
    position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.15;
    will-change: transform;
}
.hero-glow-1 {
    width: 500px; height: 500px; background: var(--cyan);
    top: 5%; left: 10%;
    animation: glowFloat1 10s ease-in-out infinite;
}
.hero-glow-2 {
    width: 400px; height: 400px; background: var(--cyan-dark);
    bottom: 5%; right: 10%;
    animation: glowFloat2 12s ease-in-out infinite;
}
.hero-glow-3 {
    width: 200px; height: 200px; background: var(--cyan);
    top: 60%; left: 50%; opacity: 0.08;
    animation: glowFloat1 8s ease-in-out infinite reverse;
}

@keyframes glowFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -40px) scale(1.15); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}
@keyframes glowFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 50px) scale(1.1); }
    66% { transform: translate(40px, -25px) scale(1.15); }
}

.hero-content {
    position: relative; z-index: 2;
    text-align: center; padding: 0 24px; max-width: 1000px;
}

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(53, 212, 238, 0.08);
    border: 1px solid rgba(53, 212, 238, 0.25);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 28px;
}

.hero-title {
    font-weight: 900; color: var(--white);
    line-height: 1.05; margin-bottom: 24px;
    text-transform: none;
}
.hero-domain {
    display: inline-block;
    font-size: clamp(2.6rem, 8.5vw, 6.5rem);
    background: linear-gradient(135deg, #fff 30%, var(--cyan) 70%, #28b8d0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
    text-shadow: 0 0 60px rgba(53, 212, 238, 0.2);
    filter: drop-shadow(0 0 40px rgba(53, 212, 238, 0.18));
}
.hero-domain-tld {
    background: linear-gradient(135deg, var(--cyan), #28b8d0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2.2vw, 1.4rem);
    color: rgba(255,255,255,0.75); margin-bottom: 16px; min-height: 40px;
}
.rotating-text { position: relative; display: inline-block; }
.rotate-word {
    position: absolute; left: 50%; transform: translateX(-50%);
    white-space: nowrap; opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.rotate-word.active { opacity: 1; position: relative; left: auto; transform: none; }

.hero-desc {
    font-size: 1rem; color: var(--gray);
    max-width: 640px; margin: 0 auto 40px; line-height: 1.85;
}
.hero-desc strong { color: var(--white); font-weight: 700; }
.hero-desc em { color: var(--cyan); font-style: normal; font-weight: 600; }

.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px; border-radius: 12px;
    font-size: 16px; font-weight: 700;
    font-family: var(--font-en);
    cursor: pointer; border: none;
    transition: all var(--transition);
    position: relative; overflow: hidden;
}
html[dir="rtl"] .btn { font-family: var(--font-ar); }

.btn-primary {
    background: linear-gradient(135deg, var(--cyan), #28b8d0);
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(53, 212, 238, 0.25);
}
.btn-primary::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease;
    transform: translate(-50%, -50%);
}
.btn-primary:hover::before { width: 300px; height: 300px; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(53, 212, 238, 0.4); }
.btn-primary svg { transition: transform var(--transition); }
.btn-primary:hover svg { transform: translateX(4px); }
html[dir="rtl"] .btn-primary:hover svg { transform: translateX(-4px) scaleX(-1); }

.btn-outline {
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-3px); }
.btn-full { width: 100%; justify-content: center; }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    color: rgba(255,255,255,0.4); font-size: 12px;
    letter-spacing: 2px; text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-mouse {
    width: 26px; height: 40px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 13px; position: relative;
}
.scroll-wheel {
    width: 4px; height: 8px; background: var(--cyan);
    border-radius: 2px; position: absolute; top: 8px;
    left: 50%; transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}
@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ==================== SECTION HEADERS ==================== */
.section-header { text-align: center; margin-bottom: 72px; position: relative; z-index: 2; }

.section-tag {
    display: inline-block; font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 4px;
    color: var(--cyan); margin-bottom: 16px;
    position: relative; padding: 0 24px;
}
.section-tag::before, .section-tag::after {
    content: ''; position: absolute; top: 50%;
    width: 40px; height: 1px; background: var(--cyan); opacity: 0.4;
}
.section-tag::before { right: 100%; }
.section-tag::after { left: 100%; }

.section-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800; line-height: 1.15; margin-bottom: 8px;
    color: var(--white);
}
.section-title.highlight { color: var(--cyan); text-shadow: 0 0 40px rgba(53, 212, 238, 0.2); }
.title-q { color: var(--white); }
.section-sub {
    font-size: 1.1rem; color: var(--gray);
    max-width: 600px; margin: 16px auto 0;
}

/* ==================== WHY / IMPACT CARDS ==================== */
.impact-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; margin-bottom: 48px; position: relative; z-index: 2;
}

.impact-card {
    text-align: center; padding: 36px 24px;
    border-radius: 24px;
    background: var(--dark-surface);
    border: 1px solid rgba(53, 212, 238, 0.06);
    transition: all 0.4s var(--ease);
    position: relative; overflow: hidden;
}

.impact-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(53, 212, 238, 0.05), transparent);
    opacity: 0; transition: opacity var(--transition);
}

.impact-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--cyan-dark));
    transform: scaleX(0); transition: transform 0.5s var(--ease);
}

.impact-card:hover {
    transform: translateY(-10px);
    border-color: rgba(53, 212, 238, 0.2);
    box-shadow: 0 25px 60px rgba(53, 212, 238, 0.1);
}
.impact-card:hover::before { opacity: 1; }
.impact-card:hover::after { transform: scaleX(1); }

.impact-icon {
    width: 64px; height: 64px;
    margin: 0 auto 20px;
    position: relative;
}
.impact-icon::after {
    content: ''; position: absolute; inset: -8px; border-radius: 50%;
    background: rgba(53, 212, 238, 0.06);
    animation: pulseGlow 2.5s ease-in-out infinite;
}
.impact-icon svg { width: 100%; height: 100%; position: relative; z-index: 2; }
@keyframes pulseGlow { 0%, 100% { transform: scale(1); opacity: 0.3; } 50% { transform: scale(1.2); opacity: 0.6; } }

.impact-card h3 {
    font-size: 1.1rem; font-weight: 700; color: var(--white);
    margin-bottom: 10px;
}
.impact-card p {
    font-size: 0.9rem; color: var(--gray); line-height: 1.65;
}

.why-tagline { text-align: center; position: relative; z-index: 2; }
.why-tagline p {
    font-size: 1.4rem; font-weight: 800;
    color: var(--cyan); letter-spacing: 1px;
    text-shadow: 0 0 30px rgba(53, 212, 238, 0.3);
}

/* ==================== OFFER FORM ==================== */
#offer { background: transparent; }

.offer-grid {
    display: flex; justify-content: center;
    position: relative; z-index: 2;
}

.offer-form {
    display: flex; flex-direction: column; gap: 20px;
    width: 100%; max-width: 720px;
    padding: 40px;
    background: rgba(21, 29, 40, 0.55);
    border: 1px solid rgba(53, 212, 238, 0.12);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 0 0 60px rgba(53, 212, 238, 0.05);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { position: relative; }
.form-group input, .form-group textarea {
    width: 100%; padding: 16px 20px;
    background: var(--dark-surface);
    border: 1px solid rgba(53, 212, 238, 0.08);
    border-radius: 12px; color: var(--white);
    font-size: 15px; font-family: var(--font-en);
    outline: none; transition: all var(--transition); resize: none;
}
html[dir="rtl"] .form-group input,
html[dir="rtl"] .form-group textarea { font-family: var(--font-ar); }

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(53, 212, 238, 0.08);
}
.form-group label {
    position: absolute; top: 16px; left: 20px;
    color: var(--gray); font-size: 15px;
    pointer-events: none; transition: all var(--transition);
}
html[dir="rtl"] .form-group label { left: auto; right: 20px; }

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px; left: 16px; font-size: 11px;
    color: var(--cyan); background: var(--dark);
    padding: 2px 8px; border-radius: 4px;
}
html[dir="rtl"] .form-group input:focus + label,
html[dir="rtl"] .form-group input:not(:placeholder-shown) + label,
html[dir="rtl"] .form-group textarea:focus + label,
html[dir="rtl"] .form-group textarea:not(:placeholder-shown) + label {
    left: auto; right: 16px;
}

/* Hide number input spinners */
.form-group input[type="number"]::-webkit-outer-spin-button,
.form-group input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none; margin: 0;
}
.form-group input[type="number"] { -moz-appearance: textfield; }

.price-wrap { position: relative; }
.price-wrap input { padding-left: 40px !important; }
html[dir="rtl"] .price-wrap input { padding-left: 20px !important; padding-right: 40px !important; }
.price-wrap label { left: 40px !important; }
html[dir="rtl"] .price-wrap label { left: auto !important; right: 40px !important; }
.price-wrap input:focus + label,
.price-wrap input:not(:placeholder-shown) + label {
    left: 16px !important;
}
html[dir="rtl"] .price-wrap input:focus + label,
html[dir="rtl"] .price-wrap input:not(:placeholder-shown) + label {
    left: auto !important; right: 16px !important;
}
.price-prefix {
    position: absolute; left: 20px; top: 50%;
    transform: translateY(-50%);
    color: var(--cyan); font-weight: 700; font-size: 16px;
    pointer-events: none; z-index: 2;
}
html[dir="rtl"] .price-prefix { left: auto; right: 20px; }

.form-note {
    text-align: center;
    color: var(--gray);
    font-size: 13px;
    margin-top: 8px;
}
.form-note a {
    color: var(--cyan);
    font-weight: 600;
}
.form-note a:hover { text-decoration: underline; }

/* ===== Global animated background canvas ===== */
.bg-canvas {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    will-change: transform;
    transform: translateZ(0);
}

.bg-canvas .bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
    will-change: transform;
    transform: translateZ(0);
}

.bg-canvas .bg-glow-1 {
    width: 400px; height: 400px;
    background: var(--cyan);
    top: 10%; left: 10%;
    animation: bgGlowDrift1 20s ease-in-out infinite;
}

.bg-canvas .bg-glow-2 {
    width: 350px; height: 350px;
    background: var(--cyan-dark);
    top: 50%; right: 5%;
    animation: bgGlowDrift2 25s ease-in-out infinite;
}

.bg-canvas .bg-glow-3 {
    width: 250px; height: 250px;
    background: var(--cyan);
    bottom: 10%; left: 40%;
    animation: bgGlowDrift1 18s ease-in-out infinite reverse;
}

@keyframes bgGlowDrift1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(80px, -60px) scale(1.1); }
    50% { transform: translate(-40px, 80px) scale(0.9); }
    75% { transform: translate(60px, 40px) scale(1.05); }
}

@keyframes bgGlowDrift2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-70px, 50px) scale(1.15); }
    66% { transform: translate(50px, -70px) scale(0.95); }
}

.bg-particles {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    will-change: transform;
    transform: translateZ(0);
}

.bg-particle {
    position: absolute;
    width: 2px; height: 2px;
    background: var(--cyan);
    border-radius: 50%;
    opacity: 0;
    animation: bgParticleFloat linear infinite;
}

@keyframes bgParticleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0.5); }
    10% { opacity: 0.4; }
    90% { opacity: 0.4; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

/* ==================== FOOTER ==================== */
#footer {
    background: transparent; color: rgba(255,255,255,0.6);
    padding: 60px 0 24px;
    border-top: 1px solid rgba(53, 212, 238, 0.08);
    position: relative;
    z-index: 1;
}
.footer-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; margin-bottom: 48px;
}
.footer-logo { height: 40px; width: auto; margin-bottom: 16px; direction: ltr; max-width: 160px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 400px; }
.footer-contact {
    padding: 10px 20px;
}
.footer-contact h4 {
    color: var(--white); font-size: 14px;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px;
}
.footer-contact a {
    display: block; font-size: 14px; margin-bottom: 10px;
    transition: color var(--transition);
}
.footer-contact a:hover { color: var(--cyan); }
.footer-contact-item {
    display: flex !important; flex-direction: row !important; align-items: center; gap: 10px;
    margin-bottom: 10px;
}
.footer-contact-item svg {
    flex-shrink: 0; min-width: 16px; width: 16px; height: 16px;
}
.footer-contact-item a {
    margin-bottom: 0; display: inline !important; font-size: 13px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px; text-align: center; font-size: 13px;
}

/* ==================== ANIMATIONS ==================== */
.fade-in {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.stagger {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.stagger.visible { opacity: 1; transform: translateY(0); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --nav-height: 64px; }
    .section { padding: 56px 0; }
    .site-logo { height: 32px; max-width: 130px; }
    .footer-logo { height: 36px; }

    #hero { min-height: auto; padding-top: var(--nav-height); padding-bottom: 60px; }
    .hero-content { padding: 0 16px; }
    .hero-tag { font-size: 10px; padding: 6px 14px; letter-spacing: 2px; }
    .hero-domain { font-size: clamp(2.2rem, 11vw, 4rem); letter-spacing: -1px; }
    .hero-desc { font-size: 14px; margin-bottom: 24px; }
    .hero-subtitle { margin-bottom: 12px; font-size: 0.95rem; }
    .scroll-indicator { display: none; }
    .section-title { font-size: clamp(1.6rem, 5.5vw, 2.2rem); }
    .section-sub { font-size: 14px; }
    .section-header { margin-bottom: 48px; }

    .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .impact-card { padding: 24px 14px; }
    .impact-card h3 { font-size: 1rem; }
    .impact-card p { font-size: 0.82rem; }

    .offer-form { padding: 28px 22px; gap: 16px; }
    .form-row { grid-template-columns: 1fr; gap: 16px; }
    .form-group input, .form-group textarea { font-size: 16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .footer-contact { padding: 0; }
    .footer-contact h4 { font-size: 12px; margin-bottom: 12px; }

    #footer { padding: 40px 0 20px; }
    .footer-grid { margin-bottom: 24px; }

    .hero-glow { display: none; }
    .bg-canvas .bg-glow { display: none; }
}

@media (max-width: 480px) {
    .section { padding: 40px 0; }
    .site-logo { height: 28px; max-width: 120px; }
    .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; }
    .btn { width: 100%; justify-content: center; }
    .impact-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .impact-card { padding: 20px 12px; }
    .offer-form { padding: 22px 16px; }
    .nav-cta { padding: 8px 16px; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hero-glow, .bg-canvas .bg-glow, .bg-particle { display: none; }
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--cyan-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }
::selection { background: var(--cyan); color: var(--dark); }
