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

/* Lenis Smooth Scroll CSS */
html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

body {
    font-family: 'Host Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-optical-sizing: auto;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
    font-weight: 400;
    font-style: normal;
}

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

/* Unified Typography System - Single Source of Truth */
.text-hero-title {
    font-family: 'Host Grotesk', sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 4.2rem;
    line-height: 1.2;
    color: #fff;
    letter-spacing: -0.055em;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.text-hero-subtitle {
    font-family: 'Host Grotesk', sans-serif;
    font-optical-sizing: auto;
    font-weight: 150;
    font-style: normal;
    font-size: 1.3rem;
    color: #ccc;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.text-section-title {
    font-family: 'Host Grotesk', sans-serif;
    font-optical-sizing: auto;
    font-weight: 365;
    font-style: normal;
    font-size: 3.5rem;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.text-section-subtitle {
    font-family: 'Host Grotesk', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.3rem;
    color: #ccc;
    line-height: 1.5;
}

/* Additional styling for specific layouts */
.contact-header .text-section-title {
    margin-bottom: 20px;
}

.contact-header .text-section-subtitle {
    max-width: 600px;
    margin: 0 auto;
}

.services-text .text-section-title {
    position: relative;
    z-index: 2;
}

.brand-name {
    font-family: 'Host Grotesk', sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 2.2rem;
    color: #fff;
    letter-spacing: -0.02em;
}

/* Liquid Glass Button */
.glass-button {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    font-family: 'Host Grotesk', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
}

.glass-button::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;
}

.glass-button:hover::before {
    left: 100%;
}

.glass-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.glass-button .arrow-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.glass-button:hover .arrow-icon {
    transform: rotate(45deg);
}

/* Squared Glass Button Variant */
.glass-button-squared {
    border-radius: 8px;             /* Squared corners instead of 50px */
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
}

/* Canvas Beams Background */
.beams-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

#beams-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(15px);
}

.hero-nav {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 90px;
}

.hero {
    padding: 80px 0 200px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: none;                /* REMOVED WIDTH LIMIT FOR LARGE TEXT */
    margin: 120px auto 0;           /* Increased top margin to push content down more */
    width: 100%;                    /* FULL WIDTH TO PREVENT OVERFLOW */
    position: relative;
    z-index: 10;                    /* ENSURES CONTENT APPEARS ABOVE BEAMS */
}

/* HERO MAIN TITLE: "We don't sell Technology" - FLUID RESPONSIVE */

/* HEAVY "100x" STYLING */
/* This makes "100x" extra heavy */
.weight-heavy {
    font-weight: 300;               /* Extra bold for "100x" */
    letter-spacing: -0.055em;        /* Match parent letter spacing */
}


/* HERO SUBTITLE: "Your trusted partner for consulting..." - OPTIMIZED RESPONSIVE */

/* Tangerine Font Classes */
.tangerine-regular {
    font-family: "Tangerine", cursive;
    font-weight: 400;
    font-style: normal;
}

.tangerine-bold {
    font-family: "Tangerine", cursive;
    font-weight: 700;
    font-style: normal;
}

/* Services Section - New Two-Column Layout */
.services {
    padding: 120px 0;
    background: #111;
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 600px;
}

.services-text {
    position: relative;
    text-align: left;
}



.services-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background: #222;
    padding: 30px 25px;
    border-radius: 8px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    /* Remove initial hidden state - cards are now static */
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.service-number {
    font-size: 14px;
    font-weight: 600;
    color: #ccc;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.service-title {
    font-family: 'Host Grotesk', sans-serif;
    font-optical-sizing: auto;
    font-weight: 365;
    font-style: normal;
    font-size: 1.8rem;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.service-description {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    font-weight: 400;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: #111;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
    /* Initial hidden state for scroll animation */
    opacity: 0;
    transform: translateY(20px);
}



.typeform-container {
    max-width: 800px;
    margin: 0 auto;
    min-height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.footer-text {
    font-size: 14px;
    color: #ccc;
    font-weight: 400;
}

/* Responsive Design */

/* Clean Mobile Responsive Design */
@media (max-width: 768px) {
    /* Beams now enabled on mobile */
    
    .hero {
        min-height: 60vh;
        padding: 120px 0 500px;
    }
    
    .hero-nav {
        padding: 0 16px;
        top: 16px;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .glass-button {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .hero-content {
        margin: 170px auto 0;
    }
    
    /* Clean Mobile Text Design */
    .text-hero-title {
        font-size: 2.5rem;
        font-weight: 400;
        line-height: 1.1;
    }
    
    .text-hero-subtitle {
        font-size: 1.1rem;
        font-weight: 300;
    }
    
    /* Center 'Our Specialties' on mobile */
    .services-text {
        text-align: center;
        order: 1;
    }
    
    /* Mobile services layout */
    .services-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }
    
    .services-cards {
        order: 2;
    }
    
    /* Make service cards bigger on mobile */
    .service-card {
        transform: scale(0.9);
        padding: 30px 24px;
    }
    
    .typeform-container {
        min-height: 400px;
    }
}

/* Loading and Animation States */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.7s ease-out forwards;
}

/* Hero Text Animation - Simple Slide Up Blur to Unblur */
@keyframes slideUpUnblur {
    0% {
        transform: translateY(20px);
        filter: blur(13px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        filter: blur(0px);
        opacity: 1;
    }
}

/* Specialties Number "3" Animation */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-50px);
        filter: blur(10px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        filter: blur(0px);
        opacity: 0.5;
    }
}


.hero-text-animate {
    animation: slideUpUnblur 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Focus States for Accessibility */
.cta-button:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* High Contrast Mode Support - REMOVED MEDIA QUERY */
