html {
    scroll-behavior: smooth;
}

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

body {
    margin: 0;
    font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
    color: var(--color-text);
    background: var(--color-surface);
    line-height: 1.6;
    padding-top: var(--header-height);
}

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

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

svg {
    display: block;
}

main {
    min-height: 60vh;
}

.section-shell {
    width: min(1200px, calc(100vw - 3rem));
    margin: 0 auto;
}

.section-shell--narrow {
    width: min(840px, calc(100vw - 3rem));
}

.section-shell--split {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr);
}

.section-block {
    padding: 4.5rem 0;
}

.section-block--alt {
    background: var(--color-surface-alt);
}

.section-heading {
    margin-bottom: 1.75rem;
}

.section-heading--center {
    text-align: center;
    max-width: 820px;
    margin-inline: auto;
    margin-bottom: 2.5rem;
}

.section-heading h2,
.content-section h2,
.simple-hero__title,
.home-hero__title,
.site-footer__heading,
.story-card__title,
.story-row h2,
.story-row h3,
.glossary-card h3,
.directory-card h2 {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-heading h2,
.content-section h2 {
    margin: 0 0 0.85rem;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    color: var(--color-ink);
}

.section-heading p,
.simple-hero__lead,
.content-section p,
.site-footer__summary {
    color: var(--color-text-muted);
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.section-eyebrow::before {
    content: "";
    width: 1.9rem;
    height: 1px;
    background: currentColor;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.4rem;
    padding: 0 1.4rem;
    border: 1px solid transparent;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.button--primary {
    color: #fff;
    background: linear-gradient(135deg, #1e7cff, #275fff);
    box-shadow: 0 18px 40px rgba(30, 124, 255, 0.25);
}

.button--secondary {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
    background: rgba(255, 255, 255, 0.02);
}

.button--block {
    width: 100%;
}

.inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--color-accent);
}

.inline-link::after {
    content: "\2192";
}

.breadcrumbs {
    background: #071221;
    padding: 0.85rem 0;
}

.breadcrumbs__list {
    width: min(1200px, calc(100vw - 3rem));
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
}

.breadcrumbs__item.is-current {
    color: rgba(255, 255, 255, 0.92);
}

.breadcrumbs__item a:hover,
.breadcrumbs__item a:focus-visible {
    color: #fff;
}

.breadcrumbs__item:not(.is-current)::after {
    content: "\203A";
    margin-left: 0.55rem;
    color: rgba(255, 255, 255, 0.35);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    overflow: visible;
    isolation: isolate;
    backdrop-filter: blur(18px);
    background: rgba(4, 12, 24, 0.92);
}

.site-header__inner {
    width: min(1320px, calc(100vw - 2rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 1.5rem;
    align-items: center;
    min-height: 5.3rem;
    position: relative;
    z-index: 2;
}

.site-logo {
    display: inline-flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
    color: #fff;
}

.site-logo__wordmark {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 0.3rem;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.site-logo__prefix,
.site-logo__accent,
.site-logo__suffix {
    font-size: clamp(1.4rem, 2vw, 2.1rem);
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    white-space: nowrap;
}

.site-logo__accent {
    color: #2d86ff;
}

.site-logo__tagline {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.82);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-search {
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.02);
}

.site-search__icon {
    width: 1rem;
    height: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    border: 0;
    background: transparent;
    color: #fff;
    font: inherit;
    cursor: pointer;
    padding: 0;
}

.nav-toggle__lines {
    display: inline-flex;
    flex-direction: column;
    gap: 0.3rem;
}

.nav-toggle__lines span {
    width: 1.7rem;
    height: 2px;
    background: currentColor;
}

.nav-toggle__label {
    font-size: 0.64rem;
    letter-spacing: 0.18em;
}

.site-nav {
    justify-self: end;
}

.site-nav__list,
.nav-dropdown__list,
.site-footer__links,
.content-list,
.link-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.site-nav__item {
    position: relative;
    padding: 1.2rem 0;
}

.site-nav__link {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    font-size: 0.97rem;
    transition: color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__item.is-active > .site-nav__link {
    color: #fff;
}

.site-nav__chevron {
    display: inline-block;
    width: 0.45rem;
    height: 0.45rem;
    margin-left: 0.45rem;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0.75rem);
    width: max-content;
    min-width: 17rem;
    max-width: min(28rem, calc(100vw - 2rem));
    padding: 1rem 1.1rem;
    background: rgba(8, 18, 34, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 48px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.site-nav__item.is-open > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-dropdown__list {
    display: grid;
    gap: 0.7rem;
}

.nav-dropdown__link {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-dropdown__link:hover,
.nav-dropdown__link:focus-visible {
    color: #fff;
}

.home-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 18%, rgba(31, 126, 255, 0.22), transparent 33%),
        linear-gradient(135deg, #04101f 0%, #07182d 43%, #0a2240 100%);
    color: #fff;
}

.home-hero__backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 12, 24, 0.92) 0%, rgba(4, 12, 24, 0.6) 44%, rgba(4, 12, 24, 0.22) 100%),
        radial-gradient(circle at 75% 32%, rgba(57, 135, 255, 0.2), transparent 32%);
}

.home-hero__inner {
    position: relative;
    z-index: 1;
    width: min(1320px, calc(100vw - 2rem));
    margin: 0 auto;
    padding: 3rem 0 2.6rem;
    display: grid;
    align-items: center;
    gap: 2rem;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.home-hero__title {
    margin: 0 0 1.3rem;
    font-size: clamp(2.6rem, 4.2vw, 3.6rem);
    max-width: 26ch;
}

.home-hero__title span {
    display: block;
}

.home-hero__title-accent {
    color: #4f9dff;
}

.home-hero__lead {
    max-width: 34rem;
    margin: 0 0 1.8rem;
    font-size: clamp(1.05rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.88);
}

.trust-points {
    margin-top: 2.5rem;
    display: grid;
    gap: 1.15rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-point {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.trust-point__svg,
.feature-list__icon,
.value-strip__icon {
    width: 2rem;
    height: 2rem;
    color: #2d86ff;
    flex: 0 0 auto;
}

.trust-point__title {
    margin: 0 0 0.25rem;
    font-size: 1rem;
}

.trust-point__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.home-hero__visual {
    position: relative;
    min-height: 36rem;
}

.hero-scene {
    position: absolute;
    inset: 0;
    border-radius: 1.75rem;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(11, 34, 58, 0.78), rgba(4, 12, 24, 0.98)),
        radial-gradient(circle at 68% 24%, rgba(46, 135, 255, 0.35), transparent 32%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero-scene__server {
    position: absolute;
    top: 6%;
    bottom: 0;
    width: 14%;
    background:
        repeating-linear-gradient(
            180deg,
            rgba(16, 69, 118, 0.18),
            rgba(16, 69, 118, 0.18) 16px,
            rgba(7, 19, 34, 0.02) 16px,
            rgba(7, 19, 34, 0.02) 28px
        );
    border-left: 1px solid rgba(255, 255, 255, 0.04);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-scene__server--one {
    left: 10%;
}

.hero-scene__server--two {
    left: 30%;
}

.hero-scene__desk {
    position: absolute;
    bottom: 16%;
    right: 6%;
    width: 48%;
    height: 7%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(17, 34, 55, 0.2), rgba(8, 20, 36, 0.7));
}

.hero-scene__figure {
    position: absolute;
    right: 25%;
    bottom: 14%;
    width: 24%;
    height: 56%;
    border-radius: 38% 38% 20% 20% / 30% 30% 22% 22%;
    background:
        radial-gradient(circle at 56% 16%, rgba(255, 255, 255, 0.28), transparent 22%),
        linear-gradient(180deg, rgba(44, 76, 112, 0.85), rgba(9, 22, 37, 0.98));
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.hero-scene__monitor {
    position: absolute;
    top: 28%;
    width: 28%;
    height: 23%;
    border-radius: 1rem;
    background:
        linear-gradient(180deg, rgba(4, 12, 24, 0.95), rgba(10, 24, 42, 0.95)),
        radial-gradient(circle at 20% 20%, rgba(39, 95, 255, 0.35), transparent 32%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 22px 38px rgba(0, 0, 0, 0.3);
}

.hero-scene__monitor::before {
    content: "";
    position: absolute;
    inset: 12% 10%;
    background:
        repeating-linear-gradient(
            180deg,
            rgba(57, 214, 181, 0.85),
            rgba(57, 214, 181, 0.85) 2px,
            transparent 2px,
            transparent 12px
        );
    opacity: 0.85;
}

.hero-scene__monitor--left {
    right: 31%;
}

.hero-scene__monitor--right {
    right: 2%;
    width: 34%;
    height: 26%;
}

.hero-card {
    position: absolute;
    right: 1.4rem;
    bottom: 2.4rem;
    width: min(26rem, 76%);
    padding: 1.6rem;
    background: rgba(255, 255, 255, 0.96);
    color: var(--color-ink);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.32);
}

.hero-card__title {
    margin: 0 0 1rem;
    font-size: 1.6rem;
}

.hero-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.9rem;
}

.hero-card__list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.hero-card__icon {
    width: 1.1rem;
    height: 1.1rem;
    color: var(--color-accent);
}

.category-band {
    padding: 4rem 0;
    background: linear-gradient(180deg, #fff 0%, #f4f7fb 100%);
}

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

.category-grid--full {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-grid__card,
.category-detail-card,
.library-section-card,
.directory-card,
.glossary-card,
.partner-profile-card,
.story-card,
.story-row,
.article-callout {
    background: #fff;
    box-shadow: 0 16px 34px rgba(14, 32, 52, 0.08);
}

.article-callout {
    padding: 1.25rem;
}

.category-grid__card {
    display: grid;
    gap: 0.8rem;
    place-items: center;
    min-height: 12.2rem;
    padding: 1.3rem;
    text-align: center;
    color: var(--color-ink);
}

.category-grid__svg,
.category-detail-card__svg {
    width: 2.8rem;
    height: 2.8rem;
    color: var(--color-accent);
}

.category-grid__label {
    font-weight: 600;
    line-height: 1.4;
}

.content-split {
    padding: 4.4rem 0;
    background: linear-gradient(180deg, #f7f9fc 0%, #eef3fb 100%);
}

.content-split__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
}

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

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

.story-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.story-card__image,
.story-row__image {
    position: relative;
    display: block;
    min-height: 13rem;
    background:
        radial-gradient(circle at 24% 24%, rgba(67, 169, 255, 0.55), transparent 26%),
        linear-gradient(135deg, #071a31, #0f3256 54%, #05111d);
}

.story-card__image::before,
.story-row__image::before {
    content: "";
    position: absolute;
    inset: 16%;
    border-radius: 1rem;
    background: repeating-linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.12) 2px,
        transparent 2px,
        transparent 11px
    );
}

.story-card__body {
    padding: 1.2rem 1.2rem 1.35rem;
}

.story-card__meta,
.story-row__meta,
.article-meta {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-accent);
}

.story-card__title {
    margin: 0.5rem 0 0.8rem;
    font-size: 1.45rem;
    color: var(--color-ink);
}

.story-card__excerpt,
.story-row p,
.directory-card p,
.glossary-card p,
.partner-profile-card p {
    margin: 0 0 0.9rem;
    color: var(--color-text-muted);
}

.story-card__link {
    color: var(--color-accent);
    font-weight: 600;
}

.partner-panel {
    padding: 1.2rem 0 0;
}

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

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 5.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 28px rgba(14, 32, 52, 0.08);
    font-size: 1.6rem;
    font-weight: 700;
    color: #133d76;
    text-align: center;
}

.library-preview,
.page-sections {
    padding: 4.5rem 0;
}

.library-preview__grid,
.library-sections {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

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

.feature-list__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem 1.25rem;
    background: #fff;
    box-shadow: 0 14px 32px rgba(14, 32, 52, 0.08);
}

.feature-list__item h3,
.value-strip__item h2 {
    margin: 0 0 0.4rem;
    font-size: 1.1rem;
}

.feature-list__item p,
.value-strip__item p {
    margin: 0;
    color: var(--color-text-muted);
}

.faq-preview__stack,
.faq-stack {
    display: grid;
    gap: 0.9rem;
}

.faq-preview__item,
.faq-item {
    background: #fff;
    box-shadow: 0 12px 28px rgba(14, 32, 52, 0.08);
}

.faq-preview__item summary,
.faq-item summary {
    cursor: pointer;
    padding: 1.2rem 1.25rem;
    font-weight: 600;
    list-style: none;
}

.faq-preview__item summary::-webkit-details-marker,
.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-preview__answer,
.faq-item__body p {
    margin: 0;
}

.faq-preview__item div,
.faq-item__body {
    padding: 0 1.25rem 1.25rem;
    color: var(--color-text-muted);
}

.value-strip {
    padding: 2rem 0;
    background: linear-gradient(180deg, #061427 0%, #08192e 100%);
}

.value-strip__grid {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-strip__item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 1.25rem 1.35rem;
    color: #fff;
}

.simple-hero {
    padding: 3.7rem 0 2.8rem;
    background:
        radial-gradient(circle at 80% 20%, rgba(31, 126, 255, 0.12), transparent 28%),
        linear-gradient(180deg, #f7f9fc 0%, #eef3fb 100%);
}

.simple-hero--dark {
    background:
        radial-gradient(circle at 18% 10%, rgba(31, 126, 255, 0.22), transparent 28%),
        linear-gradient(135deg, #071221 0%, #0b213d 100%);
    color: #fff;
}

.simple-hero__inner {
    width: min(1100px, calc(100vw - 3rem));
    margin: 0 auto;
}

.simple-hero__title {
    margin: 0 0 1rem;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    color: inherit;
}

.simple-hero__lead {
    max-width: 46rem;
    margin: 0;
    font-size: 1.08rem;
}

.simple-hero--dark .simple-hero__lead {
    color: rgba(255, 255, 255, 0.78);
}

.content-section + .content-section {
    margin-top: 2.6rem;
}

.content-list {
    display: grid;
    gap: 0.8rem;
    color: var(--color-text-muted);
}

.content-list li {
    position: relative;
    padding-left: 1.2rem;
}

.content-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: var(--color-accent);
}

.story-list {
    display: grid;
    gap: 1rem;
}

.story-row {
    display: grid;
    gap: 1rem;
    grid-template-columns: 15rem minmax(0, 1fr);
    overflow: hidden;
}

.story-row__body {
    padding: 1.2rem 1.25rem 1.3rem 0;
}

.story-row h2,
.story-row h3 {
    margin: 0.5rem 0 0.7rem;
    font-size: 1.7rem;
    color: var(--color-ink);
}

.story-row--compact {
    grid-template-columns: minmax(0, 1fr);
}

.story-row--compact .story-row__body {
    padding-left: 1.25rem;
}

.story-row__tags,
.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.chip-list__item {
    display: inline-flex;
    align-items: center;
    min-height: 2.3rem;
    padding: 0 0.85rem;
    background: rgba(45, 134, 255, 0.08);
    color: #135fd0;
    font-size: 0.92rem;
    font-weight: 600;
}

.chip-list__item--static {
    color: var(--color-ink);
}

.category-detail-card,
.library-section-card,
.directory-card,
.glossary-card,
.partner-profile-card {
    padding: 1.35rem;
}

.directory-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 1.9rem;
    padding: 0 0.7rem;
    margin-bottom: 0.7rem;
    background: rgba(45, 134, 255, 0.1);
    color: var(--color-accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.category-detail-card h2,
.library-section-card h2,
.directory-card h2,
.glossary-group h2,
.partner-profile-card h3 {
    margin: 0 0 0.7rem;
    font-size: 1.45rem;
    color: var(--color-ink);
}

.category-detail-card__icon {
    display: inline-flex;
    margin-bottom: 0.85rem;
}

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

.link-list {
    display: grid;
    gap: 0.75rem;
}

.link-list a {
    color: var(--color-ink);
    font-weight: 600;
}

.glossary-group + .glossary-group {
    margin-top: 2.4rem;
}

.alpha-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.alpha-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    background: #fff;
    box-shadow: 0 10px 24px rgba(14, 32, 52, 0.08);
    color: var(--color-ink);
    font-weight: 700;
}

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

.glossary-card h3 {
    margin: 0 0 0.5rem;
}

.article-page .article-callout {
    margin-bottom: 2rem;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.faq-preview__stack--compact {
    margin-top: 1.5rem;
}

.site-footer {
    background: #07111f;
    color: rgba(255, 255, 255, 0.84);
}

.site-footer__inner {
    width: min(1320px, calc(100vw - 2rem));
    margin: 0 auto;
    padding: 3.2rem 0 1.6rem;
}

.site-footer__brand {
    max-width: 34rem;
    margin-bottom: 2rem;
}

.site-footer__name {
    margin-bottom: 0.6rem;
    color: #fff;
}

.site-footer__wordmark {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 0.3rem;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.site-footer__prefix,
.site-footer__accent,
.site-footer__suffix {
    font-size: clamp(1.15rem, 2.4vw, 1.95rem);
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    white-space: nowrap;
}

.site-footer__accent {
    color: #2d86ff;
}

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

.site-footer__heading {
    margin: 0 0 0.9rem;
    font-size: 1.1rem;
    color: #fff;
}

.site-footer__links {
    display: grid;
    gap: 0.65rem;
}

.site-footer__links a {
    color: rgba(255, 255, 255, 0.78);
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
    color: #fff;
}

.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.92rem;
}

.site-footer__legal {
    margin: 0.85rem 0 0;
    font-size: 0.78rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
}

.site-footer__legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
    color: #fff;
}

@media (max-width: 1180px) {
    .home-hero__inner,
    .content-split__grid,
    .library-preview__grid,
    .section-shell--split,
    .trust-points,
    .card-grid,
    .value-strip__grid,
    .site-footer__grid,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-hero__visual {
        min-height: 30rem;
    }

    .story-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 979px) {
    .site-header {
        z-index: 1200;
        backdrop-filter: none;
        padding-bottom: 0;
    }

    .site-header__inner {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: start;
        min-height: 0;
        padding: 0.9rem 0 0.8rem;
    }

    .site-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        max-width: 100vw;
        min-height: calc(100dvh - var(--header-height));
        padding: 1rem 1rem calc(2rem + env(safe-area-inset-bottom));
        background: rgba(5, 13, 25, 0.98);
        z-index: 1;
        justify-self: auto;
        align-self: stretch;
        transform: translateY(0.75rem);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        overflow-y: auto;
        overflow-x: hidden;
    }

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

    .site-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: min(28rem, calc(100vw - 2rem));
    }

    .site-nav__item {
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-nav__link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
        font-size: 1.15rem;
    }

    .nav-dropdown {
        position: static;
        transform: none;
        width: auto;
        min-width: 0;
        max-width: none;
        margin: -0.15rem 0 0.7rem;
        padding: 0.1rem 0 0.2rem;
        background: transparent;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: block;
        left: auto;
        top: auto;
    }

    .site-nav__item--has-children .nav-dropdown {
        display: block;
    }

    .site-nav__chevron {
        display: none;
    }

    .nav-dropdown__list {
        gap: 0.15rem;
        padding-left: 1rem;
    }

    .nav-dropdown__link {
        display: block;
        padding: 0.45rem 0;
        font-size: 0.98rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.76);
        white-space: normal;
    }

    .nav-dropdown__link:hover,
    .nav-dropdown__link:focus-visible {
        color: #fff;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-header__actions {
        position: relative;
        z-index: 3;
        align-self: start;
        padding-top: 0.35rem;
    }

    .home-hero__inner,
    .content-split__grid,
    .library-preview__grid,
    .section-shell--split,
    .card-grid,
    .card-grid--two,
    .partner-panel__logos,
    .category-grid,
    .category-grid--full,
    .library-sections,
    .glossary-grid,
    .site-footer__grid,
    .value-strip__grid {
        grid-template-columns: 1fr;
    }

    .home-hero__visual {
        min-height: 26rem;
    }

    .story-row {
        grid-template-columns: 1fr;
    }

    .story-row__body {
        padding: 0 1.25rem 1.3rem;
    }

    body.nav-open {
        overflow: hidden;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 17px;
    }

    .site-header__inner {
        gap: 0.85rem;
    }

    .site-logo {
        max-width: calc(100vw - 9.5rem);
        gap: 0.35rem;
    }

    .site-logo__wordmark {
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    .site-logo__prefix,
    .site-logo__accent,
    .site-logo__suffix {
        font-size: clamp(1.15rem, 5.8vw, 1.5rem);
        line-height: 0.95;
    }

    .site-logo__tagline {
        max-width: 11.75rem;
        font-size: 0.68rem;
        line-height: 1.35;
    }

    .site-search {
        width: 2.8rem;
        height: 2.8rem;
    }

    .nav-toggle__lines span {
        width: 1.55rem;
    }

    .home-hero__inner {
        padding-top: 2.2rem;
    }

    .trust-points {
        grid-template-columns: 1fr;
    }

    .hero-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 1rem;
    }

    .site-footer__grid {
        gap: 1.7rem;
    }

    .site-footer__column,
    .site-footer__brand,
    .site-footer__bottom {
        font-size: 1.7rem;
        line-height: 1.4;
    }

    .site-footer__heading,
    .site-footer__name {
        font-size: 2rem;
    }

    .site-footer__links a,
    .site-footer__summary,
    .site-footer__bottom {
        font-size: 1.6rem;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 420px) {
    .site-logo {
        max-width: calc(100vw - 8.85rem);
    }

    .site-logo__prefix,
    .site-logo__accent,
    .site-logo__suffix {
        font-size: 1.06rem;
    }

    .site-logo__tagline {
        font-size: 0.63rem;
    }

    .site-header__actions {
        gap: 0.75rem;
    }

    .site-search {
        width: 2.55rem;
        height: 2.55rem;
    }
}

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

.timeline-jump-list__item {
    display: block;
    padding: 1rem 1.15rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(15, 35, 64, 0.12);
    background: #fff;
    color: var(--color-ink);
    font-weight: 600;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.timeline-jump-list__item:hover,
.timeline-jump-list__item:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(30, 124, 255, 0.35);
    box-shadow: 0 16px 34px rgba(15, 35, 64, 0.08);
}

.timeline-stack {
    position: relative;
    display: grid;
    gap: 1.8rem;
}

.timeline-stack::before {
    content: "";
    position: absolute;
    left: 1.1rem;
    top: 0.2rem;
    bottom: 0.2rem;
    width: 2px;
    background: linear-gradient(180deg, rgba(30, 124, 255, 0.3), rgba(15, 35, 64, 0.08));
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 2.2rem minmax(0, 1fr);
    gap: 1.3rem;
    scroll-margin-top: calc(var(--header-height) + 2rem);
}

#buyers-questions {
    scroll-margin-top: calc(var(--header-height) + 2rem);
}

.timeline-item__rail {
    position: relative;
}

.timeline-item__dot {
    position: absolute;
    top: 0.4rem;
    left: 0.42rem;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    background: #fff;
    border: 3px solid var(--color-accent);
    box-shadow: 0 0 0 6px rgba(30, 124, 255, 0.12);
}

.timeline-item__content {
    padding: 1.45rem 1.5rem 1.55rem;
    border-radius: 1.35rem;
    background: #fff;
    border: 1px solid rgba(15, 35, 64, 0.08);
    box-shadow: 0 22px 50px rgba(15, 35, 64, 0.06);
}

.timeline-item__date {
    margin-bottom: 0.45rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.timeline-item__content h2 {
    margin-bottom: 0.7rem;
}

.timeline-item__links {
    margin-top: 1rem;
}

.timeline-resource-card {
    height: 100%;
}

@media (max-width: 900px) {
    .timeline-jump-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .timeline-jump-list {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 1.6rem minmax(0, 1fr);
        gap: 0.95rem;
    }

    .timeline-stack::before {
        left: 0.8rem;
    }

    .timeline-item__dot {
        left: 0.2rem;
        width: 1.15rem;
        height: 1.15rem;
        box-shadow: 0 0 0 4px rgba(30, 124, 255, 0.12);
    }

    .timeline-item__content {
        padding: 1.15rem 1.1rem 1.2rem;
    }
}
