/* ==========================================================================
   AV. MISRA DALDA - TECH LAWYER
   Futuristic Dark Theme Design System
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette - Deep Navy & Neon Cyan */
    --color-navy-darkest: #0a0e17;
    --color-navy-dark: #0d1321;
    --color-navy: #1a1f35;
    --color-navy-light: #252b45;
    --color-cyan: #00d4ff;
    --color-cyan-glow: rgba(0, 212, 255, 0.5);
    --color-cyan-muted: rgba(0, 212, 255, 0.15);
    --color-white: #ffffff;
    --color-text: rgba(255, 255, 255, 0.9);
    --color-text-muted: rgba(255, 255, 255, 0.6);
    --color-text-dim: rgba(255, 255, 255, 0.4);
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-hover: rgba(0, 212, 255, 0.3);

    /* Typography */
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Font Sizes */
    --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.75rem);
    --text-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.875rem);
    --text-base: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
    --text-lg: clamp(1.05rem, 1rem + 0.25vw, 1.125rem);
    --text-xl: clamp(1.2rem, 1.1rem + 0.5vw, 1.375rem);
    --text-2xl: clamp(1.4rem, 1.2rem + 1vw, 1.75rem);
    --text-3xl: clamp(1.8rem, 1.5rem + 1.5vw, 2.5rem);
    --text-4xl: clamp(2.2rem, 1.8rem + 2vw, 3.5rem);
    --text-5xl: clamp(2.8rem, 2rem + 4vw, 5rem);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;

    /* Layout */
    --container-max: 1280px;
    --container-padding: clamp(1.25rem, 4vw, 3rem);

    /* Effects */
    --glass-bg: rgba(26, 31, 53, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: 20px;
    --glow-sm: 0 0 10px var(--color-cyan-glow);
    --glow-md: 0 0 20px var(--color-cyan-glow);
    --glow-lg: 0 0 40px var(--color-cyan-glow);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-navy-darkest);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Animated Background Grid */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.bg-glow {
    position: fixed;
    top: -50%;
    right: -25%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* --------------------------------------------------------------------------
   Glass Card Component
   -------------------------------------------------------------------------- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all var(--transition-base);
}

.glass-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: var(--glow-sm);
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-mono);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.accent {
    color: var(--color-cyan);
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.section {
    position: relative;
    z-index: 1;
    padding: var(--space-3xl) 0;
}

.section-header {
    margin-bottom: var(--space-2xl);
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--color-cyan);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: var(--text-4xl);
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.section-desc {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-md) 0;
    background: rgba(10, 14, 23, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

.nav {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.25em;
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    font-weight: 600;
}

.logo-bracket {
    color: var(--color-cyan);
}

.logo-text {
    color: var(--color-white);
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-cyan);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--color-white);
}

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

.nav-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.25rem;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-navy-darkest);
    background: var(--color-cyan);
    border-radius: 6px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.nav-cta:hover {
    box-shadow: var(--glow-md);
    transform: translateY(-2px);
}

.cta-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.nav-cta:hover .cta-glow {
    transform: translateX(100%);
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 110;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-base);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 105;
    background: var(--color-navy-darkest);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: var(--space-lg);
}

.mobile-link {
    font-family: var(--font-mono);
    font-size: var(--text-2xl);
    color: var(--color-text-muted);
    transition: all var(--transition-base);
}

.mobile-link:hover {
    color: var(--color-cyan);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    padding: 140px var(--container-padding) var(--space-3xl);
    max-width: var(--container-max);
    margin: 0 auto;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.5rem 1rem;
    background: var(--color-cyan-muted);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 100px;
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--color-cyan);
    margin-bottom: var(--space-lg);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-cyan);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: var(--text-5xl);
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--color-cyan);
    text-shadow: var(--glow-sm);
}

.hero-description {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.875rem 1.5rem;
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: 8px;
    transition: all var(--transition-base);
}

.btn-primary {
    color: var(--color-navy-darkest);
    background: var(--color-cyan);
}

.btn-primary:hover {
    box-shadow: var(--glow-md);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    border-color: var(--color-cyan);
    color: var(--color-cyan);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: var(--text-base);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-value {
    font-family: var(--font-mono);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-cyan);
}

.stat-label {
    font-size: var(--text-xs);
    color: var(--color-text-dim);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    border: 1px solid var(--color-border);
}

