/* Public CMS only — adapted from gsmed.com (Inter, navy pills, green counters, 30px cards). */
body.site {
    margin: 0;
    background: #fff;
    color: #1e1e1e;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    line-height: 1.45;
    overflow-x: hidden;
}
body.site a { color: inherit; text-decoration: none; transition: color .2s, background .2s, border-color .2s; }
.site-wrap { width: min(1180px, calc(100% - 2.5rem)); margin-inline: auto; }
.site-wrap-wide { width: min(1380px, calc(100% - 1.5rem)); margin-inline: auto; }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    padding: 1rem 0 0;
    pointer-events: none;
}
.site-header-bar {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, .1);
    padding: .55rem .7rem .55rem 1.1rem;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-weight: 800;
    letter-spacing: .02em;
    color: #1e1e1e;
    flex-shrink: 0;
}
.site-logo-mark {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 999px;
    background: #0b5996;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: .95rem;
    font-weight: 800;
}
.site-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: .15rem .2rem;
}
.site-nav a {
    color: #1e1e1e;
    font-weight: 700;
    font-size: .92rem;
    padding: .45rem .7rem;
}
.site-nav a:hover,
.site-nav a.is-active { color: #0b5996; }
.site-nav .site-btn { margin-left: .35rem; }
.site-menu-btn {
    display: none;
    width: 2.6rem;
    height: 2.6rem;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
}
.site-menu-btn span,
.site-menu-btn span:before,
.site-menu-btn span:after {
    display: block;
    height: 2px;
    background: #0b5996;
    border-radius: 2px;
}
.site-menu-btn span { width: 1.4rem; margin: 0 auto; position: relative; }
.site-menu-btn span:before,
.site-menu-btn span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
}
.site-menu-btn span:before { top: -.45rem; }
.site-menu-btn span:after { top: .45rem; }

