body.home-body {
    margin: 0;
    font-family: var(--font-sans);
    background: var(--white);
    color: var(--eden-text);
}

.home-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.home-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-overlay);
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.home-topbar.scrolled {
    background: var(--color-overlay-white-92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--shadow-border-subtle);
}

.topbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: var(--space-xl) 0;
}
.home-brand {
    display: flex;
    align-items: center;
    width: 100px;
    height: 25px;
}

.home-brand img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-nav {
    display: flex;
    gap: var(--space-3xl);
    align-items: center;
    color: var(--eden-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.home-nav a {
    text-decoration: none;
    transition: color 0.2s;
}

.home-nav a:hover {
    color: var(--eden-green);
}

.hero {
    position: relative;
    z-index: var(--z-content);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 48px;
    align-items: center;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 132px 0 112px; /* Increased top padding to account for fixed topbar */
}

.hero-copy {
    max-width: 690px;
}

.home-title {
    margin: 0;
    font-size: clamp(2.7rem, 7vw, 5rem);
    line-height: 0.94;
    letter-spacing: var(--letter-spacing-heading);
    font-weight: 700;
    color: var(--color-primary-action);
}

.home-title span {
    display: inline-block;
    color: var(--color-highlight-green);
    font-weight: 900;
}

.description {
    max-width: 650px;
    margin: var(--space-title-subtitle) 0 0;
    font-size: 1.12rem;
    line-height: 1.7;
    color: var(--eden-body-text);
    font-weight: 500;
}

.home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-top: var(--space-subtitle-content);
}

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 var(--space-2xl);
    border-radius: 999px;
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.home-btn:hover {
    transform: translateY(-2px);
}

.home-btn-primary {
    background: var(--color-primary-action);
    color: var(--white);
}

.home-btn-secondary {
    background: var(--white);
    color: var(--color-primary-action);
    border: 1px solid var(--color-primary-action);
}

.home-btn-inverse {
    background-color: var(--white);
    color: var(--color-primary-action);
    border: 1px solid var(--white);
}

.hero-card {
    position: relative;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
}

.impact-card {
    border-radius: 30px;
    padding: var(--space-4xl);
    background: var(--color-primary-action);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.impact-card::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: var(--eden-leaf-22);
    right: -80px;
    top: -70px;
}

.impact-card h2 {
    position: relative;
    z-index: var(--z-base);
    margin: 0 0 var(--space-md);
    font-size: 1.65rem;
    line-height: 1.15;
    letter-spacing: -0.04em;
    color: var(--white);
}

.impact-card p {
    position: relative;
    z-index: var(--z-base);
    margin: 0;
    color: var(--color-forest-soft-text);
    line-height: 1.6;
    font-weight: 500;
}

.impact-grid {
    position: relative;
    z-index: var(--z-base);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-3xl);
}

.metric {
    padding: var(--space-xl);
    border-radius: 22px;
    background: transparent;
    border: 1px solid var(--color-forest-soft-text);
}

.metric strong {
    display: block;
    font-size: 1.55rem;
    letter-spacing: -0.05em;
    line-height: 1;
}

.metric span {
    display: block;
    margin-top: var(--space-metric-label);
    font-size: 0.78rem;
    color: var(--color-overlay-white-text-muted);
    line-height: 1.35;
    font-weight: 600;
}

.seed-note {
    margin-top: var(--space-xl);
    padding: var(--space-xl);
    border-radius: 22px;
    background: var(--color-forest-soft-text);
    color: var(--eden-green);
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.5;
}

.section {
    position: relative;
    z-index: var(--z-content);
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 64px 0;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 44px;
}

.section-kicker {
    margin: 0 0 var(--space-md);
    color: var(--eden-red-strong);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 900;
}

.question-mark {
    color: inherit;
}

.section-title {
    margin: 0;
    color: var(--color-primary-action);
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.03;
    letter-spacing: var(--letter-spacing-heading);
    font-weight: 900;
}

.section-title span {
    color: var(--color-highlight-green);
}

