:root {
    --bg: #0d2b23;
    --bg-deep: #081912;
    --surface: rgba(16, 53, 43, 0.74);
    --surface-strong: rgba(9, 33, 26, 0.88);
    --surface-soft: rgba(208, 183, 150, 0.14);
    --text: #f4eadf;
    --text-soft: #dbcbbc;
    --muted: #a9c0b3;
    --line: rgba(236, 216, 191, 0.18);
    --leaf: #3f8f67;
    --leaf-bright: #7fbb73;
    --clay: #ae7651;
    --sand: #f0d2af;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    color: var(--text);
    line-height: 1.6;
    background:
        radial-gradient(circle at top left, rgba(127, 187, 115, 0.16), transparent 28%),
        radial-gradient(circle at 85% 18%, rgba(240, 210, 175, 0.12), transparent 20%),
        linear-gradient(160deg, #0a211a 0%, #0f392d 54%, #09221a 100%);
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(rgba(6, 18, 14, 0.32), rgba(6, 18, 14, 0.55)),
        url("../assets/plant leaf bacjkground.JPG") center/cover no-repeat;
    opacity: 0.12;
    pointer-events: none;
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05), transparent 0 24%),
        radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.04), transparent 0 18%);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: -1;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    padding: 1rem 0 0;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.header-shell {
    border: 1px solid var(--line);
    background: rgba(7, 24, 19, 0.72);
    border-radius: 999px;
    box-shadow: var(--shadow);
}

.header-inner,
.brand-lockup,
.nav-list,
.hero-grid,
.hero-stack,
.feature-grid,
.stats-grid,
.dashboard-grid,
.split-grid,
.footer-inner,
.contact-layout,
.email-preview-grid,
.story-grid,
.cta-panel,
.metric-ribbon,
.timeline-grid {
    display: grid;
    gap: 1.5rem;
}

.header-inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0.95rem 1.4rem;
}

.brand-lockup {
    grid-template-columns: 54px auto;
    align-items: center;
    gap: 0.9rem;
}

.brand-lockup img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.25));
}

.brand-copy strong,
.brand-copy span {
    display: block;
    line-height: 1;
}

.brand-copy strong {
    font-size: 1.05rem;
    letter-spacing: 0.08em;
}

.brand-copy span {
    margin-top: 0.35rem;
    color: var(--muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
}

.nav-list {
    grid-auto-flow: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.6rem;
}

.nav-list a {
    text-decoration: none;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    color: var(--text-soft);
    transition: 0.25s ease;
}

.nav-list a:hover,
.nav-list a.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
}

.header-cta {
    justify-self: end;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    color: var(--text);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hamburger-icon {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    position: relative;
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: currentColor;
    transition: transform 0.25s ease;
}

.hamburger-icon::before { top: -7px; }
.hamburger-icon::after { top: 7px; }

.nav-container {
    position: relative;
}

.nav-container .nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 900px) {
    .header-inner {
        grid-template-columns: auto auto;
        row-gap: 1rem;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-container {
        width: 100%;
    }

    .nav-list {
        position: absolute;
        right: 0;
        top: calc(100% + 0.75rem);
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        min-width: 220px;
        border-radius: 22px;
        background: rgba(7, 24, 19, 0.94);
        border: 1px solid rgba(255,255,255,0.08);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
        z-index: 20;
    }

    .nav-container.open .nav-list {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-list a {
        width: 100%;
        padding: 0.9rem 1rem;
    }

    .header-cta {
        display: none;
    }
}

.page-content {
    padding-bottom: 3rem;
}

.btn-primary,
.btn-secondary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.95rem 1.45rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    cursor: pointer;
}

.btn-primary {
    color: #1d1b16;
    background: linear-gradient(135deg, var(--sand), #e7b98a);
    box-shadow: 0 16px 32px rgba(240, 210, 175, 0.25);
}

.btn-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--line);
}

.btn-ghost {
    color: var(--sand);
    background: transparent;
    border-color: rgba(240, 210, 175, 0.25);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover {
    transform: translateY(-2px);
}

.hero {
    padding: 2rem 0 1rem;
}

.hero-shell,
.section-shell,
.cta-shell,
.contact-shell,
.dashboard-shell,
.story-card,
.email-preview-card,
.form-shell {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(15, 50, 40, 0.92), rgba(9, 28, 23, 0.92));
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.hero-shell::before,
.section-shell::before,
.cta-shell::before,
.contact-shell::before,
.dashboard-shell::before {
    content: "";
    position: absolute;
    inset: auto -6% -20% auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(174, 118, 81, 0.32), transparent 68%);
    pointer-events: none;
}

.hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    padding: clamp(2rem, 4vw, 4rem);
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line);
    color: var(--muted);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.hero h1,
.page-title,
.section-title {
    margin: 1rem 0 0.75rem;
    line-height: 0.98;
    font-size: clamp(2.8rem, 6vw, 5.6rem);
    max-width: 10ch;
}

.page-title {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.hero p,
.section-intro,
.page-intro {
    color: var(--text-soft);
    font-size: 1.05rem;
    max-width: 58ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.metric-ribbon {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2rem;
}

.metric-pill {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
}

.metric-pill strong {
    display: block;
    font-size: 1.4rem;
}

.metric-pill span {
    color: var(--muted);
    font-size: 0.94rem;
}

.hero-visual {
    position: relative;
    min-height: 580px;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 32px;
    box-shadow: var(--shadow);
}

.hero-photo {
    inset: 0 0 3rem 4rem;
    z-index: 1;
    background:
        linear-gradient(150deg, rgba(7, 21, 17, 0.15), rgba(7, 21, 17, 0.58)),
        url("../assets/IMG_1480.JPG") center/cover no-repeat;
}

.hero-card {
    position: absolute;
    z-index: 4;
    max-width: 250px;
    padding: 1.25rem;
    border-radius: 26px;
    border: 1px solid rgba(240, 210, 175, 0.18);
    background: linear-gradient(180deg, rgba(17, 58, 47, 0.92), rgba(12, 34, 29, 0.92));
    box-shadow: var(--shadow);
}

.hero-card strong,
.feature-card h3,
.metric-card h3,
.info-card h3,
.story-card h3,
.timeline-card h3,
.notification-card h3 {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 1.1rem;
}

.hero-card p,
.feature-card p,
.metric-card p,
.info-card p,
.story-card p,
.timeline-card p,
.notification-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.hero-card-top {
    top: 2.2rem;
    left: 0;
}

.hero-card-bottom {
    left: 0;
    bottom: 1.5rem;
}

.hero-asset {
    position: absolute;
    z-index: 2;
    right: 2rem;
    bottom: 1.25rem;
    width: min(40%, 220px);
    max-width: 220px;
    filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.24));
}

.hero-leaf {
    position: absolute;
    z-index: 3;
    inset: auto auto -1.5rem 0;
    width: min(42%, 240px);
    opacity: 0.95;
}

.page-section {
    padding: 1rem 0;
}

.section-shell,
.dashboard-shell,
.contact-shell,
.cta-shell {
    padding: clamp(1.6rem, 3vw, 2.4rem);
}

.section-heading {
    margin-bottom: 2rem;
}

.feature-grid,
.stats-grid,
.email-preview-grid,
.timeline-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.metric-card,
.info-card,
.timeline-card,
.notification-card {
    position: relative;
    padding: 1.5rem;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    border: 1px solid var(--line);
    overflow: hidden;
}

.survey-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.survey-link:hover {
    transform: translateY(-3px);
}

.survey-link .feature-icon {
    background: rgba(255,255,255,.18);
}

.feature-card:nth-child(2n),
.story-card.clay,
.timeline-card.clay {
    background: linear-gradient(180deg, rgba(174, 118, 81, 0.32), rgba(80, 44, 25, 0.35));
}

.feature-card:nth-child(3n),
.story-card.sand,
.timeline-card.sand {
    background: linear-gradient(180deg, rgba(240, 210, 175, 0.24), rgba(112, 84, 58, 0.26));
}

.feature-icon,
.info-icon {
    
    height: 64px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--sand);
}

.photo-panel {
    min-height: 300px;
    border-radius: 30px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(8, 21, 17, 0.12), rgba(8, 21, 17, 0.58)),
        url("../assets/IMG_1487.JPG") center/cover no-repeat;
    box-shadow: var(--shadow);
}

.story-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: stretch;
}

.story-card {
    padding: 2rem;
}

.story-media {
    min-height: 430px;
    background:
        linear-gradient(180deg, rgba(10, 26, 20, 0.1), rgba(10, 26, 20, 0.58)),
        url("../assets/plant leaf bacjkground small.JPG") center/cover no-repeat;
}

.story-list,
.check-list {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.story-list span,
.check-list span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-soft);
}

.story-list span::before,
.check-list span::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--leaf-bright), var(--sand));
    box-shadow: 0 0 0 6px rgba(127, 187, 115, 0.12);
}

.dashboard-grid,
.contact-layout,
.split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-tile {
    padding: 1.4rem;
    border-radius: 26px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(13, 44, 36, 0.95), rgba(8, 24, 20, 0.95));
}

