:root {
    --bg: #f0ede6;
    --bg-elevated: rgba(255, 255, 255, 0.56);
    --bg-strong: rgba(255, 255, 255, 0.82);
    --bg-muted: #e7e3db;
    --text: #1c2b20;
    --text-soft: #4a6052;
    --text-faint: #6b7d6d;
    --border: rgba(60, 90, 65, 0.15);
    --border-strong: rgba(60, 90, 65, 0.26);
    --forest: #3a6b4a;
    --forest-mid: #5a9472;
    --stone: #4d6355;
    --amber: #c07a3a;
    --amber-soft: #e09a5a;
    --shadow: 0 24px 70px rgba(24, 42, 28, 0.10);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --content-width: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(58, 107, 74, 0.12), transparent 30%),
        radial-gradient(circle at 85% 10%, rgba(192, 122, 58, 0.13), transparent 26%),
        linear-gradient(180deg, #f5f2eb 0%, #ece8df 100%);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

code {
    font-family: "Space Grotesk", monospace;
    font-size: 0.92em;
}

.site-shell {
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(245, 242, 235, 0.72);
    border-bottom: 1px solid rgba(60, 90, 65, 0.08);
}

.site-header__inner,
.section__inner,
.site-footer__inner,
.page-hero__inner,
.minimal-footer__inner {
    width: min(calc(100% - 2rem), var(--content-width));
    margin: 0 auto;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1rem 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.brand-mark__icon {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
    background: linear-gradient(145deg, var(--stone), var(--forest) 70%, var(--forest-mid));
    border-radius: 4px;
    transform: rotate(45deg);
    box-shadow: 0 8px 22px rgba(58, 107, 74, 0.28);
}

.brand-mark__text {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.site-nav a {
    color: var(--text-soft);
    font-weight: 600;
    transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: var(--text);
}

.site-nav .nav-cta {
    display: inline-flex;
    align-items: center;
    min-height: 2.6rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--stone), var(--forest) 60%, var(--forest-mid));
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    transition: box-shadow 180ms ease, transform 180ms ease;
    box-shadow: 0 8px 22px rgba(58, 107, 74, 0.22);
}

.site-nav .nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(58, 107, 74, 0.30);
    color: white;
}

.menu-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--bg-strong);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.32rem;
    cursor: pointer;
}

.menu-toggle span {
    width: 1rem;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.home-stage {
    position: relative;
    min-height: calc(100vh - 88px);
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 2rem 0 4rem;
}

.home-topline {
    position: absolute;
    top: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.55rem 1rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    color: var(--text-soft);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-stage__ambient {
    position: absolute;
    border-radius: 999px;
    filter: blur(20px);
    opacity: 0.48;
}

.home-stage__ambient--left {
    width: 18rem;
    height: 18rem;
    top: 12%;
    left: 8%;
    background: radial-gradient(circle, rgba(192, 122, 58, 0.22), transparent 70%);
}

.home-stage__ambient--right {
    width: 24rem;
    height: 24rem;
    bottom: 8%;
    right: 5%;
    background: radial-gradient(circle, rgba(58, 107, 74, 0.16), transparent 72%);
}

.hero {
    width: min(calc(100% - 2rem), 1120px);
    display: grid;
    align-items: center;
    gap: 3rem;
}

.hero--home {
    grid-template-columns: 1.05fr 1fr;
}

.hero__visual {
    display: flex;
    justify-content: center;
}

.hero-core {
    position: relative;
    width: min(72vw, 32rem);
    aspect-ratio: 1;
}

.hero-core__ring,
.hero-core__dot,
.hero-core__pulse,
.hero-core__glow {
    position: absolute;
    inset: 0;
}

.hero-core__ring {
    border: 1px solid rgba(60, 90, 65, 0.14);
    border-radius: 50%;
}

.hero-core__ring--outer {
    animation: drift 16s linear infinite;
}

.hero-core__ring--middle {
    inset: 12%;
    border-color: rgba(58, 107, 74, 0.22);
    animation: driftReverse 20s linear infinite;
}

.hero-core__ring--inner {
    inset: 26%;
    border-color: rgba(192, 122, 58, 0.24);
    animation: drift 13s linear infinite;
}

.hero-core__dot {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    margin: auto;
}

.hero-core__dot--1 {
    transform: translateY(6.2rem);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(58, 107, 74, 0.14));
    border: 1px solid rgba(58, 107, 74, 0.16);
    animation: floatDot 7s ease-in-out infinite;
}

.hero-core__dot--2 {
    width: 0.9rem;
    height: 0.9rem;
    transform: translate(-6.8rem, -3.2rem);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.80), rgba(77, 99, 85, 0.14));
    border: 1px solid rgba(77, 99, 85, 0.16);
    animation: floatDotAlt 9.2s ease-in-out infinite;
}