.site-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0 1.6rem;
    border-radius: 30px;
    background: #0b5996;
    color: #fff !important;
    border: 2px solid #0b5996;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    font-family: inherit;
}
.site-btn:hover { background: #000; border-color: #000; color: #fff !important; }
.site-btn-ghost {
    background: #fff;
    color: #0b5996 !important;
    border-color: #fff;
}
.site-btn-ghost:hover { background: #000; border-color: #000; color: #fff !important; }
.site-btn-outline {
    background: #fff;
    color: #0b5996 !important;
    border-color: #0b5996;
}
.site-btn-outline:hover { background: #000; border-color: #000; color: #fff !important; }
.site-btn-sm { min-height: 2.5rem; padding: 0 1.15rem; font-size: .9rem; }

.site-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #0a1628 center / cover no-repeat;
    color: #fff;
}
.site-hero-media { position: absolute; inset: 0; }
.site-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity .7s ease; pointer-events: none; display: flex; align-items: flex-end; }
.site-slide.is-active { opacity: 1; pointer-events: auto; z-index: 1; }
.site-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 8, 20, .72) 0%, rgba(2, 8, 20, .28) 55%, rgba(2, 8, 20, .12) 100%);
    z-index: 2;
}
.site-hero-copy {
    position: relative;
    z-index: 3;
    width: min(1180px, calc(100% - 2.5rem));
    margin: 0 auto;
    padding: 8rem 0 5.5rem;
}
.site-kicker { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #37683f; margin: 0 0 .75rem; }
.site-hero .site-kicker { color: rgba(255,255,255,.8); }
.site-hero h1, .site-h1 {
    font-weight: 800;
    font-size: clamp(2.1rem, 4.6vw, 3.35rem);
    line-height: 1.15;
    letter-spacing: .01em;
    margin: 0;
    max-width: 16ch;
}
.site-lead { font-size: 1.15rem; line-height: 1.5; color: #35373d; max-width: 40rem; margin: 1rem 0 0; white-space: pre-line; }
.site-hero .site-lead { color: rgba(255,255,255,.88); font-weight: 600; }
.site-hero .site-btn { margin-top: 1.6rem; }
.site-slider-btn {
    position: absolute;
    top: 50%;
    z-index: 4;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 999px;
    background: #0b5996;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}
.site-slider-btn.prev { left: 1.1rem; }
.site-slider-btn.next { right: 1.1rem; }
.site-slider-dots {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    display: flex;
    gap: .5rem;
}
.site-slider-dots button {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: #d9d9d9;
    cursor: pointer;
    padding: 0;
}
.site-slider-dots button.is-active { background: #0b5996; }

.site-section { padding: 4.5rem 0; }
.site-section-mint { background: #ebf0ec; }
.site-section h2, .site-h2 {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem;
    color: #1e1e1e;
}
.site-h3 { font-size: 1.35rem; font-weight: 700; margin: 0 0 .5rem; }
.site-muted { color: #4b5563; font-size: 1.05rem; line-height: 1.5; }
.site-grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; }
.site-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.35rem; }
.site-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.35rem; }

.site-stat { text-align: left; }
.site-stat-n {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 900;
    font-style: italic;
    color: #37683f;
    line-height: 1;
    letter-spacing: -.03em;
}
.site-stat h3 { font-size: 1.15rem; font-weight: 800; margin: .85rem 0 .4rem; }
.site-stat p { margin: 0; color: #4b5563; font-size: .98rem; }

.site-card {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, .08);
    padding: 1.6rem 1.5rem;
}
.site-card-mint { background: #f5f8f6; }
.site-card a.site-more { color: #0b5996; font-weight: 700; display: inline-block; margin-top: .85rem; }
.site-card a.site-more:hover { color: #000; }

.site-pillars { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.site-pillar { background: #fff; border-radius: 30px; box-shadow: 0 10px 15px rgba(0,0,0,.08); padding: 1.75rem; }
.site-pillar h3 { color: #37683f; font-size: 1.35rem; font-weight: 800; margin: 0 0 .6rem; }

.site-benefit {
    display: grid;
    grid-template-columns: 16rem 1fr;
    gap: 1.5rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(30,30,30,.12);
}
.site-benefit:last-child { border-bottom: 0; }
.site-benefit h3 { margin: 0; font-size: 1.2rem; }
.site-benefit p { margin: 0; color: #374151; }
.site-benefit p span { display: block; margin-top: .4rem; color: #1e1e1e; font-weight: 600; }

.site-story {
    display: block;
    border-radius: 30px;
    overflow: hidden;
    background: #111;
    color: #fff;
    min-height: 18rem;
    position: relative;
}
.site-story img { width: 100%; height: 18rem; object-fit: cover; display: block; opacity: .85; }
.site-story div {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 1.25rem 1.35rem;
    background: linear-gradient(transparent, rgba(0,0,0,.75));
}
.site-story h3 { margin: 0 0 .25rem; font-size: 1.15rem; }
.site-story p { margin: 0; font-size: .9rem; opacity: .9; }

.site-marquee {
    overflow: hidden;
    padding: 1.5rem 0 0;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.site-marquee-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: site-marquee 28s linear infinite;
    font-weight: 800;
    color: #0b5996;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: .85rem;
}
@keyframes site-marquee { to { transform: translateX(-50%); } }

.site-page { padding: 7.5rem 0 4rem; }
.site-hero-page { min-height: 58vh; }
.site-hero-page .site-hero-copy { padding-top: 7.5rem; padding-bottom: 3.25rem; }
.site-hero + .site-page { padding-top: 3.25rem; }
.site-nav .site-btn { padding: 0 1.15rem; }
.site-steps { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1rem; }
.site-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.site-form-grid > :last-child,
.site-form-grid > .text-xs,
.site-form-grid > div,
.site-form-grid > textarea { grid-column: 1 / -1; }
.site-page .site-h1 { max-width: 22ch; }
.site-chip {
    display: inline-flex;
    padding: .45rem 1rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #d7e0d9;
    font-size: .92rem;
    margin: .25rem .2rem .25rem 0;
}
.site-list { margin: .75rem 0 0; padding-left: 1.15rem; color: #4b5563; }
.site-list li { margin: .35rem 0; }

.site-cta {
    background: #0b5996;
    color: #fff;
    padding: 4.5rem 0;
}
.site-cta h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; margin: 0 0 .75rem; max-width: 16ch; }
.site-cta p { margin: 0 0 1.5rem; font-size: 1.15rem; max-width: 32rem; opacity: .92; }
.site-cta .site-btn { margin-right: .6rem; margin-top: .35rem; }
.site-cta .site-btn-ghost { color: #37683f !important; }
.site-cta .site-btn-ghost:hover { color: #fff !important; }

.site-footer {
    border-top: 1px solid #000;
    padding: 2.2rem 0 2.6rem;
    text-align: center;
}
.site-footer p, .site-footer a { font-size: .95rem; color: #1e1e1e; }
.site-footer .site-copyright { margin-top: 1.1rem; font-size: .85rem; color: #64748b; }
.site-footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; margin: 1rem 0 0; padding: 0; list-style: none; }
.site-footer-links li { padding: .2rem 1.5rem; border-right: 1px solid #000; }
.site-footer-links li:last-child { border-right: 0; }

.site-form input, .site-form select, .site-form textarea {
    width: 100%;
    border: 1px solid #cfd6d0;
    border-radius: 0;
    min-height: 3rem;
    padding: .6rem .8rem;
    font: inherit;
    background: #fff;
}
.site-alert { border-radius: 30px; padding: .9rem 1.2rem; font-size: .95rem; margin-bottom: 1rem; }
.site-alert-ok { background: #ebf0ec; color: #37683f; }
.site-alert-err { background: #fdecec; color: #9b1c1c; }

@media (max-width: 980px) {
    .site-grid-4, .site-grid-3, .site-pillars, .site-steps { grid-template-columns: 1fr 1fr; }
    .site-benefit { grid-template-columns: 1fr; gap: .4rem; }
    .site-menu-btn { display: block; }
    .site-nav {
        display: none;
        position: absolute;
        top: calc(100% + .5rem);
        left: 0; right: 0;
        background: #fff;
        border-radius: 24px;
        box-shadow: 0 10px 24px rgba(0,0,0,.12);
        padding: .75rem;
        flex-direction: column;
        align-items: stretch;
    }
    .site-header-bar { position: relative; }
    .site-nav.is-open { display: flex; }
    .site-nav a { font-size: 1.15rem; padding: .7rem .85rem; }
    .site-nav .site-btn { margin: .4rem .5rem .6rem; }
}
@media (max-width: 640px) {
    .site-grid-4, .site-grid-3, .site-grid-2, .site-pillars, .site-steps, .site-form-grid { grid-template-columns: 1fr; }
    .site-footer-links li { border-right: 0; padding: .35rem .8rem; }
    .site-hero-copy { padding-bottom: 4rem; }
}
