/* 0xLabs Landing Page CSS - Dashboard Neo-Brutalist Style */

/* Mabry Pro Font - Same as Dashboard */
@import url('https://db.onlinewebfonts.com/c/fc0ba89248939ae27a47ce54c1f44737?family=Mabry+Pro');

:root {
    /* Dashboard Color Palette */
    --alabaster-grey: #c4a8ff;
    --soft-linen: #fbfaff;
    --tuscan-sun: #907ad6;
    --carbon-black: #2c2a4a;
    --graphite: #000000;
    
    /* Semantic Colors */
    --bg-primary: #fbfaff;
    --bg-secondary: #c4a8ff;
    --text-primary: #2c2a4a;
    --text-secondary: #4f518c;
    --accent: #907ad6;
    
    /* Severity Colors */
    --severity-critical: #dc2626;
    --severity-high: #e85d04;
    --severity-medium: #ddd92a;
    --severity-low: #22c55e;
    
    /* Space Theme */
    --space-black: #030308;
    --soft-purple: #907ad6;
    --lime-accent: #edf67d;
    --ghost-white: #f8f8ff;
    
    /* Fonts */
    --font-main: "Mabry Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: "SF Mono", Monaco, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { height: 100%; scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar { display: none; }
body { 
    min-height: 100%; 
    background: var(--space-black); 
    font-family: var(--font-main); 
    color: var(--ghost-white); 
    cursor: crosshair; 
    overflow-x: hidden; 
    overflow-y: scroll; 
}

#scroll-container { height: 12000px; width: 100%; position: relative; pointer-events: none; }
#canvas-container { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 1; pointer-events: none; }
#canvas-container canvas { display: block; }

.noise { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 9999; opacity: 0.035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"); }
.ui-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 100; }

/* ============ LOGO ============ */
.logo { position: fixed; top: 30px; left: 30px; z-index: 1000; pointer-events: auto; text-decoration: none; opacity: 0; transform: translateY(-10px); transition: opacity 0.4s ease, transform 0.4s ease; }
.logo.visible { opacity: 1; transform: translateY(0); }
.nav-logo-img { height: 45px; width: auto; display: block; }

/* ============ NAVIGATION ============ */
.nav { position: fixed; top: 30px; right: 30px; z-index: 1000; pointer-events: auto; display: flex; align-items: center; height: 45px; gap: 25px; opacity: 0; transform: translateY(-10px); transition: opacity 0.4s ease, transform 0.4s ease; }
.nav.visible { opacity: 1; transform: translateY(0); }
.nav a { 
    font-family: var(--font-main); 
    font-size: 12px; 
    font-weight: 600;
    text-transform: uppercase; 
    letter-spacing: 1px; 
    color: var(--ghost-white); 
    text-decoration: none; 
    opacity: 0.6; 
    transition: all 0.2s ease; 
}
.nav a:hover { opacity: 1; color: var(--soft-purple); }

/* ============ PROGRESS BAR ============ */
.progress-container { position: fixed; right: 30px; top: 50%; transform: translateY(-50%); height: 200px; width: 40px; z-index: 1000; display: flex; flex-direction: column; align-items: center; }
.progress-track { position: absolute; width: 3px; height: 100%; background: rgba(255,255,255,0.1); }
.progress-bar { position: absolute; bottom: 0; width: 3px; height: 0%; background: var(--soft-purple); transition: height 0.1s ease-out; }
.progress-dot { position: absolute; bottom: 0; width: 10px; height: 10px; background: var(--soft-purple); transform: translateY(50%); transition: bottom 0.1s ease-out; box-shadow: 0 0 12px var(--soft-purple); }
.progress-label { position: absolute; right: 30px; bottom: 0; font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: var(--soft-purple); transform: translateY(50%); transition: bottom 0.1s ease-out; }

/* ============ SECTION LABEL ============ */
.section-label { position: fixed; left: 30px; bottom: 30px; z-index: 1000; font-family: var(--font-main); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--soft-purple); mix-blend-mode: difference; }
.section-label::before { content: '[ '; color: var(--alabaster-grey); }
.section-label::after { content: ' ]'; color: var(--alabaster-grey); }

/* ============ COPYRIGHT ============ */
.copyright { position: fixed; right: 30px; bottom: 30px; z-index: 1000; font-family: var(--font-main); font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.4); mix-blend-mode: difference; }