.hero-core__dot--3 {
    width: 0.9rem;
    height: 0.9rem;
    transform: translate(6.8rem, -3.2rem);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(192, 122, 58, 0.16));
    border: 1px solid rgba(192, 122, 58, 0.18);
    animation: floatDot 8.6s ease-in-out infinite;
}

.hero-core__dot--4 {
    width: 2.4rem;
    height: 2.4rem;
    background: linear-gradient(145deg, rgba(77, 99, 85, 0.40), rgba(58, 107, 74, 0.56), rgba(192, 122, 58, 0.28));
    border: 1px solid rgba(58, 107, 74, 0.18);
    box-shadow: 0 20px 48px rgba(58, 107, 74, 0.16);
    animation: pulseCore 4.8s ease-in-out infinite;
}

.hero-core__pulse {
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    margin: auto;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.70), rgba(255, 255, 255, 0.24));
    border: 1px solid rgba(58, 107, 74, 0.12);
    box-shadow: 0 16px 40px rgba(58, 107, 74, 0.08);
    animation: pulseRing 3.8s ease-in-out infinite;
}

.hero-core__glow {
    inset: 22%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192, 122, 58, 0.18), rgba(58, 107, 74, 0.14), transparent 70%);
    filter: blur(18px);
}

.hero__content {
    position: relative;
    z-index: 1;
}

.eyebrow {
    margin: 0 0 1rem;
    color: var(--forest);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.76rem;
    font-weight: 800;
}

.hero__title,
.page-hero__title,
.section-heading h2,
.feature-hero h3,
.vision-strip h2,
.confirm-card h1,
.confirm-card h2 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.hero__title {
    font-size: clamp(3.4rem, 9vw, 6.6rem);
}

.hero__title span {
    display: inline-block;
}

.hero__title .hero__title-sub {
    font-size: 0.82em;
}

.hero__tagline {
    margin: 1.4rem 0 0;
    max-width: 38rem;
    color: var(--text);
    font-size: clamp(1.16rem, 2vw, 1.55rem);
    font-weight: 700;
}

.hero__support {
    max-width: 32rem;
    margin: 1rem 0 0;
    color: var(--text-soft);
    font-size: 1.03rem;
}

.hero__actions {
    margin-top: 2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3.4rem;
    padding: 0.95rem 1.45rem;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button--primary {
    color: white;
    background: linear-gradient(135deg, var(--stone), var(--forest) 60%, var(--forest-mid));
    box-shadow: 0 18px 38px rgba(58, 107, 74, 0.26);
}

.button--primary:hover {
    box-shadow: 0 22px 44px rgba(58, 107, 74, 0.34);
}

.minimal-footer,
.site-footer {
    padding: 1.25rem 0 2.2rem;
}

.minimal-footer__inner,
.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 2rem;
    flex-wrap: wrap;
}

.minimal-footer p,
.site-footer p {
    margin: 0;
}

.minimal-footer__inner,
.site-footer__inner {
    color: var(--text-soft);
    font-size: 0.94rem;
}

.minimal-footer__links,
.site-footer__links {
    display: flex;
    align-items: center;
    gap: 1rem 1.25rem;
    flex-wrap: wrap;
}

.minimal-footer__links a,
.site-footer__links a,
.footer-link-button {
    transition: color 180ms ease;
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
}

