/* ==========================================================================
   GENELAB — GLOBAL.CSS
   Estilos compartilhados por todas as páginas do projeto.
   ========================================================================== */

/* ==========================================================================
   1. VARIÁVEIS DE TEMA (DARK / LIGHT)
   ========================================================================== */
:root {
    /* Dark Theme (Default) */
    --bg-base: #010308;
    --bg-surface: rgba(5, 10, 20, 0.45);
    --bg-surface-hover: rgba(10, 15, 30, 0.7);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --primary: #00f0ff;
    --secondary: #a45cff;
    --primary-glow: rgba(0, 240, 255, 0.4);
    --glass-bg: rgba(5, 10, 20, 0.45);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.15);
    --glow-spread: rgba(0, 240, 255, 0.15);
    --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.6);
    --timeline-bg: rgba(255, 255, 255, 0.02);
    --timeline-hover: rgba(255, 255, 255, 0.04);
    --bento-bg: rgba(5, 10, 20, 0.4);
    --monitor-bg: rgba(0, 0, 0, 0.5);
}

:root[data-theme="light"] {
    --bg-base: #f1f5f9;
    --bg-surface: rgba(255, 255, 255, 0.7);
    --bg-surface-hover: rgba(255, 255, 255, 0.9);
    --text-main: #0f172a;
    --text-muted: #475569;
    --primary: #0284c7;
    --secondary: #7c3aed;
    --primary-glow: rgba(2, 132, 199, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(15, 23, 42, 0.1);
    --glass-highlight: rgba(15, 23, 42, 0.2);
    --glow-spread: rgba(2, 132, 199, 0.15);
    --shadow-lg: 0 30px 60px rgba(15, 23, 42, 0.1);
    --timeline-bg: rgba(255, 255, 255, 0.8);
    --timeline-hover: rgba(255, 255, 255, 1);
    --bento-bg: rgba(255, 255, 255, 0.6);
    --monitor-bg: rgba(241, 245, 249, 0.9);
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    cursor: none;
}

@media (min-width: 901px) {
    * { cursor: none !important; }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.03"/></svg>');
    pointer-events: none;
    z-index: -2;
    opacity: 0.8;
}

h1, h2, h3, h4, .logo {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.5px;
}

a, button, input, select, label,
input[type="checkbox"] {
    pointer-events: auto;
}

/* ==========================================================================
   3. CANVAS 3D BACKGROUND
   ========================================================================== */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

/* ==========================================================================
   4. CURSOR DNA MAGNÉTICO — usado em todas as páginas
   ========================================================================== */
#cursor {
    position: fixed;
    width: 34px;
    height: 34px;
    transform: translate(-50%, -50%);
    pointer-events: none !important;
    z-index: 2147483647;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
}

#cursor svg {
    width: 100%;
    height: 100%;
    color: var(--primary);
    filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.8));
    animation: spinDNA 3s linear infinite;
}

@keyframes spinDNA {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#cursor-blur {
    position: fixed;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 240, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none !important;
    z-index: 2147483646;
    opacity: 0;
    transition: 0.12s ease-out;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.15);
}

.hovering-link #cursor {
    transform: translate(-50%, -50%) scale(1.5);
}

.hovering-link #cursor svg {
    animation: spinDNA 0.8s linear infinite;
    filter: drop-shadow(0 0 14px var(--primary));
}

.hovering-link #cursor-blur {
    opacity: 0 !important;
}

@media (max-width: 900px) {
    #cursor, #cursor-blur { display: none !important; }
    * { cursor: auto !important; }
}

/* ==========================================================================
   5. NAVEGAÇÃO — PILL NAV (compartilhada por todas as páginas)
   ========================================================================== */
.pill-nav {
    position: fixed;
    top: 25px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 92% !important;
    max-width: 1200px !important;
    border-radius: 50px !important;
    border: 1px solid rgba(0, 240, 255, 0.15) !important;
    padding: 0.8rem 2.8rem !important;
    background: rgba(6, 10, 18, 0.8) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6) !important;
    z-index: 1000 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    transition: all 0.4s ease !important;
}