/* ============ SCROLL HINT ============ */
.scroll-hint { position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%); z-index: 1000; display: flex; flex-direction: column; align-items: center; gap: 15px; opacity: 1; transition: opacity 0.5s ease, transform 0.5s ease; }
.scroll-hint.hidden { opacity: 0; transform: translateX(-50%) translateY(20px); pointer-events: none; }
.scroll-hint-circle { 
    width: 52px; 
    height: 52px; 
    border: 2px solid var(--soft-purple); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    animation: pulse 2s ease-in-out infinite; 
}
.scroll-hint-circle svg { width: 22px; height: 22px; stroke: var(--soft-purple); animation: bounce 2s ease-in-out infinite; }
.scroll-hint span { font-family: var(--font-main); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.5); }

@keyframes pulse { 0%, 100% { transform: scale(1); border-color: var(--soft-purple); } 50% { transform: scale(1.1); border-color: var(--alabaster-grey); } }
@keyframes bounce { 0%, 100% { transform: translateY(-3px); } 50% { transform: translateY(3px); } }

/* ============ CONTENT SECTIONS ============ */
.content-section { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 50; pointer-events: none; opacity: 0; transform: scale(0.9) translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.content-section.visible { opacity: 1; transform: scale(1) translateY(0); pointer-events: auto; }
.content-section.exiting { opacity: 0; transform: scale(1.1) translateY(-30px); }
.section-tag { font-family: var(--font-main); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; color: var(--soft-purple); margin-bottom: 30px; }

/* ============ MAIN LOGO SECTION ============ */
.main-section { text-align: center; padding: 0 20px; }

.logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.main-logo {
    width: clamp(280px, 70vw, 900px);
    height: auto;
    display: block;
    /* Transparent PNG - space shows through the X! */
}

.main-tagline {
    font-family: var(--font-main);
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 4px;
}

/* ============ HERO SECTION ============ */
.hero-section { text-align: center; padding: 0 20px; }

.hero-badge { 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    font-family: var(--font-main); 
    font-size: 12px; 
    font-weight: 700;
    text-transform: uppercase; 
    letter-spacing: 2px; 
    color: var(--ghost-white); 
    background: transparent;
    margin-bottom: 30px; 
    padding: 14px 28px; 
    border: 2px solid var(--soft-purple);
}
.hero-badge svg { stroke: var(--soft-purple); }

.hero-title { 
    font-family: var(--font-main); 
    font-size: clamp(36px, 7vw, 72px); 
    font-weight: 700; 
    line-height: 1.1; 
    margin-bottom: 25px; 
    color: var(--ghost-white); 
}
.hero-title span { color: var(--soft-purple); }

.hero-subtitle { 
    font-family: var(--font-main);
    font-size: clamp(15px, 2vw, 18px); 
    font-weight: 400; 
    color: rgba(255,255,255,0.6); 
    max-width: 520px; 
    line-height: 1.8; 
    margin: 0 auto 40px; 
}
.hero-subtitle .highlight { color: var(--lime-accent); font-weight: 600; }

/* Hero Stats - Neo-Brutalist Cards */
.hero-stats { display: flex; justify-content: center; gap: 24px; margin-bottom: 45px; }

.hero-stat { 
    display: flex; 
    align-items: center; 
    gap: 16px; 
    background: var(--soft-linen);
    padding: 22px 30px;
    border: none;
    transition: all 0.2s ease;
    width: 340px;
}
.hero-stat:hover {
    box-shadow: 6px 6px 0 var(--carbon-black);
    transform: translate(-2px, -2px);
}

.hero-stat-icon { 
    width: 56px; 
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    flex-shrink: 0;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: var(--alabaster-grey);
    border: 2px solid var(--carbon-black);
}
.hero-stat-icon svg { width: 28px; height: 28px; stroke: var(--carbon-black); }
.hero-stat-icon.check { background: var(--lime-accent); }

.hero-stat-number { font-family: var(--font-main); font-size: 36px; font-weight: 700; color: var(--carbon-black); }
.hero-stat-label { font-family: var(--font-main); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-secondary); white-space: nowrap; }