.stat-tile strong {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.2rem;
}

.stat-tile span {
    color: var(--muted);
}

.dashboard-panel,
.contact-panel {
    padding: 1.6rem;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.dashboard-hero {
    min-height: 340px;
    background:
        linear-gradient(160deg, rgba(10, 30, 23, 0.15), rgba(10, 30, 23, 0.6)),
        url("../assets/farm land animated pic.jpeg") center/cover no-repeat;
}

.dashboard-list,
.contact-points {
    display: grid;
    gap: 1rem;
}

.dashboard-list div,
.contact-point {
    padding: 1rem 1.15rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-list strong,
.contact-point strong {
    display: block;
    margin-bottom: 0.35rem;
}

.contact-shell {
    background:
        linear-gradient(180deg, rgba(14, 49, 40, 0.94), rgba(7, 24, 19, 0.94)),
        url("../assets/plant leaf bg.jpeg") center/cover no-repeat;
    background-blend-mode: overlay;
}

.form-shell {
    padding: 1.5rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form label {
    display: grid;
    gap: 0.45rem;
    color: var(--text-soft);
    font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.07);
    color: var(--text);
    font: inherit;
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.form-note,
.form-success,
.form-error {
    margin-top: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
}

.form-note {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-soft);
}

.form-success {
    background: rgba(127, 187, 115, 0.16);
    border: 1px solid rgba(127, 187, 115, 0.32);
}

.form-error {
    background: rgba(174, 118, 81, 0.2);
    border: 1px solid rgba(240, 210, 175, 0.22);
}

.notification-strip {
    display: grid;
    gap: 1rem;
}

.notification-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
}

.notification-badge {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(240, 210, 175, 0.18);
    color: var(--sand);
    font-weight: 800;
}

.notification-meta {
    color: var(--muted);
    font-size: 0.9rem;
}

.cta-panel {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 2rem;
    border-radius: 30px;
    border: 1px solid var(--line);
    background:
        linear-gradient(125deg, rgba(174, 118, 81, 0.28), rgba(14, 48, 39, 0.92)),
        url("../assets/IMG_1491.JPG") center/cover no-repeat;
    background-blend-mode: screen, normal;
}

.site-footer {
    padding: 0 0 2rem;
}

.footer-shell {
    border: 1px solid var(--line);
    border-radius: 32px;
    background: rgba(7, 24, 19, 0.76);
    box-shadow: var(--shadow);
}

.footer-inner {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 1.8rem;
    align-items: start;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-soft);
}

.footer-links a:hover {
    color: var(--sand);
}

.copyright {
    padding: 0 1.8rem 1.5rem;
    color: var(--muted);
}

.muted {
    color: var(--muted);
}

.eyebrow {
    color: var(--sand);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.8rem;
}

.email-preview-card {
    padding: 1.25rem;
}

.email-preview-card iframe {
    width: 100%;
    min-height: 580px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-card,
.hero-asset,
.hero-leaf {
    animation: floatCard 7s ease-in-out infinite;
}

.hero-card-bottom,
.hero-leaf {
    animation-delay: 1.2s;
}

@media (max-width: 1100px) {
   
    .hero-grid,
    .story-grid,
    .dashboard-grid,
    .contact-layout,
    .footer-inner,
    .cta-panel {
        grid-template-columns: 1fr;
    }

    .header-shell {
        border-radius: 30px;
    }

    .header-inner {
        justify-items: center;
    }

    .header-cta {
        justify-self: center;
    }

    .hero-visual {
        min-height: 520px;
    }

    .hero-asset {
        right: 1.5rem;
        width: min(38%, 200px);
        max-width: 200px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .nav-list,
    .metric-ribbon,
    .feature-grid,
    .stats-grid,
    .timeline-grid,
    .email-preview-grid,
    .split-grid {
        grid-template-columns: 1fr;
        grid-auto-flow: row;
    }

    .brand-lockup {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .hero-grid,
    .section-shell,
    .dashboard-shell,
    .contact-shell {
        padding: 1.4rem;
    }

    .hero h1,
    .page-title {
        max-width: none;
    }

    .hero-visual {
        min-height: 460px;
    }

    .hero-photo {
        inset: 0;
    }

    .hero-card-top,
    .hero-card-bottom {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 1rem;
        max-width: none;
    }

    .hero-asset,
    .hero-leaf {
        width: 42%;
    }

    .hero-asset {
        right: 1rem;
        bottom: 1rem;
        max-width: 180px;
    }

    .notification-card {
        grid-template-columns: 1fr;
        justify-items: start;
    }
}
