/* ============================================
   Marketing Consulting+ - Custom Styles
   ============================================ */

/* CSS Variables */
:root {
    --color-void: #050505;
    --color-charcoal: #0a0a0a;
    --color-graphite: #111111;
    --color-smoke: #1a1a1a;
    --color-steel: #2a2a2a;
    --color-neon: #ff6600;
    --color-neon-dim: #e55a00;
    --color-neon-glow: rgba(255, 102, 0, 0.2);
    --color-accent: #ff9a00;
    --color-accent-dim: #e68900;
    --color-warm: #ff3300;
    
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    
    --cursor-size: 20px;
    --cursor-ring-size: 40px;
}

/* Base Reset & Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--color-void);
    color: #ffffff;
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Cursor */
.cursor-dot {
    position: fixed;
    width: var(--cursor-size);
    height: var(--cursor-size);
    background: var(--color-neon);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: width 0.2s, height 0.2s;
}

.cursor-ring {
    position: fixed;
    width: var(--cursor-ring-size);
    height: var(--cursor-ring-size);
    border: 1px solid var(--color-neon);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-dot.hover {
    width: 40px;
    height: 40px;
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-color: var(--color-accent);
}

/* Navigation */
#navbar {
    background: transparent;
    transition: all 0.5s ease;
}

#navbar.scrolled {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-neon);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu */
.menu-line {
    transition: all 0.3s ease;
}

#menu-toggle.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#menu-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
}

#menu-toggle.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    width: 1.5rem;
}

#mobile-menu.open {
    transform: translateX(0);
}

/* Hero Section */
.hero-eyebrow {
    opacity: 0;
    transform: translateY(20px);
}

.hero-line-1,
.hero-line-2,
.hero-line-3 {
    opacity: 0;
    transform: translateY(40px);
}

.hero-sub {
    opacity: 0;
    transform: translateY(30px);
}

.hero-cta {
    opacity: 0;
    transform: translateY(30px);
}

/* Stats */
.stat-item {
    opacity: 0;
    transform: translateY(20px);
}

/* Section Headers */
.section-header {
    opacity: 0;
    transform: translateY(40px);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-neon);
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
}

.section-tag::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--color-neon);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--color-neon), 0 0 24px rgba(255, 102, 0, 0.3);
    animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

/* Process Cards */
.process-card {
    opacity: 0;
    transform: translateY(40px);
}

.process-card:hover {
    transform: translateY(-8px);
}

.step-icon {
    transition: all 0.4s ease;
}

.process-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Bento Grid */
.bento-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover {
    transform: translateY(-4px) scale(1.02);
}

.service-icon {
    transition: all 0.4s ease;
}

.bento-card:hover .service-icon {
    transform: scale(1.1);
}

.tag {
    transition: all 0.3s ease;
}

.bento-card:hover .tag {
    background: rgba(255, 102, 0, 0.2);
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.faq-intro {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.9375rem;
    line-height: 1.75;
    max-width: 22rem;
}

.faq-intro-link {
    color: var(--color-neon);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.faq-intro-link:hover {
    opacity: 0.8;
}

.faq-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.375rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
    margin-top: 2rem;
}

.faq-btn:hover {
    border-color: rgba(255, 102, 0, 0.5);
    color: #ffffff;
    background: rgba(255, 102, 0, 0.06);
}

.faq-col-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    opacity: 0;
    transform: translateY(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 0 1.5rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.16);
}

.faq-item.is-open {
    border-color: rgba(255, 102, 0, 0.38);
    background: rgba(255, 102, 0, 0.04);
}

.faq-trigger {
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    padding: 1.375rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-trigger:focus-visible {
    outline: 2px solid var(--color-neon);
    outline-offset: 4px;
    border-radius: 4px;
}

.faq-number {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.8125rem;
    color: var(--color-neon);
    flex-shrink: 0;
    width: 1.5rem;
    line-height: 1;
}

.faq-question {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.25s ease;
    flex: 1;
}

.faq-trigger:hover .faq-question {
    color: rgba(255, 255, 255, 0.95);
}

.faq-trigger[aria-expanded="true"] .faq-question {
    color: #ffffff;
}

/* Ikona */
.faq-icon {
    flex-shrink: 0;
    width: 2.375rem;
    height: 2.375rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-neon);
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: auto;
}