/* Hero CTA Button */
.hero-cta { 
    display: inline-flex; 
    align-items: center; 
    gap: 12px; 
    padding: 20px 40px; 
    background: var(--soft-purple);
    border: 2px solid var(--carbon-black);
    color: var(--carbon-black); 
    font-family: var(--font-main); 
    font-size: 14px; 
    font-weight: 700;
    text-transform: uppercase; 
    letter-spacing: 1px; 
    cursor: pointer; 
    transition: all 0.2s ease; 
    text-decoration: none; 
}
.hero-cta:hover { 
    background: var(--lime-accent); 
    box-shadow: 6px 6px 0 var(--carbon-black);
    transform: translate(-2px, -2px);
}
.hero-cta svg { width: 20px; height: 20px; transition: transform 0.2s ease; stroke: var(--carbon-black); }
.hero-cta:hover svg { transform: translateX(4px); }

/* ============ PROBLEM SECTION ============ */
.problem-section { text-align: center; padding: 0 20px; }

.problem-title { 
    font-family: var(--font-main); 
    font-size: clamp(26px, 4vw, 44px); 
    font-weight: 700; 
    color: var(--ghost-white); 
    margin-bottom: 50px; 
    line-height: 1.3; 
}
.problem-title span { color: var(--soft-purple); }

.problem-grid { display: flex; flex-direction: column; gap: 16px; max-width: 700px; width: 100%; }

.problem-card { 
    display: flex; 
    align-items: flex-start; 
    gap: 20px; 
    background: var(--soft-linen);
    border: 2px solid var(--carbon-black);
    border-left: 6px solid var(--severity-critical);
    padding: 24px 28px; 
    text-align: left; 
    transition: all 0.2s ease;
}
.problem-card:hover { 
    box-shadow: 6px 6px 0 var(--carbon-black);
    transform: translate(-2px, -2px);
}

.problem-icon { 
    flex-shrink: 0; 
    width: 46px; 
    height: 46px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: rgba(220, 38, 38, 0.25);
    border: 2px solid var(--carbon-black);
}
.problem-icon svg { width: 24px; height: 24px; stroke: var(--severity-critical); }

.problem-content h3 { font-family: var(--font-main); font-size: 16px; font-weight: 700; color: var(--carbon-black); margin-bottom: 8px; }
.problem-content p { font-family: var(--font-main); font-size: 14px; font-weight: 400; color: var(--text-secondary); line-height: 1.6; }

/* ============ SOLUTION SECTION ============ */
.solution-section { text-align: center; padding: 0 20px; overflow: hidden; }

.solution-cards { display: flex; gap: 30px; max-width: 1200px; width: 100%; justify-content: center; flex-wrap: wrap; }

.solution-card { 
    background: var(--soft-linen);
    border: 2px solid var(--carbon-black);
    padding: 36px; 
    width: 100%; 
    max-width: 520px; 
    text-align: left; 
    transition: all 0.2s ease;
}
.solution-card:hover { 
    box-shadow: 8px 8px 0 var(--carbon-black);
    transform: translate(-4px, -4px);
}

.solution-header { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; }

.solution-icon { 
    width: 56px; 
    height: 56px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: var(--alabaster-grey);
    border: 2px solid var(--carbon-black);
}
.solution-icon svg { width: 28px; height: 28px; stroke: var(--carbon-black); }
.solution-icon.cli { background: var(--lime-accent); }

.solution-title { font-family: var(--font-main); font-size: 24px; font-weight: 700; color: var(--carbon-black); }

.solution-desc { 
    font-family: var(--font-main);
    font-size: 15px; 
    font-weight: 400;
    color: var(--text-secondary); 
    line-height: 1.7; 
    margin-bottom: 28px; 
}
.solution-desc .highlight { color: var(--tuscan-sun); font-weight: 600; }

.solution-cta { 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    padding: 16px 28px; 
    background: transparent;
    border: 2px solid var(--carbon-black);
    color: var(--carbon-black); 
    font-family: var(--font-main); 
    font-size: 13px; 
    font-weight: 700;
    text-transform: uppercase; 
    letter-spacing: 1px;
    text-decoration: none; 
    transition: all 0.2s ease;
}
.solution-cta:hover { 
    background: var(--soft-purple);
    box-shadow: 5px 5px 0 var(--carbon-black);
    transform: translate(-2px, -2px);
}
.solution-cta svg { width: 18px; height: 18px; stroke: var(--carbon-black); transition: transform 0.2s ease; }
.solution-cta:hover svg { transform: translateX(4px); }

