@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("../fonts/fa-solid-900.ttf") format("truetype");
}

@font-face {
    font-family: "Font Awesome 6 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/fa-brands-400.ttf") format("truetype");
}

.fas,
.fa-solid {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    line-height: 1;
}

.fab,
.fa-brands {
    font-family: "Font Awesome 6 Brands";
    font-style: normal;
    font-weight: 400;
    line-height: 1;
}

.fa-up-right-from-square::before { content: "\f35d"; }
.fa-building::before { content: "\f1ad"; }
.fa-shield-halved::before { content: "\f3ed"; }
.fa-database::before { content: "\f1c0"; }
.fa-gears::before { content: "\f085"; }
.fa-ban::before { content: "\f05e"; }
.fa-globe::before { content: "\f0ac"; }
.fa-map::before { content: "\f279"; }
.fa-share-nodes::before { content: "\f1e0"; }
.fa-clock-rotate-left::before { content: "\f1da"; }
.fa-sliders::before { content: "\f1de"; }
.fa-envelope::before { content: "\f0e0"; }
.fa-phone::before { content: "\f095"; }
.fa-location-dot::before { content: "\f3c5"; }
.fa-linkedin::before { content: "\f08c"; }
.fa-list-check::before { content: "\f0ae"; }
.fa-file-code::before { content: "\f1c9"; }
.fa-file-export::before { content: "\f56e"; }
.fa-desktop::before { content: "\f390"; }
.fa-laptop::before { content: "\f109"; }
.fa-network-wired::before { content: "\f6ff"; }
.fa-clipboard-check::before { content: "\f46c"; }
.fa-circle-check::before { content: "\f058"; }
.fa-arrows-rotate::before { content: "\f021"; }
.fa-circle-xmark::before { content: "\f057"; }
.fa-clock::before { content: "\f017"; }
.fa-diagram-project::before { content: "\f542"; }
.fa-draw-polygon::before { content: "\f5ee"; }
.fa-layer-group::before { content: "\f5fd"; }
.fa-link::before { content: "\f0c1"; }
.fa-location-crosshairs::before { content: "\f601"; }
.fa-magnifying-glass-chart::before { content: "\f002"; }
.fa-map-location-dot::before { content: "\f5a0"; }
.fa-note-sticky::before { content: "\f249"; }
.fa-puzzle-piece::before { content: "\f12e"; }
.fa-ruler-combined::before { content: "\f546"; }
.fa-screwdriver-wrench::before { content: "\f7d9"; }
.fa-server::before { content: "\f233"; }
.fa-window-maximize::before { content: "\f2d0"; }
.fa-users::before { content: "\f0c0"; }

:root {
    color-scheme: dark;
    --bg: #07101d;
    --bg-deep: #040a13;
    --surface: rgba(19, 32, 49, 0.86);
    --surface-solid: #111e2e;
    --surface-soft: rgba(255, 255, 255, 0.045);
    --surface-hover: rgba(255, 255, 255, 0.085);
    --text: #f7f9fc;
    --muted: #b7c2d0;
    --soft: #8391a3;
    --border: rgba(206, 221, 238, 0.13);
    --border-strong: rgba(206, 221, 238, 0.23);
    --accent: #ff6b2c;
    --accent-bright: #ff874f;
    --accent-soft: rgba(255, 107, 44, 0.13);
    --accent-glow: rgba(255, 107, 44, 0.24);
    --link: #ffad88;
    --info: #5aa8ff;
    --success: #55c98b;
    --warning: #f6bd60;
    --danger: #ff7f86;
    --acad: #e85c5c;
    --bcad: #4e8ff7;
    --dcad: #45bd7a;
    --map: #ff6b2c;
    --wiki: #5b21b6;
    --wiki-bright: #8b5cf6;
    --wiki-soft: rgba(91, 33, 182, 0.16);
    --shadow-sm: 0 14px 36px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 30px 90px rgba(0, 0, 0, 0.32);
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --content-width: 1240px;
    --header-height: 78px;
    --focus: #ffd0ba;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    min-width: 320px;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 28px);
    background: var(--bg-deep);
}