.section-text {
    margin: var(--space-xl) 0 0;
    color: var(--eden-body-text);
    font-size: 1.04rem;
    line-height: 1.75;
    letter-spacing: var(--letter-spacing-heading);
    font-weight: 500;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.home-card {
    padding: var(--space-3xl);
    border-radius: 30px;
    background: var(--white);
    border: 1px solid var(--color-primary-action);
}

.card-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 18px;
    background: var(--color-forest-soft-text);
    color: var(--eden-green);
    font-size: 1.45rem;
    margin-bottom: var(--space-xl);
}

.home-card h3 {
    margin: 0 0 var(--space-md);
    color: var(--color-primary-action);
    font-size: 1.15rem;
    letter-spacing: -0.03em;
}

.home-card p {
    margin: 0;
    color: var(--color-card-body-text);
    line-height: 1.65;
    font-size: 0.95rem;
    font-weight: 500;
}

.calculator-preview {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: var(--space-4xl);
    align-items: stretch;
    padding: 36px;
    border-radius: 38px;
    background: var(--color-primary-action);
    color: var(--white);
}

.calculator-preview h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.calculator-preview p {
    margin: var(--space-xl) 0 0;
    color: var(--color-forest-soft-text);
    line-height: 1.75;
    font-weight: 500;
}

.calc-box {
    display: grid;
    gap: var(--space-lg);
    padding: var(--space-2xl);
    border-radius: 28px;
    background: transparent;
    border: 1px solid var(--color-forest-soft-text);
}

.scenario-header {
    display: flex;
    justify-content: space-between;
    gap: var(--space-lg);
    align-items: center;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-overlay-white-border-muted);
}

