:root {
    /* Color Palette - Deep & Consistent */
    --bg-body: #020408;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    /* Slate 400 */
    --text-tertiary: #64748b;
    /* Slate 500 */

    /* Unified Glass System */
    --glass-surface: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: 16px;
    --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);

    /* Tokenized Glass System */
    --radius-card: 16px;
    --glass-bg-soft: rgba(255, 255, 255, 0.05);
    
    /* Primary Accent - Electric Indigo */
    --primary-hue: 230;
    /* Blue-ish */
    --accent-primary: #3b82f6;
    --accent-secondary: #8b5cf6;
    --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);

    /* Layout */
    --container-width: 1100px;
    --header-height: 80px;
    --header-height-compact: 48px;
    --radius-card: 16px;
    --radius-btn: 8px;

    /* Animation */
    --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    position: relative;
    /* Ensure body establishes a context if needed, though usually not sufficient for z-index -1 issues */
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

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

ul {
    list-style: none;
}

/* 
   ==========================================================================
   AMBIENT BACKGROUND - Subtle & Clean
   ========================================================================== 
*/
.ambient-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Changed from -1 to 0 to sit on top of body bg but behind content */
    overflow: hidden;
    pointer-events: none;
    /* Ensure clicks pass through */
    /* background: var(--bg-body); Removed - let body handle the base color */
}

/* Mosaic Grid Pattern Overlay */
.ambient-background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    
}

/* Ensure content sits above the background orbs */
section,
footer,
.navbar {
    position: relative;
    z-index: 1;
}

/* Navbar needs higher z-index which is already set below (100) */

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    z-index: 1;
}

/* Top Right - Blue Glow */
.orb-1 {
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--accent-primary);
    animation: float 20s ease-in-out infinite alternate;
}

/* Bottom Left - Purple Glow */
.orb-2 {
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--accent-secondary);
    animation: float 25s ease-in-out infinite alternate-reverse;
}

/* Center subtle highlight */
.orb-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.5;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 30px);
    }
}