body {
    position: relative;
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    overflow-x: clip;
    isolation: isolate;
    background:
        radial-gradient(circle at 86% -8%, rgba(255, 107, 44, 0.15), transparent 31rem),
        radial-gradient(circle at 7% 20%, rgba(78, 143, 247, 0.09), transparent 36rem),
        linear-gradient(180deg, #081220 0%, var(--bg) 58%, #060d18 100%);
    color: var(--text);
    font-family: "Segoe UI Variable Text", "Aptos", "Segoe UI", system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.62;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.js body {
    animation: page-enter 460ms var(--ease-out) both;
}

html.page-leaving body {
    opacity: 0;
    transition: opacity 240ms ease;
}

@keyframes page-enter {
    from { opacity: 0; }
    to { opacity: 1; }
}

body.nav-open {
    overflow: hidden;
}

.site-header,
.site-footer {
    position: relative;
    z-index: 2;
}

main {
    position: relative;
    z-index: auto;
    min-height: 52vh;
}

main > .section,
main > .website-campaigns,
.product-page > .section,
.article-page > :not(.article-header) {
    position: relative;
    z-index: 2;
}

main > .section.section--workflow {
    z-index: 4;
}

img,
picture,
video,
canvas {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

a {
    color: var(--link);
    text-underline-offset: 0.22em;
    text-decoration-thickness: 0.075em;
}

a:hover {
    color: var(--accent-bright);
}

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

button,
a,
summary,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
}

::selection {
    background: var(--accent);
    color: #fff;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
dl,
figure,
blockquote {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--text);
    font-family: "Segoe UI Variable Display", "Aptos Display", "Segoe UI", system-ui, sans-serif;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

h1 {
    max-width: 15ch;
    margin-bottom: 1.25rem;
    font-size: clamp(3rem, 5vw, 4.7rem);
    font-weight: 720;
}

h2 {
    margin-bottom: 0.9rem;
    font-size: clamp(2rem, 3.6vw, 2.85rem);
    font-weight: 700;
}

h3 {
    margin-bottom: 0.58rem;
    font-size: clamp(1.15rem, 1.8vw, 1.38rem);
    font-weight: 680;
    letter-spacing: -0.022em;
}

h4 {
    font-size: 1.05rem;
    letter-spacing: -0.015em;
}

p:last-child,
ul:last-child,
ol:last-child,
dl:last-child {
    margin-bottom: 0;
}

.site-shell {
    width: min(calc(100% - 48px), var(--content-width));
    margin-inline: auto;
}

.longform-shell {
    width: min(calc(100% - 48px), 820px);
}

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

.skip-link {
    position: fixed;
    top: 10px;
    left: 12px;
    z-index: 1000;
    padding: 0.72rem 1rem;
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: #fff;
    font-weight: 750;
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform 180ms var(--ease-out);
}

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

/* The particle field is a visible, interactive part of the infrADAC identity. */
.site-particles {
    position: fixed;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    opacity: 0.78;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.94) 78%, rgba(0, 0, 0, 0.42) 100%);
}

.site-particles > canvas {
    width: 100% !important;
    height: 100% !important;
}

.motion-ready .motion-item {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    transition:
        opacity 580ms var(--ease-out) var(--motion-delay, 0ms),
        transform 580ms var(--ease-out) var(--motion-delay, 0ms);
    will-change: opacity, transform;
}

.motion-ready .motion-item.motion-item--from-left {
    transform: translate3d(-18px, 0, 0);
}

.motion-ready .motion-item.motion-item--from-right {
    transform: translate3d(18px, 0, 0);
}

.motion-ready .motion-item.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.eyebrow {
    margin-bottom: 0.72rem;
    color: var(--accent-bright);
    font-size: 0.76rem;
    font-weight: 790;
    letter-spacing: 0.15em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow--plugins {
    color: #fff;
}

.lead {
    max-width: 62ch;
    margin-bottom: 1.75rem;
    color: var(--muted);
    font-size: clamp(1.08rem, 1.7vw, 1.24rem);
    line-height: 1.62;
}

.external-mark {
    display: inline-block;
    font-size: 0.8em;
    transform: translateY(-0.14em);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.72rem;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 0.42rem;
    padding: 0.75rem 1.12rem;
    border: 1px solid transparent;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--accent), #ff8148);
    box-shadow: 0 12px 28px rgba(255, 107, 44, 0.17);
    color: #fff;
    font-weight: 720;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition:
        transform 210ms var(--ease-out),
        box-shadow 210ms var(--ease-out),
        border-color 210ms ease,
        background-color 210ms ease;
}

.button:hover {
    color: #fff;
    box-shadow: 0 16px 36px rgba(255, 107, 44, 0.25);
    transform: translateY(-2px);
}

.button--map {
    border-color: rgba(255, 138, 84, 0.62);
    background: linear-gradient(135deg, var(--accent), #ff8148);
    box-shadow: 0 12px 28px rgba(255, 107, 44, 0.17);
    color: #fff;
}

.button--map:hover {
    border-color: rgba(255, 167, 126, 0.78);
    background: linear-gradient(135deg, #ff7538, #ff8d58);
    box-shadow: 0 16px 36px rgba(255, 107, 44, 0.25);
    color: #fff;
}

.button--wiki {
    border-color: rgba(139, 92, 246, 0.6);
    background: linear-gradient(135deg, #421174, var(--wiki));
    box-shadow: 0 12px 28px rgba(49, 13, 91, 0.3);
    color: #fff;
}

.button--wiki:hover {
    border-color: rgba(167, 139, 250, 0.82);
    background: linear-gradient(135deg, #51178b, #6d28d9);
    box-shadow: 0 16px 36px rgba(49, 13, 91, 0.42);
    color: #fff;
}

.button--explore {
    border-color: rgba(107, 143, 176, 0.72);
    background: #315d86;
    box-shadow: 0 12px 28px rgba(22, 53, 82, 0.32);
}

.button--explore:hover {
    border-color: rgba(143, 173, 201, 0.88);
    background: #3c6f9d;
    box-shadow: 0 16px 36px rgba(22, 53, 82, 0.42);
}

.button--secondary {
    border-color: var(--border-strong);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: none;
    color: var(--text);
}

.button--secondary:hover {
    border-color: rgba(255, 135, 79, 0.5);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    box-shadow: none;
}

.button--ghost {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    color: var(--text);
}

.button--small {
    min-height: 42px;
    padding: 0.58rem 0.88rem;
    font-size: 0.91rem;
}

.text-link {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 0.34rem;
    color: var(--link);
    font-weight: 700;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

.text-link--large {
    font-size: 1rem;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: var(--header-height);
    background: rgba(5, 12, 23, 0.76);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(20px) saturate(140%);
}

.site-header__inner {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    gap: 1.5rem;
}

.site-brand {
    display: block;
    width: 174px;
    flex: 0 0 auto;
    padding-block: 7px;
}

.site-brand img {
    width: 100%;
    aspect-ratio: 3 / 1;
    object-fit: contain;
}

.site-nav {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 0.18rem;
    min-width: 0;
}

.site-nav > a {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 0.3rem;
    padding: 0.58rem 0.7rem;
    border-radius: 9px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 650;
    text-decoration: none;
    transition: color 180ms ease, background-color 180ms ease;
}

.site-nav > a::after {
    content: "";
    position: absolute;
    right: 0.7rem;
    bottom: 4px;
    left: 0.7rem;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 220ms var(--ease-out);
}

.site-nav > a:hover,
.site-nav [aria-current="page"] {
    background: rgba(255, 255, 255, 0.055);
    color: var(--text);
}

.site-nav > a:hover::after,
.site-nav [aria-current="page"]::after {
    transform: scaleX(1);
}

.site-nav__actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: 0.45rem;
}

.site-nav__actions .button {
    min-height: 36px;
    padding: 0.48rem 0.74rem;
    border-radius: 9px;
    font-size: 0.84rem;
}

.menu-toggle {
    display: none;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-left: auto;
    padding: 0.62rem 0.78rem;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.055);
    color: var(--text);
    cursor: pointer;
    font-weight: 700;
}

.menu-toggle__lines {
    display: grid;
    width: 20px;
    gap: 4px;
}

.menu-toggle__lines span {
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 220ms var(--ease-out), opacity 160ms ease;
}

/* Heroes and image placeholders */
.hero,
.page-hero,
.product-hero,
.article-header {
    position: relative;
    overflow: visible;
}

.hero::after,
.page-hero::after,
.product-hero::after,
.article-header::after {
    content: "";
    position: absolute;
    top: -16rem;
    right: -14rem;
    width: 42rem;
    height: 42rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 44, 0.14), transparent 68%);
    pointer-events: none;
}

.hero__grid,
.page-hero__grid,
.product-hero__grid,
.error-page__grid,
.map-feature {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
    align-items: center;
    gap: clamp(2.5rem, 6vw, 5.5rem);
}

.hero__grid,
.page-hero__grid,
.product-hero__grid {
    z-index: auto;
}

.hero__grid {
    min-height: min(690px, calc(100vh - var(--header-height)));
    padding-block: clamp(4rem, 7vw, 6rem);
}

.page-hero__grid,
.product-hero__grid,
.error-page__grid {
    padding-top: clamp(3.25rem, 5vw, 4.6rem);
    padding-bottom: clamp(1.85rem, 2.8vw, 2.5rem);
}

.page-hero__copy,
.product-hero__copy,
.hero__copy,
.error-page__inner,
.article-header .longform-shell > :not(.page-hero-icon),
.page-hero__inner > :not(.page-hero-icon),
.privacy-hero > :not(.page-hero-icon) {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.page-hero-icon {
    position: absolute;
    top: max(72%, 20rem);
    right: clamp(-8rem, -5vw, -2rem);
    z-index: 0;
    width: clamp(500px, 48vw, 720px);
    max-width: none;
    height: auto;
    margin: 0;
    object-fit: contain;
    opacity: 0.2;
    filter: none;
    pointer-events: none;
    user-select: none;
    transform: translate3d(0, -50%, 0);
}

.page-hero--lower-artwork .page-hero-icon {
    top: max(82%, 24rem);
}

.hero .page-hero-icon {
    top: 62%;
}

.product-hero__media > .page-hero-icon {
    top: 62%;
    right: 50%;
    width: clamp(480px, 44vw, 660px);
    transform: translate3d(50%, -50%, 0);
}

.page-hero__inner > .page-hero-icon,
.article-header .page-hero-icon {
    right: clamp(-8rem, -5vw, -2rem);
    width: clamp(440px, 44vw, 650px);
}

.privacy-hero > .page-hero-icon {
    right: clamp(-7rem, -4vw, -1.5rem);
    width: clamp(440px, 45vw, 650px);
}

.hero__copy h1 {
    max-width: 13ch;
}

.page-hero h1,
.product-hero h1 {
    max-width: 16ch;
    font-size: clamp(2.75rem, 4.5vw, 4.15rem);
}

.page-hero--compact .page-hero__grid {
    padding-block: clamp(2.8rem, 4.5vw, 3.9rem);
}

.page-hero__inner {
    position: relative;
    z-index: auto;
    padding-block: clamp(4rem, 8vw, 7rem);
}

.media-placeholder {
    --placeholder-accent: var(--accent);
    position: relative;
    display: flex;
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 0;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.26rem;
    margin: 0;
    padding: clamp(1.25rem, 3vw, 2.15rem);
    overflow: hidden;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, transparent 42%, rgba(4, 10, 19, 0.78) 100%),
        radial-gradient(circle at 82% 15%, color-mix(in srgb, var(--placeholder-accent) 34%, transparent), transparent 42%),
        url("../images/placeholder-media.svg") center / cover no-repeat,
        #142235;
    box-shadow: var(--shadow-lg);
}

.media-placeholder::after {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 17px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.media-placeholder > * {
    position: relative;
    z-index: 1;
}

.media-placeholder span,
.media-placeholder small {
    color: rgba(247, 249, 252, 0.65);
    font-size: 0.68rem;
    font-weight: 760;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.media-placeholder strong {
    max-width: 24ch;
    color: #fff;
    font-size: clamp(1.16rem, 2vw, 1.55rem);
    line-height: 1.18;
}

.site-page--pricing .page-hero__grid {
    padding-top: clamp(2.9rem, 4.5vw, 4rem);
    padding-bottom: clamp(1.7rem, 2.5vw, 2.25rem);
}

.site-page--pricing .media-placeholder {
    max-height: 390px;
}

/* Sections */
.section {
    position: relative;
    padding-block: clamp(4rem, 5.5vw, 5.25rem);
}

.section--tight {
    padding-block: clamp(3rem, 4vw, 3.8rem);
}

.section--soft {
    background: rgba(14, 25, 39, 0.74);
    box-shadow: inset 0 32px 80px rgba(0, 0, 0, 0.08), inset 0 -32px 80px rgba(0, 0, 0, 0.08);
}

.section--contrast {
    background: rgba(4, 10, 19, 0.48);
}

.section--cta {
    padding-block: clamp(3.5rem, 4.5vw, 4.5rem);
}

.section-heading {
    max-width: 760px;
    margin-bottom: clamp(2rem, 3.5vw, 3rem);
}

.section-heading > p:not(.eyebrow),
.section-heading--split > p {
    color: var(--muted);
    font-size: 1.04rem;
}

.section-heading--centred {
    margin-inline: auto;
    text-align: center;
}

.section-heading--compact {
    margin: 2rem 0 1rem;
}

.section-heading--compact h3 {
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}

.section-heading--split {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
    align-items: end;
    gap: 2.5rem;
}

.section-heading--split > p,
.section-heading--split > .text-link,
.section-heading--split > form {
    justify-self: end;
}

.section-action {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.product-grid,
.news-grid,
.release-grid,
.capability-grid,
.detail-grid,
.licence-grid,
.plan-grid,
.pricing-grid {
    display: grid;
    gap: 1.15rem;
}

.product-grid--five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-grid--three,
.news-grid,
.release-grid,
.detail-grid,
.licence-grid,
.plan-grid,
.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

/* Shared card language */
.product-card,
.news-card,
.release-card,
.plan-card,
.profile-package-card,
.capability-grid article,
.detail-grid article,
.licence-grid article,
.profile-groups section,
.privacy-summary-grid article,
.company-card,
.contact-form-panel,
.contact-details,
.availability-actions {
    min-width: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(20, 34, 52, 0.92), rgba(13, 24, 38, 0.94));
    box-shadow: var(--shadow-sm);
}

.product-card,
.news-card,
.release-card,
.plan-card,
.profile-package-card {
    overflow: hidden;
    transition: transform 240ms var(--ease-out), border-color 240ms ease, box-shadow 240ms var(--ease-out);
}

@media (hover: hover) {
    .product-card:hover,
    .news-card:hover,
    .release-card:hover,
    .plan-card:hover,
    .profile-package-card:hover {
        border-color: var(--border-strong);
        box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
        transform: translateY(-4px);
    }
}

/* Home */
.tool-stream-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.tool-stream {
    --stream-accent: var(--accent);
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.35rem, 2.5vw, 1.9rem);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(17, 30, 46, 0.91);
    box-shadow: var(--shadow-sm);
    transition: transform 240ms var(--ease-out), border-color 240ms ease;
}

.tool-stream::before {
    content: "";
    position: absolute;
    top: 0;
    right: 1.25rem;
    left: 1.25rem;
    height: 4px;
    border-radius: 0 0 4px 4px;
    background: var(--stream-accent);
}

.tool-stream--plugins {
    --stream-accent: var(--acad);
    background: linear-gradient(145deg, rgba(25, 41, 61, 0.96), rgba(14, 25, 39, 0.96));
}

.tool-stream--plugins::before {
    background: linear-gradient(90deg, var(--acad) 0 33.333%, var(--bcad) 33.333% 66.666%, var(--dcad) 66.666% 100%);
}

.tool-stream--map {
    --stream-accent: var(--map);
    background: linear-gradient(145deg, rgba(25, 41, 61, 0.96), rgba(14, 25, 39, 0.96));
}

.tool-stream--wiki {
    --stream-accent: var(--wiki);
    background: linear-gradient(145deg, rgba(25, 41, 61, 0.96), rgba(14, 25, 39, 0.96));
}

.tool-stream__type {
    margin: 0;
    color: color-mix(in srgb, var(--stream-accent) 78%, #fff);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.tool-stream > p:not(.tool-stream__type) {
    color: var(--muted);
}

.tool-stream .button {
    align-self: flex-start;
    margin-top: auto;
}

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

.plugin-logo-stack__item {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    border: 1px solid rgba(206, 221, 238, 0.1);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.035);
    transition: transform 200ms var(--ease-out), filter 200ms ease;
}

.plugin-logo-stack__item:hover {
    transform: translateY(-3px);
    filter: brightness(1.08);
}

.plugin-logo-stack__item img {
    width: 100%;
    max-height: 54px;
    object-fit: contain;
}

.tool-stream__logo {
    width: min(100%, 270px);
    height: 150px;
    object-fit: contain;
    object-position: left center;
}

.tool-stream__logo--trio {
    width: min(100%, 360px);
}

.tool-stream .media-placeholder {
    height: 150px;
    aspect-ratio: auto;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: none;
}

.tool-stream .media-placeholder::after {
    inset: 9px;
    border-radius: 10px;
}

.tool-stream .media-placeholder strong {
    font-size: 1rem;
}

.wiki-wordmark {
    display: flex;
    min-height: 150px;
    align-items: center;
    gap: 0.8rem;
}

.wiki-wordmark img {
    width: min(67%, 215px);
}

.wiki-wordmark strong {
    color: var(--wiki);
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
}

.workflow-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.workflow-list li {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 0.75rem;
    padding: 1.2rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.045);
}

.workflow-list li > span,
.detail-number {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent-bright);
    font-size: 0.72rem;
    font-weight: 800;
}

.workflow-list h3 {
    margin-top: 0.25rem;
}

.workflow-list p {
    color: var(--muted);
    font-size: 0.92rem;
}

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

.workflow-list--home li {
    --workflow-accent: var(--accent);
    position: relative;
    min-height: 218px;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 1rem;
    padding: 1.45rem 1.5rem;
    overflow: hidden;
    border: 1px solid var(--border);
    background: linear-gradient(145deg, rgba(23, 38, 57, 0.94), rgba(11, 21, 34, 0.96));
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

.workflow-list--home li::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: var(--workflow-accent);
}

.workflow-list--home .workflow-list__icon {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--workflow-accent) 42%, transparent);
    border-radius: 13px;
    background: color-mix(in srgb, var(--workflow-accent) 13%, transparent);
    color: color-mix(in srgb, var(--workflow-accent) 75%, #fff);
    font-size: 1.05rem;
}

