/* Exact styling matching the reference Enblox template */

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #ffffff;
    color: #000000;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* --- Exact Mesh Gradient Background --- */
.mesh-gradient-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-color: #ffffff;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(120px);
    opacity: 0.6;
    border-radius: 50%;
}

.blob-blue {
    width: 600px;
    height: 600px;
    background: #C9D6FF;
    top: -10%;
    right: -5%;
    animation: blob-float 10s infinite alternate ease-in-out;
}

.blob-purple {
    width: 500px;
    height: 500px;
    background: #E0C3FC;
    bottom: 5%;
    left: -10%;
    animation: blob-float 12s infinite alternate-reverse ease-in-out;
}

.blob-peach {
    width: 500px;
    height: 500px;
    background: #FFEFBA;
    bottom: -10%;
    right: 10%;
    animation: blob-float 8s infinite alternate ease-in-out;
}

@keyframes blob-float {
    0% { transform: translate(0px, 0px) scale(1); }
    100% { transform: translate(30px, -40px) scale(1.1); }
}

/* --- Exact Structure Layout --- */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(0px);
    background: transparent;
    border-bottom: 1px solid transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    transition: all 0.4s ease;
}

.sticky-header.scrolled {
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.sticky-header .logo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #000;
    text-decoration: none;
}

.sticky-header .nav-links {
    display: none;
}
@media (min-width: 768px) {
    .sticky-header .nav-links {
        display: flex;
        gap: 32px;
    }
}

.sticky-header .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.sticky-header .nav-links a:hover,
.sticky-header .nav-links a.active {
    color: #000;
}

.btn-small {
    border-radius: 9999px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    color: #000;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-small:hover {
    background: #000;
    color: #fff;
}

/* --- Hero Section Exact Typography --- */
.hero-section {
    padding: 160px 24px 0px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: auto;
}

/* White-space buffer for inner pages (below transparent header) */
.page-top {
    padding-top: 120px;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #000000;
    margin: 0 0 24px 0;
}
@media (min-width: 768px) {
    .hero-title {
        font-size: 80px;
    }
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.6);
    max-width: 680px;
    line-height: 1.6;
    margin: 0 auto 40px auto;
    font-weight: 400;
}
@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 20px;
    }
}

.btn-large {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    color: #000;
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-large:hover {
    background: #000;
    color: #fff;
}

.btn-large .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-large:hover .arrow {
    transform: translateX(4px);
}

.hero-image-wrapper {
    margin-top: 80px;
    width: 100%;
    max-width: 800px;
    border-radius: 40px;
    overflow: hidden;
    /* Box shadow to simulate device elevation if needed */
    box-shadow: 0 -20px 40px rgba(0,0,0,0.05);
    display: flex;
    justify-content: center;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

/* GSAP Defaults */
.gs-reveal {
    opacity: 0;
    transform: translateY(30px);
}
