@font-face {
    font-family: "Nunito Sans";
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    src: url("/assets/fonts/nunito-sans-latin.woff2") format("woff2");
}

:root {
    --ink: #102b28;
    --ink-soft: #36504c;
    --forest: #0d3b35;
    --forest-deep: #072d29;
    --forest-light: #176b60;
    --aqua: #83dedd;
    --aqua-strong: #45c5c4;
    --aqua-soft: #ecfbfa;
    --aqua-pale: #f6fdfc;
    --coral: #f16b56;
    --coral-dark: #d9503d;
    --yellow: #f7c948;
    --white: #ffffff;
    --paper: #ffffff;
    --off-white: #f7faf9;
    --line: #d7e7e3;
    --muted: #61736f;
    --shadow-sm: 0 8px 24px rgba(13, 59, 53, 0.08);
    --shadow-lg: 0 24px 70px rgba(13, 59, 53, 0.14);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Nunito Sans", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

a {
    color: inherit;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--ink);
    line-height: 1.16;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 300;
    padding: 10px 15px;
    border-radius: 6px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow-sm);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-container {
    width: min(1160px, calc(100% - 48px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 200;
    height: 84px;
    border-bottom: 1px solid rgba(13, 59, 53, 0.12);
    background: rgba(236, 251, 250, 0.84);
    backdrop-filter: blur(15px);
    transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header-solid {
    border-color: rgba(215, 231, 227, 0.92);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 6px 24px rgba(13, 59, 53, 0.07);
    backdrop-filter: blur(16px);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--forest);
    font-size: 1.22rem;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.brand img {
    flex: 0 0 auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 27px;
}

.site-nav > a:not(.btn) {
    position: relative;
    color: #274741;
    font-size: 0.92rem;
    font-weight: 750;
    text-decoration: none;
}

.site-nav > a:not(.btn)::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--coral);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 160ms ease;
}

.site-nav > a:not(.btn):hover::after,
.site-nav > a:not(.btn):focus-visible::after {
    transform: scaleX(1);
}

.nav-toggle {
    width: 44px;
    height: 44px;
    display: none;
    place-items: center;
    border: 1px solid rgba(13, 59, 53, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--forest);
    cursor: pointer;
}

.nav-toggle svg {
    width: 22px;
    height: 22px;
}

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 21px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 850;
    text-decoration: none;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.btn svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.btn-compact {
    min-height: 42px;
    padding: 0 17px;
    font-size: 0.86rem;
}

.btn-large {
    min-height: 56px;
    padding: 0 29px;
    font-size: 1rem;
}

.btn-primary {
    border-color: var(--forest);
    background: var(--forest);
    color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    border-color: var(--forest-light);
    background: var(--forest-light);
}

.btn-header {
    border-color: var(--forest);
    background: var(--forest);
    color: var(--white);
}

.btn-header:hover,
.btn-header:focus-visible {
    border-color: var(--coral);
    background: var(--coral);
}

.btn-hero-outline {
    border-color: rgba(13, 59, 53, 0.52);
    background: rgba(255, 255, 255, 0.68);
    color: var(--forest);
}

.btn-hero-outline:hover,
.btn-hero-outline:focus-visible {
    border-color: var(--forest);
    background: var(--white);
}

.btn-outline {
    border-color: rgba(13, 59, 53, 0.35);
    background: var(--white);
    color: var(--forest);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    border-color: var(--forest);
    background: var(--aqua-soft);
}

.btn-light {
    border-color: var(--white);
    background: var(--white);
    color: var(--forest);
}

.btn-light:hover,
.btn-light:focus-visible {
    border-color: var(--yellow);
    background: var(--yellow);
}

.btn-cta-outline {
    border-color: rgba(255, 255, 255, 0.72);
    background: transparent;
    color: var(--white);
}

.btn-cta-outline:hover,
.btn-cta-outline:focus-visible {
    border-color: var(--white);
    background: var(--white);
    color: var(--forest);
}

.hero {
    position: relative;
    min-height: min(730px, calc(100svh - 64px));
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 124px 0 104px;
    background: var(--aqua);
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-copy {
    width: 42%;
    max-width: 470px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 19px;
    padding: 8px 13px;
    border: 1px solid rgba(13, 59, 53, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    color: var(--forest);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-kicker svg {
    width: 17px;
    height: 17px;
}

.hero h1 {
    max-width: 470px;
    margin-bottom: 22px;
    color: var(--forest-deep);
    font-size: 3.3rem;
    font-weight: 900;
}

.hero-copy > p {
    max-width: 455px;
    margin-bottom: 30px;
    color: #244b46;
    font-size: 1.18rem;
    line-height: 1.62;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.hero-assurance {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 26px;
    margin-top: 27px;
    color: #234a45;
    font-size: 0.87rem;
    font-weight: 800;
}

.hero-assurance span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-assurance svg {
    width: 17px;
    height: 17px;
    color: var(--forest-light);
}

.section-curve {
    position: absolute;
    right: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 112px;
    pointer-events: none;
}

.section-curve-paper {
    bottom: -72px;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    background: var(--paper);
}

.section-curve-top {
    top: -70px;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.section-curve-aqua {
    background: var(--aqua-soft);
}

.section-curve-teal {
    background: var(--forest-light);
}

.trust-strip {
    position: relative;
    z-index: 4;
    padding: 35px 0 48px;
    background: var(--white);
}

.trust-inner {
    display: grid;
    grid-template-columns: 210px 1fr;
    align-items: center;
    gap: 40px;
}

.trust-inner > p {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.trust-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.trust-list span {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #4e625e;
    font-size: 0.87rem;
    font-weight: 800;
}

.trust-list svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    color: var(--forest-light);
}

.intro-band,
.capability-band,
.cta-band {
    position: relative;
}

.intro-band {
    padding: 128px 0 128px;
    background: var(--aqua-soft);
}

.section-heading {
    max-width: 720px;
}

.centered-heading {
    margin: 0 auto 55px;
    text-align: center;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--forest-light);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.eyebrow-light {
    color: #c9fffa;
}

.section-heading h2,
.story-copy h2,
.connection-copy h2,
.questions-heading h2,
.cta-inner h2 {
    margin-bottom: 18px;
    font-size: 2.85rem;
    font-weight: 900;
}

.section-heading p,
.story-copy > p,
.connection-copy > p,
.questions-heading p {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.72;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.feature-card {
    min-width: 0;
    min-height: 305px;
    padding: 42px 34px;
    border: 1px solid rgba(13, 59, 53, 0.08);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    margin: 0 auto 26px;
    border-radius: 8px;
}

.feature-icon svg {
    width: 35px;
    height: 35px;
}

.feature-icon-coral {
    background: #fff0ed;
    color: var(--coral-dark);
}

.feature-icon-aqua {
    background: #ddf8f6;
    color: var(--forest-light);
}

.feature-icon-yellow {
    background: #fff6d7;
    color: #9a6d00;
}

.feature-card h3 {
    margin-bottom: 14px;
    font-size: 1.45rem;
    font-weight: 900;
}

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

.story-section {
    padding: 124px 0;
    background: var(--white);
}

.story-section-tinted {
    background: var(--off-white);
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    align-items: center;
    gap: 80px;
}

.story-grid-reverse {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
}

.story-media {
    min-width: 0;
    aspect-ratio: 4 / 3;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-copy {
    min-width: 0;
}

.story-copy h2 {
    font-size: 2.65rem;
}

.check-list {
    display: grid;
    gap: 15px;
    margin: 27px 0 30px;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--ink-soft);
    font-weight: 750;
}

.check-list svg {
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
    margin-top: 3px;
    padding: 4px;
    border-radius: 50%;
    background: #daf5ef;
    color: var(--forest-light);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--forest-light);
    font-size: 0.94rem;
    font-weight: 900;
    text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
    color: var(--coral-dark);
}

.text-link svg {
    width: 17px;
    height: 17px;
}

.capability-band {
    padding: 140px 0 126px;
    background: var(--aqua-soft);
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.capability-card {
    min-width: 0;
    min-height: 235px;
    padding: 34px 30px;
    border: 1px solid rgba(13, 59, 53, 0.09);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 34px rgba(13, 59, 53, 0.06);
    transition: transform 180ms ease, border-color 180ms ease;
}

.capability-card:hover {
    border-color: rgba(13, 59, 53, 0.28);
    transform: translateY(-4px);
}

.capability-card > svg {
    width: 31px;
    height: 31px;
    margin-bottom: 24px;
    color: var(--coral);
}

.capability-card:nth-child(2n) > svg {
    color: var(--forest-light);
}

.capability-card:nth-child(3n) > svg {
    color: #a57700;
}

.capability-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 900;
}

.capability-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.audience-section {
    padding: 116px 0;
    background: var(--off-white);
}

.audience-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: start;
    gap: 84px;
}

.audience-heading {
    min-width: 0;
}

.audience-heading h2 {
    font-size: 2.65rem;
}

.audience-heading p {
    margin-bottom: 0;
}

.audience-list {
    min-width: 0;
    border-top: 1px solid var(--line);
}

.audience-item {
    min-width: 0;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: start;
    gap: 19px;
    padding: 23px 0;
    border-bottom: 1px solid var(--line);
}

.audience-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #dff7f4;
    color: var(--forest-light);
}

.audience-item:nth-child(2) .audience-icon {
    background: #fff0ec;
    color: var(--coral-dark);
}

.audience-item:nth-child(3) .audience-icon {
    background: #fff5d4;
    color: #8a6200;
}

.audience-item:nth-child(4) .audience-icon {
    background: #e6f3ff;
    color: #26668e;
}

.audience-icon svg {
    width: 23px;
    height: 23px;
}

.audience-item h3 {
    margin-bottom: 5px;
    font-size: 1.12rem;
    font-weight: 900;
}

.audience-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.connections-section {
    padding: 126px 0;
    background: var(--white);
}

.connection-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    align-items: center;
    gap: 78px;
}

.connection-copy,
.connection-console {
    min-width: 0;
}

.connection-copy h2 {
    font-size: 2.7rem;
}

.connection-points {
    display: grid;
    gap: 13px;
    margin-top: 28px;
}

.connection-points span {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--ink-soft);
    font-weight: 800;
}

.connection-points svg {
    width: 20px;
    height: 20px;
    color: var(--forest-light);
}

.connection-console {
    overflow: hidden;
    border: 1px solid #245b54;
    border-radius: 8px;
    background: var(--forest-deep);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.console-head {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 27px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 0.92rem;
    font-weight: 900;
}

.console-head svg {
    width: 19px;
    height: 19px;
    color: var(--aqua);
}

.connection-row {
    min-height: 100px;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) auto;
    align-items: center;
    gap: 17px;
    padding: 20px 27px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.connection-row > span:nth-child(2) {
    min-width: 0;
}

.connection-row strong,
.connection-row small {
    display: block;
}

.connection-row strong {
    color: var(--white);
    font-size: 0.98rem;
}

.connection-row small {
    margin-top: 3px;
    color: #b6d3cd;
    font-size: 0.79rem;
}

.platform-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 8px;
}

.platform-icon svg {
    width: 24px;
    height: 24px;
}

.platform-youtube {
    background: #ffe5e0;
    color: #d9422f;
}

.platform-instagram {
    background: #fff1d6;
    color: #a76400;
}

.status-chip {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 900;
    white-space: nowrap;
}

.status-beta {
    background: #d7f8f3;
    color: #0b534b;
}

.status-planned {
    background: #fff0c4;
    color: #725100;
}

.console-foot {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 21px 27px 24px;
    color: #c6ddd8;
    font-size: 0.8rem;
}

.console-foot svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--aqua);
}

