.public-body {
    --public-display: "Outfit", "Segoe UI", sans-serif;
    --public-body-font: "Source Sans 3", "Segoe UI", sans-serif;
    background:
        radial-gradient(1200px 600px at 10% -10%, rgba(33, 133, 167, 0.18), transparent 55%),
        radial-gradient(900px 500px at 90% 0%, rgba(18, 63, 96, 0.12), transparent 50%),
        linear-gradient(180deg, #eef4f7 0%, var(--brand-surface) 42%, #e8eef2 100%);
    color: var(--brand-ink);
    font-family: var(--public-body-font);
}

.public-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
    background: rgba(244, 247, 249, 0.86);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(220, 229, 234, 0.9);
}

.public-nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--brand-primary);
    font-family: var(--public-display);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.public-nav__brand .brand-wordmark {
    font-size: 1.05rem;
}

.public-nav__links {
    display: none;
    gap: 1.25rem;
    margin-left: auto;
}

.public-nav__links a {
    color: var(--brand-muted);
    font-weight: 500;
    text-decoration: none;
}

.public-nav__links a:hover,
.public-nav__links a.is-active {
    color: var(--brand-primary);
}

.public-nav__actions {
    margin-left: auto;
    display: flex;
    gap: 0.5rem;
}

@media (min-width: 860px) {
    .public-nav__links {
        display: flex;
    }
    .public-nav__actions {
        margin-left: 0;
    }
}

.public-hero {
    position: relative;
    min-height: min(92vh, 760px);
    display: grid;
    align-items: end;
    padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 2.5rem) clamp(2.5rem, 6vw, 4rem);
    color: #f4f9fb;
    overflow: hidden;
    isolation: isolate;
}

.public-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(115deg, rgba(10, 43, 67, 0.92) 0%, rgba(18, 63, 96, 0.78) 42%, rgba(33, 133, 167, 0.55) 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.07'%3E%3Cpath d='M0 80h160M80 0v160'/%3E%3C/g%3E%3C/svg%3E"),
        linear-gradient(160deg, #0a2b43, #2185a7);
    background-size: cover, 80px 80px, cover;
    animation: hero-shift 18s ease-in-out infinite alternate;
}

.public-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -20% 40%;
    z-index: -1;
    height: 70%;
    background: radial-gradient(closest-side, rgba(229, 243, 247, 0.22), transparent 70%);
    animation: hero-glow 8s ease-in-out infinite alternate;
}

@keyframes hero-shift {
    from { background-position: center, 0 0, center; }
    to { background-position: center, 40px 20px, center; }
}

@keyframes hero-glow {
    from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.7; }
    to { transform: translate3d(-4%, -6%, 0) scale(1.08); opacity: 1; }
}

.public-hero__brand {
    font-family: var(--public-display);
    font-size: clamp(2.6rem, 7vw, 4.6rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    margin: 0 0 1rem;
    opacity: 0;
    animation: rise-in 0.8s ease forwards 0.1s;
}

.public-hero__headline {
    max-width: 18ch;
    margin: 0 0 0.85rem;
    font-family: var(--public-display);
    font-size: clamp(1.35rem, 3.2vw, 2rem);
    font-weight: 600;
    line-height: 1.25;
    opacity: 0;
    animation: rise-in 0.8s ease forwards 0.25s;
}

.public-hero__lede {
    max-width: 36rem;
    margin: 0 0 1.75rem;
    font-size: 1.05rem;
    color: rgba(244, 249, 251, 0.88);
    opacity: 0;
    animation: rise-in 0.8s ease forwards 0.4s;
}

.public-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    opacity: 0;
    animation: rise-in 0.8s ease forwards 0.55s;
}