.workflow-list--home .workflow-list__step {
    margin: 0 0 0.35rem;
    color: color-mix(in srgb, var(--workflow-accent) 72%, #fff);
    font-size: 0.68rem;
    font-weight: 820;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.workflow-list--home h3 {
    margin-bottom: 0.65rem;
}

.workflow-list--home p {
    font-size: 0.98rem;
}

.workflow-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(1.1rem, 3vw, 2.5rem);
    margin: clamp(2.4rem, 4vw, 3.5rem) 0 0;
    padding: 0;
    list-style: none;
}

.workflow-strip__item {
    position: relative;
    display: grid;
    justify-items: center;
    align-content: start;
    min-width: 0;
    text-align: center;
}

.workflow-strip__trigger {
    display: grid;
    width: 100%;
    min-height: 126px;
    justify-items: center;
    align-content: start;
    gap: 0.9rem;
    padding: 0.5rem;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: center;
    cursor: pointer;
    transition: background 180ms ease, box-shadow 180ms ease, transform 180ms var(--ease-out);
}

.workflow-strip__trigger:hover,
.workflow-strip__trigger:focus-visible,
.workflow-strip__trigger.is-active {
    background: rgba(255, 255, 255, 0.045);
    transform: translateY(-2px);
}

.workflow-strip__trigger.is-active {
    box-shadow: inset 0 -3px 0 var(--accent);
}

.workflow-strip__trigger:focus-visible {
    outline: 2px solid var(--focus);
    outline-offset: 4px;
}

.workflow-strip__icon {
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    color: var(--text);
    font-size: 2.25rem;
}

.workflow-strip__title {
    max-width: 13ch;
    margin: 0;
    font-size: clamp(0.94rem, 1.5vw, 1.08rem);
    font-weight: 700;
    line-height: 1.35;
}

.workflow-details {
    min-height: clamp(390px, 46vw, 580px);
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.workflow-detail {
    display: grid;
    grid-template-columns: minmax(210px, 0.62fr) minmax(0, 1.38fr);
    min-height: clamp(390px, 46vw, 580px);
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
    border-top: 1px solid rgba(206, 221, 238, 0.13);
    animation: workflow-detail-enter 300ms var(--ease-out) both;
}

.workflow-detail[hidden] {
    display: none;
}

@keyframes workflow-detail-enter {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.workflow-detail__copy {
    max-width: 410px;
}

.workflow-detail__copy strong {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text);
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: clamp(1.35rem, 2.3vw, 2rem);
    line-height: 1.2;
}

.workflow-detail__copy p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
}

.workflow-detail img {
    width: 100%;
    height: clamp(320px, 40vw, 540px);
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    object-fit: contain;
    object-position: center;
}

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

.release-stream {
    --release-accent: var(--accent);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(14, 26, 41, 0.9);
    box-shadow: var(--shadow-sm);
    transition:
        border-color 260ms var(--ease-out),
        box-shadow 320ms var(--ease-out),
        transform 260ms var(--ease-out);
}

.release-stream--plugins { --release-accent: #fff; }
.release-stream--map { --release-accent: var(--map); }
.release-stream--wiki { --release-accent: var(--wiki); }

@media (hover: hover) {
    .release-stream:hover {
        border-color: color-mix(in srgb, var(--release-accent) 58%, var(--border));
        box-shadow:
            0 0 0 1px color-mix(in srgb, var(--release-accent) 24%, transparent),
            0 20px 52px color-mix(in srgb, var(--release-accent) 22%, rgba(0, 0, 0, 0.45));
        transform: translateY(-3px);
    }
}

.release-stream__header {
    position: relative;
    padding: 0.78rem 1.15rem 0.7rem;
    color: var(--text);
    font-size: 0.75rem;
    font-weight: 790;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.release-stream__header::after {
    content: "";
    position: absolute;
    right: 1.15rem;
    bottom: 0;
    left: 1.15rem;
    height: 3px;
    border-radius: 3px;
}

.release-stream--plugins .release-stream__header::after {
    background: linear-gradient(90deg, var(--acad) 0 33.333%, var(--bcad) 33.333% 66.666%, var(--dcad) 66.666% 100%);
}

.release-stream--map .release-stream__header::after { background: var(--map); }
.release-stream--wiki .release-stream__header::after { background: var(--wiki); }

.release-stream .release-grid {
    display: block;
    flex: 1;
}

.release-card {
    display: flex;
    min-height: 0;
    flex-direction: column;
    padding: 1.25rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    height: 100%;
}

.release-card__product,
.product-card__platform,
.plan-card__product,
.pricing-card__platform {
    margin-bottom: 0.4rem;
    color: var(--soft);
    font-size: 0.7rem;
    font-weight: 780;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.release-card__summary,
.release-card > p:not(.release-card__product),
.release-card time {
    color: var(--muted);
    font-size: 0.92rem;
}

.release-card time {
    margin-bottom: 1.05rem;
}

.release-card .button {
    align-self: flex-start;
    margin-top: auto;
}

.release-notes-summary {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.receiver-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.receiver-grid li {
    min-width: 0;
}

.receiver-grid a {
    display: flex;
    min-height: 82px;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
    text-decoration: none;
    transition: background-color 200ms ease, border-color 200ms ease, transform 200ms var(--ease-out);
}

.receiver-grid a:hover {
    border-color: var(--border-strong);
    background: rgba(255, 255, 255, 0.065);
    transform: translateY(-2px);
}

.receiver-grid img,
.receiver-grid__fallback {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    object-fit: contain;
}

.receiver-grid__fallback {
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(85, 201, 139, 0.12);
    color: var(--success);
    font-size: 0.78rem;
    font-weight: 800;
}

.receiver-grid strong,
.receiver-grid small {
    display: block;
}

.receiver-grid strong {
    overflow-wrap: anywhere;
    font-size: 0.9rem;
    line-height: 1.28;
}

.receiver-grid small {
    margin-top: 0.22rem;
    color: var(--soft);
    font-size: 0.72rem;
}

.map-feature {
    padding-block: 0;
}

.map-feature__copy > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.08rem;
}

.map-feature .media-placeholder {
    --placeholder-accent: var(--map);
}

.map-banner {
    position: relative;
    padding-block: clamp(3.5rem, 5vw, 4.8rem);
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 107, 44, 0.17), transparent 24rem),
        linear-gradient(135deg, #10283d, #0b1f31 64%, #091827);
    box-shadow: inset 0 4px 0 var(--map), inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.map-banner__inner {
    display: grid;
    grid-template-columns: minmax(180px, 0.68fr) minmax(0, 1.5fr) auto;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3.5rem);
}

.map-banner__logo {
    width: min(100%, 300px);
    max-height: 104px;
    object-fit: contain;
}

.map-banner__copy h2 {
    max-width: 20ch;
    margin-bottom: 0.65rem;
    font-size: clamp(1.85rem, 3vw, 2.55rem);
}

.map-banner__copy > p:not(.eyebrow) {
    max-width: 62ch;
    margin: 0;
    color: var(--muted);
}

.map-banner .button-row {
    justify-content: flex-end;
}

.section-heading--news {
    align-items: center;
}

.section-heading--news .section-heading__action {
    justify-self: end;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(1.6rem, 3.5vw, 2.6rem);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 92% 20%, rgba(255, 107, 44, 0.22), transparent 20rem),
        linear-gradient(135deg, rgba(25, 42, 63, 0.96), rgba(13, 24, 38, 0.96));
    box-shadow: var(--shadow-lg);
}

.cta-panel > div:first-child {
    max-width: 760px;
}

.cta-panel h2 {
    margin-bottom: 0;
    font-size: clamp(1.8rem, 3.2vw, 2.55rem);
}

.cta-panel p:not(.eyebrow) {
    color: var(--muted);
}

/* Product cards and feature page */
.product-card {
    --product-accent: var(--accent);
    display: flex;
    flex-direction: column;
    border-top: 3px solid var(--product-accent);
}

.product-card--acad { --product-accent: var(--acad); }
.product-card--bcad { --product-accent: var(--bcad); }
.product-card--dcad { --product-accent: var(--dcad); }
.product-card--map { --product-accent: var(--map); }

.product-card__visual {
    display: flex;
    min-height: 116px;
    align-items: center;
    padding: 1.1rem;
    background: color-mix(in srgb, var(--product-accent) 10%, transparent);
}

.product-card__visual img {
    width: 100%;
    max-height: 68px;
    object-fit: contain;
}

.product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.2rem;
}

.product-card h3 a,
.news-card h3 a {
    color: var(--text);
    text-decoration: none;
}

.product-card__body > p:not(.product-card__platform):not(.product-card__price),
.product-card__compatibility {
    color: var(--muted);
    font-size: 0.92rem;
}

.product-card__price {
    margin: auto 0 0.35rem;
    padding-top: 0.8rem;
    color: var(--text);
    font-weight: 750;
}

.product-card__price small {
    display: block;
    color: var(--soft);
    font-weight: 500;
}

.availability-text {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.4rem;
    margin: 0.7rem 0;
    color: var(--muted);
}

.availability-text span {
    color: var(--soft);
    font-size: 0.7rem;
    font-weight: 770;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.availability-text strong {
    color: var(--text);
    text-transform: capitalize;
}

.feature-matrix-wrap,
.table-region {
    max-width: 100%;
    overflow-x: auto;
    border-radius: var(--radius);
    background: rgba(13, 24, 38, 0.94);
    box-shadow: var(--shadow-sm);
}

.feature-matrix,
.comparison-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.feature-matrix th,
.feature-matrix td,
.comparison-table th,
.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(206, 221, 238, 0.09);
    text-align: center;
}

.feature-matrix thead th {
    background: #17263a;
    color: var(--text);
    font-size: 0.74rem;
    font-weight: 820;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.feature-matrix thead th:first-child {
    background: #17263a;
    color: var(--muted);
    text-align: left;
}

.feature-matrix__acad { box-shadow: inset 0 4px 0 var(--acad); }
.feature-matrix__bcad { box-shadow: inset 0 4px 0 var(--bcad); }
.feature-matrix__dcad { box-shadow: inset 0 4px 0 var(--dcad); }
.feature-matrix__map { box-shadow: inset 0 4px 0 var(--map); }
.feature-matrix__wiki { box-shadow: inset 0 4px 0 var(--wiki); }

.feature-matrix__logo {
    width: 118px;
    height: 48px;
    margin-inline: auto;
    object-fit: contain;
}

.feature-matrix__logo--map {
    width: 104px;
}

.feature-matrix__wiki-wordmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.38rem;
}

.feature-matrix__wiki-wordmark img {
    width: 80px;
}

.feature-matrix__wiki-wordmark strong {
    color: var(--wiki);
    font-size: 0.92rem;
    text-transform: none;
}

.feature-matrix tbody th {
    width: 42%;
    color: var(--text);
    font-size: 0.93rem;
    text-align: left;
}

.feature-state {
    display: inline-grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 9px;
    font-size: 1.12rem;
    font-weight: 850;
}

.feature-state--yes { background: rgba(85, 201, 139, 0.14); color: #77e3aa; }
.feature-state--no { background: rgba(255, 127, 134, 0.1); color: #ff9ba0; }

.feature-comparison {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(13, 24, 38, 0.94);
    box-shadow: var(--shadow-sm);
}

.feature-comparison__head-row,
.feature-comparison__row {
    display: grid;
    grid-template-columns: minmax(260px, 1.65fr) repeat(4, minmax(96px, 0.7fr));
}

.feature-comparison__head-row {
    background: #17263a;
}

.feature-comparison__corner {
    display: flex;
    align-items: center;
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.feature-comparison__corner,
.feature-comparison__product,
.feature-comparison__name,
.feature-comparison__value {
    min-width: 0;
    padding: 1rem;
}

.feature-comparison__product {
    display: grid;
    min-height: 78px;
    place-items: center;
}

.feature-comparison__product img {
    width: 118px;
    height: 48px;
    object-fit: contain;
}

.feature-comparison__product--acad { box-shadow: inset 0 4px 0 var(--acad); }
.feature-comparison__product--bcad { box-shadow: inset 0 4px 0 var(--bcad); }
.feature-comparison__product--dcad { box-shadow: inset 0 4px 0 var(--dcad); }
.feature-comparison__product--map { box-shadow: inset 0 4px 0 var(--map); }

.feature-comparison__row {
    border-bottom: 1px solid rgba(206, 221, 238, 0.09);
}

.feature-comparison__row:last-child {
    border-bottom: 0;
}

.feature-comparison__name {
    display: flex;
    align-items: center;
    margin: 0;
    color: var(--text);
    font-size: 0.93rem;
    line-height: 1.35;
}

.feature-comparison__value {
    display: grid;
    place-items: center;
}

.feature-comparison .feature-state {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 2px;
    font-family: Arial, sans-serif;
    line-height: 1;
}

.feature-comparison .feature-state--no {
    font-size: 1.28rem;
}

.feature-comparison__mobile-label {
    display: none;
}

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

.browser-tool-card {
    display: flex;
    flex-direction: column;
    padding: clamp(1.6rem, 3.5vw, 2.5rem);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.browser-tool-card--map {
    background: linear-gradient(145deg, rgba(255, 107, 44, 0.16), rgba(17, 30, 46, 0.94) 58%);
}

.browser-tool-card--wiki {
    background: linear-gradient(145deg, rgba(91, 33, 182, 0.18), rgba(17, 30, 46, 0.94) 58%);
}

.browser-tool-card > img {
    width: min(100%, 310px);
    height: 120px;
    margin-bottom: 1.5rem;
    object-fit: contain;
    object-position: left center;
}

.browser-tool-card .wiki-wordmark {
    min-height: 120px;
    margin-bottom: 1.5rem;
}

.browser-tool-card > p {
    color: var(--muted);
}

.browser-tool-card .button {
    align-self: flex-start;
    margin-top: auto;
}

/* Pricing */
.seat-pricing {
    margin-bottom: 1.7rem;
}

.seat-pricing__toggle {
    display: grid;
    width: min(100%, 760px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: inset 0 0 0 1px var(--border);
}

.seat-pricing__toggle button {
    display: flex;
    min-height: 58px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 0.68rem 0.95rem;
    border: 0;
    border-radius: 11px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    text-align: left;
    transition: background-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.seat-pricing__toggle button:hover {
    color: var(--text);
}

.seat-pricing__toggle button.is-active {
    background: #1a2a3f;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    color: var(--text);
}

.seat-pricing__toggle strong {
    font-size: 1rem;
}

.seat-pricing__toggle span {
    color: var(--soft);
    font-size: 0.75rem;
}

.plan-grid--logos {
    align-items: stretch;
}

.plan-card {
    --plan-accent: var(--accent);
    display: flex;
    flex-direction: column;
    padding: 1.45rem;
    border-top: 3px solid var(--plan-accent);
}

.plan-card--acad { --plan-accent: var(--acad); }
.plan-card--bcad { --plan-accent: var(--bcad); }
.plan-card--dcad { --plan-accent: var(--dcad); }

@media (hover: hover) {
    .plan-card:hover {
        border-color: color-mix(in srgb, var(--plan-accent) 42%, var(--border));
        border-top-color: var(--plan-accent);
        box-shadow:
            0 19px 48px rgba(0, 0, 0, 0.3),
            0 0 30px color-mix(in srgb, var(--plan-accent) 24%, transparent);
    }
}

.plan-card__logo {
    width: min(100%, 320px);
    height: 72px;
    margin: 0 auto 0.45rem;
    padding: 0.4rem;
    border-radius: 10px;
    background: color-mix(in srgb, var(--plan-accent) 10%, transparent);
    object-fit: contain;
    object-position: center;
}

.plan-card__platform {
    margin: 0 0 0.45rem;
    color: var(--soft);
    font-size: 0.78rem;
    font-weight: 720;
    letter-spacing: 0.04em;
    text-align: center;
}

.plan-card__price,
.pricing-card__amount {
    display: grid;
    gap: 0.18rem;
    margin: 0.7rem 0 0.9rem;
}

.plan-card__price strong,
.pricing-card__amount strong {
    color: var(--text);
    font-size: clamp(2.15rem, 4vw, 3rem);
    line-height: 1.08;
}

.plan-card__price span,
.pricing-card__amount span {
    color: var(--soft);
    font-size: 0.8rem;
}

.plan-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0 0 1rem;
}

.plan-card__meta span {
    padding: 0.3rem 0.55rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    color: var(--muted);
    font-size: 0.73rem;
}

.pricing-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: auto;
    padding-top: 0.75rem;
}

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

.licence-mode-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.45rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.045);
}

.licence-mode-card__type {
    align-self: flex-start;
    margin-bottom: 0.85rem;
    padding: 0.32rem 0.58rem;
    border-radius: 999px;
    background: rgba(255, 107, 44, 0.12);
    color: var(--accent-bright);
    font-size: 0.68rem;
    font-weight: 790;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.licence-mode-card[data-licence-mode-id="computer-based"] .licence-mode-card__type {
    background: rgba(255, 255, 255, 0.07);
    color: var(--muted);
}

.licence-mode-card > p:not(.licence-mode-card__price) {
    color: var(--muted);
}

.licence-mode-card__price {
    display: grid;
    gap: 0.2rem;
    margin: auto 0 0;
    padding-top: 1rem;
}

.licence-mode-card__price strong {
    font-size: clamp(1.9rem, 3.5vw, 2.55rem);
    line-height: 1.08;
}

.licence-mode-card__price span {
    color: var(--soft);
    font-size: 0.78rem;
}

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

.free-tool-card {
    display: grid;
    grid-template-areas:
        "logo price"
        "copy price"
        "copy action";
    grid-template-columns: minmax(220px, 1.25fr) minmax(160px, 0.75fr);
    align-items: start;
    gap: 0.65rem 1.6rem;
    padding: clamp(1.4rem, 3vw, 2rem);
}

.free-tool-card--map { background: linear-gradient(145deg, rgba(255, 107, 44, 0.12), rgba(13, 24, 38, 0.94) 60%); }
.free-tool-card--wiki { background: linear-gradient(145deg, rgba(91, 33, 182, 0.18), rgba(13, 24, 38, 0.94) 60%); }

.free-tool-card__logo {
    grid-area: logo;
    width: min(100%, 300px);
    height: 92px;
    object-fit: contain;
    object-position: left center;
}

.free-tool-card__logo--wiki {
    width: min(100%, 310px);
    object-position: left center;
}

.free-tool-card > p:not(.pricing-card__amount) {
    grid-area: copy;
    margin: 0;
    color: var(--muted);
}

.free-tool-card > .pricing-card__amount {
    grid-area: price;
    margin: 0;
}

.free-tool-card .button {
    grid-area: action;
    justify-self: start;
    align-self: end;
}

.profile-package-groups,
.profile-package-group,
.profile-package-grid {
    display: grid;
    gap: 1.15rem;
}

.profile-package-group + .profile-package-group {
    margin-top: 2.6rem;
}

.profile-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.profile-tier-grid article {
    --tier-accent: var(--accent);
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0.7rem;
    padding: 1.2rem 1.25rem 1.3rem;
    border: 1px solid color-mix(in srgb, var(--tier-accent) 30%, var(--border));
    border-top: 4px solid var(--tier-accent);
    border-radius: 13px;
    background:
        linear-gradient(155deg, color-mix(in srgb, var(--tier-accent) 9%, transparent), transparent 48%),
        rgba(255, 255, 255, 0.04);
}

#profile-pricing {
    --profile-tier-standard: #315d86;
    --profile-tier-detailed: var(--accent);
    --profile-tier-complex: var(--wiki);
}

.profile-tier-grid .profile-tier-card--standard { --tier-accent: var(--profile-tier-standard); }
.profile-tier-grid .profile-tier-card--detailed { --tier-accent: var(--profile-tier-detailed); }
.profile-tier-grid .profile-tier-card--complex { --tier-accent: var(--profile-tier-complex); }

.profile-tier-card__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.profile-tier-grid span {
    color: color-mix(in srgb, var(--tier-accent) 74%, #fff);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.profile-tier-grid strong {
    font-size: 1.35rem;
    white-space: nowrap;
}

.profile-tier-card__summary {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.profile-tier-grid ul {
    display: grid;
    gap: 0.35rem;
    margin: 0;
    padding-left: 1.05rem;
    color: var(--muted);
    font-size: 0.84rem;
}

.profile-tier-grid li::marker {
    color: var(--tier-accent);
}

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

.profile-package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
    overflow: visible;
}

.profile-package-card:hover,
.profile-package-card:focus-within {
    z-index: 8;
}

.profile-tier-tooltip-wrap {
    position: relative;
    align-self: flex-start;
}

.profile-package-card__tier {
    --tier-accent: var(--accent);
    display: inline-flex;
    align-items: center;
    appearance: none;
    padding: 0.28rem 0.52rem;
    border: 1px solid color-mix(in srgb, var(--tier-accent) 30%, transparent);
    border-radius: 999px;
    background: color-mix(in srgb, var(--tier-accent) 14%, transparent);
    color: color-mix(in srgb, var(--tier-accent) 76%, #fff);
    cursor: help;
    font-family: inherit;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
    transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.profile-package-card__tier:hover,
.profile-package-card__tier:focus-visible {
    border-color: color-mix(in srgb, var(--tier-accent) 72%, transparent);
    background: color-mix(in srgb, var(--tier-accent) 22%, transparent);
    box-shadow: 0 0 18px color-mix(in srgb, var(--tier-accent) 22%, transparent);
    outline: none;
}

.profile-package-card__tier--standard { --tier-accent: var(--profile-tier-standard); }
.profile-package-card__tier--detailed { --tier-accent: var(--profile-tier-detailed); }
.profile-package-card__tier--complex { --tier-accent: var(--profile-tier-complex); }

.profile-tier-tooltip {
    --tier-accent: var(--accent);
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0;
    z-index: 20;
    display: grid;
    width: min(370px, calc(100vw - 3rem));
    padding: 0.75rem;
    visibility: hidden;
    border: 1px solid color-mix(in srgb, var(--tier-accent) 45%, var(--border));
    border-radius: 13px;
    background: rgba(9, 18, 29, 0.98);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.48);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-5px) scale(0.985);
    transform-origin: top left;
    transition: opacity 180ms ease, transform 180ms var(--ease-out), visibility 180ms;
}

.profile-tier-tooltip--standard { --tier-accent: var(--profile-tier-standard); }
.profile-tier-tooltip--detailed { --tier-accent: var(--profile-tier-detailed); }
.profile-tier-tooltip--complex { --tier-accent: var(--profile-tier-complex); }

.profile-tier-tooltip-wrap:hover .profile-tier-tooltip,
.profile-tier-tooltip-wrap:focus-within .profile-tier-tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.profile-package-card:nth-child(3n) .profile-tier-tooltip {
    right: 0;
    left: auto;
    transform-origin: top right;
}

.profile-tier-map-preview {
    position: relative;
    height: 128px;
    overflow: hidden;
    border-radius: 9px;
    color: var(--tier-accent);
    background:
        linear-gradient(rgba(198, 216, 233, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(198, 216, 233, 0.035) 1px, transparent 1px),
        #111f2e;
    background-size: 18px 18px;
}

.profile-tier-map-preview[data-map-layer-type="qld"] { --wiki-map-boundary: rgb(220 20 60); }
.profile-tier-map-preview[data-map-layer-type="nsw"] { --wiki-map-boundary: rgb(87 168 218); }
.profile-tier-map-preview[data-map-layer-type="nt"] { --wiki-map-boundary: rgb(200 91 10); }
.profile-tier-map-preview[data-map-layer-type="qldsub"] { --wiki-map-boundary: rgb(0 100 0); }

.profile-tier-map-preview__canvas,
.profile-tier-map-preview__canvas .esri-view,
.profile-tier-map-preview__canvas .esri-view-root {
    width: 100%;
    height: 100%;
    min-height: 128px;
}

.profile-tier-map-preview__canvas {
    pointer-events: none;
}

.profile-tier-map-preview__canvas > svg {
    display: block;
    width: 100%;
    height: 100%;
    shape-rendering: geometricPrecision;
}

.profile-tier-map-preview__canvas .esri-attribution,
.profile-tier-map-preview__canvas .esri-ui {
    display: none;
}

.profile-tier-map-preview__status {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.42rem;
    padding: 1rem;
    background: rgba(9, 18, 29, 0.7);
    color: var(--muted);
    font-size: 0.68rem;
    text-align: center;
    transition: opacity 180ms ease, visibility 180ms;
}

.profile-tier-map-preview__status.is-ready {
    visibility: hidden;
    opacity: 0;
}

.profile-tier-map-preview__status.is-error {
    color: #ffd0c4;
}

.profile-tier-map-preview.has-map-error .profile-tier-map-preview__canvas {
    opacity: 0.24;
}

.profile-tier-map-preview__legend {
    position: absolute;
    right: 0.4rem;
    bottom: 0.38rem;
    z-index: 2;
    display: flex;
    max-width: calc(100% - 0.8rem);
    align-items: center;
    gap: 0.38rem;
    padding: 0.24rem 0.4rem;
    background: rgba(7, 14, 23, 0.86);
    color: var(--text);
    font-size: 0.56rem;
}

.profile-tier-map-preview__legend > span {
    width: 23px;
    height: 14px;
    flex: 0 0 23px;
    border: 1px solid var(--wiki-map-boundary, var(--tier-accent));
    background-color: color-mix(in srgb, var(--wiki-map-boundary, var(--tier-accent)) 30%, transparent);
    background-image:
        repeating-linear-gradient(45deg, transparent 0 3px, var(--wiki-map-boundary, var(--tier-accent)) 3px 4px),
        repeating-linear-gradient(-45deg, transparent 0 3px, color-mix(in srgb, var(--wiki-map-boundary, var(--tier-accent)) 70%, transparent) 3px 4px);
}

.profile-tier-map-preview__legend strong {
    overflow: hidden;
    font-size: inherit;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-tier-tooltip__content {
    display: grid;
    gap: 0.42rem;
    padding: 0.75rem 0.25rem 0.15rem;
}

.profile-tier-tooltip__content > strong {
    color: color-mix(in srgb, var(--tier-accent) 72%, #fff);
    font-size: 0.93rem;
}

.profile-tier-tooltip__content > p,
.profile-tier-tooltip__content > ul {
    margin: 0;
}

.profile-tier-tooltip__content > p:not(.profile-tier-tooltip__lifetime),
.profile-tier-tooltip__content > ul {
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.45;
}

.profile-tier-tooltip__content > ul {
    display: grid;
    gap: 0.2rem;
    padding-left: 1rem;
}

.profile-tier-tooltip__content li::marker {
    color: var(--tier-accent);
}

.profile-tier-tooltip__lifetime {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 0.48rem;
    margin-top: 0.25rem !important;
    padding-top: 0.6rem;
    border-top: 1px solid color-mix(in srgb, var(--tier-accent) 26%, var(--border));
    color: var(--text);
    font-size: 0.74rem;
    line-height: 1.42;
}

.profile-tier-tooltip__lifetime i {
    margin-top: 0.12rem;
    color: var(--tier-accent);
}

.profile-package-card--collection {
    position: relative;
    grid-column: 1 / -1;
    display: grid;
    grid-template-areas:
        "heading price"
        "includes includes";
    grid-template-columns: minmax(220px, 1fr) max-content;
    align-items: start;
    gap: 1rem 1.5rem;
    border-color: rgba(255, 107, 44, 0.25);
    background: linear-gradient(135deg, rgba(255, 107, 44, 0.1), rgba(13, 24, 38, 0.96) 46%);
}

.profile-package-card--collection .profile-package-card__heading { grid-area: heading; }
.profile-package-card--collection .profile-package-card__price {
    grid-area: price;
    align-self: start;
    justify-self: end;
}
.profile-package-card--collection .profile-collection-icons { grid-area: includes; }

.profile-package-card--collection .profile-package-card__tier {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.profile-package-card--collection .profile-package-card__price,
.profile-package-card--collection .profile-package-card__includes {
    margin: 0;
}

.profile-collection-value {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.9rem;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.055);
}

.profile-collection-value:has([data-profile-collection-savings]:empty),
.profile-collection-value:has([data-profile-collection-savings][hidden]) {
    display: none;
}

.profile-collection-value b {
    color: var(--success);
    font-size: 1.08rem;
    white-space: nowrap;
}

.profile-collection-icons {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 0.65rem;
    padding-top: 0.25rem;
}

.profile-collection-tooltip-wrap {
    min-width: 0;
    align-self: stretch;
}

.profile-collection-tooltip-wrap,
.profile-collection-link {
    height: 100%;
}

.profile-collection-tooltip-wrap .profile-tier-tooltip {
    top: auto;
    bottom: calc(100% + 0.65rem);
    left: 50%;
    transform: translate(-50%, 5px) scale(0.985);
    transform-origin: bottom center;
}

.profile-collection-tooltip-wrap:hover .profile-tier-tooltip,
.profile-collection-tooltip-wrap:focus-within .profile-tier-tooltip {
    transform: translate(-50%, 0) scale(1);
}

.profile-collection-tooltip-wrap:first-child .profile-tier-tooltip {
    left: 0;
    transform: translate(0, 5px) scale(0.985);
    transform-origin: bottom left;
}

.profile-collection-tooltip-wrap:first-child:hover .profile-tier-tooltip,
.profile-collection-tooltip-wrap:first-child:focus-within .profile-tier-tooltip {
    transform: translate(0, 0) scale(1);
}

.profile-collection-tooltip-wrap:last-child .profile-tier-tooltip {
    right: 0;
    left: auto;
    transform: translate(0, 5px) scale(0.985);
    transform-origin: bottom right;
}

.profile-collection-tooltip-wrap:last-child:hover .profile-tier-tooltip,
.profile-collection-tooltip-wrap:last-child:focus-within .profile-tier-tooltip {
    transform: translate(0, 0) scale(1);
}

.profile-collection-icons figure {
    display: grid;
    height: 142px;
    grid-template-rows: 68px minmax(0, 1fr);
    align-items: center;
    justify-items: center;
    margin: 0;
    padding: 0.55rem 0.42rem 0.48rem;
    border: 1px solid rgba(206, 221, 238, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.045);
    text-align: center;
}

.profile-collection-link {
    display: block;
    border-radius: 10px;
    color: inherit;
    text-decoration: none;
}

.profile-collection-link figure {
    height: 100%;
    transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.profile-collection-link:hover figure,
.profile-collection-link:focus-visible figure {
    border-color: rgba(255, 107, 44, 0.42);
    background: rgba(255, 107, 44, 0.09);
    transform: translateY(-2px);
}

.profile-collection-icons img,
.profile-collection-icons .receiver-grid__fallback {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.profile-collection-icons .profile-collection-schema {
    display: grid;
    width: 100%;
    min-width: 0;
    height: 52px;
    align-content: start;
    gap: 0.18rem;
    padding-top: 0.38rem;
    border-top: 1px solid rgba(206, 221, 238, 0.09);
    color: var(--soft);
    line-height: 1.15;
}

.profile-collection-schema span {
    font-size: 0.58rem;
    font-weight: 760;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.profile-collection-schema strong {
    max-height: 2.45em;
    overflow: auto;
    color: var(--text);
    font-size: 0.68rem;
    font-weight: 720;
    scrollbar-width: none;
}

.profile-collection-schema strong::-webkit-scrollbar {
    display: none;
}

.profile-package-card__heading {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.profile-package-card__heading img,
.profile-package-card__heading .receiver-grid__fallback {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    object-fit: contain;
}

.profile-package-card__heading h4 {
    margin: 0;
}

.profile-package-card__heading small,
.profile-package-card__includes {
    color: var(--soft);
    font-size: 0.78rem;
}

.profile-package-card__price {
    margin-top: 0.55rem;
}

.profile-package-card__price strong,
.profile-package-card__price span {
    display: block;
}

.profile-package-card__price strong {
    font-size: 1.55rem;
}

.profile-package-card__price span {
    color: var(--soft);
    font-size: 0.76rem;
}

.profile-package-card__price--collection {
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: baseline;
    justify-content: start;
    gap: 0.15rem 0.8rem;
    margin-top: 0.08rem;
    text-align: right;
}

.profile-package-card__price--collection .profile-package-card__saving {
    display: block;
    color: var(--success);
    font-size: 1rem;
    white-space: nowrap;
}

.profile-package-card__price--collection span {
    grid-column: 1 / -1;
}

.profile-schema {
    display: grid;
    gap: 0.16rem;
    margin: 0.15rem 0 0.45rem;
    padding: 0.7rem 0.8rem;
    border-radius: 10px;
    background: rgba(85, 201, 139, 0.09);
}

.profile-schema span {
    color: var(--soft);
    font-size: 0.65rem;
    font-weight: 760;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.profile-package-card .button {
    align-self: flex-start;
    margin-top: auto;
}

.is-seat-leaving { animation: seat-tier-leave 150ms ease both; }
.is-seat-entering { animation: seat-tier-enter 250ms var(--ease-out) both; }

@keyframes seat-tier-leave {
    to { opacity: 0; transform: translateY(6px); }
}

@keyframes seat-tier-enter {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-list {
    display: grid;
    gap: 0.7rem;
}

.faq-list details {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.045);
}

.faq-list summary {
    min-height: 54px;
    padding: 0.9rem 1rem;
    color: var(--text);
    cursor: pointer;
    font-weight: 700;
}

.faq-list details > div {
    padding: 0 1rem 1rem;
    color: var(--muted);
}

/* Product detail */
.product-hero__media {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 1.1rem;
}

.product-hero__logo {
    position: static;
    width: min(54%, 310px);
    max-height: 76px;
    object-fit: contain;
    object-position: center;
}

.product-hero__logo--inline {
    width: min(360px, 62%);
    max-height: 94px;
    margin: 0 0 1.25rem;
    object-position: left center;
}

.host-compatibility {
    display: grid;
    gap: 0.75rem;
    max-width: 650px;
    margin: 1.5rem 0;
}

.host-compatibility__group {
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(5, 13, 23, 0.45);
}

.host-compatibility__group h3 {
    margin: 0 0 0.65rem;
    color: var(--soft);
    font-size: 0.75rem;
    font-weight: 780;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.host-compatibility__versions {
    display: grid;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.host-compatibility__versions--scrollable {
    max-height: 150px;
    padding-right: 0.45rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-color: rgba(255, 107, 44, 0.48) rgba(255, 255, 255, 0.05);
    scrollbar-width: thin;
}

.host-compatibility__versions--scrollable:focus-visible {
    outline: 2px solid var(--focus);
    outline-offset: 5px;
}

.host-compatibility__version {
    display: grid;
    grid-template-columns: 1.15rem minmax(0, 1fr) max-content;
    align-items: center;
    gap: 0.55rem;
    min-height: 30px;
}

.host-compatibility__version i {
    color: var(--soft);
    text-align: center;
}

.host-compatibility__version--supported i { color: var(--success); }
.host-compatibility__version--unsupported i { color: var(--danger); }
.host-compatibility__version--pending i { color: var(--warning); }

.host-compatibility__version span {
    color: var(--text);
    font-weight: 680;
}

.host-compatibility__version small {
    color: var(--soft);
    font-size: 0.72rem;
}

.compatibility-badge {
    display: inline-grid;
    gap: 0.15rem;
    margin: 0 0 1.3rem;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
}

.compatibility-badge span {
    color: var(--soft);
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.capability-grid article,
.detail-grid article {
    padding: 1.25rem;
}

.capability-grid article p,
.detail-grid article p {
    color: var(--muted);
    font-size: 0.92rem;
}

.product-card-icon {
    display: inline-grid;
    width: 2.6rem;
    height: 2.6rem;
    margin-bottom: 0.9rem;
    place-items: center;
    border: 1px solid rgba(255, 107, 44, 0.32);
    border-radius: 0.75rem;
    background: rgba(255, 107, 44, 0.09);
    color: var(--accent-bright);
    font-size: 1rem;
}

.product-ribbon-feature {
    display: grid;
    gap: clamp(1.5rem, 3.5vw, 2.6rem);
}

.product-ribbon-feature > div {
    max-width: 760px;
}

.product-ribbon-feature .media-placeholder {
    width: 100%;
    aspect-ratio: 21 / 7;
}

.product-screenshot {
    width: 100%;
    margin: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.product-screenshot img {
    width: 100%;
    height: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    object-fit: contain;
}

.product-screenshot--workspace img {
    max-height: 680px;
}

.product-authoring-feature {
    grid-template-columns: 1fr;
}

.product-authoring-feature > div {
    max-width: 760px;
}

.product-screenshot--authoring img {
    max-height: none;
}

.product-screenshot--map img {
    max-height: 680px;
}

.product-screenshot--delivery {
    display: grid;
    max-height: 760px;
    place-items: center;
}

.product-screenshot--delivery img {
    max-height: 760px;
}

.product-licensing-actions {
    margin-top: 1.5rem;
}

.licence-mode-card__icon {
    display: inline-grid;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 1rem;
    place-items: center;
    border: 1px solid rgba(255, 107, 44, 0.38);
    border-radius: 0.8rem;
    background: rgba(255, 107, 44, 0.1);
    color: var(--accent);
    font-size: 1.08rem;
}

.licence-mode-card:nth-child(2) .licence-mode-card__icon {
    border-color: rgba(90, 168, 255, 0.36);
    background: rgba(90, 168, 255, 0.1);
    color: #82bfff;
}

.licence-mode-card:nth-child(3) .licence-mode-card__icon {
    border-color: rgba(183, 194, 208, 0.32);
    background: rgba(183, 194, 208, 0.08);
    color: #d5dce6;
}

.availability-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.5fr);
    gap: clamp(2rem, 6vw, 5rem);
}

.price-display {
    color: var(--text);
    font-size: 2rem;
    font-weight: 760;
}

.price-display small {
    display: block;
    color: var(--soft);
    font-size: 0.86rem;
    font-weight: 500;
}

.release-inline,
.installer-inline {
    display: grid;
    gap: 0.3rem;
    margin-top: 0.85rem;
    padding: 1rem;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.045);
}

.release-inline span,
.release-inline time,
.installer-inline span,
.installer-inline time {
    color: var(--muted);
}

.installer-inline code {
    overflow-wrap: anywhere;
    color: var(--soft);
    font-size: 0.72rem;
}

.availability-actions {
    display: grid;
    align-content: start;
    gap: 0.7rem;
    padding: 1.35rem;
}

.availability-actions__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.25rem;
}

.availability-actions__heading h3 {
    margin: 0;
}

.availability-actions__heading img {
    width: min(132px, 44%);
    max-height: 44px;
    object-fit: contain;
    object-position: right center;
}

.profile-chip-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.profile-chip-grid li {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 0.7rem;
    padding: 0.8rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
}

.profile-chip-grid img,
.profile-chip-grid .receiver-grid__fallback {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    object-fit: contain;
}

.profile-chip-grid strong,
.profile-chip-grid small {
    display: block;
}

.profile-chip-grid strong {
    overflow-wrap: anywhere;
    line-height: 1.25;
}

.profile-chip-grid small {
    margin-top: 0.2rem;
    color: var(--soft);
    font-size: 0.72rem;
}

/* News */
.news-card {
    display: flex;
    flex-direction: column;
}

.news-card__media {
    display: flex;
    min-height: 190px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.news-card__media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 500ms var(--ease-out);
}

.news-card:hover .news-card__media img {
    transform: scale(1.025);
}

.news-card__media--technical,
.news-card__media--placeholder {
    position: relative;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    padding: 1.2rem;
    background:
        linear-gradient(180deg, transparent, rgba(4, 10, 19, 0.76)),
        url("../images/placeholder-media.svg") center / cover no-repeat,
        #18283d;
}

.news-card__media--technical span,
.news-card__media--placeholder span {
    color: var(--soft);
    font-size: 0.68rem;
    font-weight: 760;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.news-card__media--placeholder strong {
    color: var(--text);
    line-height: 1.16;
}

.news-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.2rem;
}

.news-card__body > p:not(.content-meta) {
    color: var(--muted);
}

.news-card__body .text-link {
    margin-top: auto;
}

.content-meta,
.article-byline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    color: var(--soft);
    font-size: 0.8rem;
}

.content-meta > span:first-child {
    color: var(--accent-bright);
    font-weight: 720;
}

.news-filter {
    display: flex;
    align-items: end;
    gap: 0.5rem;
}

.news-filter label {
    align-self: center;
    color: var(--muted);
    font-size: 0.88rem;
}

.news-filter select {
    min-height: 44px;
    padding: 0.55rem 2rem 0.55rem 0.72rem;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: var(--surface-solid);
    color: var(--text);
}

.article-header .longform-shell {
    position: relative;
    z-index: auto;
    padding-block: clamp(4rem, 7vw, 6rem);
}

.article-header h1 {
    max-width: 17ch;
    font-size: clamp(2.7rem, 5vw, 4.5rem);
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0 0 1.7rem;
    padding: 0;
    list-style: none;
    color: var(--soft);
    font-size: 0.82rem;
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin-left: 0.4rem;
    color: var(--border-strong);
}

.article-hero {
    margin-top: clamp(1.5rem, 4vw, 3rem);
}

.article-hero img,
.article-hero .media-placeholder {
    width: 100%;
    max-height: 650px;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.article-layout {
    position: relative;
    padding-block: clamp(3rem, 6vw, 5.5rem);
}

.article-aside {
    position: absolute;
    top: 5rem;
    left: calc(100% + 46px);
    display: grid;
    width: 230px;
    gap: 0.15rem;
    padding: 1rem;
    border-radius: var(--radius);
    background: rgba(17, 30, 46, 0.92);
    box-shadow: var(--shadow-sm);
}

.article-aside h2 {
    font-size: 1.05rem;
}

.article-aside a {
    display: flex;
    min-height: 42px;
    align-items: center;
    color: var(--muted);
    text-decoration: none;
}

.article-prose {
    color: var(--muted);
    font-size: 1.04rem;
}

.article-prose h2,
.article-prose h3 {
    margin-top: 2.2em;
}

.article-prose h2 {
    font-size: clamp(1.65rem, 3vw, 2.3rem);
}

.article-prose p,
.article-prose li {
    max-width: 72ch;
}

.article-prose img {
    max-width: 100%;
    border-radius: 12px;
}

.article-prose blockquote {
    margin-inline: 0;
    padding: 1rem 1.15rem;
    border-radius: 0 11px 11px 0;
    background: var(--accent-soft);
    color: var(--text);
    box-shadow: inset 4px 0 var(--accent);
}

.article-prose code {
    padding: 0.15em 0.35em;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.06);
}

.split-feature {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 6vw, 5rem);
}

.split-feature p:not(.eyebrow) {
    color: var(--muted);
}

/* About, privacy and contact */
.about-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
}

.about-intro__content > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.04rem;
}

.about-link-row {
    margin-top: 1.5rem;
}

.about-link-row .fas,
.site-page--about .section--cta .fas {
    font-size: 0.86em;
}

.about-process-card {
    position: relative;
    padding-top: 1.4rem !important;
}

.about-process-icon {
    display: inline-grid;
    width: 2.6rem;
    height: 2.6rem;
    margin-bottom: 1rem;
    place-items: center;
    border: 1px solid rgba(80, 210, 202, 0.38);
    border-radius: 0.75rem;
    background: rgba(0, 157, 148, 0.12);
    color: #63d6cf;
    font-size: 1.08rem;
}

.about-process-card:nth-child(2) .about-process-icon {
    border-color: rgba(255, 194, 71, 0.4);
    background: rgba(255, 171, 10, 0.12);
    color: #ffc247;
}

.about-process-card:nth-child(3) .about-process-icon {
    border-color: rgba(155, 119, 187, 0.45);
    background: rgba(83, 39, 120, 0.18);
    color: #b998d4;
}

.site-page--about main {
    --bg: #101113;
    --bg-deep: #08090a;
    --surface: rgba(26, 28, 31, 0.94);
    --surface-solid: #1b1d20;
    --surface-soft: rgba(255, 255, 255, 0.045);
    --surface-hover: rgba(255, 255, 255, 0.085);
    --border: rgba(225, 225, 225, 0.13);
    --border-strong: rgba(225, 225, 225, 0.22);
    --accent: #009d94;
    --accent-bright: #28c5bb;
    --accent-soft: rgba(0, 157, 148, 0.13);
    --accent-glow: rgba(0, 157, 148, 0.22);
    --link: #63d6cf;
    --focus: #ffcf6f;
    background: linear-gradient(180deg, #111214 0%, #0d0e10 62%, #08090a 100%);
}

.site-page--about .company-card--facts {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #191b1e;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.site-page--about .company-card--facts::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #009d94 0 33.333%, #ffab0a 33.333% 66.666%, #351755 66.666% 100%);
}

.site-page--about .company-facts div {
    border-top-color: rgba(225, 225, 225, 0.11);
}

.site-page--about .company-facts div:nth-child(3n + 1) dt { color: #50d2ca; }
.site-page--about .company-facts div:nth-child(3n + 2) dt { color: #ffc247; }
.site-page--about .company-facts div:nth-child(3n) dt { color: #9b77bb; }

.site-page--about .about-intro__content .lead {
    color: #e1e1e1;
    font-size: clamp(1.18rem, 2vw, 1.42rem);
    letter-spacing: 0.01em;
}

.site-page--about {
    display: flex;
    flex-direction: column;
}

.site-page--about main {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
}

.site-page--about main > .section {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
}

.site-page--about .about-intro {
    flex: 1;
    width: min(calc(100% - 48px), var(--content-width));
    margin-inline: auto;
    align-items: stretch;
}

.site-page--about .about-intro__copy {
    display: grid;
    grid-template-rows: auto minmax(2rem, 1fr) auto;
    align-items: start;
}

.site-page--about .about-link-row {
    grid-row: 3;
    margin-top: 0;
}

.site-page--about .company-card {
    align-self: center;
}

.site-page--about .section--cta .cta-panel {
    border-color: rgba(225, 225, 225, 0.14);
    background: #181a1d;
    box-shadow:
        inset 4px 0 #009d94,
        inset -4px 0 #351755,
        0 22px 60px rgba(0, 0, 0, 0.24);
}

.button--gps-aqua {
    border-color: rgba(101, 215, 208, 0.62);
    background: linear-gradient(135deg, #008e86, #00b5aa);
    box-shadow: 0 12px 28px rgba(0, 157, 148, 0.18);
    color: #fff;
}

.button--gps-aqua:hover {
    border-color: rgba(141, 239, 232, 0.82);
    background: linear-gradient(135deg, #00a49b, #19c5ba);
    color: #fff;
}

.button--gps-gold {
    border-color: rgba(255, 202, 100, 0.65);
    background: linear-gradient(135deg, #e99700, #ffb629);
    box-shadow: 0 12px 28px rgba(255, 171, 10, 0.18);
    color: #17100a;
}

.button--gps-gold:hover {
    border-color: rgba(255, 224, 163, 0.85);
    background: linear-gradient(135deg, #ffab0a, #ffc554);
    color: #17100a;
}

.button--gps-purple {
    border-color: rgba(117, 78, 151, 0.72);
    background: linear-gradient(135deg, #351755, #512675);
    box-shadow: 0 12px 28px rgba(53, 23, 85, 0.3);
    color: #fff;
}

.button--gps-purple:hover {
    border-color: rgba(155, 119, 187, 0.88);
    background: linear-gradient(135deg, #442065, #63318b);
    color: #fff;
}

.company-card {
    padding: 1.5rem;
}

.company-card img {
    width: 100%;
    margin-bottom: 1rem;
}

.company-card p {
    color: var(--muted);
}

.company-card--facts {
    padding: clamp(1.35rem, 2.8vw, 2rem);
    border-top: 3px solid var(--accent);
}

.company-card--facts > img {
    width: min(100%, 310px);
    height: 76px;
    object-fit: contain;
    object-position: left center;
}

.company-facts {
    display: grid;
    gap: 0;
    margin: 1rem 0 0;
}

.company-facts div {
    display: grid;
    grid-template-columns: minmax(110px, 0.48fr) minmax(0, 1fr);
    gap: 1rem;
    padding-block: 0.72rem;
    border-top: 1px solid var(--border);
}

.company-facts dt {
    color: var(--soft);
    font-size: 0.72rem;
    font-weight: 760;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.company-facts dd {
    margin: 0;
    color: var(--text);
}

.company-facts address {
    display: grid;
    margin: 0;
    font: inherit;
}

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

.privacy-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: clamp(1.4rem, 4vw, 3rem);
    padding-block: clamp(3rem, 5vw, 4.4rem);
}

.privacy-hero__mark {
    display: grid;
    width: clamp(78px, 9vw, 112px);
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgba(255, 135, 79, 0.28);
    border-radius: 24px;
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.13), transparent 42%),
        linear-gradient(145deg, rgba(255, 107, 44, 0.24), rgba(17, 30, 46, 0.94));
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.25);
    color: var(--accent-bright);
    font-size: clamp(2rem, 4vw, 3rem);
}

.page-hero--legal .page-hero__copy h1 {
    max-width: 19ch;
}

.privacy-summary-grid article {
    display: flex;
    align-items: flex-start;
    gap: 0.95rem;
    padding: 1.25rem;
}

.privacy-summary-grid article > .fas {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 11px;
    background: var(--accent-soft);
    color: var(--accent-bright);
}

.privacy-summary-grid h3 {
    margin-bottom: 0.35rem;
}

.privacy-summary-grid p,
.policy-date {
    color: var(--muted);
}

.privacy-assurance {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.15rem;
    padding: 1.1rem 1.25rem;
    border: 1px solid rgba(85, 201, 139, 0.2);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(85, 201, 139, 0.09), rgba(17, 30, 46, 0.9));
}

.privacy-assurance > .fas {
    color: #77e3aa;
    font-size: 1.65rem;
}

.privacy-assurance h3,
.privacy-assurance p {
    margin-bottom: 0;
}

.privacy-assurance p {
    color: var(--muted);
}

.policy-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: start;
    gap: clamp(2rem, 6vw, 5rem);
}

.policy-nav {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    display: grid;
    gap: 0.18rem;
    padding: 1rem;
    border-radius: var(--radius);
    background: rgba(17, 30, 46, 0.9);
}

.policy-nav h2 {
    font-size: 1rem;
}

.policy-nav a {
    display: flex;
    min-height: 40px;
    align-items: center;
    padding: 0.42rem 0.58rem;
    border-radius: 8px;
    color: var(--muted);
    text-decoration: none;
}

.policy-nav a:hover {
    background: var(--surface-hover);
    color: var(--text);
}

.policy-content > section {
    margin-bottom: 3.2rem;
    scroll-margin-top: calc(var(--header-height) + 24px);
}

.policy-content > section:first-child h2 {
    margin-top: 0;
}

.policy-content > section > h2 {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.policy-content > section > h2 .fas {
    color: var(--accent-bright);
    font-size: 0.62em;
}

.policy-contact {
    margin-bottom: 0 !important;
}

.policy-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.policy-contact-grid article {
    display: block;
    min-width: 0;
    padding: 1.05rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
}

.policy-contact-grid .policy-contact-card {
    display: grid;
    min-height: 118px;
    align-content: start;
    gap: 0.62rem;
}

.policy-contact-card__header {
    display: flex;
    align-items: center;
    gap: 0.62rem;
}

.policy-contact-card__header .fas {
    display: inline-grid;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    place-items: center;
    border-radius: 8px;
    background: var(--accent-soft);
    color: var(--accent-bright);
    font-size: 0.78rem;
}

.policy-contact-grid .policy-contact-card__header h3,
.policy-contact-card address {
    margin: 0;
}

.policy-contact-grid h3 {
    display: flex;
    align-items: center;
    gap: 0.62rem;
    margin-bottom: 0.32rem;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.policy-contact-grid h3 .fas {
    display: inline-grid;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    place-items: center;
    border-radius: 8px;
    background: var(--accent-soft);
    color: var(--accent-bright);
    font-size: 0.78rem;
}

.policy-contact-grid a {
    overflow-wrap: anywhere;
}

.policy-contact-grid address {
    color: var(--muted);
    font-style: normal;
}

.policy-contact-grid address span {
    display: block;
}

.policy-contact-note {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border-left: 3px solid var(--accent);
    background: var(--accent-soft);
    color: var(--muted);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(290px, 0.72fr);
    align-items: start;
    gap: 1.2rem;
}

.contact-form-panel,
.contact-details {
    padding: clamp(1.3rem, 3vw, 2rem);
}

.contact-form-panel > p,
.contact-details > p:not(.eyebrow) {
    color: var(--muted);
}

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

.field {
    display: grid;
    align-content: start;
    gap: 0.38rem;
}

.field--wide {
    grid-column: 1 / -1;
}

.field label {
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 680;
}

.optional,
.field-help {
    color: var(--soft);
    font-size: 0.76rem;
    font-weight: 500;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 48px;
    padding: 0.72rem 0.82rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #0c1726;
    color: var(--text);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
    min-height: 180px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--accent);
    outline: 0;
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.field--checkbox {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 0.65rem;
    margin: 1rem 0;
}

.field--checkbox input {
    width: 18px;
    min-height: 18px;
    margin-top: 0.25rem;
}

.field-error,
.validation-summary-errors {
    color: #ffadb1;
    font-size: 0.82rem;
}

.validation-summary-errors,
.success-panel,
.notice-panel {
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.045);
}

.success-panel {
    background: rgba(85, 201, 139, 0.1);
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.contact-details dl {
    display: grid;
    gap: 0;
    margin: 0;
}

.contact-details dl div {
    padding-block: 0.85rem;
    border-bottom: 1px solid rgba(206, 221, 238, 0.09);
}

.contact-details dt {
    color: var(--soft);
    font-size: 0.72rem;
    font-weight: 760;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-details dd {
    margin: 0.2rem 0 0;
    overflow-wrap: anywhere;
    color: var(--muted);
}

/* Error page */
.error-page__grid {
    z-index: auto;
    min-height: calc(100vh - var(--header-height));
}

.error-code {
    margin-bottom: 0.25rem;
    color: rgba(255, 107, 44, 0.28);
    font-size: clamp(5rem, 14vw, 10rem);
    font-weight: 800;
    line-height: 0.8;
}

/* Footer */
.site-footer {
    padding-top: clamp(0.55rem, 1.1vw, 0.9rem);
    background: rgba(3, 8, 15, 0.66);
}

.site-footer__identity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.65rem, 1.6vw, 1.05rem);
    padding-bottom: 0;
    text-align: center;
}

.site-brand--footer {
    width: 190px;
}

.site-footer__identity p {
    margin: 0;
    color: var(--soft);
    font-size: 0.84rem;
}

.site-footer__relationship {
    display: inline-grid;
    width: clamp(2.8rem, 4.2vw, 4rem);
    aspect-ratio: 1;
    place-items: center;
    color: #fff;
    font-family: "Segoe UI Variable Display", "Segoe UI", sans-serif;
    font-size: clamp(4.8rem, 7.2vw, 6.2rem);
    font-weight: 200;
    letter-spacing: -0.14em;
    line-height: 1;
    text-shadow: 0 0 22px rgba(255, 255, 255, 0.18);
    transform: scaleX(0.62);
    white-space: nowrap;
}

.site-footer__studio-link {
    display: block;
    width: min(210px, 30vw);
    transform: translateX(0.25rem);
}

.site-footer__studio-link img {
    width: 100%;
}

.site-footer__simple-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.1rem;
    padding: 0.3rem 0;
}

.site-footer__simple-links--centred {
    justify-content: center;
    text-align: center;
}

.site-footer__simple-links a {
    min-height: 34px;
    align-content: center;
    color: var(--muted);
    font-size: 0.9rem;
    text-decoration: none;
}

.site-footer__simple-links a:hover {
    color: var(--text);
}

.site-footer__service-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.1rem 0 0.55rem;
}

.site-footer__service-links .button {
    min-width: 154px;
}

.site-footer__base {
    padding: 0.45rem 0 0.85rem;
    color: var(--soft);
    text-align: center;
}

.site-footer__base p {
    margin: 0;
    font-size: 0.8rem;
}

/* Legacy-compatible utility components retained for dynamic API content. */
.pricing-disclaimer,
.table-note {
    margin-top: 1rem;
    color: var(--soft);
    font-size: 0.88rem;
}

.comparison-table th,
.comparison-table td {
    text-align: left;
}

.comparison-table thead th {
    background: rgba(255, 255, 255, 0.045);
    color: var(--soft);
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.feature-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-filters button {
    min-height: 44px;
    padding: 0.55rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
    cursor: pointer;
}

.feature-filters button:hover,
.feature-filters button.is-active {
    border-color: rgba(255, 107, 44, 0.45);
    background: var(--accent-soft);
    color: var(--text);
}

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

.feature-group {
    display: grid;
    grid-template-columns: minmax(250px, 0.58fr) minmax(0, 1.42fr);
    gap: 2rem;
    padding: 1.4rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
}

.feature-group[hidden],
[hidden] {
    display: none !important;
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem 1.2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 1.2rem;
    color: var(--muted);
}

.check-list li::before {
    content: "";
    position: absolute;
    top: 0.66em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

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

@media (max-width: 1360px) {
    .article-aside {
        position: static;
        width: auto;
        margin-top: 2rem;
    }
}

@media (max-width: 1160px) {
    body::before {
        content: "";
        position: fixed;
        inset: var(--header-height) 0 0;
        z-index: 98;
        background: rgba(2, 7, 13, 0.7);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        backdrop-filter: blur(5px);
        transition: opacity 220ms ease, visibility 0s linear 220ms;
    }

    body.nav-open::before {
        opacity: 1;
        visibility: visible;
        transition-delay: 0s;
    }

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

    .js .site-nav {
        position: fixed;
        inset: calc(var(--header-height) + 10px) 16px auto;
        z-index: 99;
        display: flex;
        width: auto;
        max-height: calc(100dvh - var(--header-height) - 26px);
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: column;
        gap: 0.2rem;
        padding: 0.9rem;
        overflow-y: auto;
        border: 1px solid var(--border);
        border-radius: 18px;
        background: rgba(7, 16, 29, 0.98);
        box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px) scale(0.985);
        transform-origin: top center;
        transition:
            opacity 220ms ease,
            transform 280ms var(--ease-out),
            visibility 0s linear 280ms;
    }

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

    .site-nav > a {
        min-height: 52px;
        padding: 0.82rem 0.9rem;
        font-size: 1.02rem;
    }

    .site-nav > a::after {
        top: 0.72rem;
        right: auto;
        bottom: 0.72rem;
        left: 0;
        width: 3px;
        height: auto;
        transform: scaleY(0);
    }

    .site-nav > a:hover::after,
    .site-nav [aria-current="page"]::after {
        transform: scaleY(1);
    }

    .site-nav__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin: 0.4rem 0 0;
    }

    .site-nav__actions .button {
        width: 100%;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__lines span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__lines span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__lines span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

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

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

    .article-aside {
        position: static;
        width: auto;
        margin-top: 2rem;
    }
}

@media (max-width: 960px) {
    .hero__grid,
    .page-hero__grid,
    .product-hero__grid,
    .error-page__grid,
    .map-feature,
    .about-intro,
    .contact-layout,
    .availability-grid,
    .policy-layout {
        grid-template-columns: 1fr;
    }

    .map-banner__inner {
        grid-template-columns: minmax(170px, 0.55fr) minmax(0, 1.45fr);
    }

    .map-banner .button-row {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .profile-package-card--collection {
        grid-template-areas:
            "heading price"
            "includes includes";
        grid-template-columns: minmax(0, 1fr) max-content;
    }

    .profile-collection-icons {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .hero__grid {
        min-height: 0;
    }

    .page-hero-icon {
        right: -10rem;
        width: clamp(430px, 72vw, 580px);
        opacity: 0.16;
    }

    .product-hero__media > .page-hero-icon {
        top: 66%;
        right: 35%;
        width: clamp(430px, 68vw, 560px);
        transform: translate3d(50%, -50%, 0);
    }

    .product-hero__media {
        min-height: clamp(260px, 48vw, 390px);
    }

    .hero__copy h1,
    .page-hero h1,
    .product-hero h1 {
        max-width: 17ch;
    }

    .media-placeholder {
        max-width: 720px;
    }

    .tool-stream-grid,
    .release-stream-grid,
    .licence-mode-grid,
    .privacy-summary-grid {
        grid-template-columns: 1fr;
    }

    .licence-grid--free {
        grid-template-columns: 1fr;
    }

    .privacy-hero {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .privacy-hero__mark {
        width: 72px;
        border-radius: 18px;
    }

    .policy-contact-grid {
        grid-template-columns: 1fr;
    }

    .tool-stream__logo,
    .tool-stream .media-placeholder,
    .wiki-wordmark {
        min-height: 0;
        height: 100px;
    }

    .product-grid--three,
    .news-grid,
    .plan-grid,
    .profile-package-grid,
    .detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .policy-nav {
        position: static;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .policy-nav h2 {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .page-hero-icon,
    .page-hero__inner > .page-hero-icon,
    .article-header .page-hero-icon,
    .privacy-hero > .page-hero-icon {
        right: -11rem;
        width: 470px;
        opacity: 0.13;
    }

    .profile-collection-tooltip-wrap:nth-child(odd) .profile-tier-tooltip {
        right: auto;
        left: 0;
        transform: translate(0, 5px) scale(0.985);
        transform-origin: bottom left;
    }

    .profile-collection-tooltip-wrap:nth-child(even) .profile-tier-tooltip {
        right: 0;
        left: auto;
        transform: translate(0, 5px) scale(0.985);
        transform-origin: bottom right;
    }

    .profile-collection-tooltip-wrap:nth-child(n):hover .profile-tier-tooltip,
    .profile-collection-tooltip-wrap:nth-child(n):focus-within .profile-tier-tooltip {
        transform: translate(0, 0) scale(1);
    }

    :root {
        --header-height: 70px;
    }

    body {
        font-size: 0.98rem;
    }

    h1 {
        font-size: clamp(2.55rem, 12vw, 3.55rem);
    }

    h2 {
        font-size: clamp(1.85rem, 8vw, 2.45rem);
    }

    .site-shell,
    .longform-shell {
        width: min(calc(100% - 32px), var(--content-width));
    }

    .site-page--about .about-intro {
        width: min(calc(100% - 32px), var(--content-width));
    }

    .site-brand {
        width: 148px;
    }

    .menu-toggle > span:last-child {
        display: none;
    }

    .hero__grid,
    .page-hero__grid,
    .product-hero__grid,
    .error-page__grid {
        gap: 2.2rem;
        padding-top: 3rem;
        padding-bottom: 2.2rem;
    }

    .hero__copy h1,
    .page-hero h1,
    .product-hero h1 {
        max-width: 15ch;
    }

    .media-placeholder {
        aspect-ratio: 16 / 9;
        border-radius: 19px;
    }

    .section {
        padding-block: 3.5rem;
    }

    .section-heading--split,
    .split-feature {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-heading--split > p,
    .section-heading--split > .text-link,
    .section-heading--split > form {
        justify-self: start;
    }

    .product-grid--five,
    .product-grid--three,
    .news-grid,
    .plan-grid,
    .profile-package-grid,
    .detail-grid,
    .licence-grid--free,
    .browser-tool-grid,
    .product-grid--two {
        grid-template-columns: 1fr;
    }

    .profile-tier-grid {
        grid-template-columns: 1fr;
        margin-bottom: 2.3rem;
    }

    .profile-package-card--collection {
        grid-template-areas:
            "heading"
            "price"
            "includes";
        grid-template-columns: 1fr;
    }

    .profile-package-card--collection .profile-package-card__price {
        justify-self: start;
    }

    .profile-package-card__price--collection {
        text-align: left;
    }

    .profile-package-card:nth-child(3n) .profile-tier-tooltip {
        right: auto;
        left: 0;
        transform-origin: top left;
    }

    .map-banner__inner {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .map-banner .button-row {
        grid-column: auto;
    }

    .map-banner__logo {
        width: min(78%, 280px);
    }

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

    .receiver-grid a {
        min-height: 74px;
    }

    .workflow-list,
    .capability-grid,
    .profile-chip-grid {
        grid-template-columns: 1fr;
    }

    .workflow-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.4rem 0.75rem;
    }

    .workflow-strip__item:last-child {
        grid-column: 1 / -1;
    }

    .workflow-details,
    .workflow-detail {
        min-height: 0;
    }

    .workflow-detail {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .workflow-detail img {
        height: auto;
        max-height: 420px;
    }

    .workflow-strip__icon {
        width: 62px;
        height: 62px;
        font-size: 2rem;
    }

    .feature-comparison {
        overflow: visible;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .feature-comparison__head {
        display: none;
    }

    .feature-comparison__body {
        display: grid;
        gap: 0.85rem;
    }

    .feature-comparison__row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        overflow: hidden;
        border: 1px solid var(--border);
        border-radius: 13px;
        background: rgba(13, 24, 38, 0.94);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
    }

    .feature-comparison__name {
        grid-column: 1 / -1;
        min-height: 0;
        padding: 0.9rem 1rem;
        border-bottom: 1px solid rgba(206, 221, 238, 0.09);
        background: rgba(255, 255, 255, 0.035);
        font-size: 0.9rem;
    }

    .feature-comparison__value {
        gap: 0.4rem;
        padding: 0.72rem 0.25rem 0.8rem;
    }

    .feature-comparison__mobile-label {
        display: flex;
        min-height: 24px;
        align-items: center;
        justify-content: center;
    }

    .feature-comparison__mobile-label img {
        width: min(100%, 72px);
        height: 24px;
        object-fit: contain;
    }

    .feature-comparison__value--acad { box-shadow: inset 0 3px 0 var(--acad); }
    .feature-comparison__value--bcad { box-shadow: inset 0 3px 0 var(--bcad); }
    .feature-comparison__value--dcad { box-shadow: inset 0 3px 0 var(--dcad); }
    .feature-comparison__value--map { box-shadow: inset 0 3px 0 var(--map); }

    .seat-pricing__toggle {
        grid-template-columns: 1fr;
    }

    .pricing-card__actions,
    .button-row {
        align-items: stretch;
    }

    .free-tool-card {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 0.75rem;
    }

    .free-tool-card__logo,
    .free-tool-card__logo--wiki {
        width: min(100%, 300px);
        height: 90px;
    }

    .pricing-card__actions .button {
        flex: 1 1 auto;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .field--wide {
        grid-column: auto;
    }

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

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer__identity {
        display: grid;
        grid-template-columns: minmax(120px, 0.9fr) auto minmax(120px, 1fr);
        gap: 0.55rem;
    }

    .site-brand--footer,
    .site-footer__studio-link {
        width: 100%;
    }

    .site-footer__identity p {
        font-size: 0.72rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .profile-collection-icons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .host-compatibility__version {
        grid-template-columns: 1.15rem minmax(0, 1fr);
        align-items: start;
    }

    .host-compatibility__version small {
        grid-column: 2;
        font-size: 0.78rem;
    }

    .product-hero__logo--inline {
        width: min(100%, 330px);
    }
}

@media (max-width: 480px) {
    .receiver-grid {
        grid-template-columns: 1fr;
    }

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

    .policy-nav {
        grid-template-columns: 1fr;
    }

    .site-footer__identity {
        width: 100%;
        grid-template-columns: minmax(96px, 0.9fr) auto minmax(108px, 1fr);
        justify-items: stretch;
        gap: 0.4rem;
    }

    .site-brand--footer,
    .site-footer__studio-link {
        width: 100%;
    }

    .site-footer__relationship {
        width: 2.5rem;
        max-width: none;
        font-size: 4rem !important;
        line-height: 1;
    }

    .site-footer__simple-links {
        justify-content: center;
    }

    .site-nav__actions {
        grid-template-columns: 1fr;
    }

    .site-footer__service-links {
        align-items: stretch;
        flex-direction: column;
    }

    .site-footer__service-links .button {
        width: 100%;
    }
}

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

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

    .site-particles {
        display: none;
    }

    .motion-ready .motion-item {
        opacity: 1;
        transform: none;
    }
}

@media print {
    .site-header,
    .site-footer,
    .site-particles,
    .website-campaigns,
    .article-aside,
    .policy-nav {
        display: none !important;
    }

    body,
    .section,
    .page-hero,
    .article-header {
        background: #fff;
        color: #111;
    }

    h1,
    h2,
    h3,
    h4,
    p,
    li {
        color: #111 !important;
    }

    a {
        color: #111;
        text-decoration: underline;
    }
}