.viewpoint-band {
    padding: 102px 0;
    background: var(--forest);
    color: var(--white);
}

.viewpoint-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
    gap: 90px;
}

.viewpoint-quote > svg {
    width: 44px;
    height: 44px;
    margin-bottom: 27px;
    color: var(--coral);
}

.viewpoint-quote h2 {
    margin-bottom: 22px;
    color: var(--white);
    font-size: 2.05rem;
    font-weight: 850;
    line-height: 1.4;
}

.viewpoint-quote span {
    color: #b9d8d2;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

.viewpoint-facts {
    display: grid;
}

.viewpoint-facts div {
    padding: 18px 0 18px 24px;
    border-left: 2px solid rgba(131, 222, 221, 0.42);
}

.viewpoint-facts strong,
.viewpoint-facts span {
    display: block;
}

.viewpoint-facts strong {
    margin-bottom: 4px;
    color: var(--white);
    font-size: 1.02rem;
}

.viewpoint-facts span {
    color: #b9d8d2;
    font-size: 0.87rem;
}

.questions-section {
    padding: 126px 0 148px;
    background: var(--off-white);
}

.questions-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 92px;
}

.questions-heading h2 {
    font-size: 2.65rem;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    color: var(--ink);
    font-size: 1.02rem;
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    color: var(--forest-light);
    transition: transform 170ms ease;
}