.pill-nav.scrolled {
    background: rgba(2, 4, 10, 0.95) !important;
    border-color: rgba(0, 240, 255, 0.3) !important;
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.05) !important;
}

.pill-nav .logo {
    font-size: 1.5rem !important;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
}

.pill-nav .logo span {
    color: #00f0ff;
}

.pill-nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.pill-nav-links a {
    color: #b0b8c4;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s;
}

.pill-nav-links a:hover {
    color: #fff;
}

.pill-btn {
    border-radius: 50px !important;
    border: 1px solid rgba(0, 240, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.02) !important;
    color: #fff !important;
    padding: 0.7rem 2.2rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    font-size: 0.8rem !important;
    transition: all 0.3s !important;
    text-decoration: none !important;
}

.pill-btn:hover {
    background: rgba(0, 240, 255, 0.1) !important;
    border-color: #00f0ff !important;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2) !important;
}


/* ==========================================================================
   6. GLASS NAV — visual complement for .pill-nav
   ========================================================================== */
/* .pill-nav já define position, top, left, width, border-radius via !important.
   .glass-nav serve apenas como complemento visual quando combinado com .pill-nav */
.glass-nav {
    transition: all 0.4s ease;
}

.glass-nav.scrolled {
    background: rgba(2, 4, 10, 0.95) !important;
    border-color: rgba(0, 240, 255, 0.3) !important;
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.05) !important;
}

:root[data-theme="light"] .glass-nav.scrolled {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(2, 132, 199, 0.2) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}



.logo {
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-main);
    letter-spacing: -0.5px;
    transition: color 0.5s;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

:root[data-theme="light"] .nav-links a:hover {
    text-shadow: none;
    color: var(--primary);
}

/* ==========================================================================
   7. LAYOUT & UTILITIES
   ========================================================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* ==========================================================================
   8. BADGES & GRADIENTS
   ========================================================================== */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: var(--primary);
}

.badge-neon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

:root[data-theme="light"] .badge-neon {
    background: rgba(164, 92, 255, 0.15);
    border-color: rgba(164, 92, 255, 0.5);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 15px currentColor;
    animation: pulse 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.6); }
}

