/* ==========================================================================
   Zenith SaaS Landing Page Style (Enterprise Tech Dark)
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
    --bg-dark: #080a10;
    --bg-card: rgba(15, 22, 36, 0.65);
    
    --emerald: #10b981;
    --emerald-glow: rgba(16, 185, 129, 0.35);
    
    --border-dark: #1e293b;
    --border-glow: rgba(16, 185, 129, 0.2);
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #475569;
    
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body.saas-body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-sans);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Glowing Vector Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -2;
    opacity: 0.25;
    pointer-events: none;
}

.orb-1 {
    top: -5%;
    right: 5%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, var(--emerald) 0%, transparent 70%);
}

.orb-2 {
    top: 60%;
    left: -5%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    height: 72px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-dark);
    position: sticky;
    top: 0;
    background-color: rgba(8, 10, 16, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 99;
}

.header-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.logo i {
    color: var(--emerald);
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.9rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

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

.nav-pill {
    background-color: rgba(16, 185, 129, 0.12);
    color: var(--emerald);
    font-size: 0.62rem;
    font-weight: 700;
    padding: 0.1rem 0.4rem;
    border-radius: 9999px;
    letter-spacing: 0.5px;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex-shrink: 0;
}

.ghub-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.ghub-pill i { color: var(--text-primary); }

.ghub-pill:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.nav-signin {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-signin:hover { color: var(--emerald); }

.nav-burger {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-sm {
    padding: 0.5rem 1.1rem;
    font-size: 0.8rem;
}

.btn-emerald {
    background-color: var(--emerald);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.btn-emerald:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--emerald-glow);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dark);
    color: var(--text-primary);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--text-secondary);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    padding: 6rem 0;
    position: relative;
}

.hero-container {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.hero-badge {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--emerald);
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(90deg, var(--emerald) 20%, #3b82f6 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 3rem auto;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

/* Dashboard Mock Widget */
.dashboard-preview-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: left;
}

.dashboard-header {
    height: 45px;
    background-color: rgba(15, 22, 36, 0.9);
    border-bottom: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    padding: 0 1.25rem;
    position: relative;
}

