@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;0,6..12,800;1,6..12,400&display=swap");

:root {
    --tb-green: #319966;
    --tb-green-hover: #3cb87a;
    --tb-green-dark: #24704c;
    --tb-green-deeper: #1a5539;
    --tb-forest: #0e2f20;
    --tb-ink: #071a12;
    --tb-hero: #0a2218;
    --tb-glow: 49, 153, 102;
    --tb-text: #12241b;
    --tb-muted: #5b7367;
    --tb-line: rgba(49, 153, 102, 0.18);
    --tb-paper: #f4fbf7;
    --tb-white: #ffffff;
    --tb-radius: 18px;
    --tb-wrap: 1160px;
    --tb-bar: 38px;
    --tb-nav: 72px;
    --font: "Nunito Sans", "Segoe UI", system-ui, sans-serif;

    --bs-primary: #319966;
    --bs-primary-rgb: 49, 153, 102;
    --bs-success: #319966;
    --bs-success-rgb: 49, 153, 102;
    --bs-body-font-family: var(--font);
    --bs-font-sans-serif: var(--font);
    --bs-body-color: #12241b;
    --bs-body-color-rgb: 18, 36, 27;
    --bs-body-bg: #ffffff;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-link-color: #319966;
    --bs-link-color-rgb: 49, 153, 102;
    --bs-link-hover-color: #24704c;
    --bs-link-hover-color-rgb: 36, 112, 76;
    --bs-border-radius: 0.75rem;
    --bs-border-radius-pill: 50rem;
    --bs-focus-ring-color: rgba(49, 153, 102, 0.35);
}

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

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: var(--font);
    color: var(--tb-text);
    background: var(--tb-white);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--tb-green);
}

button,
input,
select {
    font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    z-index: 200;
    background: var(--tb-green);
    color: #fff;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    text-decoration: none;
}

.skip-link:focus {
    top: 0.6rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.wrap {
    width: min(var(--tb-wrap), calc(100% - 2rem));
    margin-inline: auto;
}

/* ——— Contact bar ——— */
.site-contact-bar {
    background: linear-gradient(90deg, #0b2418 0%, var(--tb-forest) 45%, #145c3a 100%);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.8rem;
    font-weight: 600;
}

.site-contact-bar__inner {
    width: min(var(--tb-wrap), calc(100% - 2rem));
    margin-inline: auto;
    min-height: var(--tb-bar);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.85rem;
    flex-wrap: wrap;
    padding: 0.35rem 0;
}

.site-contact-bar a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.site-contact-bar a:hover {
    color: #fff;
}

.site-contact-bar__sep {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.22);
}

.public-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.18rem 0.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.02em;
}

.public-status .status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.28);
    animation: status-dot-pulse 2s ease-in-out infinite;
}

@keyframes status-dot-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.28); }
    50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.12); }
}

/* ——— Header / navbar ——— */
.site-chrome {
    position: sticky;
    top: 0;
    z-index: 80;
}