.faq-trigger:hover .faq-icon {
    border-color: rgba(255, 102, 0, 0.5);
    background: rgba(255, 102, 0, 0.08);
}

.faq-trigger[aria-expanded="true"] .faq-icon {
    background: var(--color-neon);
    border-color: var(--color-neon);
    color: #0a0a0a;
}

.faq-trigger[aria-expanded="true"] .faq-icon-plus { display: none; }
.faq-trigger[aria-expanded="true"] .faq-icon-minus { display: block; }
.faq-trigger[aria-expanded="false"] .faq-icon-minus { display: none; }
.faq-trigger[aria-expanded="false"] .faq-icon-plus { display: block; }

/* Odpowiedź */
.faq-answer-inner {
    padding: 0 0.5rem 1.5rem 2.5rem;
}

.faq-answer-inner p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9375rem;
    line-height: 1.8;
}

/* Desktop: dwie kolumny */
@media (min-width: 1024px) {
    .faq-grid {
        grid-template-columns: 5fr 7fr;
        gap: 5rem;
        align-items: start;
    }

.faq-col-header {
        position: sticky;
        top: 6.5rem;
    }
}

/* FAQ should be visible without JS reveal */
.faq-col-header,
.faq-item {
    opacity: 1;
    transform: none;
}

/* CTA Section */
.cta-tag,
.cta-title,
.cta-desc,
.contact-options {
    opacity: 0;
    transform: translateY(30px);
}

.contact-btn {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.social-link {
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-4px);
}

/* Contact Page */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
}

.contact-card,
.sec-form {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.75rem;
    background:
        linear-gradient(180deg, rgba(17, 17, 17, 0.94) 0%, rgba(10, 10, 10, 0.96) 100%);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(24px);
}

.contact-card::before,
.sec-form::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 102, 0, 0.14), transparent 42%);
    pointer-events: none;
}

.contact-card::after,
.sec-form::after {
    content: '';
    position: absolute;
    top: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 102, 0, 0.95), rgba(255, 154, 0, 0.08));
}

.contact-card-body,
.sec-form-body {
    position: relative;
    z-index: 1;
    padding: 2rem;
    padding-left: 3.5rem;
}

.contact-card-grid {
    display: grid;
    gap: 1rem;
}

.contact-detail {
    position: relative;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1rem 1rem 1.125rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.contact-detail:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 102, 0, 0.28);
    background: rgba(255, 255, 255, 0.03);
}

.contact-detail-icon {
    flex: 0 0 auto;
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: rgba(255, 102, 0, 0.12);
    color: var(--color-neon);
    box-shadow: inset 0 0 0 1px rgba(255, 102, 0, 0.16);
}

.contact-detail-label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
}

.contact-detail-value,
.contact-detail-value a {
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.3;
}

.contact-detail-copy {
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.7;
}

.contact-detail-value a:hover {
    color: var(--color-neon);
}

.contact-panel-note {
    padding: 1.125rem 1.25rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.12), rgba(255, 255, 255, 0.02));
    color: rgba(255, 255, 255, 0.68);
}

.form-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    font-size: clamp(1rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.contact-form {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-group {
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    font: inherit;
    line-height: 1.5;
    padding: 1rem 1.1rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, transform 0.25s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.contact-form textarea {
    min-height: 11rem;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.contact-form input:hover,
.contact-form textarea:hover {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
    outline: none;
    border-color: rgba(255, 102, 0, 0.56);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.12), 0 24px 48px rgba(0, 0, 0, 0.22);
    transform: translateY(-1px);
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid,
.consent-label.is-invalid {
    border-color: rgba(255, 51, 0, 0.45) !important;
}

.form-consents {
    display: grid;
    gap: 0.875rem;
    padding: 1.25rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.consent-intro {
    font-size: 0.75rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.62);
}

.consent-label {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.875rem;
    align-items: start;
    padding: 0.875rem 1rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(5, 5, 5, 0.35);
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
    cursor: pointer;
}

.consent-label:hover {
    border-color: rgba(255, 102, 0, 0.2);
    background: rgba(255, 255, 255, 0.025);
    transform: translateY(-2px);
}

.consent-label input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.consent-check {
    position: relative;
    width: 1.3rem;
    height: 1.3rem;
    margin-top: 0.15rem;
    border-radius: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.25s ease;
}

.consent-check::after {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 0.38rem;
    height: 0.72rem;
    border-right: 2px solid var(--color-void);
    border-bottom: 2px solid var(--color-void);
    transform: rotate(45deg) scale(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.consent-label input:checked + .consent-check {
    background: linear-gradient(135deg, var(--color-neon), var(--color-accent));
    border-color: transparent;
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.14);
}

.consent-label input:checked + .consent-check::after {
    transform: rotate(45deg) scale(1);
}

.consent-label input:focus-visible + .consent-check {
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.14);
    border-color: rgba(255, 102, 0, 0.5);
}

.consent-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

.form-submit {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 3.75rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-neon), var(--color-accent));
    color: var(--color-void);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    box-shadow: 0 24px 56px rgba(255, 102, 0, 0.22);
}

.form-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent 32%, transparent 68%, rgba(255, 255, 255, 0.18));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.form-submit:hover,
.form-submit:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 26px 64px rgba(255, 102, 0, 0.3);
    filter: saturate(1.05);
    outline: none;
}