.minimal-footer__links a:hover,
.site-footer__links a:hover,
.footer-link-button:hover {
    color: var(--text);
}

.page-hero {
    padding: 5.25rem 0 2rem;
}

.page-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(17rem, 0.75fr);
    gap: 2rem;
    align-items: end;
}

.page-hero__title {
    font-size: clamp(2.6rem, 6.6vw, 5rem);
}

.page-hero__text,
.section-heading p,
.feature-card p,
.feature-hero__lede,
.vision-strip p,
.product-card p,
.confirm-card p {
    color: var(--text-soft);
}

.section {
    padding: 2.2rem 0 1.4rem;
}

.section--muted {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
}

.section-heading {
    max-width: 50rem;
    margin-bottom: 1.4rem;
}

.section-heading--tight {
    margin-bottom: 1rem;
}

.section-heading h2 {
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    margin-bottom: 0.8rem;
}

.glass-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.46));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
}

.page-hero__panel,
.feature-hero,
.vision-strip,
.process-strip,
.confirm-card {
    padding: 1.75rem;
}

.quote-mark {
    color: var(--amber);
    font-family: "Space Grotesk", sans-serif;
    font-size: 2rem;
    line-height: 1;
}

.feature-hero {
    padding: 2rem;
}

.feature-hero__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.75fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-hero h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-top: 0.4rem;
}

.feature-grid,
.product-grid {
    display: grid;
    gap: 1rem;
}

.feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.product-card {
    padding: 1.35rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(60, 90, 65, 0.10);
}

.feature-card h4,
.product-card h3 {
    margin: 0 0 0.5rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.12rem;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
}

.status-tag,
.soft-tag {
    display: inline-flex;
    align-items: center;
    min-height: 1.8rem;
    padding: 0.28rem 0.72rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.status-tag {
    color: #7a4a1e;
    background: rgba(192, 122, 58, 0.12);
    border: 1px solid rgba(192, 122, 58, 0.26);
}

.soft-tag {
    color: var(--forest);
    background: rgba(58, 107, 74, 0.10);
    border: 1px solid rgba(58, 107, 74, 0.18);
}

.product-card ul {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    color: var(--text-soft);
}

.vision-strip {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
    gap: 1.5rem;
}

.vision-strip h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    margin-top: 0.3rem;
}

.process-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.process-step {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.process-step__number {
    font-family: "Space Grotesk", sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--forest);
    opacity: 0.32;
}

.process-step__title {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.22rem;
    font-weight: 700;
}

.process-step__desc {
    margin: 0;
    color: var(--text-soft);
}

.section-cta {
    margin-top: 1.3rem;
}

.site-footer {
    padding-top: 2rem;
    border-top: 1px solid rgba(60, 90, 65, 0.10);
}

.site-footer__brand {
    color: var(--text);
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
}

.site-footer__tagline {
    margin-top: 0.35rem;
    max-width: 34rem;
}

.site-footer__subscribe {
    margin-top: 0.5rem;
}

.site-footer__subscribe a {
    font-weight: 700;
    color: var(--forest);
    transition: color 180ms ease;
}

.site-footer__subscribe a:hover {
    color: var(--text);
}

.confirm-card {
    max-width: 44rem;
    margin: 6rem auto 4rem;
    text-align: center;
}

.confirm-card h1,
.confirm-card h2 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    margin-bottom: 1rem;
}

.confirm-card p {
    font-size: 1.05rem;
    max-width: 34rem;
    margin: 0 auto 1.5rem;
}

.confirm-card .button {
    margin-top: 0.5rem;
}

.confirm-note {
    margin-top: 1.2rem;
    font-size: 0.94rem;
    color: var(--text-faint);
}

.confirm-note a {
    color: var(--forest);
    font-weight: 600;
}

.confirm-note a:hover {
    color: var(--text);
}

.legal-page main {
    padding-bottom: 1.5rem;
}

.legal-page .page-hero {
    padding-bottom: 1.25rem;
}

.legal-page .page-hero__inner {
    align-items: stretch;
}

.legal-page .page-hero__panel p {
    margin: 0.6rem 0 0;
    color: var(--text-soft);
}