.site-navbar {
    background: rgba(7, 26, 18, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(49, 153, 102, 0.18);
    color: #fff;
}

.site-navbar.is-scrolled {
    box-shadow: 0 12px 32px rgba(7, 26, 18, 0.28);
}

.navbar-inner {
    width: min(var(--tb-wrap), calc(100% - 2rem));
    margin-inline: auto;
    min-height: var(--tb-nav);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.nav-logo img {
    height: 44px;
    width: auto;
    display: block;
}

.nav-panel {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.nav-toggle {
    margin-left: auto;
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.25rem;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.15rem;
    margin: 0 0 0 auto;
    padding: 0;
}

.nav-link,
.nav-menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: transparent;
    border: 0;
    cursor: pointer;
    transition: background 160ms ease, color 160ms ease;
}

.nav-link:hover,
.nav-menu-toggle:hover,
.nav-link.active,
.nav-item.has-menu.is-open .nav-menu-toggle,
.nav-item.has-menu.active .nav-menu-toggle {
    color: #fff;
    background: rgba(49, 153, 102, 0.22);
}

.nav-link.active {
    color: #fff;
}

.nav-link i,
.nav-menu-toggle i:first-child {
    color: var(--tb-green-hover);
    font-size: 0.95rem;
}

.nav-item.has-menu {
    position: relative;
}

.nav-menu {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    min-width: 280px;
    background: #0f2a1c;
    border: 1px solid rgba(49, 153, 102, 0.28);
    border-radius: 16px;
    padding: 0.55rem;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
    display: none;
    z-index: 5;
}

.nav-item.has-menu.is-open .nav-menu,
.nav-item.has-menu:hover .nav-menu {
    display: block;
}

@media (min-width: 992px) {
    .nav-item.has-menu::after {
        content: "";
        position: absolute;
        left: 0;
        top: 100%;
        width: 280px;
        height: 0.85rem;
    }

    .nav-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transition: opacity 80ms ease, visibility 80ms linear;
        transition-delay: 180ms;
    }

    .nav-item.has-menu.is-open .nav-menu,
    .nav-item.has-menu:hover .nav-menu {
        display: block;
        visibility: visible;
        opacity: 1;
        transition-delay: 0s;
    }
}

.nav-menu a {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    text-decoration: none;
    color: #fff;
    padding: 0.7rem 0.75rem;
    border-radius: 12px;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(49, 153, 102, 0.18);
}

.nav-menu a i {
    color: var(--tb-green-hover);
    margin-top: 0.15rem;
}

.nav-menu a strong {
    display: block;
    font-size: 0.9rem;
}

.nav-menu a small {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-weight: 500;
    font-size: 0.78rem;
    margin-top: 0.1rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.6rem;
    flex-shrink: 0;
}

.btn {
    --bs-btn-font-family: var(--font);
    --bs-btn-font-weight: 800;
    --bs-btn-border-radius: 999px;
    --bs-btn-padding-x: 1.2rem;
    --bs-btn-padding-y: 0.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    text-decoration: none;
    transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--tb-green);
    --bs-btn-border-color: var(--tb-green);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--tb-green-hover);
    --bs-btn-hover-border-color: var(--tb-green-hover);
    --bs-btn-focus-shadow-rgb: 49, 153, 102;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--tb-green-dark);
    --bs-btn-active-border-color: var(--tb-green-dark);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--tb-green);
    --bs-btn-disabled-border-color: var(--tb-green);
}

.btn-ghost {
    --bs-btn-color: #fff;
    --bs-btn-bg: transparent;
    --bs-btn-border-color: rgba(255, 255, 255, 0.28);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: rgba(255, 255, 255, 0.08);
    --bs-btn-hover-border-color: rgba(255, 255, 255, 0.4);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: rgba(255, 255, 255, 0.12);
    --bs-btn-active-border-color: rgba(255, 255, 255, 0.45);
    --bs-btn-padding-x: 1.05rem;
    --bs-btn-padding-y: 0.62rem;
}

.btn-light {
    --bs-btn-color: var(--tb-green-dark);
    --bs-btn-bg: #fff;
    --bs-btn-border-color: #fff;
    --bs-btn-hover-color: var(--tb-ink);
    --bs-btn-hover-bg: var(--tb-paper);
    --bs-btn-hover-border-color: var(--tb-paper);
    --bs-btn-active-color: var(--tb-ink);
    --bs-btn-active-bg: var(--tb-paper);
    --bs-btn-active-border-color: var(--tb-paper);
    --bs-btn-padding-x: 1.35rem;
    --bs-btn-padding-y: 0.85rem;
}

.btn-outline,
.btn-outline-light {
    --bs-btn-color: #fff;
    --bs-btn-bg: transparent;
    --bs-btn-border-color: rgba(255, 255, 255, 0.4);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: rgba(255, 255, 255, 0.1);
    --bs-btn-hover-border-color: rgba(255, 255, 255, 0.55);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: rgba(255, 255, 255, 0.14);
    --bs-btn-active-border-color: rgba(255, 255, 255, 0.6);
    --bs-btn-padding-x: 1.35rem;
    --bs-btn-padding-y: 0.85rem;
}

.btn-lg {
    --bs-btn-font-size: 1.02rem;
    --bs-btn-padding-y: 0.85rem;
    --bs-btn-padding-x: 1.35rem;
}