.hero-visual-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--color-cyan-glow) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

/* --------------------------------------------------------------------------
   About Section
   -------------------------------------------------------------------------- */
.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-2xl);
    align-items: start;
}

.about-text {
    max-width: 600px;
}

.about-lead {
    font-size: var(--text-xl);
    color: var(--color-white);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.about-text p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.5rem 1rem;
    background: var(--color-navy);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: var(--text-sm);
    color: var(--color-text);
}

.feature-icon {
    color: var(--color-cyan);
}

.feature-icon svg {
    width: 18px;
    height: 18px;
}

/* About Card */
.about-card {
    padding: var(--space-xl);
}

.card-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.card-icon {
    font-size: var(--text-2xl);
}

.card-tag {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--color-cyan);
    letter-spacing: 0.1em;
}

.about-card h3 {
    font-size: var(--text-2xl);
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.about-card p {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    margin-bottom: var(--space-lg);
}

.card-stats {
    display: flex;
    gap: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
}

.mini-stat {
    display: flex;
    flex-direction: column;
}

.mini-value {
    font-family: var(--font-mono);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-cyan);
}

.mini-label {
    font-size: var(--text-xs);
    color: var(--color-text-dim);
}

/* --------------------------------------------------------------------------
   Bento Grid - Services
   -------------------------------------------------------------------------- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.bento-item {
    position: relative;
    padding: var(--space-xl);
    overflow: hidden;
}

.bento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-cyan), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.bento-item:hover::before {
    opacity: 1;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.bento-wide {
    grid-column: span 2;
}

.bento-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--color-cyan-muted);
    border-radius: 12px;
    color: var(--color-cyan);
    margin-bottom: var(--space-md);
}

.bento-item h3 {
    font-size: var(--text-xl);
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

.bento-item p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
}

.bento-large h3 {
    font-size: var(--text-2xl);
}

.bento-large p {
    font-size: var(--text-base);
    max-width: 400px;
}

.bento-tag {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: 0.25rem 0.75rem;
    background: var(--color-cyan);
    color: var(--color-navy-darkest);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: 4px;
}

/* --------------------------------------------------------------------------
   Features Section
   -------------------------------------------------------------------------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.feature-card {
    padding: var(--space-xl);
    text-align: center;
}

.feature-number {
    font-family: var(--font-mono);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-cyan);
    opacity: 0.3;
    margin-bottom: var(--space-sm);
}

.feature-card h3 {
    font-size: var(--text-lg);
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

.feature-card p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
    padding: var(--space-2xl) 0;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
    border: 1px solid var(--color-border-hover);
}

.cta-content h2 {
    font-size: var(--text-3xl);
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

.cta-content p {
    color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.info-card {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-cyan-muted);
    border-radius: 10px;
    color: var(--color-cyan);
    flex-shrink: 0;
}

.info-content h4 {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    color: var(--color-white);
    margin-bottom: 4px;
}

.info-content p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
}

.info-content a {
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.info-content a:hover {
    color: var(--color-cyan);
}

/* Contact Form */
.contact-form {
    padding: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.contact-form label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: var(--color-text);
    background: var(--color-navy-dark);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    outline: none;
    transition: all var(--transition-fast);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--color-text-dim);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--color-cyan);
    box-shadow: 0 0 0 3px var(--color-cyan-muted);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
}

.contact-form select option {
    background: var(--color-navy-dark);
    color: var(--color-text);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    position: relative;
    z-index: 1;
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--color-border);
    background: var(--color-navy-dark);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.footer-brand p {
    font-size: var(--text-sm);
    color: var(--color-text-dim);
    margin-top: var(--space-xs);
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-links a {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-cyan);
}

.footer-legal p {
    font-size: var(--text-xs);
    color: var(--color-text-dim);
}

/* --------------------------------------------------------------------------
   Responsive Design
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 120px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-visual img {
        max-width: 400px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .bento-large,
    .bento-wide {
        grid-column: span 1;
    }

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

    .cta-box {
        flex-direction: column;
        text-align: center;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--text-3xl);
    }

    .stat-divider {
        display: none;
    }

    .hero-stats {
        gap: var(--space-md);
    }
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.section-header,
.bento-item,
.feature-card,
.info-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Selection */
::selection {
    background-color: var(--color-cyan-muted);
    color: var(--color-white);
}

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

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

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

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