/* ============ CONTACT SECTION ============ */
.contact-section { text-align: center; padding: 0 20px; }

.contact-cta-box { 
    background: var(--soft-linen);
    border: 2px solid var(--carbon-black);
    padding: 55px 45px; 
    max-width: 620px; 
    margin-bottom: 40px;
}

.contact-title { 
    font-family: var(--font-main); 
    font-size: clamp(26px, 4vw, 38px); 
    font-weight: 700; 
    color: var(--carbon-black); 
    margin-bottom: 20px; 
    line-height: 1.3; 
}
.contact-title span { color: var(--soft-purple); }

.contact-subtitle { 
    font-family: var(--font-main);
    font-size: 16px; 
    font-weight: 400;
    color: var(--text-secondary); 
    margin-bottom: 35px; 
    line-height: 1.7; 
}
.contact-subtitle .highlight { color: var(--soft-purple); font-weight: 600; }

.contact-main-cta { 
    display: inline-flex; 
    align-items: center; 
    gap: 12px; 
    padding: 20px 40px; 
    background: var(--soft-purple);
    border: 2px solid var(--carbon-black);
    color: var(--carbon-black); 
    font-family: var(--font-main); 
    font-size: 14px; 
    font-weight: 700;
    text-transform: uppercase; 
    letter-spacing: 1px;
    text-decoration: none; 
    transition: all 0.2s ease;
    margin-bottom: 20px;
}
.contact-main-cta:hover { 
    background: var(--lime-accent);
    box-shadow: 6px 6px 0 var(--carbon-black);
    transform: translate(-2px, -2px);
}
.contact-main-cta svg { width: 20px; height: 20px; stroke: var(--carbon-black); transition: transform 0.2s ease; }
.contact-main-cta:hover svg { transform: translateX(4px); }

.contact-note { 
    font-family: var(--font-main); 
    font-size: 12px; 
    font-weight: 500;
    color: var(--text-secondary); 
}

.contact-divider { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 35px 0; 
    color: rgba(255,255,255,0.4); 
}
.contact-divider span { 
    font-family: var(--font-main);
    font-size: 12px; 
    font-weight: 500;
    padding: 0 20px; 
    position: relative; 
}
.contact-divider span::before, .contact-divider span::after { 
    content: ''; 
    position: absolute; 
    top: 50%; 
    width: 60px; 
    height: 2px; 
    background: rgba(255,255,255,0.2); 
}
.contact-divider span::before { right: 100%; }
.contact-divider span::after { left: 100%; }

.contact-links { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 35px; }

.contact-btn { 
    display: inline-flex; 
    align-items: center; 
    gap: 12px; 
    padding: 18px 28px; 
    background: var(--soft-linen);
    border: 2px solid var(--carbon-black);
    color: var(--carbon-black); 
    font-family: var(--font-main); 
    font-size: 14px; 
    font-weight: 600;
    text-decoration: none; 
    transition: all 0.2s ease;
}
.contact-btn:hover { 
    background: var(--alabaster-grey);
    box-shadow: 5px 5px 0 var(--carbon-black);
    transform: translate(-2px, -2px);
}
.contact-btn svg { width: 20px; height: 20px; stroke: var(--carbon-black); }

.social-links { display: flex; gap: 14px; justify-content: center; }

.social-icon { 
    width: 52px; 
    height: 52px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: var(--soft-linen);
    border: 2px solid var(--carbon-black);
    color: var(--carbon-black); 
    text-decoration: none; 
    transition: all 0.2s ease;
}
.social-icon:hover { 
    background: var(--soft-purple);
    box-shadow: 4px 4px 0 var(--carbon-black);
    transform: translate(-1px, -1px);
}
.social-icon svg { width: 22px; height: 22px; color: var(--carbon-black); }