@media (max-width: 991px) {
    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-panel {
        display: none;
        position: absolute;
        left: 1rem;
        right: 1rem;
        top: calc(100% + 0.4rem);
        background: #0f2a1c;
        border: 1px solid rgba(49, 153, 102, 0.28);
        border-radius: 18px;
        padding: 0.75rem;
        box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
        flex-direction: column;
        align-items: stretch;
    }

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

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        margin: 0;
        width: 100%;
    }

    .nav-item.has-menu:hover .nav-menu {
        display: none;
    }

    .nav-item.has-menu.is-open .nav-menu {
        display: block;
        position: static;
        min-width: 0;
        margin: 0.25rem 0 0.5rem;
        box-shadow: none;
    }

    .nav-actions {
        margin: 0.5rem 0 0;
        flex-direction: column;
        width: 100%;
    }

    .nav-actions .btn {
        width: 100%;
    }
}

@media (max-width: 720px) {
    .site-contact-bar__sep--hide-sm {
        display: none;
    }

    .hide-sm {
        display: none !important;
    }
}

/* ——— Main / router ——— */
main {
    flex: 1 0 auto;
    display: block;
    padding: 0;
    transition: opacity 160ms ease;
}

main.router-loading {
    pointer-events: none;
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(900px 480px at 18% -10%, rgba(var(--tb-glow), 0.38), transparent 55%),
        radial-gradient(700px 420px at 92% 10%, rgba(26, 85, 57, 0.55), transparent 50%),
        linear-gradient(180deg, var(--tb-ink) 0%, var(--tb-hero) 58%, #0c271c 100%);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, visibility 220ms ease;
}

.page-loader.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.page-loader__inner {
    text-align: center;
}

.page-loader img {
    height: 52px;
    width: auto;
    margin: 0 auto 1.35rem;
    display: block;
}

.page-loader__spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
    border: 3px solid rgba(255, 255, 255, 0.14);
    border-top-color: var(--tb-green-hover);
    border-radius: 50%;
    animation: page-loader-spin 0.7s linear infinite;
}

.page-loader p {
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.72);
}

body.is-page-loading {
    overflow: hidden;
}

@keyframes page-loader-spin {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .page-loader {
        transition: none;
    }

    .page-loader__spinner {
        animation: none;
        border-top-color: rgba(255, 255, 255, 0.14);
        border-right-color: var(--tb-green-hover);
    }
}

/* ——— Homepage ——— */
.home-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(900px 480px at 18% -10%, rgba(var(--tb-glow), 0.38), transparent 55%),
        radial-gradient(700px 420px at 92% 10%, rgba(26, 85, 57, 0.7), transparent 50%),
        linear-gradient(180deg, var(--tb-ink) 0%, var(--tb-hero) 58%, #0c271c 100%);
    color: #fff;
    padding: 4.2rem 0 4.8rem;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(ellipse at 50% 30%, #000 20%, transparent 75%);
    pointer-events: none;
}

.home-hero .wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.home-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(49, 153, 102, 0.16);
    border: 1px solid rgba(49, 153, 102, 0.35);
    color: #d7f5e6;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}

.home-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin: 1rem 0 0.7rem;
    font-weight: 800;
}

.home-hero h1 span {
    display: block;
    color: var(--tb-green-hover);
}

.home-hero__rotate {
    min-height: 1.7em;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
    font-size: 1.05rem;
    margin: 0 0 1rem;
    opacity: 1;
    transition: opacity 420ms ease;
}

.home-hero__rotate.is-out {
    opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
    .home-hero__rotate {
        transition: none;
    }
}

.home-hero__lead {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
    max-width: 36rem;
    margin: 0 auto 1.5rem;
}

.home-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
    margin-bottom: 1.35rem;
}

.home-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    font-weight: 600;
}

.home-trust i {
    color: var(--tb-green-hover);
    margin-right: 0.3rem;
}

.hero-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 1rem;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);
}

.hero-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-tour {
    background: rgba(7, 26, 18, 0.55);
    border: 1px solid rgba(49, 153, 102, 0.25);
    border-radius: 16px;
    padding: 0.95rem 1rem;
    margin-bottom: 0.7rem;
}

