:root {
    --bg-color: #F7F5F2;
    --green-soft: #8FA99B;
    --blush: #D8B4A0;
    --charcoal: #2F2F2F;
    --grey: #6B6A67;
    
    --font-heading: 'DM Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--grey);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--charcoal);
    font-weight: 500;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    padding: 48px 0;
}

.header-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 48px;
}

.header-logo {
    height: 190px;
    width: auto;
    margin-top: -46px;
}

.header-text {
    max-width: 915px;
}

.header-intro {
    font-size: 18px;
    color: var(--grey);
    margin-top: 32px;
    text-align: center;
}

/* Typography Scale */
.hero-title {
    font-size: 48px;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 32px;
    text-align: center;
    color: var(--charcoal);
    font-weight: 500;
    font-family: var(--font-heading);
    margin-bottom: 0;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 48px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border: none;
    border-radius: 50px; /* Pillow shape */
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--green-soft);
    color: var(--charcoal); /* Contrast check needed, mockup shows dark text */
}

.btn-primary:hover {
    filter: brightness(0.95);
}

/* Hero Section */
.hero-section {
    /* padding: 80px 0;*/
}

.hero-content {
    /* Layout strategy: Flex or Grid. Mockup shows image left, form right-ish, but layout is fluid. 
       Let's use a two-column grid for the lower part part.
    */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
}

.hero-form-wrapper {
    max-width: 530px;
}

.form-intro {
    font-size: 14px;
    margin-bottom: 24px;
    color: var(--grey);
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-group label {
    font-family: var(--font-heading);
    color: var(--charcoal);
    font-weight: 500;
    font-size: 14px;
    min-width: 100px;
}

.form-input {
    background-color: var(--blush);
    border: none;
    border-radius: 8px;
    height: 32px; /* Visual height from mockup */
    width: 100%;
    padding: 0 12px;
}

.form-submit {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
}

.form-footer {
    font-size: 13px; /* Microcopy */
    margin-top: 24px;
    text-align: center;
    line-height: 1.4;
}

/* Is This For You Section */
.is-this-for-you-section {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.center-icon {
    max-width: 150px;
    opacity: 0.8;
}

.feature-item {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.check-icon {
    color: var(--green-soft);
    font-weight: bold;
    font-size: 20px;
}

/* What You'll Receive Section */
.receive-section {
    padding: 80px 0;
    text-align: center;
}

.benefits-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-wrapper {
    /* Placeholder for the custom icons in mockup */
    color: var(--blush);
    font-size: 24px;
    width: 32px;
    text-align: center;
}

/* Coming Soon Section */
.coming-soon-section {
    padding: 80px 0;
}

.coming-soon-content {
    max-width: 800px;
    margin: 0 auto; /* Or align left as per mockup if full width but text is contained */
}

.align-left {
    text-align: left;
}

.coming-soon-text p {
    margin-bottom: 24px;
}

.feature-bullets {
    list-style: none;
    margin-bottom: 32px;
}

.feature-bullets li {
    margin-bottom: 12px;
    padding-left: 0;
}

.italic-note {
    font-style: italic;
    font-family: var(--font-body);
}

/* Meet Guide Section */
.meet-guide-section {
    padding: 80px 0 120px;
}

.guide-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto 48px;
}

.guide-image {
    width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 4px; /* Optional */
}

.guide-bio {
    flex: 1;
}

.guide-bio p {
    margin-bottom: 24px;
}

.guide-cta {
    text-align: center;
}


/* MOBILE ONLY */
@media (max-width: 768px) {

    html,
    body {
        height: 100%;
        overflow: hidden;
    }

    .snap-container {
        height: 100vh;
        overflow-y: scroll;
        scroll-snap-type: y mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .snap-section {
        min-height: 100vh;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        display: flex;
        align-items: flex-start;
        padding-top: 24px;
    }

}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header-container {
        flex-wrap: wrap;
    }
    
    .hero-title {
        font-size: 40px; /* ~25% reduction */
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 0px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-center-image {
        text-align: center;
        margin-bottom: 12px;
    }
    
    .guide-content {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 0;
    }
    
    .guide-image {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .is-this-for-you-section{
        padding-bottom: 20px;
    }

    .receive-section{
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .section-subtitle{
        margin-bottom: 12px;
    }

    .coming-soon-section{
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .meet-guide-section{
        padding-top: 32px;
    }

    .center-icon{
        max-width: 100%;
    }

    .features-grid{
        gap: 0;
    }

    .feature-item{
        margin-bottom: 12px;
    }

    .header.snap-section{
        align-items: center;
    }
}