.dots-row {
    display: flex;
    gap: 0.4rem;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.dot.red { background-color: #ef4444; }
.dot.yellow { background-color: #f59e0b; }
.dot.green { background-color: #10b981; }

.dashboard-search-mock {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 25px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.dashboard-body-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    height: 320px;
}

.db-sidebar {
    border-right: 1px solid var(--border-dark);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.db-side-link {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.db-side-link.active, .db-side-link:hover {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
}

.db-side-link.active i {
    color: var(--emerald);
}

.db-main {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.db-welcome {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.db-welcome h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
}

.db-badge {
    font-size: 0.7rem;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--emerald);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-weight: 700;
}

.db-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.db-stat-card {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-dark);
    padding: 1rem;
    border-radius: 8px;
    position: relative;
}

.db-stat-card span {
    font-size: 0.65rem;
    color: var(--text-secondary);
    display: block;
    letter-spacing: 0.5px;
}

.db-stat-card strong {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    display: block;
    margin: 0.25rem 0;
}

.trend {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.72rem;
    font-weight: 700;
}

.trend.up { color: var(--emerald); }
.trend.down { color: #ef4444; }

.db-chart-placeholder {
    border: 1px solid var(--border-dark);
    background-color: rgba(255, 255, 255, 0.01);
    border-radius: 8px;
    flex-grow: 1;
    padding: 1.25rem;
    display: flex;
    align-items: flex-end;
}

.bar-chart {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
}

.bar {
    flex-grow: 1;
    height: var(--h);
    background-color: var(--border-dark);
    border-radius: 4px;
    transition: background-color 0.4s, height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar.active {
    background-color: var(--emerald);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

/* ==========================================================================
   Features Tabs Section
   ========================================================================== */
.features-section {
    padding: 6rem 0;
    border-top: 1px solid var(--border-dark);
}

/* Shared section headings */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 4rem auto;
    font-size: 1.02rem;
}

/* Titles without a subtitle need their own bottom spacing */
.pricing-section .section-title,
.faq-section .section-title {
    margin-bottom: 3rem;
}

.tab-menu {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-dark);
    color: var(--text-secondary);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
}

.tab-btn:hover, .tab-btn.active {
    color: var(--emerald);
    border-color: var(--emerald);
    background-color: rgba(16, 185, 129, 0.03);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.05);
}

.tab-content {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 4rem;
    min-height: 350px;
}

.tab-panel {
    display: none;
    animation: tabReveal 0.5s ease forwards;
}

.tab-panel.active {
    display: block;
}

@keyframes tabReveal {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.panel-details h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.panel-details p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.panel-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.panel-list li {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.panel-list li i {
    color: var(--emerald);
}

.panel-graphic {
    height: 250px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.graphic-huge-icon {
    font-size: 6rem;
    transition: transform 0.5s ease;
}

.tab-panel:hover .graphic-huge-icon {
    transform: scale(1.1) rotate(5deg);
}

.grad-blue { background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(15, 22, 36, 0.8) 100%); color: #3b82f6; }
.grad-green { background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(15, 22, 36, 0.8) 100%); color: var(--emerald); }
.grad-purple { background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(15, 22, 36, 0.8) 100%); color: #a855f7; }

/* ==========================================================================
   Pricing calculator section
   ========================================================================== */
.pricing-section {
    padding: 6rem 0;
    border-top: 1px solid var(--border-dark);
}

.toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 4rem;
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.toggle-label.active {
    color: var(--text-primary);
}

.discount-badge {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--emerald);
    font-size: 0.72rem;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
    margin-left: 0.35rem;
}

.toggle-switch {
    width: 54px;
    height: 30px;
    background-color: var(--border-dark);
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    position: relative;
    padding: 3px;
    transition: background-color 0.3s;
}

.toggle-switch:hover {
    background-color: var(--text-muted);
}

.toggle-switch-handle {
    display: block;
    width: 24px;
    height: 24px;
    background-color: var(--text-primary);
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toggle-switch.active {
    background-color: var(--emerald);
}

.toggle-switch.active .toggle-switch-handle {
    transform: translateX(24px);
    background-color: var(--bg-dark);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}

.price-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 3rem 2.25rem;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.price-card.pro-featured {
    border-color: var(--emerald);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.1);
    padding: 3.5rem 2.25rem 3rem 2.25rem;
}

.featured-banner {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--emerald);
    color: var(--bg-dark);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.35rem 1rem;
    border-radius: 9999px;
    letter-spacing: 1px;
}

.plan-name {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.price-wrap {
    display: flex;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
    transition: transform 0.3s;
}

.duration {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-left: 0.25rem;
}

.plan-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    min-height: 45px;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    border-top: 1px solid var(--border-dark);
    padding-top: 2rem;
}

.plan-features li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.plan-features li i {
    color: var(--emerald);
}

.plan-features li.muted {
    color: var(--text-muted);
}

.plan-features li.muted i {
    color: var(--text-muted);
}

.plan-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-dark);
    color: var(--text-primary);
    padding: 0.9rem 0;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.plan-btn:hover {
    border-color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
}

.pro-featured .plan-btn {
    background-color: var(--emerald);
    color: var(--bg-dark);
    border: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.pro-featured .plan-btn:hover {
    transform: none;
    box-shadow: 0 6px 20px var(--emerald-glow);
    opacity: 0.9;
}

/* ==========================================================================
   Accordion FAQ Section
   ========================================================================== */
.faq-section {
    padding: 6rem 0;
    border-top: 1px solid var(--border-dark);
}

.accordion-list {
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    overflow: hidden;
}

.accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.98rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.trigger-arrow {
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item.active .trigger-arrow {
    transform: rotate(180deg);
    color: var(--emerald);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s;
    background-color: rgba(255, 255, 255, 0.01);
}

.accordion-item.active .accordion-content {
    max-height: 200px; /* Expands open */
}

.accordion-content p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
    padding: 7rem 2rem;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
    border-top: 1px solid var(--border-dark);
    text-align: center;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.cta-banner p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-dark);
    padding: 4rem 0 2.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
}

.footer-brand .logo { margin-bottom: 1rem; }

.footer-brand p {
    color: var(--text-secondary);
    max-width: 280px;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    color: var(--emerald);
    border-color: var(--emerald);
}

.footer-col h4 {
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
    letter-spacing: 0.5px;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 0.7rem;
    transition: color 0.3s;
}

.footer-col a:hover { color: var(--emerald); }

.footer-bottom {
    max-width: 1100px;
    margin: 3rem auto 0;
    padding: 1.75rem 2rem 0;
    border-top: 1px solid var(--border-dark);
    text-align: center;
    color: var(--text-muted);
}

/* ==========================================================================
   Dynamic Dashboard View (sidebar-driven)
   ========================================================================== */
.db-team-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
}

.db-member {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.01);
}

.db-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--bg-dark);
    flex-shrink: 0;
}