.scenario-header span {
    color: var(--color-overlay-white-text-muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.scenario-header strong {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    text-align: right;
}

.scenario-list {
    display: grid;
    gap: var(--space-md);
}

.scenario-row {
    display: flex;
    justify-content: space-between;
    gap: var(--space-lg);
    align-items: center;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-overlay-white-border-muted);
}

.scenario-row span {
    color: var(--color-overlay-white-text);
    font-size: 0.88rem;
    font-weight: 500;
}

.scenario-row strong {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    text-align: right;
}

.result-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.result {
    padding: var(--space-xl) var(--space-lg);
    border-radius: 18px;
    background: var(--color-result-green);
    color: var(--eden-body-text);
}

.result strong {
    display: block;
    font-size: 1.2rem;
    line-height: 1;
}

.result span {
    display: block;
    margin-top: var(--space-metric-label);
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1.35;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    counter-reset: steps;
}

.step {
    position: relative;
    padding: var(--space-3xl) var(--space-2xl);
    border-radius: 28px;
    background: var(--color-primary-action);
    border: 1px solid var(--color-primary-action);
    counter-increment: steps;
}

.step::before {
    content: counter(steps);
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: var(--space-xl);
    border-radius: 50%;
    background: var(--color-forest-soft-text);
    color: var(--color-primary-action);
    font-weight: 900;
}

.step h3 {
    margin: 0 0 var(--space-md);
    color: var(--white);
    font-size: 1rem;
}

.step p {
    margin: 0;
    color: var(--color-forest-soft-text);
    line-height: 1.55;
    font-size: 0.9rem;
    font-weight: 500;
}

.proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.proof-card {
    padding: var(--space-4xl);
    border-radius: 30px;
    background: var(--white);
    border: 1px solid var(--color-primary-action);
    border-left: 8px solid var(--color-primary-action);
}

.proof-card h3 {
    margin: 0 0 var(--space-md);
    color: var(--color-primary-action);
}

.proof-card p {
    margin: 0;
    color: var(--color-card-body-text);
    line-height: 1.65;
    font-weight: 500;
}

.cta {
    position: relative;
    z-index: var(--z-content);
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto 80px;
    padding: 56px;
    border-radius: 42px;
    background: var(--eden-red-deep);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    max-width: 800px;
    margin: 0 auto;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.04;
    letter-spacing: var(--letter-spacing-heading);
    font-weight: 900;
}

.cta p {
    max-width: 720px;
    margin: var(--space-xl) auto 0;
    color: var(--white);
    line-height: 1.7;
    font-weight: 500;
}

.cta .home-btn {
    margin-top: var(--space-3xl);
    background: var(--white);
    color: var(--eden-red-deep);
}

.home-bg-art {
    position: absolute;
    pointer-events: none;
    z-index: var(--z-base);
}

.home-bg-art-top {
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
}

.home-bg-art-bottom {
    bottom: 280px;
    left: -160px;
    width: 420px;
    height: 420px;
}

.home-bg-art-bottom-2 {
    bottom: 980px;
    right: -220px;
    width: 520px;
    height: 520px;
}

.home-bg-art-left-mid {
    top: 760px;
    left: -260px;
    width: 560px;
    height: 560px;
}

.home-bg-circle {
    position: absolute;
    border-radius: 50%;
}

.home-top-dark {
    width: 340px;
    height: 340px;
    background: var(--eden-green-18);
    right: 0;
    top: 0;
}

.home-top-medium {
    width: 230px;
    height: 230px;
    background: var(--eden-leaf-28);
    right: 90px;
    top: 100px;
}

.home-top-light {
    width: 120px;
    height: 120px;
    background: var(--eden-red-14);
    right: 250px;
    top: 60px;
}

.home-bottom-back {
    width: 360px;
    height: 360px;
    background: var(--eden-sand-90);
    left: 0;
    top: 20px;
}

.home-bottom-middle {
    width: 250px;
    height: 250px;
    background: var(--eden-leaf-18);
    left: 70px;
    top: 90px;
}

.home-bottom-front {
    width: 150px;
    height: 150px;
    background: var(--eden-green-14);
    left: 210px;
    top: 180px;
}

.home-bottom-detail {
    width: 70px;
    height: 70px;
    background: var(--eden-red-18);
    left: 250px;
    top: 90px;
}

.home-bottom-2-back {
    width: 430px;
    height: 430px;
    background: var(--eden-sand-90);
    right: 0;
    top: 0;
}

.home-bottom-2-middle {
    width: 300px;
    height: 300px;
    background: var(--eden-leaf-18);
    right: 120px;
    top: 120px;
}

.home-bottom-2-front {
    width: 190px;
    height: 190px;
    background: var(--eden-green-14);
    right: 260px;
    top: 250px;
}

.home-bottom-2-detail {
    width: 110px;
    height: 110px;
    background: var(--eden-red-14);
    right: 230px;
    top: 80px;
}

.home-left-mid-back {
    width: 460px;
    height: 460px;
    background: var(--eden-sand-90);
    left: 0;
    top: 0;
}

.home-left-mid-front {
    width: 320px;
    height: 320px;
    background: var(--eden-leaf-18);
    left: 120px;
    top: 150px;
}

.home-left-mid-detail {
    width: 140px;
    height: 140px;
    background: var(--eden-red-14);
    left: 330px;
    top: 90px;
}

.home-mid-back {
    width: 420px;
    height: 420px;
    background: var(--eden-sand-90);
    right: 0;
    top: 20px;
}

.home-mid-front {
    width: 300px;
    height: 300px;
    background: var(--eden-leaf-18);
    right: 150px;
    top: 140px;
}

.home-mid-detail {
    width: 130px;
    height: 130px;
    background: var(--eden-red-14);
    right: 290px;
    top: 80px;
}

.home-lower-back {
    width: 460px;
    height: 460px;
    background: var(--eden-sand-90);
    left: 0;
    bottom: 0;
}

.home-lower-front {
    width: 320px;
    height: 320px;
    background: var(--eden-green-14);
    left: 150px;
    bottom: 70px;
}

.home-lower-detail {
    width: 160px;
    height: 160px;
    background: var(--eden-red-18);
    left: 320px;
    bottom: 250px;
}

@media (max-width: 920px) {
    .home-nav {
        display: none;
    }

    .hero,
    .calculator-preview,
    .proof {
        grid-template-columns: 1fr;
    }

    .cards,
    .steps {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .home-topbar,
    .hero,
    .section,
    .cta {
        width: min(100% - 28px, 1180px);
    }

    .hero {
        padding-top: 44px;
    }

    .cards,
    .steps,
    .impact-grid,
    .result-strip {
        grid-template-columns: 1fr;
    }

    .calculator-preview,
    .cta {
        padding: var(--space-3xl);
    }

    .scenario-header,
    .scenario-row {
        align-items: flex-start;
        flex-direction: column;
        gap: var(--space-sm);
    }

    .scenario-header strong,
    .scenario-row strong {
        text-align: left;
    }
}