@keyframes rise-in {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn-public {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-public:hover {
    transform: translateY(-1px);
}

.btn-public--primary {
    background: #f4f9fb;
    color: var(--brand-primary-strong);
}

.btn-public--primary:hover {
    background: #fff;
    color: var(--brand-primary-strong);
}

.btn-public--ghost {
    border-color: rgba(244, 249, 251, 0.45);
    color: #f4f9fb;
}

.btn-public--ghost:hover {
    border-color: #f4f9fb;
    color: #fff;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    min-height: 2.4rem;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    border: 1px solid var(--brand-border);
    color: var(--brand-primary);
    font-weight: 600;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.7);
}

.btn-ghost:hover {
    border-color: var(--brand-accent);
    color: var(--brand-primary-strong);
}

.public-nav__actions .btn-ghost.is-active {
    border-color: var(--brand-accent);
    background: rgba(15, 90, 120, 0.08);
}

.public-nav__logout {
    display: inline;
    margin: 0;
}

.public-nav__logout .btn-ghost {
    cursor: pointer;
    font: inherit;
}

.partner-shell {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 1.75rem 0 3.5rem;
}

.partner-shell__header {
    margin-bottom: 1.25rem;
}

.partner-shell__title {
    margin: 0;
    font-family: var(--public-display);
    font-size: clamp(1.45rem, 3vw, 1.9rem);
    color: var(--brand-primary);
}

.public-section {
    padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2.5rem);
}

.public-section__head {
    max-width: 40rem;
    margin-bottom: 1.75rem;
}

.public-section__head h2 {
    margin: 0 0 0.5rem;
    font-family: var(--public-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--brand-primary);
}

.public-section__head p {
    margin: 0;
    color: var(--brand-muted);
}

.rollup-list {
    display: grid;
    gap: 1rem;
}