.hero-tour h3 {
    margin: 0 0 0.2rem;
    font-size: 1rem;
}

.hero-tour p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
}

.hero-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 0.8rem;
}

.hero-slot {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    padding: 0.55rem 0.4rem;
    text-align: center;
    font-size: 0.78rem;
}

.hero-slot strong {
    display: block;
    font-size: 0.92rem;
}

.hero-slot.is-busy {
    opacity: 0.45;
    text-decoration: line-through;
}

.hero-slot.is-open {
    border-color: rgba(49, 153, 102, 0.55);
    background: rgba(49, 153, 102, 0.18);
}

.hero-meta {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.85rem;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(49, 153, 102, 0.18);
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
}

.home-logos {
    padding: 1.6rem 0;
    border-bottom: 1px solid #e7efe9;
    background: #fff;
    text-align: center;
}

.home-logos p {
    margin: 0 0 0.85rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--tb-muted);
}

.home-logos__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem 0.75rem;
}

.logo-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid #e1ece6;
    background: var(--tb-paper);
    color: #355246;
    border-radius: 999px;
    padding: 0.4rem 0.8rem;
    font-size: 0.82rem;
    font-weight: 700;
}

.section {
    padding: 4.4rem 0;
    scroll-margin-top: calc(var(--tb-bar) + var(--tb-nav) + 12px);
}

.section--paper {
    background: var(--tb-paper);
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.4rem;
}

.section-head .home-kicker,
.section-head .home-kicker-light {
    margin-bottom: 0.7rem;
}

.home-kicker-light {
    display: inline-flex;
    color: var(--tb-green-dark);
    background: rgba(49, 153, 102, 0.1);
    border: 1px solid rgba(49, 153, 102, 0.16);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}

.section-head h2 {
    margin: 0.35rem 0 0.6rem;
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.section-head p {
    margin: 0;
    color: var(--tb-muted);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.feature-card {
    background: #fff;
    border: 1px solid #e4eee8;
    border-radius: var(--tb-radius);
    padding: 1.3rem 1.2rem 1.4rem;
    box-shadow: 0 10px 24px rgba(16, 52, 36, 0.04);
}

.feature-card i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(49, 153, 102, 0.12);
    color: var(--tb-green-dark);
    font-size: 1.15rem;
    margin-bottom: 0.85rem;
}

.feature-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
}

.feature-card p {
    margin: 0;
    color: var(--tb-muted);
    font-size: 0.92rem;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.split ul {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.split li {
    display: flex;
    gap: 0.7rem;
    margin-bottom: 0.7rem;
    color: var(--tb-text);
    font-weight: 600;
}

.split li i {
    color: var(--tb-green);
    margin-top: 0.15rem;
}

.panel {
    background: var(--tb-ink);
    color: #fff;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(7, 26, 18, 0.16);
}

.panel h3 {
    margin: 0 0 0.85rem;
    font-size: 1rem;
}

.manifest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 0.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
}

.manifest-row:last-child {
    border-bottom: 0;
}

.tag {
    font-size: 0.72rem;
    font-weight: 800;
    border-radius: 999px;
    padding: 0.18rem 0.55rem;
}

.tag--ok {
    background: rgba(49, 153, 102, 0.2);
    color: #8be0b4;
}

.tag--warn {
    background: rgba(250, 204, 21, 0.16);
    color: #fde68a;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.diff-card {
    border-radius: var(--tb-radius);
    padding: 1.35rem 1.2rem;
    background: #fff;
    border: 1px solid #e4eee8;
}

.diff-card strong {
    display: block;
    margin: 0.55rem 0 0.35rem;
}

.diff-card p {
    margin: 0;
    color: var(--tb-muted);
    font-size: 0.92rem;
}

.diff-card i {
    color: var(--tb-green);
    font-size: 1.3rem;
}

.compare-wrap {
    overflow-x: auto;
    margin: 0 0 2.4rem;
    border: 1px solid #e4eee8;
    border-radius: 18px;
    background: #fff;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
    font-size: 0.95rem;
}

.compare-table th,
.compare-table td {
    padding: 0.95rem 1.1rem;
    text-align: left;
    border-bottom: 1px solid #eef4f0;
    vertical-align: top;
}

.compare-table th {
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--tb-muted);
    font-weight: 800;
    background: var(--tb-paper);
}

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