.db-member-info { flex-grow: 1; }
.db-member-info strong { font-size: 0.85rem; display: block; }
.db-member-info span { font-size: 0.72rem; color: var(--text-secondary); }

.db-role {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--emerald);
    background-color: rgba(16, 185, 129, 0.1);
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
}

.db-pipeline-row {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    flex-grow: 1;
}

.db-pipeline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    font-size: 0.82rem;
}

.db-pipe-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.db-pipe-status.live { background: var(--emerald); box-shadow: 0 0 8px var(--emerald-glow); }
.db-pipe-status.idle { background: var(--text-muted); }
.db-pipe-status.warn { background: #f59e0b; }

.db-pipe-name { flex-grow: 1; color: var(--text-primary); }
.db-pipe-meta { font-size: 0.72rem; color: var(--text-secondary); }

.db-settings-row {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex-grow: 1;
}

.db-setting {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0.9rem;
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    font-size: 0.84rem;
}

.db-setting-label { color: var(--text-primary); }
.db-setting-label small { display: block; color: var(--text-secondary); font-size: 0.7rem; font-weight: 400; }

.db-mini-toggle {
    width: 38px;
    height: 22px;
    border-radius: 9999px;
    background: var(--border-dark);
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
    flex-shrink: 0;
    border: none;
}
.db-mini-toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--text-primary);
    transition: transform 0.3s;
}
.db-mini-toggle.on { background: var(--emerald); }
.db-mini-toggle.on::after { transform: translateX(16px); background: var(--bg-dark); }

/* ==========================================================================
   Modals (Demo video + Sign-up flow)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 6, 12, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: relative;
    background: #0c111c;
    border: 1px solid var(--border-dark);
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
    width: 100%;
    transform: translateY(16px) scale(0.98);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.open .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #161d2b;
    border: 1px solid var(--border-dark);
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 2;
}
.modal-close:hover { color: var(--emerald); border-color: var(--emerald); transform: rotate(90deg); }

/* Demo modal */
.modal-demo {
    max-width: 880px;
    padding: 0;
    overflow: hidden;
}

.demo-video-frame {
    background: #000;
    aspect-ratio: 16 / 9;
}

.demo-video-frame video {
    width: 100%;
    height: 100%;
    display: block;
}

.demo-caption {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-dark);
}

.demo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--emerald);
    box-shadow: 0 0 8px var(--emerald-glow);
    animation: pulseDot 1.6s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Sign-up modal */
.modal-signup {
    max-width: 440px;
    padding: 2.5rem 2.25rem 2rem;
    text-align: center;
}