.rollup-item {
    padding: 1.15rem 1.25rem;
    border-left: 3px solid var(--brand-accent);
    background: rgba(255, 255, 255, 0.72);
    color: var(--brand-ink);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.rollup-item.is-visible {
    opacity: 1;
    transform: none;
}

.product-rail {
    display: grid;
    gap: 1rem;
}

@media (min-width: 720px) {
    .product-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1080px) {
    .product-rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.product-rail a {
    display: block;
    padding: 1.1rem 1.2rem;
    border-bottom: 1px solid var(--brand-border);
    color: inherit;
    text-decoration: none;
    transition: background 0.2s ease, padding-left 0.2s ease;
}

.product-rail a:hover {
    background: rgba(255, 255, 255, 0.65);
    padding-left: 1.45rem;
    color: var(--brand-primary);
}

.product-rail__code {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--brand-accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.public-page {
    padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 4vw, 2.5rem) clamp(3rem, 6vw, 5rem);
}

.public-page__title {
    margin: 0 0 0.75rem;
    font-family: var(--public-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--brand-primary);
}

.public-page__lede {
    margin: 0 0 2rem;
    max-width: 40rem;
    color: var(--brand-muted);
}

.cms-html {
    max-width: 48rem;
    line-height: 1.7;
}

.cms-html img {
    max-width: 100%;
    height: auto;
}

.cms-prose {
    color: var(--brand-ink, #1c2a33);
}

.cms-prose h2,
.cms-prose h3,
.cms-prose h4 {
    margin: 1.4rem 0 0.55rem;
    font-family: var(--public-display, Outfit, sans-serif);
    color: var(--brand-primary);
    font-weight: 650;
    line-height: 1.25;
}

.cms-prose h2 { font-size: 1.25rem; }
.cms-prose h3 { font-size: 1.08rem; }
.cms-prose h4 { font-size: 1rem; }

.cms-prose > :first-child {
    margin-top: 0;
}

.cms-prose p {
    margin: 0 0 0.85rem;
}

.cms-prose ul,
.cms-prose ol {
    margin: 0 0 1.1rem;
    padding-left: 1.2rem;
}

.cms-prose li {
    margin: 0.35rem 0;
}

.cms-prose li + li {
    margin-top: 0.45rem;
}

.cms-prose a {
    color: var(--brand-accent-strong, #0b6e8a);
    font-weight: 600;
}

.cms-prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.cms-prose td,
.cms-prose th {
    vertical-align: top;
    padding: 0.45rem 0.6rem;
    border-bottom: 1px solid var(--brand-border, #d7e2e8);
}

.price-hero {
    margin-bottom: 1.5rem;
}

.price-hero__title {
    margin: 0.2rem 0 0.35rem;
    font-family: var(--public-display, Outfit, sans-serif);
    font-size: clamp(1.45rem, 3vw, 1.9rem);
    color: var(--brand-primary);
}

.price-hero__meta {
    margin: 0;
    color: var(--brand-muted, #5b6b75);
}

.price-tabs {
    display: grid;
    gap: 1rem;
}

.price-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.35rem;
    border: 1px solid var(--brand-border, #d7e2e8);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
}

.price-tabs__tab {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--brand-primary);
    font: inherit;
    font-weight: 650;
    font-size: 0.92rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none;
}

.price-tabs__tab:hover,
.price-tabs__tab.is-active {
    background: var(--brand-primary);
    color: #fff;
}

.price-tabs__tab--link {
    display: inline-flex;
    align-items: center;
}

.price-tabs__panel[hidden] {
    display: none !important;
}

.price-panel__intro {
    margin-bottom: 0.85rem;
}

.price-panel__title {
    margin: 0 0 0.25rem;
    font-family: var(--public-display, Outfit, sans-serif);
    font-size: 1.15rem;
    color: var(--brand-primary);
}

.price-panel__meta {
    margin: 0;
    color: var(--brand-muted, #5b6b75);
    font-size: 0.92rem;
}

.price-product {
    display: grid;
    gap: 0.15rem;
}

.price-product__line2 {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--brand-muted, #5b6b75);
}

.price-setup {
    display: block;
    font-weight: 600;
}

.price-setup-flag {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.82rem;
    color: var(--brand-muted, #5b6b75);
}

.price-setup-flag.is-mandatory {
    color: #9b2c2c;
    font-weight: 650;
}

.price-footnote {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    background: rgba(15, 90, 120, 0.05);
    color: var(--brand-muted, #5b6b75);
    font-size: 0.9rem;
}

.price-footnote p,
.price-footnote ul {
    margin: 0 0 0.55rem;
}

.price-footnote ul {
    padding-left: 1.15rem;
}

.price-footnote li + li {
    margin-top: 0.35rem;
}

.price-custdev {
    margin-bottom: 1.25rem;
    padding: 1.1rem 1.2rem;
    border: 1px solid var(--brand-border, #d7e2e8);
    border-radius: 12px;
    background: linear-gradient(180deg, #fff, #f4f9fb);
}

.price-custdev__rate {
    margin: 0 0 0.75rem;
    font-family: var(--public-display, Outfit, sans-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-primary);
}

.price-custdev__rate span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--brand-muted, #5b6b75);
}

.price-terms {
    margin: 0 0 1.5rem;
    padding: 1.15rem 1.25rem;
    border: 1px solid var(--brand-border, #d7e2e8);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 249, 251, 0.9));
}

.price-terms--nested {
    margin: 0 0 1rem;
    padding: 0.85rem 1rem;
}

.price-panel {
    margin: 0 0 1.25rem;
    padding: 1rem 1.15rem 1.15rem;
    border: 1px solid var(--brand-border, #d7e2e8);
    border-radius: 12px;
    background: #fff;
}

.price-panel__head h3 {
    margin: 0 0 0.75rem;
    font-family: var(--public-display, Outfit, sans-serif);
    font-size: 1.05rem;
    color: var(--brand-primary);
}

.price-panel__note {
    margin: 0 0 0.75rem;
    color: var(--brand-muted, #5b6b75);
    font-size: 0.92rem;
}

.price-list {
    margin: 0;
    padding-left: 1.15rem;
}

.price-list .is-empty,
.price-table .is-empty {
    color: var(--brand-muted, #5b6b75);
}

.price-list .is-empty {
    list-style: none;
    margin-left: -1.15rem;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-tabs .table-responsive {
    overflow: visible;
}

.price-table th,
.price-table td {
    padding: 0.55rem 0.4rem;
    border-bottom: 1px solid var(--brand-border, #d7e2e8);
    text-align: left;
    vertical-align: top;
}

.price-table th {
    position: sticky;
    top: 0;
    z-index: 3;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand-muted, #5b6b75);
    text-align: center;
    vertical-align: middle;
    white-space: normal;
    background: #fff;
    box-shadow: 0 1px 0 var(--brand-border, #d7e2e8);
}

.price-table .text-end {
    text-align: right;
}

@media (max-width: 900px) {
    .price-tabs .table-responsive {
        overflow-x: auto;
    }

    .price-table th {
        position: static;
        box-shadow: none;
    }
}

.price-table a {
    color: var(--brand-primary);
    font-weight: 650;
    text-decoration: none;
}

.price-table a:hover {
    text-decoration: underline;
}

.price-split {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}

.prod-section .price-tabs {
    margin-top: 0.75rem;
}

.public-page--wide .cms-html {
    max-width: 60rem;
}

.cms-static table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.cms-static td,
.cms-static th {
    vertical-align: top;
    padding: 0.4rem 0.55rem;
}

.cms-static .cms-subhead,
.cms-static h2 {
    display: block;
    margin: 1.25rem 0 0.5rem;
    font-family: Outfit, sans-serif;
    font-size: 1.05rem;
    font-weight: 650;
}

.cms-static .howtobuy_steps {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin: 0.75rem 0;
}

.cms-static .howtobuy_steps_icons {
    flex: 0 0 auto;
}

.sitemap-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    margin-top: 1.5rem;
}

.sitemap-grid h2 {
    margin: 0 0 0.65rem;
    font-family: Outfit, sans-serif;
    font-size: 1rem;
}

.sitemap-grid section + section h2:first-child,
.sitemap-grid h2 + h2 {
    margin-top: 1.5rem;
}

.sitemap-grid ul {
    margin: 0 0 1.25rem;
    padding: 0;
    list-style: none;
}

.sitemap-grid li {
    margin: 0.35rem 0;
}

.sitemap-grid a {
    color: var(--brand-ink);
    text-decoration: none;
}

.sitemap-grid a:hover {
    color: var(--brand-accent);
    text-decoration: underline;
}

.project-list {
    display: grid;
    gap: 0;
}

.project-list a {
    display: grid;
    gap: 0.35rem;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--brand-border);
    color: inherit;
    text-decoration: none;
}

.project-list a:hover {
    color: var(--brand-primary);
}

.project-list__meta {
    color: var(--brand-muted);
    font-size: 0.9rem;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.filter-row a {
    padding: 0.35rem 0.85rem;
    border: 1px solid var(--brand-border);
    border-radius: 999px;
    color: var(--brand-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.filter-row a.is-active,
.filter-row a:hover {
    border-color: var(--brand-accent);
    color: var(--brand-primary);
    background: var(--brand-accent-soft);
}

.public-footer {
    margin-top: 2rem;
    padding: 2.5rem clamp(1rem, 4vw, 2.5rem);
    background: var(--brand-primary-strong);
    color: rgba(244, 249, 251, 0.85);
}

/* Version YYYY Releases */
.release-year {
    max-width: 52rem;
}

.release-year__lede {
    margin: 0 0 1.5rem;
    color: var(--brand-muted, #5a6a7d);
    font-size: 1.02rem;
    line-height: 1.5;
}

.release-year__section + .release-year__section {
    margin-top: 2.25rem;
}

.release-year__heading {
    margin: 0 0 0.85rem;
    padding-bottom: 0.45rem;
    border-bottom: 2px solid var(--brand-accent, #2185a7);
    font-family: var(--public-display, Outfit, sans-serif);
    font-size: 1.15rem;
    font-weight: 650;
    color: var(--brand-primary, #0f3d54);
}

.release-year__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.release-year__link {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.85rem 1rem;
    align-items: center;
    padding: 0.85rem 1rem;
    border: 1px solid var(--brand-border, #d7e2e8);
    background: linear-gradient(180deg, #fff, #f7fbfd);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.release-year__link:hover {
    border-color: var(--brand-accent, #2185a7);
    box-shadow: 0 6px 18px rgba(15, 61, 84, 0.08);
    transform: translateY(-1px);
}

.release-year__icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.release-year__icon--placeholder {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: var(--brand-accent-soft, #e5f3f7);
}

.release-year__name {
    display: block;
    font-weight: 650;
    color: var(--brand-primary, #0f3d54);
    line-height: 1.3;
}

.release-year__slogan {
    margin: 0.25rem 0 0;
    font-size: 0.92rem;
    color: var(--brand-accent-strong, #0b6e8a);
    line-height: 1.35;
}

.release-year__date {
    justify-self: end;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-muted, #5a6a7d);
}

@media (max-width: 640px) {
    .release-year__link {
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "icon body"
            "icon date";
    }

    .release-year__icon,
    .release-year__icon--placeholder { grid-area: icon; }
    .release-year__body { grid-area: body; }
    .release-year__date {
        grid-area: date;
        justify-self: start;
        margin-top: 0.15rem;
    }
}

.public-footer__brand {
    margin: 0 0 0.35rem;
    font-family: var(--public-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
}

.public-footer__copy {
    margin: 0 0 1.25rem;
}

.public-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.public-footer__links a {
    color: #e5f3f7;
}

.public-footer__legal {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.75;
}

/* Product detail hub */
.prod-hero {
    padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2.5rem) 2rem;
    background:
        linear-gradient(160deg, rgba(15, 61, 84, 0.92), rgba(33, 133, 167, 0.78)),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.14), transparent 40%);
    color: #f4f9fb;
}

.prod-hero__inner {
    width: min(100%, 70rem);
    margin: 0 auto;
}

.prod-hero .public-hero__brand {
    color: rgba(244, 249, 251, 0.78);
}

.prod-hero__title {
    margin: 0 0 0.75rem;
    max-width: 18ch;
    font-family: Outfit, sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.prod-hero__lede {
    margin: 0 0 1.5rem;
    max-width: 40rem;
    color: rgba(244, 249, 251, 0.86);
    font-size: 1.05rem;
    line-height: 1.55;
}

.prod-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.prod-tabs {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid var(--brand-border);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
}

.prod-tabs__inner {
    display: flex;
    gap: 0.25rem;
    width: min(100%, 70rem);
    margin: 0 auto;
    padding: 0.55rem clamp(1rem, 4vw, 2.5rem);
    overflow-x: auto;
}

.prod-tabs__link {
    flex: 0 0 auto;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    color: var(--brand-muted);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 650;
    white-space: nowrap;
}

.prod-tabs__link:hover,
.prod-tabs__link.is-active {
    background: var(--brand-focus);
    color: var(--brand-ink);
}

.prod-layout {
    display: grid;
    gap: 2rem;
    width: min(100%, 70rem);
    margin: 0 auto;
    padding: 2rem clamp(1rem, 4vw, 2.5rem) 3.5rem;
    grid-template-columns: minmax(0, 1fr) 16rem;
}

.prod-section {
    margin-bottom: 2.5rem;
    scroll-margin-top: 4.5rem;
}

.prod-section h2 {
    margin: 0 0 0.85rem;
    font-family: Outfit, sans-serif;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.prod-section__note {
    margin: 0 0 1rem;
    color: var(--brand-muted);
}

.prod-table {
    width: 100%;
    background: var(--brand-surface-raised);
}

.prod-release-list,
.cms-html .ticklist,
.cms-html .ul_arrow {
    margin: 0;
    padding-left: 1.2rem;
}

.prod-release-list li,
.cms-html .ticklist li,
.cms-html .ul_arrow li {
    margin: 0.45rem 0;
    line-height: 1.45;
}

.prod-file-list {
    margin: 0 0 1rem;
    padding: 0;
    list-style: none;
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--brand-surface-raised);
}

.prod-file-list li {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--brand-border);
}

.prod-file-list li:last-child {
    border-bottom: 0;
}

.prod-file-list span {
    display: block;
    margin-top: 0.2rem;
    color: var(--brand-muted);
    font-size: 0.78rem;
}

.prod-more {
    color: var(--brand-accent);
    font-weight: 650;
    text-decoration: none;
}

.prod-gate {
    display: grid;
    gap: 0.75rem;
    justify-items: start;
    padding: 1.25rem;
    border: 1px dashed var(--brand-border);
    border-radius: var(--radius-sm);
    background: var(--brand-surface);
}

.prod-gate p {
    margin: 0;
    color: var(--brand-muted);
}

.prod-aside {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.prod-aside__card {
    padding: 1.1rem 1.15rem;
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-sm);
    background: var(--brand-surface-raised);
}

.prod-aside__card h3 {
    margin: 0 0 0.65rem;
    font-size: 0.95rem;
}

.prod-aside__card p {
    margin: 0 0 0.5rem;
    color: var(--brand-muted);
    font-size: 0.86rem;
}

.prod-aside__links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.prod-aside__links a,
.prod-aside__card > a {
    color: var(--brand-accent);
    text-decoration: none;
    font-weight: 650;
    font-size: 0.9rem;
}

.prod-aside__links li + li {
    margin-top: 0.45rem;
}

@media (max-width: 900px) {
    .prod-layout {
        grid-template-columns: 1fr;
    }

    .prod-aside {
        order: -1;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
    }
}

/* Product detail hub */
.prod-hero {
    padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2.5rem) 2rem;
    background:
        linear-gradient(160deg, rgba(15, 61, 84, 0.92), rgba(33, 133, 167, 0.78)),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.14), transparent 40%);
    color: #f4f9fb;
}

.prod-hero__inner {
    width: min(100%, 70rem);
    margin: 0 auto;
}

.prod-hero .public-hero__brand {
    color: rgba(244, 249, 251, 0.78);
}

.prod-hero__title {
    margin: 0 0 0.75rem;
    max-width: 18ch;
    font-family: Outfit, sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.prod-hero__lede {
    margin: 0 0 1.5rem;
    max-width: 40rem;
    color: rgba(244, 249, 251, 0.86);
    font-size: 1.05rem;
    line-height: 1.55;
}

.prod-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.prod-tabs {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid var(--brand-border);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
}

.prod-tabs__inner {
    display: flex;
    gap: 0.25rem;
    width: min(100%, 70rem);
    margin: 0 auto;
    padding: 0.55rem clamp(1rem, 4vw, 2.5rem);
    overflow-x: auto;
}

.prod-tabs__link {
    flex: 0 0 auto;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    color: var(--brand-muted);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 650;
    white-space: nowrap;
}

.prod-tabs__link:hover,
.prod-tabs__link.is-active {
    background: var(--brand-focus);
    color: var(--brand-ink);
}

.prod-layout {
    display: grid;
    gap: 2rem;
    width: min(100%, 70rem);
    margin: 0 auto;
    padding: 2rem clamp(1rem, 4vw, 2.5rem) 3.5rem;
    grid-template-columns: minmax(0, 1fr) 16rem;
}

.prod-section {
    margin-bottom: 2.5rem;
    scroll-margin-top: 4.5rem;
}

.prod-section h2 {
    margin: 0 0 0.85rem;
    font-family: Outfit, sans-serif;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.prod-section__note {
    margin: 0 0 1rem;
    color: var(--brand-muted);
}

.prod-table {
    width: 100%;
    background: var(--brand-surface-raised);
}

.prod-release-list,
.cms-html .ticklist,
.cms-html .ul_arrow {
    margin: 0;
    padding-left: 1.2rem;
}

.prod-release-list li,
.cms-html .ticklist li,
.cms-html .ul_arrow li {
    margin: 0.45rem 0;
    line-height: 1.45;
}

.prod-file-list {
    margin: 0 0 1rem;
    padding: 0;
    list-style: none;
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--brand-surface-raised);
}

.prod-file-list li {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--brand-border);
}

.prod-file-list li:last-child {
    border-bottom: 0;
}

.prod-file-list span {
    display: block;
    margin-top: 0.2rem;
    color: var(--brand-muted);
    font-size: 0.78rem;
}

.prod-more {
    color: var(--brand-accent);
    font-weight: 650;
    text-decoration: none;
}

.prod-gate {
    display: grid;
    gap: 0.75rem;
    justify-items: start;
    padding: 1.25rem;
    border: 1px dashed var(--brand-border);
    border-radius: var(--radius-sm);
    background: var(--brand-surface);
}

.prod-gate p {
    margin: 0;
    color: var(--brand-muted);
}

.prod-aside {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.prod-aside__card {
    padding: 1.1rem 1.15rem;
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-sm);
    background: var(--brand-surface-raised);
}

.prod-aside__card h3 {
    margin: 0 0 0.65rem;
    font-size: 0.95rem;
}

.prod-aside__card p {
    margin: 0 0 0.5rem;
    color: var(--brand-muted);
    font-size: 0.86rem;
}

.prod-aside__links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.prod-aside__links a,
.prod-aside__card > a {
    color: var(--brand-accent);
    text-decoration: none;
    font-weight: 650;
    font-size: 0.9rem;
}

.prod-aside__links li + li {
    margin-top: 0.45rem;
}

@media (max-width: 900px) {
    .prod-layout {
        grid-template-columns: 1fr;
    }

    .prod-aside {
        order: -1;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
    }
}

.support-cta {
    margin: 0 0 2.5rem;
    max-width: 36rem;
}

.support-cta__note {
    margin: 0.85rem 0 0;
    color: var(--brand-muted);
    max-width: 28rem;
}

.support-checklist {
    margin: 0;
    max-width: 48rem;
}

.support-checklist > div {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(220, 229, 234, 0.95);
}

.support-checklist > div:first-child {
    border-top: 1px solid rgba(220, 229, 234, 0.95);
}

.support-checklist dt {
    margin: 0 0 0.35rem;
    font-family: var(--public-display);
    font-weight: 650;
    color: var(--brand-primary);
}

.support-checklist dd {
    margin: 0;
    color: var(--brand-muted);
    line-height: 1.55;
}