/* ============ HAMBURGER MENU ============ */
.menu-toggle {
    display: none;
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1001;
    width: 40px;
    height: 45px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
.menu-toggle.visible {
    opacity: 1;
    transform: translateY(0);
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ghost-white);
    transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============ RESPONSIVE ============ */

/* Progress bar moves to bottom center on smaller screens */
@media (max-width: 1145px) {
    .progress-container {
        position: fixed;
        right: auto;
        left: 50%;
        top: auto;
        bottom: 20px;
        transform: translateX(-50%);
        width: 200px;
        height: 40px;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .progress-track {
        width: 100%;
        height: 3px;
        position: relative;
    }
    .progress-bar {
        position: absolute;
        bottom: auto;
        left: 0;
        width: 0%;
        height: 3px;
        transition: width 0.1s ease-out;
    }
    .progress-dot {
        position: absolute;
        left: 0%;
        bottom: auto;
        top: 50%;
        transform: translate(-50%, -50%);
        transition: left 0.1s ease-out;
    }
    .progress-label {
        position: absolute;
        right: auto;
        left: 50%;
        bottom: auto;
        top: -12px;
        transform: translateX(-50%);
        font-size: 10px;
        transition: none;
    }
}

@media (max-width: 991px) {
    .logo { top: 20px; left: 20px; }
    .nav-logo-img { height: 35px; }
    .nav { top: 20px; right: 20px; gap: 15px; height: 35px; }
    .nav a { font-size: 11px; }
    .menu-toggle { top: 20px; right: 20px; }
    .section-label { left: 20px; bottom: 20px; font-size: 10px; }
    .copyright { right: 20px; bottom: 20px; font-size: 10px; }
    .hero-stats { gap: 16px; }
    .hero-stat { padding: 18px 22px; }
    .solution-cards { flex-direction: column; align-items: center; }
    .solution-card { max-width: 600px; }
}

@media (max-width: 767px) {
    /* Show hamburger, convert nav to mobile menu */
    .menu-toggle { display: flex; }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: rgba(3, 3, 8, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        padding: 60px 20px;
        transition: right 0.3s ease, opacity 0.4s ease, transform 0.4s ease;
        border-left: 2px solid var(--soft-purple);
    }
    .nav.visible { opacity: 1; transform: translateY(0); }
    .nav.open { right: 0; }
    .nav a { font-size: 14px; opacity: 0.7; }
    .nav a:hover { opacity: 1; }
    
    .logo { top: 20px; left: 20px; }
    .nav-logo-img { height: 32px; }
    .menu-toggle { top: 20px; right: 20px; height: 32px; }
    
    .progress-container { display: none; }
    .section-label { left: 15px; bottom: 15px; }
    .copyright { right: 15px; bottom: 15px; font-size: 9px; }
    .scroll-hint { bottom: 60px; }
    .scroll-hint-circle { width: 46px; height: 46px; }
    .content-section { padding: 0 15px; }
    .hero-badge { font-size: 10px; padding: 12px 20px; }
    .hero-title { font-size: 28px; }
    .hero-stats { flex-direction: column; gap: 12px; align-items: center; }
    .hero-stat { width: 340px; max-width: 100%; }
    .hero-cta { padding: 18px 32px; font-size: 13px; }
    .problem-grid { gap: 12px; }
    .problem-card { padding: 20px 22px; }
    .solution-card { padding: 28px; }
    .contact-cta-box { padding: 40px 28px; }
    .contact-links { flex-direction: column; align-items: center; }
    .contact-btn { width: 100%; max-width: 280px; justify-content: center; }
    
    /* Logo wrapper responsive */
    .logo-wrapper .logo-main { width: clamp(220px, 60vw, 700px); }
}

@media (max-width: 480px) {
    .logo { top: 15px; left: 15px; }
    .nav-logo-img { height: 28px; }
    .menu-toggle { top: 15px; right: 15px; height: 28px; }
    .hero-title { font-size: 24px; }
    .hero-badge { font-size: 9px; padding: 10px 16px; }
    .hero-subtitle { font-size: 14px; }
    .section-tag { font-size: 10px; }
    .problem-card { padding: 16px 18px; }
    .problem-title { font-size: 14px; }
    .problem-desc { font-size: 12px; }
    .solution-card { padding: 22px; }
    .solution-title { font-size: 16px; }
    .contact-cta-box { padding: 30px 20px; }
    .contact-title { font-size: 24px; }
    .logo-wrapper .logo-main { width: clamp(200px, 70vw, 500px); }
    .logo-wrapper .logo-tagline { font-size: 12px; }
}

@media (max-width: 320px) {
    .logo { top: 12px; left: 12px; }
    .nav-logo-img { height: 22px; }
    .menu-toggle { top: 12px; right: 12px; width: 30px; height: 22px; }
    .menu-toggle span { width: 20px; }
    .hero-title { font-size: 20px; }
    .logo-wrapper .logo-main { width: clamp(180px, 80vw, 400px); }
}