.compare-table .is-us {
    background: rgba(49, 153, 102, 0.08);
    font-weight: 700;
    color: var(--tb-ink);
}

.compare-table .is-us strong {
    color: var(--tb-green-dark);
    display: block;
    font-size: 1.02rem;
}

.save-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.save-card {
    background: #fff;
    border: 1px solid #e4eee8;
    border-radius: var(--tb-radius);
    padding: 1.3rem 1.2rem;
}

.save-card p {
    margin: 0 0 0.7rem;
    color: var(--tb-muted);
    font-size: 0.88rem;
}

.save-card strong {
    display: block;
    font-size: 1.7rem;
    letter-spacing: -0.03em;
    color: var(--tb-green-dark);
}

.save-card span {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.88rem;
    color: var(--tb-muted);
}

.why-note {
    margin: 1.1rem 0 0;
    color: var(--tb-muted);
    font-size: 0.88rem;
}

.pricing-band {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--tb-forest), var(--tb-green-deeper) 55%, var(--tb-green) 140%);
    color: #fff;
    border-radius: 24px;
    padding: 2.2rem;
}

.pricing-band h2 {
    margin: 0 0 0.6rem;
    letter-spacing: -0.03em;
}

.pricing-band p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.price-stat {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 1.2rem 1.3rem;
}

.price-stat b {
    display: block;
    font-size: 2rem;
    letter-spacing: -0.03em;
}

.price-stat span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
}

@media (min-width: 992px) {
    .audience-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .audience-grid > .audience-card {
        grid-column: span 2;
    }

    .audience-grid > .audience-card:nth-child(4) {
        grid-column: 2 / span 2;
    }

    .audience-grid > .audience-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

a.audience-card {
    text-decoration: none;
    color: inherit;
    transition: transform 160ms ease, border-color 160ms ease;
}

a.audience-card:hover {
    transform: translateY(-2px);
    border-color: var(--tb-green);
}

.audience-card {
    border: 1px solid #e4eee8;
    border-radius: var(--tb-radius);
    padding: 1.85rem 1.6rem;
    background: #fff;
    box-shadow: 0 10px 24px rgba(16, 52, 36, 0.04);
}

.audience-card i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(49, 153, 102, 0.12);
    color: var(--tb-green-dark);
    font-size: 1.15rem;
}

.audience-card h3 {
    margin: 0.75rem 0 0.45rem;
    font-size: 1.12rem;
}

.audience-card p {
    margin: 0;
    color: var(--tb-muted);
    line-height: 1.55;
}

.scm-ad {
    padding: 0 0 4.4rem;
}

.scm-ad__box {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
    padding: 2.4rem 3rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 140, 51, 0.35);
    background:
        radial-gradient(420px 220px at 92% 0%, rgba(255, 140, 51, 0.4), transparent 55%),
        linear-gradient(135deg, #1a0c04 0%, #c24100 58%, #8f3000 140%);
    color: #fff;
    box-shadow: 0 16px 40px rgba(26, 12, 4, 0.18);
}

.scm-ad__kicker {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffd7b0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}

.scm-ad h2 {
    margin: 0.85rem 0 0.65rem;
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    letter-spacing: -0.03em;
}

.scm-ad p {
    margin: 0 0 1.25rem;
    max-width: 36rem;
    color: rgba(255, 255, 255, 0.84);
}

.scm-ad__btn {
    background: #fff;
    color: #c24100;
    padding: 0.8rem 1.25rem;
}

.scm-ad__btn:hover {
    background: #fff4ea;
    color: #8f3000;
}

.scm-ad__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
}

.scm-ad__brand img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.scm-ad__brand span {
    font-weight: 800;
    letter-spacing: -0.02em;
}

.scm-ad__kicker {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffd7b0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}

.scm-ad h2 {
    margin: 0.85rem 0 0.65rem;
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
    letter-spacing: -0.03em;
}

