/* =========================================
   UB Medical Billing - Core Styles
   ========================================= */

:root {
    /* Color System */
    --clr-bg: #061121;
    /* deep navy blue */
    --clr-surface: #0f1c2e;
    --clr-surface-light: rgba(255, 255, 255, 0.05);

    --clr-primary: #3b82f6;
    /* Electric Blue */
    --clr-primary-hover: #2563eb;

    --clr-accent: #0ea5e9;
    /* Sky Blue */
    --clr-success: #10b981;

    --clr-text: #f8fafc;
    --clr-text-muted: #94a3b8;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Effects */
    --glow-primary: 0 0 40px rgba(59, 130, 246, 0.2);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--clr-bg);
    color: var(--clr-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-accent {
    color: var(--clr-accent);
}

.text-primary {
    color: var(--clr-primary);
}

.text-muted {
    color: var(--clr-text-muted);
}

.bg-success {
    background-color: var(--clr-success);
}

.bg-accent {
    background-color: var(--clr-accent);
}

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.pt-4 {
    padding-top: 1.5rem;
}

.pb-4 {
    padding-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--clr-text) 0%, var(--clr-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: white;
    box-shadow: var(--glow-primary);
}

.btn-primary:hover {
    background-color: var(--clr-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background-color: var(--clr-surface-light);
    color: var(--clr-text);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(6, 17, 33, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-accent {
    color: var(--clr-primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-text-muted);
}

.nav-link:hover {
    color: var(--clr-text);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--clr-text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    padding-top: 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(6, 17, 33, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(60px);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--clr-primary);
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--clr-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--clr-primary);
}

.hero-title {
    font-size: 4.5rem;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--clr-text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Social Proof */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.proof-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--clr-bg);
    margin-left: -12px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--clr-surface);
    border: 2px solid var(--clr-bg);
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--clr-text-muted);
}

.proof-text {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}

/* Glass Cards (Hero Visuals) */
.glass-card {
    background: rgba(15, 28, 46, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.hero-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.main-stat-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    z-index: 2;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--clr-text-muted);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-subtext {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
}

.chart-mockup {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
}

.chart-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px 4px 0 0;
    transition: height 1s ease;
}

.text-accent-bg {
    background: var(--clr-primary);
    box-shadow: var(--glow-primary);
}

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    top: 15%;
    right: 5%;
    animation-delay: 0s;
}

.float-2 {
    bottom: 20%;
    left: 0%;
    animation-delay: 3s;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.float-details {
    display: flex;
    flex-direction: column;
}

.float-title {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}

.float-value {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================================
   Responsive Logo Cloud
   ========================================= */
.logo-cloud {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(15, 28, 46, 0.3);
}

.logo-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0.6;
}

.logo-item {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--clr-text-muted);
    filter: grayscale(100%);
    transition: var(--transition);
}

.logo-item:hover {
    filter: grayscale(0%);
    color: var(--clr-text);
}

/* =========================================
   Sections General
   ========================================= */
.section {
    padding: 6rem 0;
}

.bg-surface {
    background-color: var(--clr-surface);
}

.section-header {
    max-width: 600px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
}

/* =========================================
   Solutions Section
   ========================================= */
