/* ============================================
   Cloud Desk IT — Design System v2.0 (2026)
   Modern, clean, glassmorphism-inspired
   ============================================ */

/* --- Design Tokens --- */
:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: rgba(59, 130, 246, 0.1);
    --secondary: #64748b;
    --accent: #f59e0b;
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --bg-subtle: #f1f5f9;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgb(0 0 0 / 0.06);
    --shadow: 0 4px 24px rgb(0 0 0 / 0.06);
    --shadow-lg: 0 20px 60px rgb(0 0 0 / 0.08);
    --radius: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --max-width: 1200px;
    --glass: rgba(255, 255, 255, 0.7);
    --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-spring: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.dark-theme {
    --bg-main: #0a0f1e;
    --bg-card: #111827;
    --bg-subtle: #1e293b;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.06);
    --shadow-sm: 0 1px 3px rgb(0 0 0 / 0.2);
    --shadow: 0 4px 24px rgb(0 0 0 / 0.2);
    --shadow-lg: 0 20px 60px rgb(0 0 0 / 0.3);
    --glass: rgba(10, 15, 30, 0.75);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-main);
    transition: background-color 0.4s ease, color 0.4s ease;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
    font-weight: 800;
    line-height: 1.15;
}

a { color: inherit; }
img { display: block; max-width: 100%; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

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

.section-spacing {
    padding: 5rem 0;
}

/* --- FAQ Section --- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.75rem 0;
}
.faq-item:first-child {
    border-top: 1px solid var(--border);
}
.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    color: var(--text-main);
}
.faq-item p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--transition-spring), transform 0.7s var(--transition-spring);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Text Gradient --- */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #818cf8 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline;
    forced-color-adjust: none; /* Prevents Dark Reader / forced-color modes from nuking the gradient */
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
    background: var(--glass);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.nav-inner {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    flex-wrap: nowrap;
}

.logo {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.04em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), #818cf8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

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

.nav-links {
    display: flex;
    gap: 0.15rem;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-links > a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
}

.nav-links > a:hover,
.nav-links > a.active {
    color: var(--text-main);
    background: var(--primary-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid var(--border);
}

/* Theme Toggle Icon */
.theme-toggle-btn {
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: all var(--transition);
}
.theme-toggle-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: var(--primary-light);
}
.dark-theme .theme-toggle-btn .icon-sun  { display: block; }
.dark-theme .theme-toggle-btn .icon-moon { display: none; }
.light-theme .theme-toggle-btn .icon-sun  { display: none; }
.light-theme .theme-toggle-btn .icon-moon { display: block; }
/* Fallback if no class yet */
.theme-toggle-btn .icon-sun  { display: none; }
.theme-toggle-btn .icon-moon { display: block; }

/* Nav CTA */
.nav-cta {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 0.45rem 0.85rem;
    border-radius: 8px;
    transition: all var(--transition);
}
.nav-cta:hover {
    color: var(--text-main);
}
.nav-cta--danger {
    color: #ef4444 !important;
}
.nav-cta--danger:hover {
    background: rgba(239, 68, 68, 0.1);
}

.nav-contact-btn {
    font-size: 0.75rem !important;
    padding: 0.45rem 0.9rem !important;
    border-radius: 8px !important;
    white-space: nowrap;
    box-shadow: none !important;
}

/* Mobile Nav */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text-main);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all var(--transition);
}
.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Legacy compat for other pages */
.theme-btn, .auth-btn, .submit-btn, .control-btn {
    background: var(--text-main);
    color: var(--bg-main) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}
.theme-btn:hover, .auth-btn:hover, .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.08) 0%, rgba(129, 140, 248, 0.04) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.dark-theme .hero-glow {
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.12) 0%, rgba(129, 140, 248, 0.06) 40%, transparent 70%);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid !important;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.02em;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.25rem;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Metric Grid */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-metric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 380px;
}

.hero-metric {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-metric:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.hero-metric-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--primary);
    margin-bottom: 0.35rem;
}

.hero-metric-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0;
    background: var(--bg-subtle);
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trust-items {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.trust-items span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.3rem 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 999px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   BENTO GRID
   ============================================ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-spring);
    overflow: hidden;
    position: relative;
}