/* 
   ==========================================================================
   UTILITIES & COMPONENTS
   ========================================================================== 
*/
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Shared Utilities */
.text-center { text-align: center; }
.text-secondary { color: var(--text-secondary); }
.text-tertiary { color: var(--text-tertiary); }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 1rem; }
.gap-05 { gap: 0.5rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.w-100 { width: 100%; }
.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.pb-0 { padding-bottom: 0; }
.hidden { display: none; }
.text-sm { font-size: 0.9rem; }

/* State Classes */
.state-empty, .state-error {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}
.state-error {
    color: #ff6b6b;
}

/* Loading & Error States */
.is-loading {
    opacity: 0.5;
    pointer-events: none;
}
.loading-muted {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    padding: 0.5rem 0;
}
.text-danger {
    color: #ff6b6b !important;
}
.stat-muted {
    opacity: 0.5;
}

/* Profile Banners & Avatars */
.banner--notfound {
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
}
.banner--anon {
    background: linear-gradient(135deg, #000000, #434343);
}
.avatar--placeholder {
    background: var(--glass-surface);
    color: var(--text-tertiary);
}
.avatar--anon {
    background: #333;
    border-color: #555;
}

/* Upload Visibility */
.preview-container .remove-btn {
    display: none;
}
.preview-container.has-image .remove-btn {
    display: inline-block;
}

/* Button States */
.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}
.is-following {
    background: rgba(255, 255, 255, 0.1);
}
.is-danger-hover:hover {
    background-color: rgba(255, 107, 107, 0.2);
    border-color: rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
}

/* Consistent Glass Panel */
.glass-panel,
.navbar,
.trust-card,
.feature-item,
.modal-content,
.mobile-menu {
    background: var(--glass-surface);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.2rem .8rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-btn);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    stroke: currentColor;
}
.btn-primary {
    background: var(--accent-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.6);
    background: #2563eb;
    /* Darker blue on hover */
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-secondary.active {
    background: rgba(59, 130, 246, 0.15); /* Tint of accent color */
    border-color: var(--accent-primary);
    color: white;
}

.section-title {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* 
   ==========================================================================
   NAVBAR
   ========================================================================== 
*/
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    border-top: none;
    border-left: none;
    border-right: none;
}

.navbar.compact {
    height: var(--header-height-compact);
    --header-height: var(--header-height-compact);
}

.navbar.compact .logo {
    font-size: 1.15rem;
}

.navbar.compact .nav-links {
    gap: 1rem;
}

.navbar.compact .btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    height: 32px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-links a:not(.btn) {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.nav-links a:not(.btn):hover {
    color: var(--text-primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 0.5rem;
}

.mobile-menu-btn .bar {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
}

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

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

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    /* Fixes gradient clipping sometimes */
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

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

/* 
   ==========================================================================
   OVERLAY PREVIEW (ACTUAL APP LOOK)
   ========================================================================== 
*/
.hero-visual {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

/* The wrapper card that positions the whole thing */
.fake-chat-card.overlay-preview {
    width: 320px;
    /* Actual width of extension */
    height: 500px;
    /* Simulated height */
    border-radius: 0;
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s var(--ease-out);
    box-shadow: -10px 20px 50px rgba(0, 0, 0, 0.6);
    position: relative;
    /* Reset some defaults */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    text-align: left;
    background: transparent;
    /* Container handles bg */
    border: none;
    /* Container handles border */
}

.fake-chat-card.overlay-preview:hover {
    transform: rotateY(0) rotateX(0);
}

/* === EXTENSION STYLES (Namespaced) === */

.fake-chat-card.overlay-preview .container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    /* Dark Frosted Glass - Correct Color, More Transparent */
    background: rgba(30, 30, 30, 0.4); 
    /* Significantly reduced blur to 4px to make pattern visible */
    backdrop-filter: blur(4px); 
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5), 
        inset 0 0 0 1px rgba(255, 255, 255, 0.05); 
    overflow: hidden;
    color: #fff;
}

.fake-chat-card.overlay-preview .header {
    padding: 15px;
    background: rgba(255, 255, 255, 0.03); /* Lighter touch */
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
}

.fake-chat-card.overlay-preview .header-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fake-chat-card.overlay-preview .room-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-family: monospace;
}

.fake-chat-card.overlay-preview .client-count {
    font-size: 11px;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 4px;
}

.fake-chat-card.overlay-preview .client-count::before {
    content: '●';
    color: #4ade80;
    /* Green dot */
    font-size: 8px;
}

.fake-chat-card.overlay-preview .auth-toggle {
    cursor: pointer;
    color: #60a5fa;
    font-size: 12px;
}

.fake-chat-card.overlay-preview .chat-view {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.fake-chat-card.overlay-preview .messages {
    flex: 1;
    overflow-y: hidden;
    /* Hide scroll for preview aesthetics, or auto if we want interaction */
    padding: 6px 10px;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.fake-chat-card.overlay-preview .message {
    padding: 2px 8px;
    border-radius: 4px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 22px;
    justify-content: center;
    margin-bottom: 2px;
    /* Slight tweak for visual separation in preview */
}

.fake-chat-card.overlay-preview .message.has-reply-ref {
    padding-top: 6px;
    margin-top: 2px;
}

.fake-chat-card.overlay-preview .message:hover {
    background: rgba(255, 255, 255, 0.05);
}

.fake-chat-card.overlay-preview .message-header-line {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
    padding-right: 0;
}

.fake-chat-card.overlay-preview .message-meta {
    display: flex;
    align-items: center;
    margin-bottom: 2px;
    min-height: 18px;
    position: relative;
}

.fake-chat-card.overlay-preview .author-name {
    color: #60a5fa;
    font-weight: 600;
    font-size: 13px;
    margin-right: 6px;
}

.fake-chat-card.overlay-preview .message-time {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    margin-right: 8px;
    font-family: monospace;
}

.fake-chat-card.overlay-preview .message-body {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    word-break: break-word;
    padding-left: 0;
}

.fake-chat-card.overlay-preview .reply-reference {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
    padding-left: 8px;
    border-left: 2px solid #60a5fa;
    display: block;
}

.fake-chat-card.overlay-preview .reply-reference strong {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.fake-chat-card.overlay-preview .message-actions {
    position: relative;
    margin-left: auto;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0;
    transition: opacity 0.1s;
    height: 18px;
    padding-right: 4px;
}

.fake-chat-card.overlay-preview .message:hover .message-actions,
.fake-chat-card.overlay-preview .message-actions.has-votes {
    opacity: 1;
}

.fake-chat-card.overlay-preview .vote-container {
    display: flex;
    align-items: center;
    gap: 0;
}

.fake-chat-card.overlay-preview .vote-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    cursor: pointer;
    padding: 2px 4px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.fake-chat-card.overlay-preview .vote-btn.active.up {
    color: #4ade80;
    opacity: 1;
}

.fake-chat-card.overlay-preview .vote-btn.active.down {
    color: #f87171;
    opacity: 1;
}

.fake-chat-card.overlay-preview .input-area {
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    background: rgba(0, 0, 0, 0.15); /* More transparent */
    gap: 10px;
}

.fake-chat-card.overlay-preview input {
    width: 100%;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05); /* Lighter/Glassier */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: white;
    outline: none;
    backdrop-filter: blur(4px);
}

.fake-chat-card.overlay-preview button {
    padding: 10px 16px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    /* Match blue */
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 500;
}

.fake-chat-card.overlay-preview .toggle-btn {
    position: absolute;
    left: -32px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 60px;
    background: rgba(30, 30, 30, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-right: none;
    border-radius: 8px 0 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
}

/* 
   ==========================================================================
   TRUST / VALUE PROPS
   ========================================================================== 
*/
.trust {
    padding: 4rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.trust-card {
    padding: 2rem;
    border-radius: var(--radius-card);
    transition: transform 0.3s;
}

.trust-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
}

.icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-primary);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.trust-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.trust-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* 
   ==========================================================================
   FEATURES
   ========================================================================== 
*/
.features {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    padding: 1.5rem;
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.check-icon {
    color: var(--accent-primary);
    background: rgba(59, 130, 246, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.feature-roadmap {
    grid-column: 1 / -1;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge {
    background: var(--accent-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    text-transform: uppercase;
}

/* 
   ==========================================================================
   HOW IT WORKS
   ========================================================================== 
*/
.how-it-works {
    padding: 4rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    counter-reset: step;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--bg-body);
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.step-card h3 {
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--text-secondary);
}

/* 
   ==========================================================================
   FAQ
   ========================================================================== 
*/
.faq {
    padding: 4rem 0;
}

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

.accordion-item {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-btn);
    background: var(--glass-surface);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 1.25rem 1.5rem;
    text-align: left;
    color: var(--text-primary);
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}

.accordion-header .icon {
    color: var(--text-tertiary);
    transition: 0.3s;
}

.accordion-header[aria-expanded="true"] .icon {
    transform: rotate(45deg);
    color: var(--accent-primary);
}

.accordion-content {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

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

/* 
   ==========================================================================
   FOOTER
   ========================================================================== 
*/
.footer {
    padding: 3rem 0;
    margin-top: 6rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

/* 
   ==========================================================================
   MODAL
   ========================================================================== 
*/
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}
.modal-content {
    background: #0f172a;
    /* Solid dark background for modal readability */
    padding: 2.5rem;
    border-radius: var(--radius-card);
    width: 90%;
    max-width: 480px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 1px solid var(--glass-border);
}

.modal-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-body {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.access-form input {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-btn);
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.access-form input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.1);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--text-tertiary);
}

.close-modal:hover {
    color: var(--text-primary);
}

/* 
   ==========================================================================
   MOBILE MENU
   ========================================================================== 
*/
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: rgba(2, 4, 8, 0.95);
    /* Opaque enough to hide page */
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu a {
    font-size: 1.5rem;
    font-weight: 600;
}

/* 
   ==========================================================================
   RESPONSIVE
   ========================================================================== 
*/
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

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

    .trust-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}