.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: rgba(15, 28, 46, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.solution-card:hover {
    transform: translateY(-5px);
    background: rgba(15, 28, 46, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

.featured-card {
    background: linear-gradient(180deg, rgba(14, 165, 233, 0.05) 0%, rgba(15, 28, 46, 0.8) 100%);
    border-color: rgba(14, 165, 233, 0.2);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--clr-accent);
    color: var(--clr-bg);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.solution-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.bg-primary-light {
    background: rgba(59, 130, 246, 0.1);
}

.bg-accent-light {
    background: rgba(14, 165, 233, 0.1);
}

.solution-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.solution-text {
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.solution-features {
    list-style: none;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--clr-text);
}

.w-100 {
    width: 100%;
}

.mt-3 {
    margin-top: 1rem;
}

/* =========================================
   Capital Section (Phase 2)
   ========================================= */
.capital-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.timeline {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid var(--clr-accent);
    color: var(--clr-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.step-content p {
    font-size: 0.95rem;
}

.badge-accent {
    background: rgba(14, 165, 233, 0.1);
    color: var(--clr-accent);
    border-color: rgba(14, 165, 233, 0.2);
}

/* Calculator Visual */
.calc-glass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.calc-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.calc-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-bottom: 0.5rem;
}

.calc-input {
    background: rgba(15, 28, 46, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    transition: var(--transition);
    color: white;
}

input.calc-input {
    cursor: text;
}

input.calc-input:focus {
    border-color: var(--clr-primary);
    outline: none;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.calc-result {
    text-align: center;
}

.result-label {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    margin-bottom: 0.5rem;
}

.result-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
}

/* =========================================
   Audit Section
   ========================================= */
.relative {
    position: relative;
}

.audit-banner {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(6, 17, 33, 0.8) 100%);
    border-color: rgba(14, 165, 233, 0.3);
    padding: 4rem 2rem;
    text-align: center;
    overflow: hidden;
}

.audit-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
}

.audit-content {
    max-width: 700px;
    margin: 0 auto;
}

.text-bg {
    color: var(--clr-bg);
    font-weight: 700;
}

.bg-white {
    background-color: white;
}

.audit-form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row>* {
    flex: 1;
}

.form-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1rem 1.25rem;
    color: var(--clr-text);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--clr-accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.mt-2 {
    margin-top: 0.5rem;
}

/* =========================================
   Results (Case Studies) Section
   ========================================= */
.case-studies-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.case-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
}

.case-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
}

.case-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.case-meta span {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
}

.case-specialty {
    color: var(--clr-text);
}

.case-location {
    color: var(--clr-text-muted);
}

.case-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.case-desc {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.case-metrics {
    display: flex;
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.metric-val {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.metric-lbl {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =========================================
   Utility Classes & Footer
   ========================================= */
.border-top-dark {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.border-bottom-dark {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.gap-3 {
    gap: 1.5rem;
}

.text-sm {
    font-size: 0.85rem;
}

.text-xs {
    font-size: 0.75rem;
}

.px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 28, 46, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 0.5rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--clr-text);
}

.animate-bounce-subtle {
    animation: bounce-subtle 2s infinite;
}

@keyframes bounce-subtle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(3px);
    }
}

.footer {
    background-color: var(--clr-bg);
}

.border-top-dark {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.gap-3 {
    gap: 1.5rem;
}

.text-sm {
    font-size: 0.85rem;
}

.footer {
    background-color: var(--clr-bg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--clr-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

/* =========================================
   Media Queries
   ========================================= */
@media screen and (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }

    .hero-cta-group {
        justify-content: center;
        flex-direction: column;
    }

    .hero-social-proof {
        justify-content: center;
    }

    .badge {
        margin: 0 auto 1.5rem;
    }

    .hero-visual {
        margin-top: 3rem;
        min-height: 400px;
    }

    .nav-links {
        display: none;
    }

    .nav-actions .btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .solutions-grid,
    .capital-grid,
    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .case-metrics {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .main-stat-card {
        width: 100%;
    }

    .float-card {
        display: none;
    }
}

/* =========================================
   Phase 4 UI Refinements
   ========================================= */

.text-success {
    color: var(--clr-success) !important;
}

/* Add hover glows to cards */
.solution-card:hover,
.case-card:hover,
.ecosystem-item:hover,
.mips-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-primary);
    border-color: rgba(59, 130, 246, 0.4);
}

/* Remove 'The Hook' badge globally per request */
.featured-badge {
    display: none !important;
}

/* Section spacing adjustments to remove extra spaces */
.section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.ot-form-container {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 17, 33, 0.9) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    margin-top: 2rem;
}

.contact-glow-btn {
    transition: var(--transition);
}

.contact-glow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
    border-color: rgba(59, 130, 246, 0.8);
    background-color: var(--clr-surface-light);
    color: white;
}