﻿:root {
            --bg: #f0eee4;
            --paper: #fffdf6;
            --paper-soft: rgba(255, 253, 246, 0.72);
            --ink: #12200f;
            --muted: #46543a;
            --accent: #2d7f2b;
            --accent-strong: #1f5f21;
            --highlight: #b18346;
            --line: #d5dcc7;
            --line-soft: rgba(100, 121, 91, 0.2);
            --shadow: 0 20px 45px rgba(19, 39, 19, 0.08);
            --glow: radial-gradient(circle at 8% 14%, #d6efb3 0%, transparent 36%),
                    radial-gradient(circle at 90% 8%, #ffe2bc 0%, transparent 34%),
                    radial-gradient(circle at 72% 84%, #e2dbff 0%, transparent 37%);
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: "Manrope", sans-serif;
            color: var(--ink);
            background: var(--bg);
            line-height: 1.52;
        }

        body.curtain-locked {
            overflow: hidden;
        }

        .inauguration-curtain {
            position: fixed;
            inset: 0;
            display: grid;
            place-items: center;
            overflow: hidden;
            background: #1d401e;
            color: #fffdf6;
            isolation: isolate;
            z-index: 1000;
        }

        .curtain-panel {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 51%;
            background: linear-gradient(135deg, #1d401e, #2d7f2b 58%, #1f5f21);
            box-shadow: inset 0 0 60px rgba(18, 32, 15, 0.24);
            transition: transform 900ms cubic-bezier(0.76, 0, 0.24, 1);
            z-index: -1;
        }

        .curtain-panel-left {
            left: 0;
        }

        .curtain-panel-right {
            right: 0;
            transform: scaleX(-1);
        }

        .curtain-content {
            position: relative;
            width: min(92vw, 520px);
            padding: 2rem 1.25rem;
            text-align: center;
            transition: opacity 350ms ease, transform 500ms ease;
        }

        .curtain-content img {
            width: clamp(115px, 22vw, 165px);
            height: auto;
            padding: 0.45rem;
            border-radius: 0.8rem;
            background: rgba(255, 255, 255, 0.94);
            box-shadow: 0 12px 28px rgba(18, 32, 15, 0.2);
        }

        .curtain-kicker {
            margin: 1.4rem 0 0.35rem;
            color: #f6d28c;
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .curtain-content h1 {
            margin: 0;
            color: #fffdf6;
            font-size: clamp(2.2rem, 7vw, 4.4rem);
        }

        .curtain-content > p:not(.curtain-kicker) {
            margin: 0.6rem auto 1.6rem;
            color: rgba(255, 253, 246, 0.88);
            font-size: clamp(0.9rem, 2vw, 1.08rem);
        }

        .curtain-open {
            padding: 0.72rem 1.3rem;
            border: 1px solid rgba(255, 255, 255, 0.72);
            border-radius: 0.7rem;
            color: var(--ink);
            background: #fffdf6;
            font: inherit;
            font-weight: 800;
            cursor: pointer;
            box-shadow: 0 10px 22px rgba(18, 32, 15, 0.2);
        }

        .curtain-open:hover,
        .curtain-open:focus-visible {
            background: #f6d28c;
        }

        .inauguration-curtain.is-opening .curtain-panel-left {
            transform: translateX(-100%);
        }

        .inauguration-curtain.is-opening .curtain-panel-right {
            transform: scaleX(-1) translateX(-100%);
        }

        .inauguration-curtain.is-opening .curtain-content {
            opacity: 0;
            transform: scale(0.96);
        }

        .inauguration-curtain[hidden] {
            display: none;
        }

        .site-wrap {
            min-height: 100vh;
            background: var(--glow), var(--bg);
            position: relative;
        }

        .site-wrap::before {
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            background-image: linear-gradient(rgba(18, 32, 15, 0.03) 1px, transparent 1px),
                              linear-gradient(90deg, rgba(18, 32, 15, 0.03) 1px, transparent 1px);
            background-size: 36px 36px;
            mask-image: radial-gradient(circle at center, black 30%, transparent 85%);
            z-index: 0;
        }

        .container {
            width: min(1040px, 92vw);
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .hero-banner {
            position: relative;
            width: 100vw;
            max-width: none;
            height: 80vh;
            margin: 0 0 1rem calc(50% - 50vw);
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .hero-banner-image {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }

        .hero-banner-logo {
            position: absolute;
            top: clamp(0.8rem, 2vw, 1.5rem);
            left: clamp(2rem, 7vw, 6rem);
            width: clamp(82px, 9vw, 120px);
            aspect-ratio: 1.7;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.3rem 0.42rem;
            border: 1px solid rgba(255, 255, 255, 0.85);
            border-radius: 0.7rem;
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 8px 20px rgba(18, 32, 15, 0.18);
            overflow: hidden;
            z-index: 1;
        }

        .hero-banner-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .hero-banner-title {
            position: absolute;
            right: clamp(0.8rem, 3vw, 3rem);
            top: clamp(0.8rem, 3vw, 2rem);
            max-width: min(42vw, 420px);
            padding: 0.65rem 0.9rem;
            border-left: 4px solid #f6bd22;
            background: rgba(18, 32, 15, 0.72);
            color: #fffdf6;
            font-size: clamp(0.85rem, 1.7vw, 1.35rem);
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: 0.03em;
            text-align: right;
            text-wrap: balance;
            z-index: 1;
        }

        .hero-banner-heading {
            position: absolute;
            left: 50%;
            bottom: clamp(0.55rem, 2.5vw, 1.5rem);
            width: max-content;
            max-width: calc(100% - 1.4rem);
            margin: 0;
            padding: 0.35rem clamp(0.7rem, 2vw, 1.2rem);
            transform: translateX(-50%);
            background: rgba(18, 32, 15, 0.72);
            color: #fffdf6;
            font-family: "Cormorant Garamond", serif;
            font-size: clamp(0.9rem, 3.1vw, 2.8rem);
            font-weight: 700;
            line-height: 1;
            text-align: center;
            white-space: nowrap;
            text-shadow: 0 3px 16px rgba(18, 32, 15, 0.7);
            z-index: 1;
        }

        .hero-banner-top-text {
            position: absolute;
            top: clamp(0.8rem, 2vw, 1.5rem);
            left: 50%;
            transform: translateX(-50%);
            width: max-content;
            max-width: calc(100% - 1.4rem);
            padding: 0.35rem clamp(0.7rem, 2vw, 1.2rem);
            color: var(--ink);
            font-family: "Cormorant Garamond", serif;
            font-size: clamp(0.9rem, 2.5vw, 2rem);
            font-weight: 700;
            line-height: 1;
            text-align: center;
            z-index: 1;
        }

        .hero {
            padding: 0 0 2.35rem;
            position: relative;
            overflow: hidden;
        }

        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(1px);
            pointer-events: none;
            z-index: 0;
        }

        .orb-one {
            width: 240px;
            height: 240px;
            top: -40px;
            right: 7%;
            background: radial-gradient(circle at 35% 35%, rgba(255, 226, 159, 0.62), rgba(255, 226, 159, 0));
        }

        .orb-two {
            width: 220px;
            height: 220px;
            bottom: 18px;
            left: 5%;
            background: radial-gradient(circle at 38% 40%, rgba(163, 229, 156, 0.48), rgba(163, 229, 156, 0));
        }

        .hero-shell {
            border: 1px solid var(--line-soft);
            border-radius: 1.5rem;
            background: linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(255, 251, 238, 0.62));
            backdrop-filter: blur(7px);
            box-shadow: var(--shadow);
            padding: clamp(0.9rem, 2.2vw, 1.45rem);
        }

        .hero-shell.container {
            max-width: 1040px;
        }

        .top-ribbon {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 0.8rem;
            border-bottom: 1px solid var(--line-soft);
            padding-bottom: 0.65rem;
        }

        .ribbon-mark {
            font-size: 0.82rem;
            letter-spacing: 0.08em;
            color: var(--muted);
            text-transform: uppercase;
            font-weight: 700;
        }

        .hero-layout {
            display: grid;
            grid-template-columns: 1.25fr 0.75fr;
            gap: 1rem;
            align-items: start;
        }

        .hero-actions .btn {
            border-radius: 0.82rem;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            margin-bottom: 0;
        }

        .brand-logo {
            width: clamp(130px, 20vw, 190px);
            height: auto;
            display: block;
            filter: drop-shadow(0 6px 10px rgba(38, 62, 31, 0.2));
        }

        .pill {
            display: inline-block;
            padding: 0.38rem 0.9rem;
            border: 1px solid var(--line-soft);
            border-radius: 999px;
            font-size: 0.76rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            background: rgba(255, 255, 255, 0.74);
            backdrop-filter: blur(4px);
            font-weight: 700;
        }

        h1,
        h2 {
            font-family: "Cormorant Garamond", serif;
            line-height: 1.1;
            margin: 0;
        }

        h1,
        h2,
        h3 {
            text-align: center;
        }

        h1 {
            margin-top: 0.75rem;
            font-size: clamp(2rem, 4.3vw, 3.7rem);
            max-width: 16ch;
            letter-spacing: 0.01em;
        }

        .hero p {
            margin-top: 0.9rem;
            max-width: 58ch;
            color: var(--muted);
            font-size: clamp(0.96rem, 1.1vw, 1.06rem);
        }

        .hero-actions {
            margin-top: 1.2rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.62rem;
        }

        .btn {
            text-decoration: none;
            font-weight: 700;
            border-radius: 0.82rem;
            padding: 0.7rem 1rem;
            transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            letter-spacing: 0.01em;
            font-size: 0.94rem;
        }

        .btn-primary {
            background: linear-gradient(140deg, var(--accent), #469a3d 78%);
            color: #f8fff0;
            box-shadow: 0 14px 26px rgba(38, 104, 39, 0.28);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            background: var(--accent-strong);
        }

        .btn-secondary {
            border: 1px solid var(--line-soft);
            color: var(--ink);
            background: rgba(255, 255, 255, 0.8);
        }

        .btn-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
        }

        .section {
            padding: 0.45rem 0 2rem;
        }

        .section h2 {
            font-size: clamp(1.6rem, 3.2vw, 2.4rem);
            margin-bottom: 0.72rem;
        }

        .section-intro {
            /* max-width: 70ch; */
            color: var(--muted);
            margin-bottom: 0.95rem;
        }

        .signal-card {
            position: relative;
            border: 1px solid var(--line-soft);
            background: linear-gradient(155deg, rgba(233, 247, 214, 0.96), rgba(255, 255, 255, 0.94) 72%);
            border-radius: 1.15rem;
            padding: 1.05rem 1.1rem 0.8rem;
            box-shadow: 0 16px 30px rgba(39, 74, 34, 0.12);
            animation: rise 700ms ease both;
            animation-delay: 100ms;
        }

        .signal-card::before {
            content: "";
            position: absolute;
            top: 0;
            right: 1rem;
            left: 1rem;
            height: 3px;
            border-radius: 0 0 999px 999px;
            background: linear-gradient(90deg, var(--accent), var(--highlight));
        }

        .signal-eyebrow {
            display: block;
            margin-bottom: 0.2rem;
            color: var(--accent-strong);
            font-size: 0.65rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-align: center;
            text-transform: uppercase;
        }

        .signal-card h3 {
            margin: 0 0 0.7rem;
            font-size: 1.35rem;
            font-family: "Cormorant Garamond", serif;
            letter-spacing: 0.02em;
        }

        .signal-card ul {
            counter-reset: signal-item;
            margin: 0;
            padding: 0;
            list-style: none;
            color: var(--muted);
        }

        .signal-card li {
            counter-increment: signal-item;
            display: grid;
            grid-template-columns: 1.55rem 1fr;
            gap: 0.55rem;
            align-items: start;
            margin: 0;
            padding: 0.62rem 0;
            border-top: 1px solid rgba(100, 121, 91, 0.2);
            font-size: 0.88rem;
        }

        .signal-card li::before {
            content: counter(signal-item, decimal-leading-zero);
            color: var(--highlight);
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.04em;
        }

        .feature-choice-swiper {
            padding: 0.15rem 0.1rem 3.15rem;
        }

        .feature-card {
            height: auto;
            background: linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(255, 252, 243, 0.88));
            border: 1px solid var(--line-soft);
            border-radius: 1.08rem;
            padding: 0.95rem;
            box-shadow: 0 10px 26px rgba(23, 33, 15, 0.07);
            animation: rise 640ms ease both;
            text-align: center;
        }

        .feature-card img {
            width: 100%;
            height: 155px;
            margin: -0.95rem -0.95rem 0.85rem;
            width: calc(100% + 1.9rem);
            display: block;
            object-fit: cover;
            border-radius: 1.08rem 1.08rem 0 0;
        }

        .feature-card h3 {
            margin-top: 0;
        }

        .feature-card:nth-child(2) { animation-delay: 50ms; }
        .feature-card:nth-child(3) { animation-delay: 100ms; }
        .feature-card:nth-child(4) { animation-delay: 150ms; justify-self: center; }
        .feature-card:nth-child(5) { animation-delay: 200ms; justify-self: center; }

        .feature-card h3 {
            margin: 0 0 0.35rem;
            font-size: 1.12rem;
            letter-spacing: 0.01em;
        }

        .feature-card p {
            margin: 0;
            color: var(--muted);
        }

        .feature-choice-controls {
            position: absolute;
            right: 0.1rem;
            bottom: 0.5rem;
            left: 0.1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 2rem;
        }

        .feature-choice-prev,
        .feature-choice-next {
            width: 2rem;
            height: 2rem;
            border: 1px solid var(--line-soft);
            border-radius: 50%;
            color: var(--accent-strong);
            background: var(--paper);
        }

        .feature-choice-prev::after,
        .feature-choice-next::after {
            font-size: 0.82rem;
            font-weight: 800;
        }

        .feature-choice-prev::after {
            content: "\276E";
        }

        .feature-choice-next::after {
            content: "\276F";
        }

        .feature-choice-pagination {
            position: absolute;
            left: 50% !important;
            transform: translateX(-50%);
            width: auto !important;
        }

        .feature-choice-pagination .swiper-pagination-bullet-active {
            background: var(--accent);
        }

        .glance {
            margin-top: 1.35rem;
            border-radius: 1.2rem;
            overflow: hidden;
            border: 1px solid var(--line-soft);
            background: rgba(255, 255, 255, 0.88);
            box-shadow: 0 14px 30px rgba(24, 35, 18, 0.07);
        }

        .feature-swiper-heading {
            display: block;
            position: relative;
            z-index: 2;
            width: 100%;
            margin: 0 0 0.9rem;
            color: var(--ink);
            font-family: "Cormorant Garamond", serif;
            font-size: clamp(1.6rem, 3.2vw, 2.4rem);
            line-height: 1.1;
            letter-spacing: 0;
            text-align: center;
        }

        .feature-swiper {
            margin-top: 0;
            padding: 1rem 3.35rem 3.2rem;
            border-color: rgba(80, 118, 61, 0.26);
            background: linear-gradient(145deg, rgba(237, 247, 223, 0.72), rgba(255, 255, 255, 0.92));
        }

        .feature-swiper .swiper-slide {
            display: flex;
            flex-direction: column;
            min-height: 185px;
            padding: 1rem;
            border: 1px solid var(--line-soft);
            border-radius: 0.85rem;
            background: linear-gradient(165deg, rgba(255, 255, 255, 0.94), rgba(246, 251, 235, 0.92));
            transition: transform 220ms ease, box-shadow 220ms ease;
        }

        .feature-swiper .swiper-slide:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(39, 74, 34, 0.1);
        }

        .slide-label {
            display: block;
            margin-bottom: 0.28rem;
            color: var(--accent-strong);
            font-size: 0.68rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .feature-swiper h3 {
            margin: 0 0 1rem;
            font-family: "Cormorant Garamond", serif;
            font-size: 1.45rem;
        }

        .feature-swiper > .feature-swiper-heading {
            margin: 0 0 0.9rem;
            font-size: clamp(1.6rem, 3.2vw, 2.4rem);
        }

        .feature-swiper p {
            margin: auto 0 0;
            color: var(--muted);
        }

        .swiper-controls {
            position: absolute;
            right: 1rem;
            bottom: 0.7rem;
            left: 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 2rem;
        }

        .feature-swiper .swiper-button-prev,
        .feature-swiper .swiper-button-next {
            position: static;
            width: 2rem;
            height: 2rem;
            margin: 0;
            border: 1px solid var(--line-soft);
            border-radius: 50%;
            color: var(--accent-strong);
            background: var(--paper);
        }

        .feature-swiper .swiper-button-prev::after,
        .feature-swiper .swiper-button-next::after {
            font-size: 0.82rem;
            font-weight: 800;
        }

        .feature-swiper .swiper-pagination {
            position: static;
            width: auto;
        }

        .feature-swiper .swiper-pagination-bullet-active {
            background: var(--accent);
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        th,
        td {
            padding: 0.75rem;
            text-align: left;
            border-bottom: 1px solid var(--line);
        }

        th {
            background: linear-gradient(180deg, #ebf5db, #e5f0d3);
            font-size: 0.88rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .table > :not(caption) > * > * {
            background-color: transparent;
        }

        .table-hover > tbody > tr:hover > * {
            --bs-table-accent-bg: rgba(219, 240, 197, 0.45);
        }

        tr:last-child td {
            border-bottom: 0;
        }

        .about-panel {
            display: block;
        }

        #about .section-intro {
            /* max-width: 62ch; */
            margin-bottom: 0.8rem;
        }

        .about-story {
            background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(248, 252, 239, 0.9));
            border: 1px solid rgba(80, 118, 61, 0.2);
            border-radius: 1.05rem;
            padding: 1rem;
            box-shadow: 0 12px 24px rgba(20, 31, 13, 0.08);
        }

        .about-story p {
            margin: 0;
            color: #32482f;
        }

        .about-story h3 {
            margin: 0.85rem 0 0.5rem;
            font-family: "Cormorant Garamond", serif;
            font-size: 1.3rem;
            color: #213a1d;
        }

        .recognitions-heading {
            width: 100vw;
            margin-left: calc(50% - 50vw) !important;
            padding: 0 1rem;
        }

        .about-metrics {
            margin-top: 0.7rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.4rem;
        }

        .about-metrics span {
            display: inline-block;
            padding: 0.28rem 0.58rem;
            border-radius: 0.45rem;
            border: 1px solid rgba(177, 131, 70, 0.42);
            background: rgba(255, 239, 204, 0.82);
            color: #815b2c;
            font-size: 0.74rem;
            font-weight: 700;
            letter-spacing: 0.01em;
        }

        .recognitions-section .recognitions {
            display: flex;
            flex: 0 0 auto;
            gap: 0.65rem;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .recognitions-scroller {
            display: flex;
            gap: 0.65rem;
            width: 100vw;
            margin-left: calc(50% - 50vw);
            overflow: hidden;
            padding: 0.2rem 1rem 0.6rem;
            mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
        }

        .recognition-track {
            animation: recognition-scroll 38s linear infinite;
        }

        .recognitions-scroller:hover .recognition-track,
        .recognitions-scroller:focus-within .recognition-track {
            animation-play-state: paused;
        }

        .recognitions-section .recognitions li {
            flex: 0 0 clamp(205px, 27vw, 285px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.55rem;
            min-height: 150px;
            margin: 0;
            padding: 0.75rem 0.85rem;
            border: 1px solid rgba(67, 98, 54, 0.18);
            border-radius: 0.7rem;
            background: rgba(255, 255, 255, 0.72);
            color: #3b5136;
            line-height: 1.4;
            font-size: 0.9rem;
            text-align: center;
        }

        .recognitions li img {
            flex: 0 0 58px;
            width: 58px;
            height: 58px;
            object-fit: contain;
            border-radius: 0.35rem;
            background: #fff;
        }

        @keyframes recognition-scroll {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(calc(-100% - 0.65rem));
            }
        }

        .privacy-page .hero h1 {
            max-width: 20ch;
        }

        .privacy-card {
            background: linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 239, 0.92));
            border: 1px solid rgba(80, 118, 61, 0.22);
            border-radius: 1.1rem;
            box-shadow: 0 12px 26px rgba(20, 31, 13, 0.09);
            padding: clamp(0.9rem, 2.2vw, 1.35rem);
        }

        .privacy-card-head {
            border-bottom: 1px solid rgba(80, 118, 61, 0.2);
            padding-bottom: 0.75rem;
            margin-bottom: 0.7rem;
        }

        .privacy-card h2 {
            margin: 0;
            font-size: clamp(1.5rem, 2.7vw, 2rem);
        }

        .privacy-meta {
            margin: 0.25rem 0 0;
            color: #4b5b41;
            font-size: 0.83rem;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            font-weight: 700;
        }

        .privacy-nav {
            margin-top: 0.65rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.35rem;
        }

        .privacy-nav a {
            display: inline-block;
            padding: 0.26rem 0.52rem;
            border-radius: 999px;
            border: 1px solid rgba(64, 103, 47, 0.2);
            background: rgba(255, 255, 255, 0.85);
            color: #244221;
            text-decoration: none;
            font-size: 0.74rem;
            font-weight: 700;
        }

        .privacy-nav a:hover {
            background: rgba(219, 240, 197, 0.75);
        }

        .privacy-block {
            margin-top: 0.8rem;
        }

        .privacy-block h3 {
            margin: 0 0 0.35rem;
            font-family: "Cormorant Garamond", serif;
            font-size: 1.28rem;
            color: #1f3b1c;
        }

        .privacy-block p {
            margin: 0.42rem 0;
            color: #334a2f;
            line-height: 1.58;
        }

        .privacy-list {
            margin: 0.45rem 0 0;
            padding-left: 0;
            list-style: none;
        }

        .privacy-list li {
            margin: 0;
            padding: 0.44rem 0;
            border-bottom: 1px dashed rgba(67, 98, 54, 0.24);
            color: #375133;
            line-height: 1.45;
        }

        .privacy-list li:last-child {
            border-bottom: 0;
        }

        .privacy-block a {
            color: var(--accent-strong);
            font-weight: 700;
        }

        .app-screen {
            margin-top: 1.8rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(1rem, 3vw, 2.2rem);
            align-items: center;
            padding: clamp(0.82rem, 2.2vw, 1.1rem);
            border-radius: 1.35rem;
            border: 1px solid rgba(80, 118, 61, 0.26);
            background: linear-gradient(135deg, rgba(226, 241, 204, 0.88), rgba(255, 254, 248, 0.96) 58%, rgba(255, 239, 204, 0.58));
            box-shadow: 0 18px 34px rgba(22, 36, 15, 0.1);
            position: relative;
            overflow: hidden;
        }

        .app-screen.row {
            margin-left: 0;
            margin-right: 0;
        }

        .app-screen::after {
            content: "";
            position: absolute;
            right: -50px;
            bottom: -62px;
            width: 190px;
            height: 190px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(161, 218, 118, 0.3), rgba(161, 218, 118, 0));
            pointer-events: none;
        }

        .app-screen-frame {
            min-height: 390px;
            padding: 0;
            margin: 0;
            width: 100%;
            border: 1px solid rgba(80, 118, 61, 0.2);
            border-radius: 1rem;
            background: transparent;
            box-shadow: 0 10px 22px rgba(39, 74, 34, 0.08);
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .app-screen-frame img {
            width: 100%;
            max-width: min(380px, 97%);
            height: auto;
            display: block;
            border: 4px solid rgba(255, 255, 255, 0.82);
            border-radius: 1.15rem;
            box-shadow: 0 18px 32px rgba(21, 45, 18, 0.24), 0 0 0 1px rgba(80, 118, 61, 0.16);
        }

        .app-screen-copy {
            position: relative;
            z-index: 1;
            width: 100%;
            padding: 0.8rem clamp(0.4rem, 2vw, 1rem);
            text-align: center;
        }

        .app-kicker {
            display: inline-block;
            margin-bottom: 0.4rem;
            padding: 0.24rem 0.56rem;
            border-radius: 999px;
            border: 1px solid rgba(44, 94, 35, 0.22);
            background: rgba(255, 255, 255, 0.7);
            color: #284e24;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-size: 0.68rem;
            font-weight: 700;
        }

        .app-screen-copy h3 {
            margin: 0 0 0.45rem;
            font-size: clamp(1.22rem, 2vw, 1.65rem);
            font-family: "Cormorant Garamond", serif;
        }

        .app-screen-copy p {
            margin: 0 auto 0.9rem;
            color: var(--muted);
            max-width: none;
        }

        .app-points {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.35rem;
        }

        .app-points span {
            display: inline-block;
            padding: 0.28rem 0.54rem;
            border-radius: 0.5rem;
            border: 1px solid rgba(53, 92, 41, 0.2);
            background: rgba(255, 255, 255, 0.78);
            color: #294927;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .card {
            background: linear-gradient(170deg, rgba(255, 255, 255, 0.9), rgba(255, 251, 238, 0.85));
            border: 1px solid var(--line-soft);
            border-radius: 1.08rem;
            padding: 0.95rem;
            box-shadow: 0 10px 24px rgba(20, 31, 13, 0.06);
        }

        .card h3 {
            margin-top: 0;
            font-family: "Cormorant Garamond", serif;
            font-size: 1.5rem;
        }

        .recognitions {
            margin: 0;
            padding-left: 1.1rem;
        }

        .recognitions li {
            margin-bottom: 0.48rem;
        }

        .cta {
            margin: 1.35rem 0 0;
            background: linear-gradient(132deg, #184c22 0%, #2f7b2d 46%, #629335 100%);
            color: #f8fff0;
            border-radius: 1.3rem;
            padding: 1.3rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 18px 30px rgba(23, 65, 28, 0.28);
        }

        .cta::after {
            content: "";
            position: absolute;
            inset: -40% -10% auto auto;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.12);
        }

        .cta h3 {
            margin: 0 0 0.5rem;
            font-size: clamp(1.2rem, 2.2vw, 1.7rem);
            width: 100%;
        }

        .cta p {
            margin: 0 0 0.78rem;
            width: 100%;
            max-width: none;
        }

        .cta .btn {
            display: flex;
            width: fit-content;
            margin-inline: auto;
            background: #fff;
            color: #1b5f20;
            position: relative;
            z-index: 1;
        }

        .cta .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.17);
        }

        footer {
            text-align: center;
            color: var(--muted);
            padding: 0.95rem 0 1.45rem;
            font-size: 0.92rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .footer-title {
            margin-bottom: 0.35rem;
            font-weight: 700;
        }

        .footer-copy {
            margin: 0;
            font-size: 0.78rem;
            letter-spacing: 0.06em;
            opacity: 0.85;
        }

        .footer-copy a {
            color: var(--accent-strong);
            text-decoration: none;
            font-weight: 700;
        }

        .footer-copy a:hover {
            text-decoration: underline;
        }

        body.motion-ready .reveal {
            opacity: 0;
            transform: translateY(26px) scale(0.985);
            transition: opacity 720ms ease, transform 800ms cubic-bezier(0.2, 0.75, 0.2, 1);
            transition-delay: var(--delay, 0ms);
        }

        body.motion-ready .reveal.is-visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        body.motion-ready .feature-card {
            animation: none;
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                animation: none !important;
                transition: none !important;
                scroll-behavior: auto !important;
            }
        }

        @keyframes rise {
            from {
                opacity: 0;
                transform: translateY(18px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 860px) {
            .privacy-card {
                padding: 0.9rem;
            }
        }

        @media (max-width: 640px) {
            .hero-banner {
                height: clamp(250px, 58vh, 420px);
                margin-bottom: 0.75rem;
            }

            .hero-banner-image {
                object-position: 58% center;
            }

            .hero-banner-top-text {
                top: 2.4rem;
                max-width: calc(100% - 1rem);
                font-size: clamp(0.82rem, 4.6vw, 1.15rem);
            }

            .app-screen {
                grid-template-columns: 1fr;
            }

            .app-screen-frame {
                min-height: 250px;
            }

            .feature-grid {
                grid-template-columns: 1fr;
            }

            .hero-banner-logo {
                left: 1.5rem;
                width: 72px;
                padding: 0.25rem 0.3rem;
            }

            .hero-banner-title {
                right: 0.7rem;
                top: 0.7rem;
                max-width: 58vw;
                padding: 0.45rem 0.6rem;
                border-left-width: 3px;
                font-size: 0.78rem;
            }

            .hero-banner-heading {
                left: 50%;
                bottom: 0.7rem;
                width: calc(100% - 1rem);
                max-width: 22ch;
                padding: 0.25rem 0.45rem;
                font-size: clamp(0.72rem, 4.5vw, 1.15rem);
                line-height: 1.05;
                white-space: normal;
            }

            .hero {
                padding-top: 0.8rem;
            }

            .top-ribbon {
                flex-direction: column;
                align-items: flex-start;
            }

            .hero-shell {
                border-radius: 1.1rem;
            }

            th,
            td {
                padding: 0.62rem;
                font-size: 0.9rem;
            }
        }