.gradient-text {
    background: linear-gradient(to right, var(--text-main), var(--primary), var(--secondary), var(--text-main));
    background-size: 300% auto;
    animation: gradientShift 6s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-cyan {
    background: linear-gradient(135deg, var(--text-main), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-specialty {
    background: linear-gradient(135deg, var(--text-main), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.animated {
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% { text-shadow: 0 0 10px rgba(0, 240, 255, 0.1); }
    100% { text-shadow: 0 0 20px rgba(0, 240, 255, 0.4); }
}

/* ==========================================================================
   9. BOTÃO BASE (compartilhado)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.9rem 2.5rem;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-highlight);
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
    transform: translateY(-3px);
}

/* ==========================================================================
   10. HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* ==========================================================================
   11. SECTION HEADER
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    padding-top: 6rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
}

/* ==========================================================================
   12. BENTO GRID
   ========================================================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 1.5rem;
    margin-bottom: 6rem;
}

.bento-item {
    background: var(--bento-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform-style: preserve-3d;
    will-change: transform;
}

.bento-item:hover {
    border-color: var(--glass-highlight);
    background: var(--glass-bg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

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

.bento-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transform: translateZ(20px);
    transition: transform 0.3s;
}

.bento-item:hover .bento-icon {
    transform: translateZ(30px) scale(1.1);
}

.icon-cyan {
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.icon-specialty {
    background: rgba(164, 92, 255, 0.1);
    color: var(--secondary);
    border: 1px solid rgba(164, 92, 255, 0.2);
}

.bento-item h3 {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 0.8rem;
    transform: translateZ(15px);
}

.bento-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    transform: translateZ(10px);
}

/* ==========================================================================
   13. MEDICAL DASHBOARD MOCKUP (base shared)
   ========================================================================== */
.medical-dashboard {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 var(--glass-highlight);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.5s, border 0.5s;
}

.dash-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.dash-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s;
}

.dash-card:hover {
    transform: scale(1.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.dash-card h4 {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.dash-card .value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.dash-card .value span {
    font-size: 1rem;
    color: var(--primary);
}

/* ==========================================================================
   14. TIMELINE
   ========================================================================== */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 3rem;
}

.timeline-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--secondary) 0%, var(--primary) 100%);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-dot {
    position: absolute;
    left: -3.45rem;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-base);
    border: 2px solid var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
    transition: background 0.5s;
}

.timeline-item:nth-child(odd) .timeline-dot {
    border-color: var(--secondary);
    box-shadow: 0 0 10px rgba(164, 92, 255, 0.5);
}

.timeline-content {
    background: var(--timeline-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    will-change: transform;
}

.timeline-content:hover {
    transform: translateX(10px) scale(1.02);
    border-color: var(--glass-highlight);
    background: var(--timeline-hover);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.timeline-date {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
    transform: translateZ(15px);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    transform: translateZ(10px);
}

.timeline-content p {
    color: var(--text-muted);
    transform: translateZ(5px);
}

/* ==========================================================================
   15. CTA MEGA
   ========================================================================== */
.cta-mega {
    background: radial-gradient(circle at center, rgba(164, 92, 255, 0.1) 0%, transparent 70%), var(--glass-bg);
    border: 1px solid rgba(164, 92, 255, 0.2);
    border-radius: 32px;
    padding: 6rem 3rem;
    text-align: center;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.cta-mega::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

/* ==========================================================================
   16. FOOTER
   ========================================================================== */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0;
    text-align: center;
    color: #4a5060;
    font-size: 0.9rem;
    position: relative;
}

footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--text-main);
}

/* ==========================================================================
   17. REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.fade-left {
    transform: translateX(-50px);
}

.reveal.fade-right {
    transform: translateX(50px);
}

.reveal.fade-up {
    transform: translateY(50px);
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ==========================================================================
   18. THEME TOGGLE (SUN/MOON) — oncogenetica, doencas-raras
   ========================================================================== */
.themeToggle {
    margin-left: 1rem;
    display: flex;
    align-items: center;
    pointer-events: auto;
}

.themeToggleInput {
    display: none;
}

.st-sunMoonThemeToggleBtn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.st-sunMoonThemeToggleBtn svg {
    width: 22px;
    height: 22px;
    color: var(--text-muted);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.st-sunMoonThemeToggleBtn:hover svg {
    color: var(--primary);
}

.sunMoon {
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

#moon-mask circle {
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sunRay {
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.5s ease;
    transform-origin: center;
}

.themeToggleInput:not(:checked) ~ svg .sunRay {
    opacity: 0;
    transform: scale(0);
}

.themeToggleInput:not(:checked) ~ svg #moon-mask circle {
    transform: translate(0, 0);
}

.themeToggleInput:checked ~ svg {
    transform: rotate(45deg);
    color: var(--primary);
}

.themeToggleInput:checked ~ svg #moon-mask circle {
    transform: translate(10px, -10px);
}

.themeToggleInput:checked ~ svg .sunRay {
    opacity: 1;
    transform: scale(1);
}

/* ==========================================================================
   19. SEÇÃO section (páginas-filhas genéricas)
   ========================================================================== */
section {
    padding: 8rem 0;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   20. RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-top: 40px;
    }

    .hero-text p {
        margin: 0 auto 2.5rem;
    }

    .badge-neon {
        margin: 0 auto 2rem;
    }

    .glass-nav,
    .pill-nav {
        padding: 1rem 2rem !important;
    }

    .nav-links,
    .pill-nav-links {
        display: none !important;
    }

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

    .timeline-container {
        padding-left: 2rem;
    }

    .timeline-dot {
        left: -2.4rem;
    }

    * {
        cursor: auto !important;
    }

    #cursor,
    #cursor-blur {
        display: none !important;
    }

    .bento-item,
    .timeline-content,
    .medical-dashboard {
        transform: none !important;
    }
}