.bento-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.bento-card-inner {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-tag {
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 0.75rem;
    display: block;
}

.bento-card h3 {
    font-size: 1.35rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

.bento-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    margin-top: 1.5rem;
    opacity: 0.9;
    transition: opacity var(--transition);
}
.bento-card:hover .bento-link { opacity: 1; }

/* Featured (large dark card) */
.bento-featured {
    grid-column: span 7;
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    border: none;
    min-height: 280px;
}
.bento-featured h3 { color: white; font-size: 1.6rem; }
.bento-featured p { color: rgba(255, 255, 255, 0.65); }
.bento-featured .bento-tag { color: #60a5fa; }

/* Accent card */
.bento-accent {
    grid-column: span 5;
    background: var(--bg-subtle);
}

/* Small cards */
.bento-sm {
    grid-column: span 4;
}
.bento-sm .bento-card-inner {
    padding: 1.5rem;
}
.bento-sm h3 {
    font-size: 1.1rem;
}

/* ============================================
   BLOG GRID & POST CARDS
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.post-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition-spring);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
.post-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--border) 100%);
    display: block;
}

.post-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-meta {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
}

.post-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.post-excerpt {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* ============================================
   AD SLOTS — Hidden from search snippets
   ============================================ */
.ad-slot {
    background: var(--bg-subtle);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0;
    line-height: 0;
    overflow: hidden;
    min-height: 90px;
}
.ad-slot::after {
    content: 'Ad Space';
    font-size: 0.7rem;
    line-height: 1;
    color: var(--text-muted);
    opacity: 0.4;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

/* ============================================
   FORM ELEMENTS (shared)
   ============================================ */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 5rem 0 2rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.footer-section h4 {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.875rem;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--text-main); }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ============================================
   LEGACY HUB (compat for any pages still using)
   ============================================ */
.hub-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow);
}
.hub-header { text-align: center; margin-bottom: 3rem; }
.hub-tag {
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.hub-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
}
.hub-card {
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-decoration: none;
    transition: all var(--transition-spring);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hub-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow); }
.hub-card.large { grid-column: span 7; }
.hub-card.medium { grid-column: span 5; }
.hub-card.small { grid-column: span 4; }
.hub-card .category { font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 0.75rem; display: block; }
.hub-card h3 { font-size: 1.35rem; margin-bottom: 0.5rem; color: var(--text-main); line-height: 1.25; }
.hub-card p { font-size: 0.875rem; color: var(--text-muted); }
.hub-card.featured { background: linear-gradient(145deg, #0f172a, #1e293b); border: none; }
.hub-card.featured h3, .hub-card.featured p { color: white; }
.hub-card.featured .category { color: #60a5fa; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .mobile-menu-toggle { display: flex; }

    .nav-links {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-card);
        flex-direction: column;
        padding: 2rem;
        gap: 0.5rem;
        overflow-y: auto;
        border-top: 1px solid var(--border);
        z-index: 999;
    }
    .nav-links.active { display: flex; }

    .nav-links > a {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }

    .nav-actions {
        flex-direction: column;
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid var(--border);
        padding-top: 1rem;
        margin-top: 1rem;
        gap: 0.75rem;
        width: 100%;
    }

    .nav-actions .btn-primary { width: 100%; justify-content: center; }

    .hero { padding: 3rem 0 2rem; }
    .hero-container { grid-template-columns: 1fr !important; gap: 2.5rem; }
    .hero h1 { font-size: 2.25rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-metric-grid { max-width: 100%; }

    .bento-grid { grid-template-columns: 1fr; }
    .bento-featured, .bento-accent, .bento-sm { grid-column: span 1; }

    .hub-grid { grid-template-columns: 1fr; }
    .hub-card.large, .hub-card.medium, .hub-card.small { grid-column: span 1; }

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

    .footer-content { grid-template-columns: 1fr; gap: 2rem; }

    .trust-bar-inner { gap: 1rem; }
    .trust-items { justify-content: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.85rem; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn-primary,
    .hero-btns .btn-secondary { width: 100%; justify-content: center; }
    .hero-metric-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .hero-metric { padding: 1.25rem 1rem; }
}

/* ============================================
   UTILITY BAR (legacy compat)
   ============================================ */
.utility-bar {
    background: var(--text-main);
    color: var(--bg-main);
    padding: 0.4rem 0;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}
.utility-bar span { opacity: 0.7; margin: 0 1.5rem; }
.utility-bar .status-indicator { color: #10b981; opacity: 1; }

/* Status indicator (legacy) */
.header-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}
.status-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
}
.status-text {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}