.faq-list details[open] summary svg {
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 680px;
    margin: -4px 42px 25px 0;
    color: var(--muted);
}

.cta-band {
    padding: 132px 0 92px;
    background: var(--forest-light);
    color: var(--white);
}

.cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 70px;
}

.cta-inner > div:first-child {
    max-width: 730px;
}

.cta-inner h2 {
    margin-bottom: 13px;
    color: var(--white);
    font-size: 2.65rem;
}

.cta-inner p {
    margin: 0;
    color: #d2f3ef;
    font-size: 1.05rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.site-footer {
    padding: 76px 0 0;
    background: var(--forest-deep);
    color: #c1d8d3;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.75fr 0.75fr 1fr;
    gap: 60px;
    padding-bottom: 64px;
}

.brand-footer {
    margin-bottom: 17px;
    color: var(--white);
}

.footer-brand p {
    max-width: 290px;
    margin: 0;
    color: #a9c7c1;
    font-size: 0.94rem;
}

.site-footer nav,
.footer-status {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.site-footer nav strong,
.footer-status > strong {
    margin-bottom: 6px;
    color: var(--white);
    font-size: 0.82rem;
    text-transform: uppercase;
}

.site-footer nav a {
    color: #b7d0cb;
    font-size: 0.9rem;
    text-decoration: none;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
    color: var(--white);
}

.footer-status p {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: #b7d0cb;
    font-size: 0.87rem;
}

.footer-status p span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 4px rgba(247, 201, 72, 0.12);
}

.text-link-light {
    color: var(--aqua);
}

.text-link-light:hover,
.text-link-light:focus-visible {
    color: var(--white);
}

.footer-bottom {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #8fb0a9;
    font-size: 0.82rem;
}

.footer-made {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #bfd8d3;
    font-weight: 800;
    text-align: center;
}

.footer-made svg {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    fill: var(--coral);
    color: var(--coral);
}

.legal-main {
    min-height: calc(100vh - 190px);
    padding: 148px 0 100px;
    background: var(--aqua-pale);
}

.legal-main + .site-footer {
    padding-top: 0;
}

.legal-wrap {
    max-width: 850px;
}

.legal-wrap h1 {
    margin-bottom: 10px;
    font-size: 3rem;
    font-weight: 900;
}

.legal-updated {
    margin-bottom: 34px;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 800;
}

.legal-wrap > p,
.legal-wrap li {
    color: var(--ink-soft);
}

.legal-wrap h2 {
    margin: 42px 0 13px;
    font-size: 1.45rem;
    font-weight: 900;
}

.legal-wrap ul {
    padding-left: 22px;
}

.utility-main {
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: 40px 20px;
    background: var(--aqua-soft);
}

.utility-panel {
    width: min(560px, 100%);
    padding: 48px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.utility-panel .brand {
    justify-content: center;
    margin-bottom: 32px;
}

.utility-icon {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    margin: 0 auto 25px;
    border-radius: 8px;
    background: #def7f5;
    color: var(--forest-light);
    font-size: 1.2rem;
    font-weight: 900;
}

.utility-icon svg {
    width: 34px;
    height: 34px;
}

.utility-panel h1 {
    margin-bottom: 14px;
    font-size: 2.05rem;
    font-weight: 900;
}

.utility-panel p {
    margin: 0 auto 29px;
    color: var(--muted);
}

.utility-panel .btn {
    margin: 0 auto;
}

.has-js [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.has-js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .site-nav {
        gap: 19px;
    }

    .hero h1 {
        font-size: 3.25rem;
    }

    .hero-media {
        object-position: 52% center;
        opacity: 0.36;
    }

    .hero-copy {
        width: 70%;
        max-width: 620px;
    }

    .feature-grid,
    .capability-grid {
        gap: 16px;
    }

    .feature-card {
        padding: 38px 25px;
    }

    .story-grid,
    .connection-grid {
        gap: 52px;
    }

    .audience-layout {
        gap: 56px;
    }

    .viewpoint-grid,
    .questions-grid {
        gap: 56px;
    }

    .footer-grid {
        gap: 35px;
    }
}

@media (max-width: 900px) {
    html {
        scroll-padding-top: 80px;
    }

    .site-header {
        height: 74px;
    }

    .nav-toggle {
        display: grid;
    }

    .site-nav {
        position: fixed;
        top: 82px;
        right: 18px;
        left: 18px;
        max-height: calc(100svh - 100px);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow-y: auto;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 160ms ease, transform 160ms ease;
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav > a:not(.btn) {
        padding: 13px 12px;
        border-bottom: 1px solid #edf3f1;
    }

    .site-nav > a:not(.btn)::after {
        display: none;
    }

    .site-nav .btn {
        margin-top: 10px;
    }

    .hero {
        min-height: min(760px, calc(100svh - 54px));
        padding: 108px 0 88px;
    }

    .hero-media {
        object-position: 44% center;
        opacity: 0.3;
    }

    .hero-copy {
        width: 78%;
        max-width: 620px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .trust-inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .trust-inner > p {
        text-align: center;
    }

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

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

    .feature-card:last-child {
        grid-column: 1 / -1;
        min-height: auto;
    }

    .story-grid,
    .story-grid-reverse,
    .audience-layout,
    .connection-grid,
    .viewpoint-grid,
    .questions-grid,
    .cta-inner {
        grid-template-columns: 1fr;
    }

    .story-grid,
    .story-grid-reverse {
        gap: 48px;
    }

    .story-copy {
        max-width: 700px;
    }

    .audience-heading {
        max-width: 700px;
    }

    .audience-layout {
        gap: 42px;
    }

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

    .connection-grid,
    .viewpoint-grid,
    .questions-grid {
        gap: 50px;
    }

    .connection-copy {
        max-width: 700px;
    }

    .cta-inner {
        gap: 34px;
    }

    .cta-actions {
        justify-content: flex-start;
    }

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

@media (max-width: 640px) {
    .site-container {
        width: min(100% - 32px, 1160px);
    }

    .brand {
        font-size: 1.1rem;
    }

    .brand img {
        width: 40px;
        height: 40px;
    }

    .hero {
        min-height: min(760px, calc(100svh - 52px));
        align-items: center;
        padding: 104px 0 86px;
    }

    .hero-media {
        object-position: 61% center;
        opacity: 0.22;
    }

    .hero-copy {
        width: 100%;
    }

    .hero-kicker {
        max-width: 100%;
        font-size: 0.7rem;
    }

    .hero h1 {
        max-width: 520px;
        font-size: 2.55rem;
    }

    .hero-copy > p {
        font-size: 1.02rem;
    }

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

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

    .hero-assurance {
        display: grid;
        gap: 10px;
    }

    .section-curve {
        height: 92px;
    }

    .trust-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .trust-list span {
        justify-content: center;
    }

    .intro-band,
    .capability-band,
    .audience-section {
        padding-top: 112px;
        padding-bottom: 90px;
    }

    .centered-heading {
        margin-bottom: 38px;
    }

    .section-heading h2,
    .story-copy h2,
    .connection-copy h2,
    .questions-heading h2,
    .cta-inner h2 {
        font-size: 2.2rem;
    }

    .section-heading p,
    .story-copy > p,
    .connection-copy > p,
    .questions-heading p {
        font-size: 1rem;
    }

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

    .feature-card:last-child {
        grid-column: auto;
    }

    .feature-card {
        min-height: auto;
        padding: 34px 26px;
    }

    .story-section,
    .connections-section,
    .questions-section {
        padding: 90px 0;
    }

    .story-grid,
    .story-grid-reverse {
        gap: 38px;
    }

    .story-media {
        aspect-ratio: 4 / 3;
    }

    .capability-card {
        min-height: auto;
    }

    .connection-console {
        overflow: visible;
    }

    .connection-row {
        grid-template-columns: 48px minmax(0, 1fr);
        padding: 20px;
    }

    .connection-row .status-chip {
        grid-column: 2;
        justify-self: start;
    }

    .console-head,
    .console-foot {
        padding-right: 20px;
        padding-left: 20px;
    }

    .viewpoint-band {
        padding: 80px 0;
    }

    .viewpoint-quote h2 {
        font-size: 1.65rem;
    }

    .faq-list summary {
        min-height: 86px;
        font-size: 0.96rem;
    }

    .cta-band {
        padding: 112px 0 78px;
    }

    .cta-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 37px;
    }

    .footer-bottom {
        min-height: 96px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 4px;
    }

    .footer-made {
        justify-content: flex-start;
        text-align: left;
    }

    .legal-main {
        padding: 126px 0 80px;
    }

    .legal-wrap h1 {
        font-size: 2.4rem;
    }

    .utility-panel {
        padding: 38px 24px;
    }

    .utility-panel h1 {
        font-size: 1.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .has-js [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
