:root {
    --emerald: #16A34A;
    --deepGreen: #0F3D2E;
    --forestText: #064E3B;
    --mint: #BBF7D0;
    --softBg: #F7FFF9;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #ffffff;
    color: var(--forestText);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

/* --- Navigation & Capsule Logo --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0px;
    padding: 0.5rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

.nav-inner-scrolled {
    max-width: 850px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 15px 35px rgba(15, 61, 46, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

nav.nav-scrolled {
    padding: 0.5rem 1rem;
}

/* LOGO SIZE — compact for larger logo file */
.logo-container {
    height: 70px;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .logo-container {
        height: 50px;
    }
}

.logo-container img {
    height: 100%;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

/* --- Mobile Navigation --- */
.mobile-menu-toggle {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--deepGreen);
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    transition: transform 0.2s;
}

.mobile-menu-toggle:active {
    transform: scale(0.9);
}

.mobile-menu-dropdown {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    box-shadow: 0 20px 45px rgba(15, 61, 46, 0.1);
    margin-top: 0.5rem;
    z-index: 999;
}

.mobile-menu-dropdown a {
    text-decoration: none;
    color: var(--forestText);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f1f5f9;
    transition: color 0.2s;
}

.mobile-menu-dropdown a:hover {
    color: var(--emerald);
}

.mobile-menu-dropdown a:last-child {
    border-bottom: none;
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none !important;
    }
}

/* --- Buttons --- */
.btn-primary {
    background-color: var(--emerald) !important;
    color: white !important;
    padding: 1.1rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    border: none;
    border-bottom: 4px solid rgba(0, 0, 0, 0.2);
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    border-bottom-width: 6px;
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.3);
}

/* --- Hero Section --- */
.hero {
    padding: 160px 0 100px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: var(--softBg);
    background-image: radial-gradient(at 0% 0%, rgba(22, 163, 74, 0.1) 0px, transparent 55%),
        radial-gradient(at 100% 100%, rgba(15, 61, 46, 0.1) 0px, transparent 55%);
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.section-tag {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(22, 163, 74, 0.1);
    border-radius: 100px;
    color: var(--emerald);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: clamp(1.8rem, 7.5vw, 5rem);
    line-height: 1.05;
    font-weight: 800;
    color: var(--deepGreen);
    margin: 1.5rem 0;
    letter-spacing: -0.03em;
}

.hero h1 span {
    color: var(--emerald);
}

.quote-box {
    font-size: clamp(1.25rem, 3.5vw, 1.8rem);
    font-weight: 700;
    color: var(--forestText);
    opacity: 0.9;
    line-height: 1.5;
    margin: 2.5rem 0;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 32px;
    border: 1px solid rgba(22, 163, 74, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 20px 40px rgba(15, 61, 46, 0.03);
    display: inline-block;
}

/* --- Story Editorial Sections --- */
.story-section {
    padding: 100px 0;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.story-card-glass {
    background: var(--softBg);
    border: 1px solid rgba(22, 163, 74, 0.15);
    padding: 4rem 3.5rem;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(15, 61, 46, 0.02);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-card-glass:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(15, 61, 46, 0.05);
    border-color: rgba(22, 163, 74, 0.3);
}

.story-card-dark {
    background: var(--deepGreen);
    color: white;
    padding: 4rem 3.5rem;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(15, 61, 46, 0.15);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.story-card-dark::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.15) 0%, transparent 60%);
    top: -25%;
    right: -25%;
    z-index: 1;
    pointer-events: none;
}

.story-card-dark>* {
    position: relative;
    z-index: 2;
}

.story-card-dark:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px rgba(15, 61, 46, 0.25);
}

.dropcap {
    font-size: 4rem;
    font-weight: 800;
    color: var(--emerald);
    float: left;
    line-height: 0.8;
    padding-right: 12px;
    padding-top: 4px;
}

.story-p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.story-card-dark .story-p {
    opacity: 0.95;
}

.story-p:last-of-type {
    margin-bottom: 0;
}

/* --- Full Width Highlight Slogan Banner --- */
.slogan-banner {
    background-color: var(--deepGreen);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.slogan-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(22, 163, 74, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.slogan-title {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.slogan-highlight {
    color: var(--mint);
    text-shadow: 0 0 40px rgba(187, 247, 208, 0.2);
}

/* --- Sponsor/Product Company Section --- */
.product-badge-section {
    padding: 80px 0;
    background: var(--softBg);
    text-align: center;
}

.badge-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(15, 61, 46, 0.03);
    transition: all 0.3s ease;
}

.badge-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 45px rgba(15, 61, 46, 0.06);
    border-color: var(--emerald);
}

.badge-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--deepGreen);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.badge-link {
    color: var(--emerald);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-link:hover {
    border-bottom-color: var(--emerald);
    opacity: 0.9;
}

/* --- Footer --- */
footer {
    background: #081a14;
    color: #94a3b8;
    padding: 6rem 0 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.footer-grid a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-grid a:hover {
    color: white;
}