.form-submit:hover::before,
.form-submit:focus-visible::before {
    transform: translateX(0);
}

.form-submit:disabled {
    cursor: wait;
    opacity: 0.8;
}

.form-status {
    min-height: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

.form-status.is-success {
    color: rgba(255, 214, 184, 0.95);
}

.form-status.is-error {
    color: rgba(255, 178, 160, 0.95);
}

.contact-mini-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact-mini-link:hover,
.contact-mini-link:focus-visible {
    color: var(--color-neon);
    outline: none;
}

/* Social Proof Marquee */
.marquee-section {
    position: relative;
}

.logos-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.marquee-viewport {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 1rem;
    will-change: transform;
    animation: marquee-left 36s linear infinite;
    animation-play-state: paused;
}

.marquee-track--right {
    animation-name: marquee-right;
}

.marquee-section.is-active .marquee-track {
    animation-play-state: running;
}

.marquee-group {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    padding-right: 1rem;
    flex: 0 0 auto;
}

.marquee-item {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 4rem;
    padding: 0 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.18em;
    white-space: nowrap;
}

.marquee-item--logo {
    min-width: 18rem;
}

.marquee-item--text {
    font-size: clamp(0.78rem, 1.4vw, 0.95rem);
    text-transform: uppercase;
    font-weight: 600;
}

.marquee-logo {
    display: block;
    width: auto;
    height: 4.6rem;
    max-width: 18rem;
    object-fit: contain;
}

@keyframes marquee-left {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes marquee-right {
    from {
        transform: translate3d(-50%, 0, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

/* Footer */
.footer-bottom a {
    transition: all 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-4px);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .marquee-track {
        animation: none !important;
        transform: none !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem !important;
    }
    
    .section-title,
    .cta-title {
        font-size: 2rem !important;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card.lg\\:col-span-2 {
        grid-column: span 1;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .cursor-dot,
    .cursor-ring {
        display: none !important;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .logos-grid {
        gap: 2rem;
    }

    .marquee-track {
        gap: 0.75rem;
    }

    .marquee-group {
        gap: 0.75rem;
    }

    .marquee-item {
        min-height: 4rem;
        padding: 0 1.1rem;
        letter-spacing: 0.12em;
    }

    .marquee-item--logo {
        min-width: 10.25rem;
    }

    .marquee-logo {
        height: 3.4rem;
        max-width: 13rem;
    }

    .contact-card-body,
    .sec-form-body {
        padding: 1.5rem;
        padding-left: 2.6rem;
    }

    .contact-card::after,
    .sec-form::after {
        left: 1rem;
        top: 1rem;
        bottom: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .marquee-item--text {
        font-size: 0.84rem;
    }
}

@media (max-width: 480px) {
    .marquee-item {
        min-height: 4rem;
        padding: 0 0.9rem;
    }

    .marquee-item--logo {
        min-width: 9rem;
    }

    .marquee-logo {
        height: 2.8rem;
        max-width: 10rem;
    }

    .marquee-item--text {
        font-size: 0.72rem;
        letter-spacing: 0.1em;
    }
}

/* Grain Texture Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9997;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Selection */
::selection {
    background: var(--color-neon);
    color: var(--color-void);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-void);
}

::-webkit-scrollbar-thumb {
    background: var(--color-steel);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-neon-dim);
}