.scm-ad p {
    margin: 0 0 1.25rem;
    max-width: 38rem;
    color: rgba(255, 255, 255, 0.84);
}

.scm-ad__btn {
    background: #fff;
    color: #c24100;
    padding: 0.8rem 1.25rem;
}

.scm-ad__btn:hover {
    background: #fff4ea;
    color: #8f3000;
}

.scm-ad__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
}

.scm-ad__brand img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.scm-ad__brand span {
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* ——— Footer ——— */
.site-footer {
    position: relative;
    margin-top: auto;
    background:
        radial-gradient(900px 420px at 8% 0%, rgba(var(--tb-glow), 0.16), transparent 55%),
        linear-gradient(180deg, #0a1f16 0%, #07140e 42%, #050f0b 100%);
    color: #fff;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(ellipse at 50% 0%, #000 10%, transparent 70%);
    pointer-events: none;
}

.footer-shell {
    position: relative;
    padding: 2.4rem 0 1.6rem;
}

.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.6rem;
    padding: 1.7rem 1.8rem;
    border-radius: 22px;
    background:
        radial-gradient(circle at 92% 18%, rgba(255, 255, 255, 0.18), transparent 42%),
        linear-gradient(135deg, var(--tb-green-deeper) 0%, var(--tb-green) 58%, #3cb87a 100%);
    box-shadow: 0 18px 40px rgba(7, 26, 18, 0.28);
}

.footer-cta__kicker {
    display: inline-flex;
    margin-bottom: 0.55rem;
    padding: 0.22rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-cta h2 {
    margin: 0 0 0.4rem;
    letter-spacing: -0.03em;
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
}

.footer-cta p {
    margin: 0;
    max-width: 36rem;
    opacity: 0.9;
}

.footer-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    flex-shrink: 0;
}

.footer-cta .btn-ghost {
    border-color: rgba(255, 255, 255, 0.45);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.45fr 0.85fr 0.85fr 0.85fr;
    gap: 2.4rem 2rem;
    padding: 2.8rem 0 2.2rem;
}

.footer-brand img {
    height: 44px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.64);
    margin: 0 0 1rem;
    font-size: 0.95rem;
    max-width: 22rem;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.1rem;
}

.footer-contacts a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
}

.footer-contacts a i {
    color: var(--tb-green-hover);
}

.footer-contacts a:hover {
    color: #fff;
}

.footer-company {
    margin: 0 0 0.7rem !important;
    font-size: 0.8rem !important;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.78) !important;
}

.footer-sisters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.footer-sisters a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 0.28rem 0.7rem;
}

.footer-sisters a:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.06);
}

.site-footer h3 {
    margin: 0.15rem 0 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer li {
    margin-bottom: 0.55rem;
}

.site-footer li a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 160ms ease, padding-left 160ms ease;
}

.site-footer li a:hover {
    color: #fff;
    padding-left: 3px;
}

.footer-signup {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 22rem);
    gap: 0.35rem 1.5rem;
    align-items: center;
    padding: 1.25rem 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
}

.footer-signup__copy h3 {
    margin: 0 0 0.25rem;
    color: #fff;
}

.footer-signup__copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
}

.mkt-signup__form {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.28rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(7, 20, 14, 0.45);
}

.mkt-signup__form input[type="email"] {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    color: #fff;
    padding: 0.62rem 0.85rem;
    outline: none;
}

.mkt-signup__form input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.mkt-signup__form button {
    border: 0;
    background: var(--tb-green);
    color: #fff;
    border-radius: 999px;
    padding: 0.62rem 1rem;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
}

.mkt-signup__form button:hover {
    background: var(--tb-green-hover);
}

.mkt-signup__honeypot {
    position: absolute;
    left: -9999px;
}

.mkt-signup__legal,
.mkt-signup__status {
    grid-column: 1 / -1;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.48);
    margin: 0.15rem 0 0;
}

.mkt-signup__legal a {
    color: #fff;
}

.footer-bottom {
    margin-top: 1.6rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-motd {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 1.1rem;
}

.footer-motd__dice {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.82);
    cursor: pointer;
    font-size: 1.05rem;
}

