﻿
body.is-presenting {
    overflow: hidden;
}

:root {
    --green-900: #1f3b2b;
    --green-700: #2f5c3f;
    --green-500: #3f7b55;
    --green-200: #d8e7dc;
    --brown-600: #8c4f24;
    --brown-400: #b26b36;
    --cream-100: #f6f4ee;
    --cream-50: #fdfbf7;
    --text-dark: #2d2a26;
    --text-muted: #5b5752;
    --shadow-soft: 0 25px 45px rgba(47, 92, 63, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Work Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--cream-100);
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    display: block;
}

.site-header {
    background: linear-gradient(135deg, rgba(63, 123, 85, 0.95), rgba(242, 239, 231, 0.95));
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.35), transparent 60%),
        radial-gradient(circle at bottom right, rgba(140, 79, 36, 0.25), transparent 55%);
    pointer-events: none;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--cream-50);
}

.nav__brand img {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.2));
}

.nav__links {
    display: flex;
    gap: 1.5rem;
    font-weight: 500;
    color: var(--cream-50);
}

.nav__toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    color: var(--cream-50);
    padding: 0.4rem 1rem;
}

.hero {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    padding: 3rem 2rem 0;
    position: relative;
    z-index: 2;
}

.hero__content h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 3vw + 1rem, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--cream-50);
}

.hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
}

.hero__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.75rem;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.btn--primary {
    background: var(--brown-400);
    color: var(--cream-50);
    box-shadow: 0 15px 30px rgba(178, 107, 54, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(178, 107, 54, 0.4);
}

.btn--ghost {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--cream-50);
    background: transparent;
}

.btn--ghost:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.hero__bullets {
    display: grid;
    gap: 0.6rem;
    padding-left: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__card {
    width: min(100%, 360px);
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(253, 251, 247, 0.9), rgba(214, 229, 218, 0.85));
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.hero__card img {
    border-radius: 14px;
}

.hero__token {
    position: absolute;
    top: -30px;
    right: 20px;
    width: 140px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(47, 92, 63, 0.25));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.section {
    padding: 5rem 2rem;
}

.section--light {
    background: var(--cream-50);
}

.section--accent {
    background: linear-gradient(135deg, rgba(63, 123, 85, 0.1), rgba(140, 79, 36, 0.08));
}

.section--cta {
    background: var(--green-900);
    color: var(--cream-50);
}

.section__intro {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section__intro h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 2vw + 1rem, 3rem);
    margin-bottom: 0.75rem;
}

.section__intro p {
    color: var(--text-muted);
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    color: var(--green-700);
    margin-bottom: 1.5rem;
}

.feature-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-soft);
}

.feature-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--green-700);
    margin-bottom: 1rem;
}

.feature-card ul {
    margin: 1.5rem 0 0;
    padding-left: 1.2rem;
    color: var(--text-muted);
}

.offer-card {
    max-width: 880px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-soft);
}

.offer-card h2 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--green-700);
    margin-bottom: 1.25rem;
}

.offer-card ul {
    margin: 1.5rem 0 2rem;
    padding-left: 1.2rem;
    color: var(--text-muted);
}

.benefit-grid {
    display: grid;
    gap: 1.8rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    background: #ffffff;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 18px 30px rgba(47, 92, 63, 0.08);
}

.benefit-item h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--brown-600);
}

.section--cta .cta-card {
    max-width: 780px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.cta-card h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 1.5vw + 1.5rem, 2.8rem);
    margin-bottom: 1rem;
}

.cta-form {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.cta-form label {
    display: grid;
    gap: 0.6rem;
    font-weight: 500;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: none;
    font: inherit;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
    color: var(--text-dark);
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
    outline: 2px solid rgba(214, 231, 220, 0.8);
    outline-offset: 2px;
}

.cta-card .btn--primary {
    justify-self: flex-start;
}

.footer {
    background: #131f17;
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 2rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    align-items: center;
}

.footer__brand {
    display: grid;
    gap: 1rem;
    max-width: 420px;
}

.footer__brand img {
    max-width: 240px;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.35));
}

.footer__brand a {
    color: rgba(255, 255, 255, 0.9);
}

.footer__links {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.75);
}

.animate {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }


    .hero__bullets {
        justify-items: center;
        padding-left: 0;
        list-style-position: inside;
    }

    .hero__visual {
        order: -1;
        margin-bottom: 2rem;
    }

    .hero__token {
        top: -36px;
        right: 12px;
        bottom: auto;
        transform: none;
        width: 120px;
    }
}

@media (max-width: 720px) {
    .nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav__links {
        display: none;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        background: rgba(19, 31, 23, 0.8);
        padding: 2rem 1.5rem 1.75rem;
        border-radius: 16px;
    }

    .nav__links.is-open {
        display: flex;
    }

    .nav__toggle {
        display: inline-flex;
    }

    .cta-card {
        padding: 2rem;
    }
}

