/* Main styles for Grizzly Autos website */

/* Prevent font loading flash */
.wf-loading body {
    visibility: hidden;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
    overflow-x: hidden;
    font-display: block;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 15px;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.header .container {
    max-width: 100%;
    padding: 0 21px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1001;
}

.logo img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.logo h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #B22222, #FF0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: auto;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.86rem;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #B22222;
}

.main-nav .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(45deg, #B22222, #FF0000);
    color: white;
    box-shadow: 0 4px 15px rgba(178, 34, 34, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #B22222;
    border: 2px solid #B22222;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(178, 34, 34, 0.4);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 50%, #0f1421 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: opacity 0.3s ease;
    will-change: opacity;
}

.hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
    transition: transform 0.1s linear, opacity 0.3s ease;
    will-change: transform, opacity;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(178, 34, 34, 0.1);
    border: 1px solid rgba(178, 34, 34, 0.3);
    border-radius: 50px;
    color: #ff6666;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-brand {
    font-size: clamp(2.5rem, 8vw, 8rem);
    font-weight: 900;
    color: #ff6666;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -3px;
    opacity: 0;
    transition: opacity 0.8s ease 0.1s;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 102, 102, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #e8e8e8;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
    opacity: 0;
    transition: opacity 0.8s ease 0.2s;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    color: #e8e8e8;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
    opacity: 0;
    transition: opacity 0.8s ease 0.2s;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(200, 200, 200, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transition: opacity 0.8s ease 0.4s;
}

.hero .cta-buttons {
    opacity: 0;
    transition: opacity 0.8s ease 0.6s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    cursor: pointer;
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.1);
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 38px;
    border: 2px solid rgba(200, 200, 200, 0.4);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(200, 200, 200, 0.7);
    border-radius: 2px;
    animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
    0% {
        opacity: 0;
        top: 8px;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: 20px;
    }
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

/* Section Styling */
.section {
    padding: 60px 0;
    position: relative;
}

.section:nth-child(even) {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
    position: relative;
    letter-spacing: -0.5px;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #B22222, #FF0000);
    border-radius: 2px;
}

.section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #444;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #B22222, #FF0000);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(178, 34, 34, 0.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #B22222;
    letter-spacing: -0.5px;
}

.feature-card p {
    text-align: left;
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Core Points */
.core-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.point {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.point:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(178, 34, 34, 0.1);
}

.point-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    color: #B22222;
}

.point h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #B22222;
    letter-spacing: -0.5px;
}

.point p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Contact Form */
.contact-form {
    max-width: 450px;
    margin: 2rem auto 0;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #B22222;
    box-shadow: 0 0 0 3px rgba(178, 34, 34, 0.1);
}

.form-group textarea {
    height: 80px;
    resize: vertical;
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 2rem 0 1rem 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.footer-section p {
    color: #666;
    margin-bottom: 0.5rem;
    text-align: left;
    font-size: 0.8rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.25rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: #B22222;
}

.footer-bottom {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    text-align: center;
    color: #666;
    font-size: 0.6rem;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


/* About Hero Section */
.about-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, #0a1a1f 0%, #1a2f35 50%, #0f1f24 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 50px;
}

#about-hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: opacity 0.3s ease;
    will-change: opacity;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    transition: transform 0.1s linear, opacity 0.3s ease;
    will-change: transform, opacity;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #e8e8e8;
    letter-spacing: -1px;
    line-height: 1.1;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.about-hero p {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: rgba(200, 200, 200, 0.85);
    margin-bottom: 2rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.8s ease 0.2s;
}

/* Technology-specific styles */
.tech-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, #1a0a1f 0%, #2f1a35 50%, #1f0f24 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 50px;
}

#tech-hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: opacity 0.3s ease;
    will-change: opacity;
}

.tech-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    transition: transform 0.1s linear, opacity 0.3s ease;
    will-change: transform, opacity;
}

.tech-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #e8e8e8;
    letter-spacing: -1px;
    line-height: 1.1;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.tech-hero p {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: rgba(200, 200, 200, 0.85);
    margin-bottom: 2rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.8s ease 0.2s;
}

/* Designs Hero Section */
.designs-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, #1f1a0a 0%, #352f1a 50%, #241f0f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 50px;
}

#designs-hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: opacity 0.3s ease;
    will-change: opacity;
}

.designs-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    transition: transform 0.1s linear, opacity 0.3s ease;
    will-change: transform, opacity;
}

.designs-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #e8e8e8;
    letter-spacing: -1px;
    line-height: 1.1;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.designs-hero p {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: rgba(200, 200, 200, 0.85);
    margin-bottom: 2rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.8s ease 0.2s;
}

/* Technical Specs Section */
.tech-specs {
    padding: 60px 0;
    background: white;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.spec-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(178, 34, 34, 0.1);
}

.spec-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #B22222;
    letter-spacing: -0.5px;
}

.spec-card p {
    text-align: left;
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Comparison Section */
.comparison-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.comparison-table {
    width: 100%;
    max-width: 800px;
    margin: 3rem auto;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.comparison-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Research Section */
.research-section {
    padding: 60px 0;
    background: white;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.research-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.research-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(178, 34, 34, 0.1);
}

.research-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #B22222;
    letter-spacing: -0.5px;
}

.research-card p {
    text-align: left;
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #333;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    /* Mobile header styles */
    .mobile-menu-btn {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: clamp(1rem, 4vh, 2rem);
        padding: clamp(1rem, 3vh, 2rem) 1rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .main-nav a {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        padding: clamp(0.75rem, 2vh, 1rem);
        text-align: center;
        width: 100%;
        max-width: clamp(180px, 50vw, 200px);
        min-height: clamp(40px, 6vh, 48px);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
    }
    
    .main-nav .btn {
        padding: 15px 30px;
        font-size: 1.1rem;
        margin-top: 1rem;
    }
    
    /* Fix content spacing for fixed header */
    .hero {
        padding-top: 50px;
    }
    
    .tech-hero {
        padding-top: 50px;
        min-height: 50vh;
    }

    .about-hero {
        padding-top: 50px;
        min-height: 50vh;
    }

    .designs-hero {
        padding-top: 50px;
        min-height: 50vh;
    }
    
    /* Ensure all sections have proper top spacing */
    .section:first-of-type,
    .tech-hero + .section {
        padding-top: 40px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .core-points {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 40px 0;
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
    }
    
    /* Logo adjustments for mobile */
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo img {
        height: 35px;
        width: 35px;
    }
    
    /* Hero text mobile adjustments */
    .hero-brand {
        font-size: clamp(3.5rem, 12vw, 6rem);
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: clamp(1.8rem, 6vw, 3.5rem);
        letter-spacing: -1px;
    }
    
    .hero-content {
        padding: 1rem;
    }
}

/* Car Concept Section */
.car-concept-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
    width: 100%;
    overflow: hidden;
}

.car-concept-section .container {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.car-concept-image {
    max-width: 70%;
    width: 70%;
    margin: 0 auto;
    padding: 1.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.car-concept-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.car-concept-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.car-concept-image:hover img {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .car-concept-section {
        padding: 2rem 0;
    }
    
    .car-concept-image {
        max-width: 85%;
        width: 85%;
        padding: 1rem;
        margin: 0 auto;
    }
}

/* Extra small mobile screens */
@media (max-width: 480px) {
    .hero-brand {
        font-size: clamp(3rem, 11vw, 5rem);
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
        font-size: clamp(1.6rem, 5.5vw, 3rem);
        letter-spacing: -0.5px;
    }
    
    .hero-content {
        padding: 0.5rem;
    }
} 