.signup-steps-bar {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.step-dot {
    width: 28px;
    height: 4px;
    border-radius: 9999px;
    background: var(--border-dark);
    transition: background 0.3s;
}
.step-dot.active { background: var(--emerald); }

.signup-step { display: none; }
.signup-step.active { display: block; animation: tabReveal 0.4s ease; }

.signup-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: var(--emerald);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}
.signup-icon.success {
    background: var(--emerald);
    color: var(--bg-dark);
    border: none;
    animation: popIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes popIn {
    from { transform: scale(0.4); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-signup h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.signup-sub {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
}
.signup-sub strong { color: var(--emerald); }

.field-label {
    display: block;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.field-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-dark);
    border-radius: 9px;
    padding: 0.8rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.field-input:focus {
    outline: none;
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.field-url {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--border-dark);
    border-radius: 9px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.field-url:focus-within {
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}
.field-url .field-input {
    border: none;
    border-radius: 0;
    flex-grow: 1;
}
.field-url .field-input:focus { box-shadow: none; }
.field-suffix {
    display: flex;
    align-items: center;
    padding: 0 0.9rem;
    background: rgba(255, 255, 255, 0.02);
    border-left: 1px solid var(--border-dark);
    color: var(--text-secondary);
    font-size: 0.85rem;
    white-space: nowrap;
}

.field-error {
    display: block;
    text-align: left;
    color: #ef4444;
    font-size: 0.78rem;
    min-height: 1.1rem;
    margin: 0.4rem 0 0.2rem;
}

.signup-next {
    width: 100%;
    margin-top: 1rem;
}

.signup-fine {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Provisioning */
.provision-spinner {
    width: 44px;
    height: 44px;
    border: 3px solid var(--border-dark);
    border-top-color: var(--emerald);
    border-radius: 50%;
    margin: 0.5rem auto 1.25rem;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.provision-log {
    list-style: none;
    text-align: left;
    max-width: 280px;
    margin: 1.25rem auto 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.provision-log li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.3rem 0;
    opacity: 0;
    transform: translateX(-6px);
    animation: logIn 0.3s ease forwards;
}
.provision-log li i { color: var(--emerald); }
@keyframes logIn {
    to { opacity: 1; transform: translateX(0); }
}

.workspace-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: var(--emerald);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.7rem 1.1rem;
    border-radius: 9px;
    margin: 0.5rem 0 1.25rem;
}

/* ==========================================================================
   Generated Mock Demo Video Player
   ========================================================================== */
.modal-demo .modal-close {
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.55);
    border-color: rgba(255, 255, 255, 0.15);
}

.mock-video { background: #05070d; }

.mv-screen {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(160deg, #0a0f1a, #070a12);
    overflow: hidden;
}

.mv-chrome {
    height: 34px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    background: #0d1320;
    border-bottom: 1px solid var(--border-dark);
}
.mv-cdot { width: 9px; height: 9px; border-radius: 50%; }
.mv-cdot.red { background: #ef4444; }
.mv-cdot.yellow { background: #f59e0b; }
.mv-cdot.green { background: #10b981; }
.mv-url {
    margin-left: 10px;
    font-size: 0.7rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: 5px;
    padding: 3px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.mv-url i { font-size: 0.6rem; color: var(--emerald); }

.mv-scene {
    position: absolute;
    inset: 34px 0 0 0;
    padding: 22px 28px;
    opacity: 0;
    transform: translateY(12px) scale(0.99);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}
.mv-scene.active { opacity: 1; transform: none; }

.mv-scene-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}
.mv-scene-head h4 { font-family: var(--font-heading); font-size: 1.1rem; }

.mv-stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 18px; }
.mv-stat {
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.01);
}
.mv-stat span { font-size: 0.58rem; letter-spacing: 0.5px; color: var(--text-secondary); }
.mv-stat strong { display: block; font-family: var(--font-heading); font-size: 1.4rem; margin-top: 4px; }

.mv-bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 110px;
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.01);
}
.mv-bar {
    flex: 1;
    height: var(--h);
    background: var(--border-dark);
    border-radius: 4px;
    transform-origin: bottom;
}
.mv-scene.active .mv-bar { animation: mvGrow 1.4s ease; }
.mv-bar.active { background: var(--emerald); box-shadow: 0 0 12px var(--emerald-glow); }
@keyframes mvGrow { from { transform: scaleY(0.15); opacity: 0.3; } to { transform: scaleY(1); opacity: 1; } }

.mv-flow { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 20px; }
.mv-node {
    border: 1px solid var(--border-dark);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.8rem;
    font-weight: 600;
}
.mv-node-mid { border-color: var(--emerald); color: var(--emerald); box-shadow: 0 0 18px var(--emerald-glow); }
.mv-wire { height: 2px; width: 52px; background: linear-gradient(90deg, var(--border-dark), var(--emerald)); position: relative; overflow: hidden; }
.mv-wire::after { content: ''; position: absolute; top: 0; left: -30%; width: 30%; height: 100%; background: #fff; opacity: 0.7; animation: mvWire 1.1s linear infinite; }
@keyframes mvWire { to { left: 130%; } }

.mv-pipes { display: flex; flex-direction: column; gap: 8px; }
.mv-pipe {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.01);
}
.mv-pipe em { margin-left: auto; color: var(--text-secondary); font-style: normal; font-size: 0.72rem; }
.mv-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 8px var(--emerald-glow); animation: pulseDot 1.4s infinite; }
.mv-pulse.warn { background: #f59e0b; box-shadow: none; }

.mv-report { display: flex; gap: 28px; align-items: center; }
.mv-donut {
    width: 128px; height: 128px; border-radius: 50%; flex-shrink: 0;
    background: conic-gradient(var(--emerald) 0 62%, #3b82f6 62% 84%, var(--border-dark) 84% 100%);
    position: relative;
}
.mv-donut::after { content: ''; position: absolute; inset: 18px; border-radius: 50%; background: #0a0f1a; }
.mv-report-rows { flex-grow: 1; display: flex; flex-direction: column; gap: 12px; }
.mv-rrow { display: flex; justify-content: space-between; border-bottom: 1px solid var(--border-dark); padding-bottom: 10px; font-size: 0.85rem; color: var(--text-secondary); }
.mv-rrow b { color: var(--emerald); }
.mv-rrow b.down { color: #ef4444; }

.mv-cursor {
    position: absolute; width: 18px; height: 18px; left: 50%; top: 50%;
    pointer-events: none; z-index: 5;
    transition: left 0.8s cubic-bezier(0.16, 1, 0.3, 1), top 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.mv-cursor::before {
    content: ''; position: absolute; width: 16px; height: 16px; background: #fff;
    clip-path: polygon(0 0, 0 75%, 20% 58%, 35% 92%, 50% 86%, 34% 52%, 60% 52%);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}
.mv-cursor.click::after {
    content: ''; position: absolute; width: 34px; height: 34px; left: -9px; top: -9px;
    border-radius: 50%; border: 2px solid var(--emerald); animation: mvClick 0.5s ease;
}
@keyframes mvClick { from { transform: scale(0.2); opacity: 0.8; } to { transform: scale(1.1); opacity: 0; } }

.mv-toast {
    position: absolute; bottom: 16px; left: 50%; z-index: 6;
    transform: translateX(-50%) translateY(8px);
    background: rgba(8, 10, 16, 0.92);
    border: 1px solid var(--border-dark);
    border-radius: 8px; padding: 8px 16px;
    font-size: 0.78rem; color: var(--text-primary); opacity: 0;
}
.mv-toast.show { animation: mvToast 6s ease; }
@keyframes mvToast {
    0% { opacity: 0; transform: translateX(-50%) translateY(8px); }
    10% { opacity: 1; transform: translateX(-50%) translateY(0); }
    85% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(0); }
}

.mv-controls { display: flex; align-items: center; gap: 12px; padding: 10px 14px; background: #0a0e17; border-top: 1px solid var(--border-dark); }
.mv-play { width: 32px; height: 32px; border-radius: 50%; background: var(--emerald); color: var(--bg-dark); border: none; cursor: pointer; font-size: 0.75rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.mv-progress { flex-grow: 1; height: 5px; background: var(--border-dark); border-radius: 9999px; cursor: pointer; }
.mv-progress-fill { height: 100%; width: 0; background: var(--emerald); border-radius: 9999px; }
.mv-time { font-size: 0.72rem; color: var(--text-secondary); font-variant-numeric: tabular-nums; white-space: nowrap; }
.mv-vol { color: var(--text-secondary); font-size: 0.8rem; }

/* Logged-in workspace chip in navbar */
.ws-chip {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.82rem; font-weight: 600; color: var(--text-secondary);
    text-decoration: none; padding: 0.4rem 0.75rem;
    border: 1px solid var(--border-dark); border-radius: 8px;
    transition: var(--transition-smooth);
}
.ws-chip:hover { border-color: var(--emerald); color: var(--text-primary); }

/* ==========================================================================
   Content sub-pages (About / Careers / Blog / Contact / Status / Docs)
   ========================================================================== */
.page-hero {
    padding: 5rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid var(--border-dark);
    position: relative;
}
.page-eyebrow { color: var(--emerald); font-weight: 700; font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; }
.page-title { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; letter-spacing: -1px; margin: 1rem 0; line-height: 1.1; }
.page-lead { color: var(--text-secondary); font-size: 1.15rem; max-width: 640px; margin: 0 auto; }
.page-body { padding: 4rem 0 5rem; }

.prose { max-width: 760px; margin: 0 auto; color: var(--text-secondary); }
.prose h2 { font-family: var(--font-heading); color: var(--text-primary); font-size: 1.6rem; margin: 2.5rem 0 1rem; }
.prose p { margin-bottom: 1.2rem; line-height: 1.85; }
.prose ul { margin: 0 0 1.4rem 1.2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.prose a { color: var(--emerald); text-decoration: none; }
.prose a:hover { text-decoration: underline; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.info-card { background: var(--bg-card); border: 1px solid var(--border-dark); border-radius: 16px; padding: 1.75rem; transition: var(--transition-smooth); }
.info-card:hover { border-color: var(--border-glow); transform: translateY(-3px); }
.info-card .tag { display: inline-block; font-size: 0.7rem; color: var(--emerald); background: rgba(16, 185, 129, 0.1); padding: 0.2rem 0.6rem; border-radius: 4px; margin-bottom: 1rem; font-weight: 700; letter-spacing: 0.5px; }
.info-card h3 { font-family: var(--font-heading); margin-bottom: 0.6rem; font-size: 1.2rem; }
.info-card p { color: var(--text-secondary); font-size: 0.9rem; }
.info-card .card-icon { font-size: 1.5rem; color: var(--emerald); margin-bottom: 1rem; }

.row-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.row-item { display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: var(--bg-card); border: 1px solid var(--border-dark); border-radius: 12px; padding: 1.1rem 1.5rem; transition: var(--transition-smooth); }
.row-item:hover { border-color: var(--border-glow); }
.row-item h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.row-item .meta { font-size: 0.8rem; color: var(--text-secondary); }
.row-item .arrow { color: var(--text-secondary); }

.status-pill { font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.7rem; border-radius: 9999px; white-space: nowrap; }
.status-pill.ok { color: var(--emerald); background: rgba(16, 185, 129, 0.1); }
.status-pill.warn { color: #f59e0b; background: rgba(245, 158, 11, 0.1); }

.status-banner { max-width: 780px; margin: 0 auto 2rem; display: flex; align-items: center; gap: 0.75rem; background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.25); border-radius: 12px; padding: 1.1rem 1.5rem; color: var(--emerald); font-weight: 600; }

.contact-form { max-width: 520px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; text-align: left; }
.contact-form textarea.field-input { min-height: 130px; resize: vertical; font-family: var(--font-sans); }
.contact-ok { max-width: 520px; margin: 1rem auto 0; text-align: center; color: var(--emerald); font-weight: 600; min-height: 1.4rem; }

.back-home { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--text-secondary); text-decoration: none; font-size: 0.85rem; margin-bottom: 1rem; transition: color 0.3s; }
.back-home:hover { color: var(--emerald); }

/* ==========================================================================
   Dashboard App (dashboard.html)
   ========================================================================== */
.app-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }

.app-sidebar {
    border-right: 1px solid var(--border-dark);
    background: rgba(12, 17, 28, 0.6);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 0;
    height: 100vh;
}
.app-brand { padding: 0 0.5rem; }
.app-nav { display: flex; flex-direction: column; gap: 0.35rem; flex-grow: 1; }
.app-nav .db-side-link { font-size: 0.92rem; padding: 0.65rem 0.85rem; }
.app-side-foot { border-top: 1px solid var(--border-dark); padding-top: 1rem; }
.app-side-foot .ws-chip { width: 100%; justify-content: center; font-size: 0.78rem; }

.app-content { display: flex; flex-direction: column; }
.app-topbar {
    height: 72px;
    border-bottom: 1px solid var(--border-dark);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2rem;
    position: sticky; top: 0;
    background: rgba(8, 10, 16, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 10;
}
.app-topbar h1 { font-family: var(--font-heading); font-size: 1.2rem; }
.app-topbar h1 span { color: var(--emerald); }
.app-topbar small { color: var(--text-secondary); font-size: 0.78rem; }
.app-top-right { display: flex; align-items: center; gap: 1.25rem; }
.app-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--emerald); color: var(--bg-dark); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; }
.app-logout { color: var(--text-secondary); text-decoration: none; font-size: 0.85rem; font-weight: 600; cursor: pointer; }
.app-logout:hover { color: var(--emerald); }

.app-db-main {
    flex-grow: 1;
    padding: 2.5rem;
    min-height: calc(100vh - 72px);
}
.app-db-main .db-welcome h3 { font-size: 1.6rem; }
.app-db-main .db-chart-placeholder { min-height: 260px; }
.app-db-main .bar-chart { min-height: 220px; }

@media (max-width: 768px) {
    .app-shell { grid-template-columns: 1fr; }
    .app-sidebar { position: static; height: auto; flex-direction: row; flex-wrap: wrap; align-items: center; }
    .app-nav { flex-direction: row; flex-wrap: wrap; }
    .app-side-foot { display: none; }
    .mv-stat-grid { grid-template-columns: 1fr 1fr 1fr; }
    .page-title { font-size: 2.2rem; }
}

/* Mobile nav dropdown */
.nav.open {
    display: flex;
}

/* Responsive configurations */
@media (max-width: 940px) {
    .nav, .nav-signin, .ghub-pill { display: none; }
    .nav-burger { display: block; }
    .nav.open {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        padding: 1rem 1.75rem 1.5rem;
        background: rgba(8, 10, 16, 0.98);
        border-bottom: 1px solid var(--border-dark);
    }
    .nav.open .nav-link { padding: 0.5rem 0; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.8rem; }
    .section-title { font-size: 2rem; }
    .panel-grid { grid-template-columns: 1fr; gap: 2rem; }
    .dashboard-body-grid { grid-template-columns: 1fr; height: auto; }
    .db-sidebar { display: none; }
    .tab-content { padding: 2rem; }
    .tab-btn span { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .modal-close { top: 8px; right: 8px; }
}