@media (max-width: 520px) {
    .nav {
        padding: 1.2rem 1.5rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .feature-card,
    .benefit-item {
        padding: 2rem 1.5rem;
    }

    .footer {
        text-align: center;
        justify-items: center;
    }

    .footer__links {
        justify-content: center;
    }
}

.btn--presentation {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: var(--cream-50);
}

.btn--presentation:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 14px 28px rgba(31, 59, 43, 0.22);
}

.presentation {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(19, 31, 23, 0.88);
    backdrop-filter: blur(6px);
    z-index: 999;
}

.presentation.is-active {
    display: flex;
}

.presentation__container {
    width: min(100%, 1100px);
    height: min(90vh, 720px);
    background: linear-gradient(160deg, rgba(246, 244, 238, 0.95), rgba(216, 231, 220, 0.92));
    border-radius: 28px;
    box-shadow: 0 35px 70px rgba(19, 31, 23, 0.35);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.presentation__header,
.presentation__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 2rem;
    background: rgba(63, 123, 85, 0.08);
    color: var(--green-900);
    font-weight: 600;
}

.presentation__slides {
    flex: 1;
    position: relative;
    overflow: hidden;
    padding: 2.5rem 3rem 2.75rem;
}

.presentation__slide {
    position: absolute;
    inset: 0;
    padding: 2rem 1.5rem 1.75rem;
    overflow-y: auto;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.presentation__slide.is-active {
    opacity: 1;
    transform: translateX(0);
    z-index: 1;
}

.presentation__slide > * {
    width: min(100%, 960px);
}

.presentation__footer {
    gap: 1.5rem;
}

.presentation__nav-btn,
.presentation__close {
    border: none;
    border-radius: 999px;
    background: var(--green-700);
    color: var(--cream-50);
    padding: 0.65rem 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.presentation__nav-btn:hover,
.presentation__close:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(47, 92, 63, 0.25);
}

.presentation__nav-btn[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.presentation__progress {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    color: var(--green-900);
}

.presentation__slides::-webkit-scrollbar {
    width: 10px;
}

.presentation__slides::-webkit-scrollbar-thumb {
    background: rgba(63, 123, 85, 0.35);
    border-radius: 999px;
}

.presentation__slide::-webkit-scrollbar {
    width: 10px;
}

.presentation__slide::-webkit-scrollbar-thumb {
    background: rgba(63, 123, 85, 0.35);
    border-radius: 999px;
}

.presentation__layout {
    width: min(100%, 1000px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 1.75rem;
    padding: 2.25rem 0 1.5rem;
}

.presentation__layout--split {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.presentation__panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.presentation__panel--visual {
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.presentation__panel--center {
    text-align: center;
    align-items: center;
}

.presentation__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.7rem;
    color: var(--green-700);
}

.presentation__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 2.4vw + 1rem, 3.4rem);
    margin: 0;
    color: var(--green-900);
}

.presentation__body {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

.presentation__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.85rem;
}

.presentation__bullets li {
    background: rgba(63, 123, 85, 0.08);
    border-radius: 14px;
    padding: 0.85rem 1.1rem;
    color: var(--text-muted);
    box-shadow: 0 12px 24px rgba(31, 59, 43, 0.08);
}

.presentation__highlights {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.presentation__highlight-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 18px;
    padding: 1.4rem 1.6rem;
    box-shadow: 0 20px 36px rgba(31, 59, 43, 0.14);
    display: grid;
    gap: 0.6rem;
}

.presentation__highlight-card h4 {
    margin: 0;
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--brown-600);
}

.presentation__highlight-card p {
    margin: 0;
    color: var(--text-muted);
}

.presentation__highlight-tag {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-700);
}

.presentation__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.presentation__image-frame {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 24px;
    padding: 2rem 1.5rem 1.75rem;
    box-shadow: 0 28px 50px rgba(19, 31, 23, 0.25);
}

.presentation__image-frame img {
    max-width: min(100%, 320px);
    height: auto;
    display: block;
}

.presentation__image-caption {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

.presentation__cta-group {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 1rem;
}

.presentation__panel--center .presentation__cta-group {
    justify-content: flex-start;
}

.presentation__cta {
    min-width: 220px;
}

.presentation__note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.presentation__quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    color: var(--green-700);
    margin: 0;
}

.presentation__quote cite {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .presentation__slides {
        padding: 1.25rem 1.8rem 2rem;
    }

    .presentation__layout--split {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .presentation__panel {
        width: 100%;
    }

    .presentation__panel--visual {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.25rem;
    }

    .presentation__cta-group {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .presentation {
        padding: 0;
        background: rgba(19, 31, 23, 0.92);
    }

    .presentation__container {
        width: 100%;
        height: 100vh;
        border-radius: 0;
    }

    .presentation__header,
    .presentation__footer {
        padding: 1rem 1.5rem;
    }

    .presentation__slides {
        padding: 1rem 1.2rem 1.5rem;
    }

    .presentation__layout {
        padding: 1rem 0;
    }

    .presentation__title {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }

    .presentation__bullets li {
        padding: 0.8rem 1rem;
    }

    .presentation__panel--visual {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .presentation__image-frame {
        padding: 1rem;
    }

    .presentation__cta-group {
        justify-content: flex-start;
    }
}








