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

:root {
    --primary-color: #F95320;
    --secondary-color: #FFB63B;
    --accent-color: #FFE6DD;
    --dark-color: #1A1A1A;
    --light-color: #F6F7F8;
    --text-color: #1A1A1A;
    --text-secondary: #4B5563;
    --border-color: #E6D7C6;
    --surface: #FFFFFF;
    --header-height: 70px;
}

html {
    scroll-padding-top: var(--header-height);
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Header & Navigation */
header {
    background: var(--surface);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem 0.75rem 2rem;
}

.logo-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-decoration: none;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo-tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: -4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links .nav-cta {
    background: var(--primary-color);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 8px 18px rgba(249, 83, 32, 0.25);
    transition: all 0.25s ease;
}

.nav-links .nav-cta:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 22px rgba(255, 182, 59, 0.35);
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: var(--header-height);
}

.hero-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease 0.1s both;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.15s both;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.3s both;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--surface);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--surface);
    border: 2px solid var(--surface);
}

.btn-secondary:hover {
    background: var(--surface);
    color: var(--primary-color);
}

/* Why Flavr Section */
.why-flavr {
    padding: 5rem 2rem;
    background: var(--light-color);
}

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

.why-flavr h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.why-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

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

/* Ensure perks display three across on wider screens */
.perks-grid {
    grid-template-columns: repeat(3, 1fr);
}

.why-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.why-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.why-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
    font-weight: 700;
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Features Section */
.features {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

.feature-card {
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    background: var(--surface);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-icon.discover {
    background-color: rgba(249, 83, 32, 0.1);
    color: var(--primary-color);
}

.feature-icon.cook {
    background-color: rgba(249, 83, 32, 0.1);
    color: var(--primary-color);
}

.feature-icon.grow {
    background-color: rgba(46, 204, 113, 0.1);
    color: #2ECC71;
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About Section */
.about {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 2rem;
    background: var(--light-color);
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.about p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-highlight {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.25rem;
    font-style: italic;
    background: linear-gradient(135deg, rgba(249, 83, 32, 0.1) 0%, rgba(255, 182, 59, 0.1) 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.about-mission {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.3rem;
    margin-top: 2rem;
}

/* Contact Section */
.contact {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 2rem;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--dark-color);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 180px;
}

.download-btn.coming-soon {
    opacity: 0.7;
    cursor: not-allowed;
}

.download-btn:not(.coming-soon):hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.download-btn svg {
    flex-shrink: 0;
}

.download-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.download-label {
    font-size: 0.75rem;
    opacity: 0.9;
}

.download-store {
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-subtext {
    font-size: 1rem;
    color: var(--text-secondary);
}

.contact-subtext a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-subtext a:hover {
    text-decoration: underline;
}

/* Early Access Section */
.early-access {
    background: var(--surface);
    padding: 4rem 2rem;
    text-align: center;
}

.early-access h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.early-access p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.early-access-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.early-access-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.early-access-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 2rem;
    border-radius: 16px;
    margin: 0 auto 2.5rem;
    max-width: 700px;
}

.early-access-cta h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.early-access-cta p {
    color: white;
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.95;
}

.kit-form-container {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kit-form-container iframe {
    max-width: 600px;
    width: 100%;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    text-align: center;
    padding: 2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
}

.scroll-animate.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --header-height: 110px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        gap: 0.75rem;
        font-size: 0.95rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links .nav-cta {
        padding: 0.55rem 1.05rem;
        box-shadow: 0 6px 14px rgba(249, 83, 32, 0.22);
        font-size: 0.95rem;
    }

    nav {
        padding: 1rem;
    }

    .why-flavr h2,
    .features h2,
    .about h2,
    .contact h2 {
        font-size: 2rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-intro {
        font-size: 1.1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .about p {
        font-size: 1.1rem;
    }

    .early-access-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .early-access-cta {
        padding: 1.5rem;
    }

    .early-access-cta h3 {
        font-size: 1.3rem;
    }

    .early-access-cta p {
        font-size: 1rem;
    }
}