.legal-meta {
    display: grid;
    gap: 0.9rem;
}

.legal-meta__item {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(60, 90, 65, 0.10);
}

.legal-meta__label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--forest);
}

.legal-meta__value {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    color: var(--text);
}

.legal-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-card {
    padding: 1.5rem;
}

.legal-card h3 {
    margin: 0 0 0.75rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.2rem;
}

.legal-card p:last-child,
.legal-card ul:last-child {
    margin-bottom: 0;
}

.legal-card ul,
.legal-list {
    margin: 0.9rem 0 0;
    padding-left: 1.15rem;
    color: var(--text-soft);
}

.legal-card li + li,
.legal-list li + li {
    margin-top: 0.45rem;
}

.legal-contact-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.legal-contact-card {
    padding: 1.35rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(60, 90, 65, 0.10);
}

.legal-contact-card h3 {
    margin: 0 0 0.65rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.05rem;
}

.legal-contact-card p {
    margin: 0;
    color: var(--text-soft);
}

.legal-note {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    background: rgba(58, 107, 74, 0.08);
    border: 1px solid rgba(58, 107, 74, 0.16);
    color: var(--text-soft);
}

.legal-note strong {
    color: var(--text);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.48);
    border: 1px solid rgba(60, 90, 65, 0.10);
}

.legal-table th,
.legal-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(60, 90, 65, 0.10);
}

.legal-table th {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.94rem;
    color: var(--text);
    background: rgba(255, 255, 255, 0.36);
}

.legal-table tr:last-child td {
    border-bottom: 0;
}

.legal-backlink {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 700;
    color: var(--forest);
}

.legal-backlink:hover {
    color: var(--text);
}

.protected-email {
    display: inline-block;
    vertical-align: middle;
}

.email-reveal-container {
    display: inline-flex;
    flex-direction: column;
    gap: 0.45rem;
    margin: 0.15rem 0 0;
}

.protected-email__actions {
    display: inline-flex;
    gap: 0.55rem;
    flex-wrap: wrap;
    align-items: center;
}

.protected-email__message {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-faint);
}

.protected-email__trigger {
    display: inline-flex;
    align-items: center;
    min-height: 2.4rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--text);
    font: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
}

.protected-email__trigger:hover {
    background: rgba(255, 255, 255, 0.95);
}

.protected-email__link {
    color: var(--forest);
    font-weight: 700;
}

.protected-email__link:hover {
    color: var(--text);
}

.fade-in,
.reveal-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.fade-in.is-visible,
.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes drift {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes driftReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes floatDot {
    0%, 100% { margin-top: 0; }
    50% { margin-top: -0.8rem; }
}

@keyframes floatDotAlt {
    0%, 100% { margin-top: 0; }
    50% { margin-top: 0.8rem; }
}

@keyframes pulseCore {
    0%, 100% { transform: scale(1); opacity: 0.88; }
    50% { transform: scale(1.14); opacity: 1; }
}

@keyframes pulseRing {
    0%, 100% { transform: scale(1); opacity: 0.82; }
    50% { transform: scale(1.1); opacity: 1; }
}

@media (max-width: 920px) {
    .hero--home,
    .page-hero__inner,
    .feature-hero__header,
    .vision-strip,
    .legal-contact-grid {
        grid-template-columns: 1fr;
    }

    .hero--home {
        padding-top: 4rem;
    }

    .hero__visual {
        order: -1;
    }

    .feature-grid,
    .product-grid,
    .legal-grid {
        grid-template-columns: 1fr;
    }

    .process-strip {
        grid-template-columns: 1fr;
    }

    .legal-table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 760px) {
    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.4rem);
        right: 1rem;
        left: 1rem;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        border-radius: 1.2rem;
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav .nav-cta {
        width: 100%;
        justify-content: center;
    }

    .hero__title {
        font-size: clamp(2.7rem, 16vw, 4.5rem);
    }

    .home-stage {
        padding-top: 5rem;
    }

    .home-topline {
        width: calc(100% - 2rem);
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .fade-in,
    .reveal-up {
        opacity: 1;
        transform: none;
    }
}
