:root {
    --text-main: #111111;
    --text-muted: #4b4b4b;
    --text-light: #737373;
    --btn-dark: #474f41; /* olive/dark grey */
    --btn-dark-hover: #373e32;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body, html {
    font-family: var(--font-body);
    color: var(--text-main);
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background-color: transparent;
}

/* Background */
.bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    background-image: url('bg-landscape.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient to make the top white and blend into the landscape */
    background: linear-gradient(
        to bottom, 
        rgba(255,255,255,1) 0%, 
        rgba(255,255,255,0.95) 15%, 
        rgba(255,255,255,0.7) 35%, 
        rgba(255,255,255,0) 65%
    );
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.nav-left, .nav-center, .nav-right {
    display: flex;
    align-items: center;
}

.nav-left {
    gap: 3rem;
    flex: 1;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 36px;
    width: 40px; /* Cropped width */
    object-fit: cover;
    object-position: left center;
}

.segment-control {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.segment-btn {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s;
}

.segment-btn.active {
    border-color: #111;
}

.segment-btn:hover:not(.active) {
    color: var(--text-muted);
}

.nav-center {
    gap: 2.5rem;
    flex: 2;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--text-muted);
}

.nav-right {
    flex: 1;
    justify-content: flex-end;
}

.btn-signup {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #111;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    transition: all 0.2s;
}

.btn-signup:hover {
    background: #111;
    color: #fff;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 18vh;
    padding-bottom: 5rem;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.badge {
    background: rgba(0, 0, 0, 0.04);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5.5vw, 4.8rem);
    line-height: 1.1;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 6rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--btn-dark);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    padding: 1rem 1.75rem;
    border-radius: 999px;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--btn-dark-hover);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    padding: 1rem 1.75rem;
    border-radius: 999px;
    border: 1px solid #111;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #f8f8f8;
}

/* Social Proof */
.social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.trusted-text {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.logos-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    opacity: 0.8;
}

.brand-logo {
    color: #111;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.brand-logo:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-left { gap: 1.5rem; }
    .nav-center { gap: 1.5rem; }
    .hero-title { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }
    
    .segment-control, .nav-center, .nav-right {
        display: none;
    }
    
    .hero {
        padding-top: 15vh;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .logos-row {
        gap: 1.5rem;
    }
}