.footer-motd__dice:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.footer-motd__text {
    margin: 0.35rem 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    font-weight: 700;
}

.footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.2rem;
}

.footer-meta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
    line-height: 1.55;
    max-width: 42rem;
}

.footer-euan-tag {
    display: inline-block;
    background: #4b5563;
    color: #fff !important;
    border-radius: 6px;
    padding: 0.05rem 0.4rem;
    font-size: 0.72rem;
    text-decoration: none;
    font-weight: 700;
    vertical-align: baseline;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 0.35rem 1rem;
    flex-shrink: 0;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
}

.footer-legal a:hover {
    color: #fff;
}

.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

@media (max-width: 991px) {
    .footer-cta,
    .footer-signup,
    .footer-meta {
        display: grid;
        grid-template-columns: 1fr;
    }

    .footer-cta__actions,
    .footer-legal {
        justify-content: flex-start;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .mkt-signup__form {
        flex-direction: column;
        border-radius: 16px;
        align-items: stretch;
    }

    .mkt-signup__form button {
        width: 100%;
    }
}

.page-hero {
    background:
        radial-gradient(700px 380px at 12% -20%, rgba(var(--tb-glow), 0.32), transparent 55%),
        linear-gradient(180deg, var(--tb-ink) 0%, var(--tb-hero) 100%);
    color: #fff;
    padding: 3.4rem 0 3.2rem;
}

.page-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin: 0.85rem 0 0.7rem;
}

.page-hero__lead {
    margin: 0;
    max-width: 40rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
}

.page-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.4rem;
}

.related-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.6rem;
}

.related-row a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: var(--tb-green-dark);
    background: #fff;
    border: 1px solid #e4eee8;
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    font-size: 0.88rem;
    font-weight: 700;
}

.related-row a:hover,
.related-row a.active {
    border-color: var(--tb-green);
    background: rgba(49, 153, 102, 0.1);
}

.price-card {
    background: #fff;
    border: 1px solid #e4eee8;
    border-radius: 24px;
    padding: 2rem 1.8rem;
    box-shadow: 0 16px 40px rgba(16, 52, 36, 0.06);
    max-width: 420px;
}

.price-card b {
    display: block;
    font-size: 3.2rem;
    letter-spacing: -0.05em;
    color: var(--tb-ink);
    line-height: 1;
}

.price-card b small {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--tb-muted);
}

.price-card ul {
    list-style: none;
    margin: 1.2rem 0 0;
    padding: 0;
}

.price-card li {
    display: flex;
    gap: 0.55rem;
    margin-bottom: 0.55rem;
    font-weight: 600;
}

.price-card li i {
    color: var(--tb-green);
}

.split h2 {
    margin: 0 0 0.5rem;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.split h2 + p {
    color: var(--tb-muted);
    margin: 0 0 1.4rem;
}

@media (max-width: 1200px) {
    .nav-link,
    .nav-menu-toggle {
        padding: 0.45rem 0.6rem;
        font-size: 0.86rem;
    }

    .nav-actions .btn {
        padding: 0.55rem 0.85rem;
    }
}

.section-more {
    margin-top: 1.4rem;
    text-align: center;
}

.section-more a {
    font-weight: 800;
    text-decoration: none;
}

.page-404 {
    padding: 5rem 1.25rem 6rem;
    text-align: center;
}

.page-404 h1 {
    margin: 0 0 0.5rem;
    font-size: 2.4rem;
}

.page-404 p {
    color: var(--tb-muted);
}

@media (max-width: 991px) {
    .split,
    .feature-grid,
    .diff-grid,
    .pricing-band,
    .scm-ad__box {
        grid-template-columns: 1fr;
        display: grid;
    }

    .feature-grid,
    .diff-grid,
    .save-grid,
    .audience-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-hero {
        padding: 3rem 0 3.4rem;
    }
}

@media (max-width: 640px) {
    .feature-grid,
    .diff-grid,
    .audience-grid,
    .save-grid {
        grid-template-columns: 1fr;
    }

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

    .scm-ad__box {
        padding: 1.6rem 1.25rem;
    }
}
