/* AERO UHF: design system (CAEN RFID inspired palette) */

:root {
    /* Brand green (logo / primary identity) */
    --brand: #00a82d;
    --brand-dark: #008f26;
    --brand-050: #e9f7ee;
    /* Action blue (CTAs / feature bands) */
    --primary: #1863dc;
    --primary-dark: #0056a7;
    --primary-050: #eaf1fc;
    /* Neutrals */
    --ink: #14181b;
    --body: #333333;
    --muted: #6b7280;
    --surface: #ffffff;
    --surface-alt: #f4f4f6;
    --border: #e5e7eb;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Ubuntu", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
        Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    color: var(--body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--ink);
}

/* ---------- Reusable components ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1;
    transition: background-color 0.2s ease, color 0.2s ease,
        border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-brand {
    background: var(--brand);
    color: #fff;
}

.btn-brand:hover {
    background: var(--brand-dark);
}

.btn-outline {
    border: 1.5px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-050);
}

.btn-light {
    background: #fff;
    color: var(--primary);
}

.btn-light:hover {
    background: #eef2f7;
}

.btn-ghost-light {
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    background: transparent;
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.12);
}

.eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.eyebrow-brand {
    color: var(--brand);
}

/* Blue feature band (CAEN style) */
.band {
    background: var(--primary);
    color: #fff;
}

.band h1,
.band h2,
.band h3 {
    color: #fff;
}

/* Link accents */
.link-primary {
    color: var(--primary);
    font-weight: 600;
}

.link-primary:hover {
    color: var(--primary-dark);
}

/* Nav link underline animation */
.nav-link {
    position: relative;
    color: var(--ink);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 2px;
    width: 0;
    background: var(--primary);
    transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--primary);
}

/* Carousel */
.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-slide {
    min-width: 100%;
}

/* Fade / rise on scroll */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Soft product backdrop */
.product-stage {
    background: radial-gradient(120% 120% at 50% 25%,
            #ffffff 0%,
            #f3f5f8 60%,
            #e9edf2 100%);
}

/* Header */
.site-header {
    transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 4px 20px -12px rgba(15, 23, 42, 0.25);
}

/* Hide scrollbar for horizontal scrollers */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ---------- Premium product storytelling ---------- */

body {
    overflow-x: hidden;
    background: #fff;
}

::selection {
    background: rgba(0, 196, 72, 0.24);
    color: #07110a;
}

:focus-visible {
    outline: 3px solid rgba(37, 131, 255, 0.58);
    outline-offset: 3px;
}

.site-header {
    border-color: rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.88);
}

.premium-dark {
    color: rgba(255, 255, 255, 0.78);
    background: #050807;
}

.premium-dark h1,
.premium-dark h2,
.premium-dark h3,
.premium-dark h4 {
    color: #fff;
}

.premium-shell {
    width: min(calc(100% - 2rem), 80rem);
    margin-inline: auto;
}

.premium-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #46db73;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.premium-kicker::before {
    width: 1.75rem;
    height: 1px;
    background: currentColor;
    content: "";
}

.premium-display {
    max-width: 12ch;
    margin-top: 1.2rem;
    font-size: clamp(3.4rem, 8.2vw, 7.8rem);
    font-weight: 700;
    letter-spacing: -0.065em;
    line-height: 0.92;
}

.premium-display--wide {
    max-width: 15ch;
    font-size: clamp(3rem, 7vw, 6.8rem);
}

.premium-lede {
    max-width: 38rem;
    margin-top: 1.6rem;
    color: rgba(255, 255, 255, 0.66);
    font-size: clamp(1.08rem, 1.8vw, 1.35rem);
    line-height: 1.65;
}

.premium-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.premium-button {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.75rem 1.35rem;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.premium-button--brand {
    color: #041007;
    background: #4de076;
}

.premium-button--brand:hover {
    background: #75ea94;
}

.premium-button--glass {
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
}

.premium-button--glass:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.premium-button--light {
    color: #0b1510;
    background: #fff;
}

.premium-button--outline-dark {
    border-color: rgba(15, 23, 42, 0.18);
    color: #101815;
    background: transparent;
}

.premium-button--outline-dark:hover {
    border-color: rgba(15, 23, 42, 0.36);
    background: rgba(15, 23, 42, 0.04);
}

.premium-hero {
    position: relative;
    isolation: isolate;
    min-height: calc(100svh - 4rem);
    overflow: hidden;
    background:
        radial-gradient(circle at 72% 40%, rgba(30, 145, 72, 0.18), transparent 26rem),
        radial-gradient(circle at 50% 120%, rgba(24, 99, 220, 0.12), transparent 38rem),
        #050807;
}

.premium-hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 4.5rem 4.5rem;
    mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 70%, transparent);
    content: "";
}

.premium-hero__inner {
    display: grid;
    min-height: calc(100svh - 4rem);
    align-items: center;
    gap: 3rem;
    padding-block: clamp(4.5rem, 10vw, 8rem);
}

.premium-hero__copy {
    position: relative;
    z-index: 2;
}

.premium-hero__visual {
    position: relative;
    display: grid;
    min-height: min(42rem, 68vw);
    place-items: center;
}

.premium-hero__product {
    position: relative;
    z-index: 2;
    width: min(100%, 43rem);
    filter: drop-shadow(0 3.5rem 4rem rgba(0, 0, 0, 0.58));
    transform: perspective(1200px) rotateX(calc(2deg + var(--story-progress, 0) * -2deg)) translateY(calc(var(--story-progress, 0) * -1.2rem));
}

.signal-orbit {
    position: absolute;
    z-index: 1;
    width: 86%;
    aspect-ratio: 1;
    border: 1px solid rgba(76, 222, 116, 0.24);
    border-radius: 50%;
    box-shadow: inset 0 0 4rem rgba(76, 222, 116, 0.04), 0 0 4rem rgba(76, 222, 116, 0.04);
}

.signal-orbit::before,
.signal-orbit::after {
    position: absolute;
    border: 1px solid rgba(76, 222, 116, 0.14);
    border-radius: inherit;
    content: "";
}

.signal-orbit::before {
    inset: 13%;
}

.signal-orbit::after {
    inset: 27%;
}

.signal-orbit__dot {
    position: absolute;
    top: 17%;
    right: 12%;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: #5aea80;
    box-shadow: 0 0 0 0.55rem rgba(90, 234, 128, 0.1), 0 0 2rem #32d866;
    animation: orbit-pulse 2.8s ease-in-out infinite;
}

@keyframes orbit-pulse {
    50% { transform: scale(1.35); opacity: 0.7; }
}

.floating-spec {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 1rem;
    padding: 0.8rem 1rem;
    color: rgba(255, 255, 255, 0.62);
    background: rgba(8, 13, 11, 0.72);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
    font-size: 0.76rem;
}

.floating-spec strong {
    color: #fff;
    font-size: 1rem;
}

.floating-spec--top {
    top: 13%;
    right: 0;
}

.floating-spec--bottom {
    bottom: 13%;
    left: 0;
}

.premium-metrics {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(4, 8, 6, 0.74);
}

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

.premium-metric {
    padding: 1.5rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.premium-metric strong {
    display: block;
    color: #fff;
    font-size: clamp(1.55rem, 3vw, 2.6rem);
    letter-spacing: -0.04em;
    line-height: 1;
}

.premium-metric span {
    display: block;
    margin-top: 0.55rem;
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.premium-section {
    padding-block: clamp(5rem, 10vw, 9rem);
}

.premium-section--soft {
    background: #f3f5f3;
}

.premium-section__intro {
    max-width: 52rem;
}

.premium-section__intro--center {
    margin-inline: auto;
    text-align: center;
}

.premium-section__title {
    margin-top: 1rem;
    color: #0b110e;
    font-size: clamp(2.6rem, 6vw, 5.6rem);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.premium-section__lede {
    max-width: 42rem;
    margin-top: 1.4rem;
    color: #647069;
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    line-height: 1.7;
}

.premium-section__intro--center .premium-section__lede {
    margin-inline: auto;
}

.premium-bento {
    display: grid;
    gap: 1rem;
    margin-top: 3.5rem;
}

.premium-card {
    position: relative;
    min-height: 21rem;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 2rem;
    padding: clamp(1.7rem, 4vw, 3rem);
    background: #fff;
    box-shadow: 0 1.2rem 4rem rgba(15, 23, 42, 0.06);
}

.premium-card--dark {
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.64);
    background: #09100d;
}

.premium-card--dark h3 {
    color: #fff;
}

.premium-card__number {
    color: #17b84c;
    font-size: clamp(3.2rem, 8vw, 7rem);
    font-weight: 700;
    letter-spacing: -0.07em;
    line-height: 0.9;
}

.premium-card h3 {
    max-width: 19ch;
    margin-top: 1.3rem;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.premium-card p {
    max-width: 34rem;
    margin-top: 1rem;
    color: #68736d;
    line-height: 1.65;
}

.premium-card--dark p {
    color: rgba(255, 255, 255, 0.58);
}

.chip-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 2rem;
}

.tech-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 999px;
    padding: 0.55rem 0.8rem;
    color: #53605a;
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 600;
}

.premium-card--dark .tech-chip {
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.05);
}

/* Sticky visual stories */
.scroll-story {
    --story-progress: 0;
    position: relative;
    background:
        radial-gradient(circle at 72% 45%, rgba(26, 142, 66, 0.14), transparent 30rem),
        #050807;
}

.scroll-story__grid {
    display: grid;
    gap: 2rem;
}

.scroll-story__visual {
    position: relative;
    display: grid;
    min-height: 34rem;
    place-items: center;
    overflow: hidden;
}

.scroll-story__visual::after {
    position: absolute;
    right: 8%;
    bottom: 8%;
    left: 8%;
    height: 2.2rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    filter: blur(1.2rem);
    content: "";
}

.story-image {
    position: absolute;
    z-index: 2;
    width: min(84%, 43rem);
    max-height: 72%;
    object-fit: contain;
    opacity: 0;
    filter: drop-shadow(0 2.5rem 3rem rgba(0, 0, 0, 0.6));
    transform: scale(0.93) translateY(1.5rem);
    transition: opacity 650ms ease, transform 850ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.story-image.is-active {
    opacity: 1;
    transform: scale(1) translateY(calc(var(--story-progress) * -0.7rem));
}

.story-radar {
    position: absolute;
    z-index: 1;
    width: min(76%, 35rem);
    aspect-ratio: 1;
    border: 1px solid rgba(67, 223, 109, 0.2);
    border-radius: 50%;
    transform: scale(calc(0.86 + var(--story-progress) * 0.18));
}

.story-radar::before,
.story-radar::after {
    position: absolute;
    border: inherit;
    border-radius: inherit;
    content: "";
}

.story-radar::before { inset: 17%; }
.story-radar::after { inset: 34%; }

.scroll-story__steps {
    position: relative;
    z-index: 3;
}

.story-step {
    display: flex;
    min-height: 72vh;
    flex-direction: column;
    justify-content: center;
    padding-block: 4rem;
    opacity: 0.34;
    transition: opacity 350ms ease;
}

.story-step.is-active {
    opacity: 1;
}

.story-step__index {
    color: #43df6d;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.story-step h2,
.story-step h3 {
    max-width: 13ch;
    margin-top: 1rem;
    font-size: clamp(2.3rem, 5vw, 4.8rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 0.98;
}

.story-step p {
    max-width: 31rem;
    margin-top: 1.4rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 1.06rem;
    line-height: 1.7;
}

.story-step__detail {
    display: inline-flex;
    width: fit-content;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 1rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Readers and specification layouts */
.product-overview {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.product-overview__stage {
    position: relative;
    display: grid;
    min-height: 30rem;
    place-items: center;
    border-radius: 2.2rem;
    background: radial-gradient(circle at 50% 38%, #fff 0, #eef1ef 50%, #e2e8e4 100%);
}

.product-overview__stage img {
    position: relative;
    z-index: 1;
    width: min(82%, 35rem);
    filter: drop-shadow(0 2.5rem 2.7rem rgba(15, 23, 42, 0.22));
}

.product-overview__stage::before {
    position: absolute;
    width: 68%;
    aspect-ratio: 1;
    border: 1px solid rgba(0, 168, 45, 0.16);
    border-radius: 50%;
    content: "";
}

.model-picker {
    max-width: 32rem;
    margin-top: 2rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 1.4rem;
    padding: 1rem;
    background: #fff;
}

.model-picker label {
    display: block;
    margin: 0 0 0.55rem 0.15rem;
    color: #647069;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.model-picker select {
    width: 100%;
    min-height: 3rem;
    border: 1px solid rgba(15, 23, 42, 0.16);
    border-radius: 0.8rem;
    padding: 0.7rem 0.9rem;
    color: #111915;
    background: #fff;
    font: inherit;
}

.model-picker__actions {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.8rem;
}

.spec-table-wrap {
    margin-top: 3rem;
    overflow-x: auto;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 1.5rem;
    background: #fff;
}

.spec-table {
    width: 100%;
    min-width: 42rem;
    border-collapse: collapse;
    text-align: left;
}

.spec-table th,
.spec-table td {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding: 1.05rem 1.25rem;
    vertical-align: top;
}

.spec-table th {
    width: 28%;
    color: #18221d;
    background: #f5f7f5;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.spec-table td {
    color: #626d67;
}

/* AI integration experience */
.ai-integrator {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 2.5rem 7rem rgba(0, 0, 0, 0.35);
}

.ai-integrator::before {
    position: absolute;
    top: -12rem;
    right: -8rem;
    width: 30rem;
    height: 30rem;
    border-radius: 50%;
    background: rgba(31, 202, 83, 0.12);
    filter: blur(2rem);
    content: "";
}

.ai-integrator__header {
    position: relative;
    padding: clamp(1.5rem, 4vw, 2.8rem);
}

.platform-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.7rem;
}

.platform-tab {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 0.6rem 0.9rem;
    color: rgba(255, 255, 255, 0.66);
    background: transparent;
    font-size: 0.8rem;
    font-weight: 700;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.platform-tab:hover,
.platform-tab.is-active {
    border-color: rgba(70, 219, 115, 0.5);
    color: #061109;
    background: #46db73;
}

.ai-prompt {
    position: relative;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: clamp(1.5rem, 4vw, 2.6rem);
    color: #c7d2cc;
    background: rgba(0, 0, 0, 0.3);
    font: 0.83rem/1.65 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    white-space: pre-wrap;
}

.ai-integrator__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem clamp(1.5rem, 4vw, 2.6rem);
}

.sdk-paths {
    display: grid;
    gap: 1rem;
    margin-top: 3rem;
}

.sdk-path {
    display: flex;
    min-height: 15rem;
    flex-direction: column;
    border: 1px solid rgba(15, 23, 42, 0.09);
    border-radius: 1.7rem;
    padding: 1.7rem;
    background: #fff;
}

.sdk-path__status {
    width: fit-content;
    border-radius: 999px;
    padding: 0.35rem 0.6rem;
    color: #08782d;
    background: #e6f8ec;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.sdk-path__status--early {
    color: #725b09;
    background: #fff5c9;
}

.sdk-path h3 {
    margin-top: 1rem;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
}

.sdk-path p {
    margin-top: 0.7rem;
    color: #69736e;
    line-height: 1.6;
}

.sdk-path a {
    margin-top: auto;
    padding-top: 1.3rem;
    color: #0a8534;
    font-weight: 700;
}

/* Helios Showcase web bridge */
.bridge-experience {
    display: grid;
    gap: 1rem;
    margin-top: 3.5rem;
}

.bridge-map,
.bridge-experience__guide,
.bridge-deep-link {
    border: 1px solid rgba(31, 43, 68, 0.11);
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 1.5rem 4rem rgba(44, 57, 94, 0.08);
}

.bridge-map {
    display: grid;
    gap: 0.8rem;
    padding: clamp(1.2rem, 3vw, 2rem);
}

.bridge-map__node {
    display: flex;
    min-height: 9rem;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(55, 89, 207, 0.13);
    border-radius: 1.35rem;
    padding: 1.35rem;
    background: linear-gradient(145deg, #fff, #f4f6fc);
}

.bridge-map__node--accent {
    border-color: rgba(77, 105, 218, 0.34);
    background: linear-gradient(145deg, #edf1ff, #e4e9ff);
}

.bridge-map__node span {
    color: #4968d8;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.bridge-map__node strong {
    margin-top: 0.6rem;
    color: #161d2d;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    letter-spacing: -0.035em;
}

.bridge-map__node small {
    margin-top: 0.35rem;
    color: #687286;
    font-size: 0.83rem;
}

.bridge-map__arrow {
    position: relative;
    display: grid;
    min-height: 2.4rem;
    place-items: center;
    color: #66718a;
    font: 600 0.68rem/1.2 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.bridge-map__arrow::before {
    position: absolute;
    inset: 0 auto;
    width: 1px;
    background: linear-gradient(#91a5ee, #4968d8);
    content: "";
}

.bridge-map__arrow span {
    position: relative;
    border: 1px solid rgba(73, 104, 216, 0.16);
    border-radius: 999px;
    padding: 0.38rem 0.65rem;
    background: #fff;
}

.bridge-experience__guide {
    padding: clamp(1.7rem, 4vw, 3rem);
}

.bridge-experience__guide h3,
.ai-integrator--web h3,
.bridge-deep-link h3 {
    margin-top: 0.8rem;
    color: #171d2a;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.bridge-steps {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
    padding: 0;
    list-style: none;
}

.bridge-steps li {
    display: grid;
    grid-template-columns: 2.2rem minmax(0, 1fr);
    gap: 0.8rem;
    align-items: start;
}

.bridge-steps li > span {
    display: grid;
    width: 2.2rem;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #4968d8;
    font-size: 0.78rem;
    font-weight: 700;
}

.bridge-steps p,
.bridge-experience__note {
    color: #626d7e;
    line-height: 1.6;
}

.bridge-steps code,
.bridge-deep-link code {
    color: #2949b8;
    font: 0.82em/1.5 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.bridge-experience__note {
    margin-top: 1.7rem;
    border-top: 1px solid rgba(31, 43, 68, 0.1);
    padding-top: 1.2rem;
    font-size: 0.82rem;
}

.ai-integrator--web {
    margin-top: 1rem;
}

.ai-integrator--web .ai-integrator__header h3 {
    color: #f8fafc;
}

.ai-integrator--web .ai-integrator__header p {
    max-width: 44rem;
    margin-top: 1rem;
    color: #b8c1d3;
    line-height: 1.65;
}

.bridge-deep-link {
    display: grid;
    gap: 1.5rem;
    margin-top: 1rem;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    align-items: center;
}

.bridge-deep-link code {
    overflow-x: auto;
    border: 1px solid rgba(73, 104, 216, 0.14);
    border-radius: 1rem;
    padding: 1rem;
    color: #33436f;
    background: #f4f6fc;
    white-space: nowrap;
}

@media (min-width: 64rem) {
    .bridge-experience {
        grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.85fr);
        align-items: stretch;
    }

    .bridge-map {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center;
    }

    .bridge-map__arrow {
        min-width: 7rem;
        min-height: 1px;
    }

    .bridge-map__arrow::before {
        inset: auto 0;
        width: auto;
        height: 1px;
    }

    .bridge-deep-link {
        grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1.3fr);
    }
}

/* Handheld teaser */
.coming-soon-hero {
    position: relative;
    display: grid;
    min-height: calc(100svh - 4rem);
    place-items: center;
    overflow: hidden;
    text-align: center;
    background:
        radial-gradient(circle at 50% 42%, rgba(23, 178, 71, 0.17), transparent 20rem),
        #050807;
}

.coming-soon-mark {
    position: relative;
    display: grid;
    width: min(68vw, 26rem);
    aspect-ratio: 1;
    margin: 2.5rem auto 0;
    place-items: center;
    border: 1px solid rgba(70, 219, 115, 0.24);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(4rem, 14vw, 9rem);
    font-weight: 300;
    letter-spacing: -0.08em;
}

.coming-soon-mark::before,
.coming-soon-mark::after {
    position: absolute;
    border: inherit;
    border-radius: inherit;
    content: "";
}

.coming-soon-mark::before { inset: 12%; }
.coming-soon-mark::after { inset: 26%; }

.coming-soon-mark span {
    position: relative;
    z-index: 1;
}

.teaser-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 3rem;
}

.teaser-spec {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.2rem;
    padding: 1.2rem;
    color: rgba(255, 255, 255, 0.46);
    background: rgba(255, 255, 255, 0.04);
    text-align: left;
}

.teaser-spec strong {
    display: block;
    color: #fff;
    font-size: 1.2rem;
}

.notify-status {
    width: fit-content;
    max-width: 34rem;
    margin: 1rem auto 0;
    border-radius: 0.9rem;
    padding: 0.8rem 1rem;
    color: rgba(255, 255, 255, 0.74);
    background: rgba(255, 255, 255, 0.07);
    font-size: 0.86rem;
}

/* Site-wide AI page context */
.ai-context-control {
    position: fixed;
    z-index: 48;
    top: 5.25rem;
    right: 1rem;
}

.ai-context-button {
    display: flex;
    min-width: 2.85rem;
    min-height: 2.85rem;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.13);
    border-radius: 999px;
    padding: 0.65rem 0.85rem;
    color: #334139;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 0.8rem 2.4rem rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(16px);
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
    transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.ai-context-button svg {
    width: 1.15rem;
    height: 1.15rem;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.ai-context-control--quiet .ai-context-button span {
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-width 240ms ease, opacity 180ms ease;
}

.ai-context-control--quiet:hover .ai-context-button span,
.ai-context-control--quiet .ai-context-button:focus-visible span {
    max-width: 10rem;
    opacity: 1;
}

.ai-context-button:hover,
.ai-context-button.is-copied {
    border-color: rgba(0, 168, 45, 0.35);
    color: #08782d;
    background: #f7fff9;
}

.ai-context-control--prominent .ai-context-button {
    border-color: rgba(0, 168, 45, 0.28);
    color: #08782d;
}

.ai-context-tooltip {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    width: 16rem;
    border-radius: 0.8rem;
    padding: 0.75rem 0.85rem;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(6, 12, 9, 0.94);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.2);
    font-size: 0.74rem;
    line-height: 1.45;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.25rem);
    transition: opacity 160ms ease, transform 160ms ease;
}

.ai-context-control:hover .ai-context-tooltip,
.ai-context-control:focus-within .ai-context-tooltip {
    opacity: 1;
    transform: translateY(0);
}

[data-premium-reveal] {
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity 700ms ease, transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@media (min-width: 48rem) {
    .premium-shell {
        width: min(100% - 3rem, 80rem);
    }

    .premium-hero__inner,
    .product-overview {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }

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

    .premium-metric {
        padding: 1.8rem 1.5rem;
    }

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

    .premium-card--wide {
        grid-column: span 2;
    }

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

    .model-picker__actions .premium-button:first-child {
        grid-column: span 2;
    }

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

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

@media (min-width: 64rem) {
    .scroll-story__grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
    }

    .scroll-story__visual {
        position: sticky;
        top: 4rem;
        height: calc(100svh - 4rem);
        min-height: 40rem;
    }

    .scroll-story__steps {
        grid-column: 2;
    }

    .scroll-story__visual {
        grid-column: 1;
        grid-row: 1;
    }

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

    .premium-card--wide {
        grid-column: span 2;
    }

    .premium-card--tall {
        grid-row: span 2;
    }
}

@media (max-width: 63.99rem) {
    .scroll-story {
        padding-block: 4rem;
    }

    .scroll-story__visual {
        position: sticky;
        z-index: 4;
        top: 4rem;
        height: 52svh;
        min-height: 20rem;
        background: #050807;
    }

    .story-step {
        min-height: auto;
        padding-block: 4rem;
        opacity: 1;
    }

    .story-step h2,
    .story-step h3 {
        max-width: 16ch;
    }
}

@media (max-width: 47.99rem) {
    .premium-display {
        font-size: clamp(3.2rem, 16vw, 5rem);
    }

    .premium-hero__inner {
        padding-top: 4rem;
    }

    .premium-hero__visual {
        min-height: 23rem;
    }

    .floating-spec {
        padding: 0.65rem 0.75rem;
        font-size: 0.67rem;
    }

    .floating-spec strong {
        font-size: 0.84rem;
    }

    .premium-card {
        min-height: 18rem;
        border-radius: 1.5rem;
    }

    .scroll-story__visual {
        position: relative;
        top: auto;
        height: 44svh;
    }

    .story-image:not(:first-of-type) {
        display: none;
    }

    .story-image:first-of-type {
        opacity: 1;
        transform: none;
    }

    .ai-context-control {
        top: 4.65rem;
        right: 0.65rem;
    }

    .ai-context-tooltip {
        width: min(16rem, calc(100vw - 2rem));
    }

    .teaser-specs {
        grid-template-columns: 1fr;
    }
}

/* ---------- Tag catalogue and material storytelling ---------- */

.tag-catalogue-hero,
.tag-detail-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.72);
    background:
        radial-gradient(circle at 78% 18%, rgba(51, 219, 101, 0.18), transparent 26rem),
        radial-gradient(circle at 12% 120%, rgba(24, 99, 220, 0.16), transparent 34rem),
        #050807;
}

.tag-catalogue-hero::before,
.tag-detail-hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 4rem 4rem;
    mask-image: linear-gradient(to bottom, #000, transparent 94%);
    content: "";
}

.tag-catalogue-hero h1,
.tag-detail-hero h1,
.tag-detail-hero h2 {
    color: #fff;
}

.tag-catalogue-hero__inner {
    display: grid;
    min-height: 40rem;
    align-items: end;
    gap: 3rem;
    padding-block: clamp(6rem, 12vw, 10rem);
}

.tag-catalogue-hero__signal {
    position: relative;
    min-height: 20rem;
}

.tag-catalogue-hero__signal::before,
.tag-catalogue-hero__signal::after {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 19rem;
    aspect-ratio: 1;
    border: 1px solid rgba(77, 224, 118, 0.24);
    border-radius: 50%;
    box-shadow: 0 0 5rem rgba(77, 224, 118, 0.08);
    content: "";
    transform: translate(-50%, -50%);
}

.tag-catalogue-hero__signal::after {
    width: 11rem;
}

.tag-catalogue-hero__signal span {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    display: grid;
    width: 6.2rem;
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 1.7rem;
    color: #d9ffe4;
    background: rgba(15, 34, 23, 0.82);
    box-shadow: 0 0 4rem rgba(62, 226, 111, 0.2);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-align: center;
    transform: translate(-50%, -50%) rotate(-8deg);
}

.tag-catalogue-intro {
    max-width: 51rem;
}

.tag-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 2.4rem;
}

.tag-filter {
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 999px;
    padding: 0.65rem 1rem;
    color: #657069;
    background: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.tag-filter:hover,
.tag-filter.is-active {
    border-color: #17a941;
    color: #075b21;
    background: #ebf9ef;
}

.tag-product-grid {
    display: grid;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.tag-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 2rem;
    background: #fff;
    box-shadow: 0 1.5rem 4rem rgba(13, 27, 18, 0.07);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.tag-card:hover {
    border-color: rgba(0, 168, 45, 0.28);
    box-shadow: 0 2rem 5rem rgba(13, 27, 18, 0.13);
    transform: translateY(-0.35rem);
}

.tag-card[hidden] {
    display: none;
}

.tag-card__visual {
    position: relative;
    display: grid;
    min-height: 17rem;
    place-items: center;
    padding: 1.3rem;
    background: #08100c;
}

.tag-card__visual > img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 1.7rem 2rem rgba(0, 0, 0, 0.4));
    transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.tag-card:hover .tag-card__visual > img {
    transform: scale(1.035);
}

.tag-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.6rem;
}

.tag-card__model {
    color: #08782d;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tag-card h2 {
    margin-top: 0.7rem;
    font-size: 1.55rem;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.tag-card__body > p {
    margin-top: 0.8rem;
    color: #6a766f;
    line-height: 1.6;
}

.tag-card__specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    margin-top: 1.35rem;
}

.tag-card__specs div {
    border-radius: 1rem;
    padding: 0.9rem;
    background: #f3f6f4;
}

.tag-card__specs span,
.tag-card__range span {
    display: block;
    color: #7b867f;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tag-card__specs strong {
    display: block;
    margin-top: 0.3rem;
    color: #172019;
    font-size: 0.88rem;
}

.tag-card__range {
    margin-top: 1.25rem;
}

.tag-card__range-track {
    height: 0.38rem;
    margin-top: 0.6rem;
    overflow: hidden;
    border-radius: 999px;
    background: #e5ebe7;
}

.tag-card__range-track i {
    display: block;
    width: var(--range);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #00a82d, #5cea83);
}

.tag-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 1.5rem;
    color: #08782d;
    font-weight: 800;
}

.tag-card__link::after {
    content: "→";
    transition: transform 180ms ease;
}

.tag-card:hover .tag-card__link::after {
    transform: translateX(0.25rem);
}

.tag-catalogue-note {
    margin-top: 2rem;
    color: #7a867f;
    font-size: 0.78rem;
    line-height: 1.6;
}

.tag-detail-hero__grid {
    display: grid;
    min-height: calc(100svh - 4rem);
    align-items: center;
    gap: 3rem;
    padding-block: clamp(5rem, 10vw, 8rem);
}

.tag-detail-hero__visual {
    position: relative;
}

.tag-detail-hero__visual::before {
    position: absolute;
    inset: 8% 10%;
    border: 1px solid rgba(78, 226, 118, 0.17);
    border-radius: 50%;
    box-shadow: 0 0 6rem rgba(78, 226, 118, 0.1), inset 0 0 5rem rgba(78, 226, 118, 0.06);
    content: "";
}

.tag-detail-hero__visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    filter: drop-shadow(0 2rem 3rem rgba(0, 0, 0, 0.45));
}

.tag-hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
    margin-top: 2rem;
}

.tag-hero-facts div {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0.045);
}

.tag-hero-facts span {
    display: block;
    color: rgba(255, 255, 255, 0.43);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tag-hero-facts strong {
    display: block;
    margin-top: 0.35rem;
    color: #fff;
    font-size: 0.9rem;
}

.tag-layer-explorer {
    display: grid;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
    margin-top: clamp(3rem, 7vw, 5rem);
}

.tag-layer-stage {
    position: relative;
    min-height: 30rem;
    padding: 2rem 1rem;
    perspective: 900px;
}

.tag-layer-stack {
    position: relative;
    top: 2rem;
    display: grid;
    width: min(100%, 34rem);
    margin-inline: auto;
    gap: 0.55rem;
    transform: rotateZ(-3deg);
}

.tag-layer {
    position: relative;
    display: flex;
    min-height: 4rem;
    align-items: center;
    justify-content: flex-end;
    border: 1px solid rgba(13, 25, 18, 0.24);
    border-radius: 0.65rem;
    padding: 0.8rem 1rem;
    color: #122018;
    box-shadow: 0 1.1rem 1.4rem rgba(8, 20, 12, 0.12);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-align: right;
    transform: rotateX(58deg) translateZ(0);
    transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), border-color 180ms ease, box-shadow 180ms ease;
}

.tag-layer::before {
    position: absolute;
    top: 50%;
    left: 1rem;
    width: 2.6rem;
    height: 0.42rem;
    border-radius: 999px;
    background: rgba(9, 20, 13, 0.18);
    content: "";
    transform: translateY(-50%);
}

.tag-layer:hover,
.tag-layer.is-active {
    z-index: 3;
    border-color: #18a943;
    box-shadow: 0 1.5rem 2.2rem rgba(0, 94, 31, 0.2);
    transform: rotateX(58deg) translateY(-0.55rem) translateZ(2rem);
}

.tag-layer--face { background: linear-gradient(105deg, #fff, #eef4ef); }
.tag-layer--face-adhesive { background: linear-gradient(105deg, #bceecb, #64da87); }
.tag-layer--inlay { color: #eafff0; background: linear-gradient(105deg, #036c28, #00bd42); }
.tag-layer--bond { background: linear-gradient(105deg, #ffe5a4, #efb335); }
.tag-layer--liner { background: linear-gradient(105deg, #f4f0e7, #d8d1c3); }

.tag-layer-readout {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1.7rem;
    padding: clamp(1.5rem, 4vw, 2.4rem);
    background: #fff;
    box-shadow: 0 1.5rem 4rem rgba(12, 27, 17, 0.08);
}

.tag-layer-readout__index {
    color: #0a8b32;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tag-layer-readout h3 {
    margin-top: 0.8rem;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    letter-spacing: -0.04em;
}

.tag-layer-readout p {
    margin-top: 0.9rem;
    color: #69756e;
    line-height: 1.7;
}

.tag-layer-readout strong {
    display: block;
    margin-top: 1.3rem;
    color: #075f23;
    font-size: 0.9rem;
}

.tag-layer-key {
    display: grid;
    gap: 0.8rem;
    margin-top: 2rem;
}

.tag-layer-key li {
    border-left: 2px solid #30c45b;
    padding-left: 1rem;
    color: #6c7870;
    line-height: 1.6;
}

.tag-layer-key strong {
    color: #172019;
}

.tag-spec-grid {
    display: grid;
    gap: 0.85rem;
    margin-top: 3rem;
}

.tag-spec-card {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1.35rem;
    padding: 1.35rem;
    background: #fff;
}

.tag-spec-card dt {
    color: #738078;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tag-spec-card dd {
    margin-top: 0.55rem;
    color: #172019;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
}

.tag-table-wrap {
    margin-top: 2.5rem;
    overflow-x: auto;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1.5rem;
    background: #fff;
}

.tag-spec-table {
    width: 100%;
    min-width: 42rem;
    border-collapse: collapse;
}

.tag-spec-table th,
.tag-spec-table td {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding: 1rem 1.2rem;
    text-align: left;
    vertical-align: top;
}

.tag-spec-table th {
    color: #68756d;
    background: #f3f6f4;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tag-spec-table td {
    color: #263129;
    font-size: 0.88rem;
    line-height: 1.55;
}

.tag-spec-table tr:last-child td {
    border-bottom: 0;
}

.tag-range-panel {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.tag-range-meter {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 1.4rem;
    background: rgba(255, 255, 255, 0.04);
}

.tag-range-meter__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.tag-range-meter__head span {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tag-range-meter__head strong {
    color: #fff;
    font-size: 1.55rem;
}

.tag-range-meter__track {
    height: 0.5rem;
    margin-top: 1rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
}

.tag-range-meter__track i {
    display: block;
    width: var(--range);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #00a82d, #7cf0a1);
    box-shadow: 0 0 1.5rem rgba(76, 224, 116, 0.38);
}

.tag-datasheet-cta {
    display: grid;
    gap: 2rem;
    align-items: center;
    border-radius: 2rem;
    padding: clamp(1.7rem, 5vw, 3.5rem);
    color: rgba(255, 255, 255, 0.65);
    background: #07100b;
}

.tag-datasheet-cta h2 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: -0.05em;
    line-height: 1;
}

.system-intro__grid {
    display: grid;
    gap: clamp(3rem, 8vw, 8rem);
    align-items: end;
}

.system-intro__path {
    border-top: 2px solid #28332e;
}

.system-intro__path article {
    display: grid;
    grid-template-columns: 5rem minmax(0, 1fr);
    gap: 0.35rem 1rem;
    border-bottom: 1px solid rgba(26, 32, 29, 0.22);
    padding: 1rem 0;
    opacity: 0.25;
    transform: translateX(1rem);
    transition: opacity 500ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.system-intro__path.is-visible article {
    opacity: 1;
    transform: none;
}

.system-intro__path.is-visible article:nth-child(2) { transition-delay: 90ms; }
.system-intro__path.is-visible article:nth-child(3) { transition-delay: 180ms; }
.system-intro__path.is-visible article:nth-child(4) { transition-delay: 270ms; }

.system-intro__path span,
.system-intro__path small {
    color: #727b76;
    font: 0.66rem/1.4 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.system-intro__path span {
    grid-row: 1 / 3;
    color: #9b4f2e;
}

.system-intro__path strong {
    color: #202824;
    font-size: 1rem;
}

@media (min-width: 64rem) {
    .system-intro__grid {
        grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.78fr);
    }
}

.tag-datasheet-cta p {
    max-width: 38rem;
    margin-top: 1rem;
    line-height: 1.65;
}

@media (min-width: 48rem) {
    .tag-product-grid,
    .tag-spec-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .tag-datasheet-cta {
        grid-template-columns: minmax(0, 1fr) auto;
    }
}

@media (min-width: 64rem) {
    .tag-catalogue-hero__inner {
        grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
        align-items: center;
    }

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

    .tag-detail-hero__grid,
    .tag-layer-explorer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 47.99rem) {
    .tag-catalogue-hero__signal {
        min-height: 13rem;
    }

    .tag-catalogue-hero__signal::before {
        width: 14rem;
    }

    .tag-catalogue-hero__signal::after {
        width: 8rem;
    }

    .tag-hero-facts {
        grid-template-columns: 1fr;
    }

    .tag-layer-stage {
        min-height: 25rem;
        padding-inline: 0;
    }

    .tag-layer {
        min-height: 3.5rem;
    }

    .tag-card__chip-badge {
        right: 0.75rem;
        bottom: 0.75rem;
        transform: scale(0.9);
        transform-origin: right bottom;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tag-card,
    .tag-card__visual > img,
    .tag-card__chip-badge,
    .tag-card__link::after,
    .tag-layer {
        transition: none;
    }

    .tag-card:hover,
    .tag-card:hover .tag-card__visual > img,
    .tag-card:hover .tag-card__chip-badge,
    .tag-layer:hover,
    .tag-layer.is-active {
        transform: none;
    }
}

/* ---------- Two-tier global navigation ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    border: 0;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 1px 0 rgba(23, 35, 65, 0.09);
    backdrop-filter: blur(18px) saturate(150%);
    transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 14px 34px -24px rgba(20, 34, 68, 0.5),
        0 1px 0 rgba(23, 35, 65, 0.08);
}

.site-utility,
.site-primary__nav,
.site-primary__actions {
    display: none;
}

.site-primary {
    border-bottom: 1px solid rgba(24, 43, 82, 0.08);
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 253, 0.96));
}

.site-primary__inner {
    display: flex;
    width: min(calc(100% - 2rem), 80rem);
    height: 4rem;
    margin-inline: auto;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-menu-button {
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(25, 44, 82, 0.1);
    border-radius: 0.85rem;
    color: #1b2946;
    background: rgba(242, 245, 251, 0.82);
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.site-menu-button:hover,
.site-menu-button[aria-expanded="true"] {
    border-color: rgba(48, 78, 184, 0.26);
    color: #304eb8;
    background: #edf1fb;
}

.site-menu-button svg {
    width: 1.35rem;
    height: 1.35rem;
}

.site-mobile-menu {
    max-height: calc(100svh - 4rem);
    overflow-y: auto;
    border-top: 1px solid rgba(24, 43, 82, 0.08);
    background: rgba(255, 255, 255, 0.985);
}

.site-mobile-menu.hidden {
    display: none;
}

.site-mobile-menu__inner {
    width: min(calc(100% - 2rem), 80rem);
    margin-inline: auto;
    padding-block: 1.25rem 1.5rem;
}

.site-mobile-menu__label {
    display: block;
    padding: 0 0.75rem 0.55rem;
    color: #71809d;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-mobile-menu__primary {
    display: grid;
    gap: 0.2rem;
}

.site-mobile-menu__primary > a {
    border-radius: 0.9rem;
    color: #273450;
}

.site-mobile-menu__primary > a.is-active,
.site-mobile-menu__primary > a:hover {
    color: #304eb8;
    background: #edf1fb;
}

.site-mobile-menu__label--resources {
    margin-top: 1.25rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(28, 44, 78, 0.09);
}

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

.site-mobile-menu__resource {
    padding: 0.65rem 0.75rem;
    border-radius: 0.75rem;
    color: #596680;
    font-size: 0.84rem;
    font-weight: 600;
}

.site-mobile-menu__resource:hover,
.site-mobile-menu__resource.is-active {
    color: #304eb8;
    background: #f0f3fb;
}

.site-mobile-menu__actions {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.15rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(28, 44, 78, 0.09);
}

.site-mobile-menu__languages {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.site-mobile-menu__languages a {
    color: #71809d;
    font-size: 0.82rem;
    font-weight: 700;
}

.site-mobile-menu__languages a.is-active {
    color: #304eb8;
}

.site-buy-button {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.85rem;
    padding: 0.7rem 1.15rem;
    color: #fff;
    background: linear-gradient(135deg, #375bc9, #24429d);
    box-shadow: 0 10px 22px -16px rgba(35, 62, 153, 0.92);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.site-buy-button:hover {
    color: #fff;
    filter: brightness(1.06);
    transform: translateY(-1px);
    box-shadow: 0 14px 24px -15px rgba(35, 62, 153, 0.95);
}

@media (min-width: 80rem) {
    .site-utility {
        display: block;
        color: rgba(255, 255, 255, 0.82);
        background: linear-gradient(105deg, #17264d 0%, #1c3569 57%, #263f7d 100%);
    }

    .site-utility__inner {
        display: flex;
        width: min(100%, 80rem);
        height: 2.25rem;
        margin-inline: auto;
        align-items: stretch;
        justify-content: space-between;
    }

    .site-utility__home {
        display: inline-flex;
        min-width: 18.5rem;
        align-items: center;
        gap: 0.7rem;
        padding-inline: 1.25rem;
        color: #17264d;
        background: linear-gradient(105deg, #fff 0%, #f3f6fc 100%);
        clip-path: polygon(0 0, 100% 0, calc(100% - 1.1rem) 100%, 0 100%);
    }

    .site-utility__home strong {
        font-size: 0.75rem;
        font-weight: 900;
        letter-spacing: 0.06em;
    }

    .site-utility__home span {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        color: #65728e;
        font-size: 0.68rem;
        font-weight: 600;
    }

    .site-utility__home span::before {
        width: 0.35rem;
        height: 0.35rem;
        border-radius: 50%;
        background: #25b651;
        box-shadow: 0 0 0 0.22rem rgba(37, 182, 81, 0.12);
        content: "";
    }

    .site-utility__nav {
        display: flex;
        margin-left: auto;
        align-items: stretch;
    }

    .site-utility__link {
        position: relative;
        display: inline-flex;
        min-width: 7.1rem;
        align-items: center;
        justify-content: center;
        border-left: 1px solid rgba(255, 255, 255, 0.09);
        padding-inline: 1rem;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.01em;
        transition: color 0.2s ease, background-color 0.2s ease;
    }

    .site-utility__link:hover,
    .site-utility__link.is-active {
        color: #fff;
        background: rgba(255, 255, 255, 0.09);
    }

    .site-utility__link.is-active::after {
        position: absolute;
        right: 1rem;
        bottom: 0;
        left: 1rem;
        height: 2px;
        border-radius: 2px 2px 0 0;
        background: #6f8fff;
        content: "";
    }

    .site-utility__link--accent {
        min-width: 8rem;
        color: #fff;
        background: #304eb8;
    }

    .site-utility__link--accent:hover,
    .site-utility__link--accent.is-active {
        background: #3c5dcc;
    }

    .site-primary__inner {
        width: min(calc(100% - 2.5rem), 80rem);
        height: 4.75rem;
    }

    .site-primary__nav,
    .site-primary__actions {
        display: flex;
        align-items: center;
    }

    .site-primary__nav {
        margin-left: auto;
        gap: clamp(1.35rem, 2vw, 2.15rem);
    }

    .site-primary__nav .nav-link {
        padding-block: 0.55rem;
        color: #273450;
        font-size: 0.86rem;
        font-weight: 700;
    }

    .site-primary__nav .nav-link::after {
        bottom: 0;
        height: 2px;
        border-radius: 2px;
        background: #375bc9;
    }

    .site-primary__nav .nav-link:hover,
    .site-primary__nav .nav-link.is-active {
        color: #304eb8;
    }

    .site-primary__actions {
        gap: 0.75rem;
        margin-left: clamp(1.4rem, 2.2vw, 2.5rem);
    }

    .site-primary__actions #langBtn {
        min-height: 2.5rem;
        border: 1px solid rgba(33, 52, 91, 0.1);
        border-radius: 0.75rem;
        padding-inline: 0.75rem;
        color: #53617c;
        background: rgba(246, 248, 252, 0.72);
    }

    .site-primary__actions #langMenu {
        z-index: 60;
    }

    .site-menu-button,
    .site-mobile-menu {
        display: none;
    }

    .scroll-story__visual {
        top: 7rem;
        height: calc(100svh - 7rem);
    }

    .order-summary {
        top: 8rem;
    }

    .tag-layer-stage {
        top: 7.5rem;
        height: calc(100svh - 9.5rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-header,
    .site-menu-button,
    .site-utility__link,
    .site-buy-button {
        transition: none;
    }
}

@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;
    }

    .reveal,
    [data-premium-reveal] {
        opacity: 1;
        transform: none;
    }

    .story-image {
        transform: none;
    }

    .story-image:not(:first-of-type) {
        display: none;
    }

    .story-image:first-of-type,
    .story-step {
        opacity: 1;
        transform: none;
    }
}

/* Purchase, editorial, newsroom and contact experiences */
.purchase-hero,
.editorial-hero,
.contact-hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(5.5rem, 10vw, 9rem);
}

.purchase-hero::after,
.editorial-hero::after,
.contact-hero::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    content: "";
    pointer-events: none;
}

.purchase-hero .premium-shell,
.editorial-hero .premium-shell,
.contact-hero .premium-shell {
    position: relative;
    z-index: 1;
}

.purchase-hero__grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.purchase-hero__visual {
    position: relative;
    display: grid;
    min-height: 26rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2.4rem;
    background: radial-gradient(circle, rgba(33, 185, 78, 0.16), transparent 62%);
}

.purchase-hero__visual::before {
    position: absolute;
    width: 75%;
    aspect-ratio: 1;
    border: 1px solid rgba(70, 219, 115, 0.2);
    border-radius: 50%;
    content: "";
}

.purchase-hero__visual img {
    position: relative;
    z-index: 1;
    width: min(88%, 34rem);
    filter: drop-shadow(0 2.6rem 3rem rgba(0, 0, 0, 0.62));
}

.purchase-layout {
    display: grid;
    gap: 2rem;
    align-items: start;
}

.purchase-configurator,
.order-summary,
.contact-form-card,
.contact-path {
    border: 1px solid rgba(15, 23, 42, 0.09);
    border-radius: 2rem;
    background: #fff;
    box-shadow: 0 1.5rem 4rem rgba(15, 23, 42, 0.07);
}

.purchase-configurator {
    padding: clamp(1.5rem, 4vw, 3rem);
}

.purchase-heading h2,
.coverage-heading h2,
.contact-form-card h2 {
    margin-top: 0.65rem;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1.02;
}

.purchase-field {
    margin-top: 2.2rem;
}

.purchase-field label,
.contact-form-card form label {
    display: block;
    color: #25322b;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.purchase-field select,
.purchase-field input,
.contact-form-card form input,
.contact-form-card form select,
.contact-form-card form textarea {
    width: 100%;
    margin-top: 0.6rem;
    border: 1px solid rgba(15, 23, 42, 0.16);
    border-radius: 0.9rem;
    padding: 0.9rem 1rem;
    color: #111915;
    background: #fff;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.purchase-field select:focus,
.purchase-field input:focus,
.contact-form-card form input:focus,
.contact-form-card form select:focus,
.contact-form-card form textarea:focus {
    border-color: #00a82d;
    box-shadow: 0 0 0 3px rgba(0, 168, 45, 0.12);
}

.purchase-field > p,
.contact-form-card > p {
    margin-top: 0.65rem;
    color: #718078;
    font-size: 0.86rem;
    line-height: 1.55;
}

.purchase-field--quantity input {
    max-width: 8rem;
}

.coverage-heading {
    margin-top: 4rem;
    border-top: 1px solid rgba(15, 23, 42, 0.09);
    padding-top: 3.5rem;
}

.coverage-heading > p {
    max-width: 45rem;
    margin-top: 1rem;
    color: #66736c;
    line-height: 1.7;
}

.standard-warranty {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 1.3rem;
    padding: 1.25rem;
    background: #f7f9f7;
}

.coverage-check {
    display: grid;
    width: 1.65rem;
    height: 1.65rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: #08782d;
    background: #dcf8e5;
    font-weight: 800;
}

.standard-warranty strong {
    display: block;
    color: #162019;
}

.standard-warranty p {
    margin-top: 0.3rem;
    color: #718078;
    font-size: 0.86rem;
}

.care-option {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    margin-top: 1rem;
    border: 2px solid rgba(15, 23, 42, 0.12);
    border-radius: 1.5rem;
    padding: clamp(1.2rem, 3vw, 1.7rem);
    background: #fff;
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.care-option:hover {
    border-color: rgba(0, 168, 45, 0.42);
    transform: translateY(-2px);
}

.care-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.care-option__control {
    width: 1.45rem;
    height: 1.45rem;
    border: 2px solid #9aa69f;
    border-radius: 50%;
    box-shadow: inset 0 0 0 4px #fff;
}

.care-option input:focus-visible + .care-option__control {
    outline: 3px solid rgba(0, 168, 45, 0.25);
    outline-offset: 3px;
}

.care-option input:checked + .care-option__control {
    border-color: #00a82d;
    background: #00a82d;
}

.has-care .care-option {
    border-color: #00a82d;
    background: linear-gradient(135deg, #fff, #f1fff5);
}

.care-option__body,
.care-benefits {
    display: grid;
    gap: 0.7rem;
}

.care-option__top {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    align-items: center;
}

.care-option__top strong {
    font-size: 1.35rem;
}

.care-option__top > span {
    border-radius: 999px;
    padding: 0.3rem 0.55rem;
    color: #08782d;
    background: #dcf8e5;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.care-option__price {
    color: #5d6a63;
}

.care-option__price strong {
    color: #111915;
    font-size: 2rem;
}

.care-option__promise {
    max-width: 42rem;
    color: #526159;
    line-height: 1.6;
}

.care-benefits {
    margin-top: 0.4rem;
    color: #27362e;
    font-size: 0.9rem;
}

.care-benefits b {
    margin-right: 0.35rem;
    color: #00a82d;
}

.care-option__battery {
    margin-top: 0.35rem;
    color: #718078;
    font-size: 0.78rem;
}

.order-summary {
    padding: 1.5rem;
}

.order-summary__product {
    display: grid;
    grid-template-columns: 6rem 1fr;
    gap: 1rem;
    margin-top: 1.2rem;
    align-items: center;
}

.order-summary__product img {
    width: 6rem;
    filter: drop-shadow(0 0.8rem 0.8rem rgba(15, 23, 42, 0.18));
}

.order-summary__product strong,
.order-summary__product span {
    display: block;
}

.order-summary__product span {
    margin-top: 0.2rem;
    color: #758078;
    font-size: 0.8rem;
}

.order-summary dl {
    margin-top: 1.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.09);
}

.order-summary dl > div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.09);
    padding-block: 0.9rem;
    color: #68746d;
    font-size: 0.83rem;
}

.order-summary dd {
    max-width: 11rem;
    color: #19231e;
    font-weight: 700;
    text-align: right;
}

.order-summary__total dd {
    color: #08782d;
}

.purchase-continue {
    width: 100%;
    margin-top: 1.2rem;
}

.order-summary > p,
.care-terms {
    margin-top: 1rem;
    color: #7b867f;
    font-size: 0.75rem;
    line-height: 1.55;
}

.care-rules {
    display: grid;
    gap: 1rem;
    margin-top: 3rem;
}

.care-rules article {
    border: 1px solid rgba(15, 23, 42, 0.09);
    border-radius: 1.5rem;
    padding: 1.6rem;
    background: #f7f9f7;
}

.care-rules article > span {
    color: #00a82d;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.care-rules h3 {
    margin-top: 1rem;
    font-size: 1.35rem;
    letter-spacing: -0.025em;
}

.care-rules p {
    margin-top: 0.7rem;
    color: #6a766f;
    line-height: 1.6;
}

.editorial-hero .premium-display,
.contact-hero .premium-display {
    max-width: 12ch;
}

.premium-editorial main > .premium-section:nth-of-type(2) .grid > a,
.premium-editorial #guides a,
.premium-newsroom .news-grid article {
    overflow: hidden;
    border-color: rgba(15, 23, 42, 0.08);
    background: #fff;
    box-shadow: 0 1.3rem 3rem rgba(15, 23, 42, 0.06);
}

.premium-editorial main > .premium-section:nth-of-type(2) .grid > a:hover,
.premium-editorial #guides a:hover {
    border-color: rgba(0, 168, 45, 0.3);
    box-shadow: 0 1.7rem 4rem rgba(15, 23, 42, 0.11);
}

.premium-editorial #case-studies h2,
.premium-editorial #case-studies article h3 {
    color: #fff;
}

.premium-editorial #case-studies > .premium-shell > div > p,
.premium-editorial #case-studies article p {
    color: rgba(255, 255, 255, 0.58);
}

.premium-editorial #case-studies article {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.055);
}

.premium-editorial #case-studies article a {
    color: #4ae176;
}

.news-grid {
    display: grid;
    gap: 1rem;
    margin-top: 3rem;
}

.premium-newsroom .news-grid article {
    border-radius: 1.8rem;
}

.premium-newsroom .news-grid article:first-child {
    color: #fff;
    background: #07100b;
}

.premium-newsroom .news-grid article:first-child p {
    color: rgba(255, 255, 255, 0.6);
}

.premium-newsroom .product-stage {
    background: radial-gradient(circle at 50% 45%, rgba(0, 168, 45, 0.16), #edf1ee 72%);
}

.premium-newsroom .news-grid article:first-child .product-stage {
    background: radial-gradient(circle, rgba(43, 210, 94, 0.2), #07100b 72%);
}

.contact-layout {
    display: grid;
    gap: 2rem;
    align-items: start;
}

.contact-form-card {
    position: relative;
    overflow: hidden;
    padding: clamp(1.5rem, 4vw, 3rem);
    background:
        radial-gradient(circle at 100% 0, rgba(72, 105, 218, 0.09), transparent 22rem),
        #fff;
}

.contact-form-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 0.25rem;
    background: linear-gradient(90deg, #3157d5, #6c5ce7 55%, #00a82d);
    content: "";
}

.contact-form-card__header {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    justify-content: space-between;
}

.contact-form-card__header > div {
    max-width: 42rem;
}

.contact-form-card__header p {
    margin-top: 0.8rem;
    color: #69766f;
    line-height: 1.65;
}

.contact-form-progress {
    display: inline-flex;
    flex: none;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(49, 87, 213, 0.16);
    border-radius: 999px;
    padding: 0.5rem 0.7rem;
    color: #586579;
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    font-weight: 600;
}

.contact-form-progress strong {
    display: inline-grid;
    width: 1.45rem;
    height: 1.45rem;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #3157d5;
    font-size: 0.68rem;
}

.contact-project-form {
    display: grid;
    gap: 1rem;
    margin-top: 2.2rem;
}

.contact-form-section {
    min-width: 0;
    margin: 0;
    border: 1px solid rgba(38, 52, 85, 0.1);
    border-radius: 1.35rem;
    padding: 1.15rem;
    background: rgba(248, 249, 253, 0.76);
}

.contact-form-section legend {
    display: inline-flex;
    padding-inline: 0.5rem;
    align-items: center;
    gap: 0.55rem;
    color: #26324b;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-form-section legend span {
    display: inline-grid;
    width: 1.65rem;
    height: 1.65rem;
    place-items: center;
    border: 1px solid rgba(49, 87, 213, 0.18);
    border-radius: 50%;
    color: #3157d5;
    background: #fff;
    font-size: 0.62rem;
}

.contact-field-grid {
    display: grid;
    gap: 1rem;
}

.contact-field + .contact-field {
    margin-top: 1rem;
}

.contact-field-grid .contact-field + .contact-field {
    margin-top: 0;
}

.contact-field label {
    display: flex !important;
    min-height: 1.2rem;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.contact-required {
    color: #3157d5;
}

.contact-optional {
    color: #8791a3;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.contact-form-card form input,
.contact-form-card form select,
.contact-form-card form textarea {
    border-color: rgba(37, 50, 79, 0.14);
    border-radius: 0.85rem;
    background-color: rgba(255, 255, 255, 0.94);
    box-shadow: 0 0.4rem 1.2rem rgba(36, 47, 75, 0.035);
}

.contact-form-card form select {
    appearance: none;
    padding-right: 2.7rem;
    background-image:
        linear-gradient(45deg, transparent 50%, #68748b 50%),
        linear-gradient(135deg, #68748b 50%, transparent 50%);
    background-position:
        calc(100% - 1.15rem) calc(50% - 0.1rem),
        calc(100% - 0.85rem) calc(50% - 0.1rem);
    background-repeat: no-repeat;
    background-size: 0.32rem 0.32rem;
}

.contact-form-card form select:disabled {
    color: #99a1b0;
    background-color: #f1f3f8;
    cursor: not-allowed;
}

.contact-form-card form textarea {
    min-height: 10.5rem;
    resize: vertical;
}

.contact-field__hint {
    margin-top: 0.45rem;
    color: #7b8596;
    font-size: 0.72rem;
}

.contact-product-note {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
    border: 1px solid rgba(49, 87, 213, 0.13);
    border-radius: 1rem;
    padding: 0.85rem 0.95rem;
    color: #667189;
    background: rgba(237, 241, 255, 0.72);
}

.contact-product-note__signal {
    width: 0.55rem;
    height: 0.55rem;
    margin-top: 0.28rem;
    border-radius: 50%;
    background: #6b7ba6;
    box-shadow: 0 0 0 0.3rem rgba(107, 123, 166, 0.11);
}

.contact-product-note strong,
.contact-product-note p {
    display: block;
}

.contact-product-note strong {
    color: #27334d;
    font-size: 0.82rem;
}

.contact-product-note p {
    margin-top: 0.18rem;
    font-size: 0.75rem;
    line-height: 1.5;
}

.contact-product-note[data-state="available"] {
    border-color: rgba(0, 168, 45, 0.16);
    background: rgba(230, 249, 236, 0.74);
}

.contact-product-note[data-state="available"] .contact-product-note__signal {
    background: #00a82d;
    box-shadow: 0 0 0 0.3rem rgba(0, 168, 45, 0.11);
}

.contact-product-note[data-state="mixed"],
.contact-product-note[data-state="coming-soon"] {
    border-color: rgba(212, 128, 42, 0.2);
    background: rgba(255, 246, 232, 0.78);
}

.contact-product-note[data-state="mixed"] .contact-product-note__signal,
.contact-product-note[data-state="coming-soon"] .contact-product-note__signal {
    background: #dd862d;
    box-shadow: 0 0 0 0.3rem rgba(221, 134, 45, 0.11);
}

.contact-context-cues {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
}

.contact-context-cues span {
    border: 1px solid rgba(49, 87, 213, 0.12);
    border-radius: 999px;
    padding: 0.35rem 0.6rem;
    color: #66728b;
    background: #fff;
    font-size: 0.66rem;
    font-weight: 700;
}

.contact-submit-row {
    display: flex;
    gap: 1rem;
    margin-top: 0.35rem;
    align-items: center;
}

.contact-submit-row p {
    max-width: 18rem;
    color: #7a8494;
    font-size: 0.72rem;
    line-height: 1.45;
}

.contact-paths {
    display: grid;
    gap: 1rem;
}

.contact-path {
    padding: 1.6rem;
}

.contact-path > span {
    color: #00a82d;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.contact-path h3 {
    margin-top: 0.8rem;
    font-size: 1.45rem;
    letter-spacing: -0.03em;
}

.contact-path p {
    margin-top: 0.7rem;
    color: #6d7872;
    line-height: 1.6;
}

.contact-path a {
    display: inline-block;
    margin-top: 1rem;
    color: #08782d;
    font-weight: 700;
}

.contact-path--dark {
    color: #fff;
    background: #07100b;
}

.contact-path--dark p {
    color: rgba(255, 255, 255, 0.58);
}

.contact-path--dark a {
    color: #4ae176;
}

.contact-path--tag {
    border-color: rgba(49, 87, 213, 0.13);
    background:
        radial-gradient(circle at 100% 0, rgba(88, 111, 224, 0.13), transparent 11rem),
        linear-gradient(145deg, #fff, #f2f4fb);
}

.contact-path--tag > span,
.contact-path--tag a {
    color: #3157d5;
}

.footer-link {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
}

.footer-link__status {
    border: 1px solid rgba(49, 87, 213, 0.14);
    border-radius: 999px;
    padding: 0.16rem 0.38rem;
    color: #5168b6;
    background: rgba(230, 235, 255, 0.8);
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

@media (min-width: 48rem) {
    .purchase-hero__grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }

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

    .premium-newsroom .news-grid article:first-child {
        grid-column: span 2;
    }

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

@media (min-width: 64rem) {
    .purchase-layout {
        grid-template-columns: minmax(0, 1fr) 23rem;
    }

    .order-summary {
        position: sticky;
        top: 6rem;
    }

    .contact-layout {
        grid-template-columns: minmax(0, 1.25fr) minmax(20rem, 0.75fr);
    }
}

@media (max-width: 47.99rem) {
    .purchase-hero__visual {
        min-height: 19rem;
    }

    .care-option {
        grid-template-columns: 1fr;
    }

    .care-option__control {
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
    }

    .care-option__top {
        padding-right: 2rem;
    }

    .contact-form-card {
        border-radius: 1.5rem;
        padding: 1rem;
    }

    .contact-form-card__header,
    .contact-submit-row {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-form-progress {
        align-self: flex-start;
    }

    .contact-form-section {
        border-radius: 1.1rem;
        padding: 0.9rem;
    }

    .contact-submit-row .premium-button {
        width: 100%;
    }
}

/* Spectrum material system */
:root {
    --aero-cobalt: #3157d5;
    --aero-cobalt-deep: #233e9f;
    --aero-indigo: #6b56d9;
    --aero-amber: #f08a4b;
    --aero-ink: #151a26;
    --aero-muted: #626a78;
    --aero-ceramic: #f6f5f1;
    --aero-line: rgba(31, 43, 68, 0.11);
}

::selection {
    color: #111827;
    background: rgba(74, 105, 220, 0.22);
}

.premium-kicker {
    color: var(--aero-cobalt);
}

.premium-button--brand {
    color: #fff;
    background: linear-gradient(135deg, #3f67e4, #2949b8);
    box-shadow: 0 0.8rem 2rem rgba(49, 87, 213, 0.2);
}

.premium-button--brand:hover {
    background: linear-gradient(135deg, #5277e8, #3157d5);
}

.premium-dark:not(.aero-light-hero) {
    background: #111827;
}

.premium-dark:not(.aero-light-hero) .premium-kicker {
    color: #8eb0ff;
}

.premium-card--dark,
.contact-path--dark {
    background: linear-gradient(145deg, #17213b, #101625);
}

/* Dark surfaces own their foreground palette to prevent inherited light-theme text. */
.premium-metrics.premium-dark {
    border-color: rgba(151, 173, 236, 0.18);
    color: #c7d0e2;
    background:
        radial-gradient(circle at 78% 10%, rgba(79, 108, 217, 0.16), transparent 26rem),
        linear-gradient(135deg, #17213b, #101625);
}

.premium-metrics.premium-dark .premium-metric {
    border-color: rgba(151, 173, 236, 0.14);
}

.premium-metrics.premium-dark .premium-metric strong {
    color: #f8fafc;
}

.premium-metrics.premium-dark .premium-metric span {
    color: #aeb9cf;
}

.premium-card--dark h2,
.premium-card--dark h3,
.contact-path--dark h2,
.contact-path--dark h3 {
    color: #f8fafc;
}

.premium-card--dark p,
.contact-path--dark p {
    color: #b8c1d3;
}

.premium-card--dark .premium-kicker,
.contact-path--dark > span {
    color: #91adff;
}

.scroll-story {
    background:
        radial-gradient(circle at 75% 38%, rgba(76, 111, 226, 0.25), transparent 30rem),
        radial-gradient(circle at 15% 85%, rgba(118, 82, 211, 0.16), transparent 28rem),
        #0e1628;
}

.story-radar,
.signal-orbit {
    border-color: rgba(72, 105, 218, 0.3);
}

.story-step__index,
.premium-editorial #case-studies article a,
.contact-path--dark a {
    color: #91adff;
}

.ai-integrator {
    border-color: rgba(150, 171, 255, 0.18);
    background: linear-gradient(145deg, #18213d, #0e1526);
    box-shadow: 0 2.5rem 7rem rgba(32, 42, 78, 0.24);
}

.ai-integrator::before {
    background: rgba(92, 112, 229, 0.2);
}

.platform-tab:hover,
.platform-tab.is-active {
    border-color: rgba(150, 174, 255, 0.68);
    color: #fff;
    background: #4968d8;
}

/* Light, immediately legible page openings */
.aero-light-hero {
    position: relative;
    isolation: isolate;
    color: var(--aero-muted) !important;
    background:
        radial-gradient(circle at 82% 22%, rgba(98, 128, 229, 0.2), transparent 28rem),
        radial-gradient(circle at 13% 115%, rgba(241, 157, 98, 0.2), transparent 34rem),
        linear-gradient(135deg, #fbfaf7 0%, #f1f3fb 55%, #eef3ff 100%) !important;
}

.aero-light-hero::before,
.aero-light-hero::after {
    z-index: -1;
    background-image:
        linear-gradient(rgba(35, 51, 81, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(35, 51, 81, 0.035) 1px, transparent 1px) !important;
    background-size: 4.5rem 4.5rem !important;
    mask-image: linear-gradient(to bottom, #000, transparent 94%);
    opacity: 1;
}

.aero-light-hero h1 {
    color: var(--aero-ink) !important;
}

.aero-light-hero .premium-lede {
    color: #5d6573;
}

.aero-light-hero nav,
.aero-light-hero nav a,
.aero-light-hero nav span {
    color: #727987 !important;
}

.aero-light-hero nav a:hover {
    color: var(--aero-cobalt) !important;
}

.aero-light-hero .premium-button--glass {
    border-color: rgba(27, 39, 65, 0.18);
    color: #232a38;
    background: rgba(255, 255, 255, 0.54);
}

.aero-light-hero .premium-button--glass:hover {
    border-color: rgba(49, 87, 213, 0.35);
    background: rgba(255, 255, 255, 0.82);
}

.aero-light-hero .ai-integrator .premium-button--glass {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.premium-hero.aero-light-hero {
    min-height: min(54rem, calc(100svh - 4rem));
}

.premium-hero.aero-light-hero .premium-hero__inner {
    min-height: min(54rem, calc(100svh - 4rem));
}

.aero-light-hero .premium-hero__product {
    filter: drop-shadow(0 3rem 3.5rem rgba(35, 43, 62, 0.24));
}

.aero-light-hero .signal-orbit {
    border-color: rgba(55, 89, 207, 0.25);
    box-shadow: inset 0 0 4rem rgba(70, 98, 206, 0.05), 0 0 5rem rgba(70, 98, 206, 0.08);
}

.aero-light-hero .signal-orbit::before,
.aero-light-hero .signal-orbit::after {
    border-color: rgba(55, 89, 207, 0.15);
}

.aero-light-hero .signal-orbit__dot {
    background: var(--aero-amber);
    box-shadow: 0 0 0 0.55rem rgba(240, 138, 75, 0.12), 0 0 2rem rgba(240, 138, 75, 0.72);
}

.aero-light-hero .floating-spec {
    border-color: rgba(35, 47, 72, 0.12);
    color: #707785;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 1rem 3rem rgba(40, 51, 81, 0.12);
}

.aero-light-hero .floating-spec strong {
    color: #1d2431;
}

.premium-metrics {
    border-color: rgba(31, 43, 68, 0.1);
    color: #727987;
    background: rgba(255, 255, 255, 0.94);
}

.premium-metric {
    border-color: rgba(31, 43, 68, 0.09);
}

.premium-metric strong {
    color: var(--aero-ink);
}

.premium-metric span {
    color: #7b8290;
}

.premium-section--soft {
    background: var(--aero-ceramic);
}

/* Context cards distinguish text-led pages at a glance. */
.has-hero-identity > .premium-shell {
    position: relative;
}

.hero-identity {
    --identity-accent: #b45f38 !important;
    --identity-accent-soft: rgba(180, 95, 56, 0.18) !important;
    --identity-accent: #4568dd;
    --identity-accent-soft: rgba(69, 104, 221, 0.18);
    position: relative;
    width: min(100%, 23rem);
    min-height: 18rem;
    margin-top: 2.2rem;
    overflow: hidden;
    border: 1px solid rgba(46, 58, 91, 0.13);
    border-radius: 2rem;
    padding: 1.5rem;
    color: #242b3a;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 2rem 5rem rgba(57, 67, 99, 0.13);
    backdrop-filter: blur(18px);
}

.hero-identity--editorial { --identity-accent: #c96c47; --identity-accent-soft: rgba(201, 108, 71, 0.18); }
.hero-identity--news { --identity-accent: #6d55c9; --identity-accent-soft: rgba(109, 85, 201, 0.18); }
.hero-identity--contact { --identity-accent: #287d84; --identity-accent-soft: rgba(40, 125, 132, 0.18); }

.hero-identity__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #747b89;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.hero-identity__top i {
    width: 0.55rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--identity-accent);
    box-shadow: 0 0 0 0.4rem var(--identity-accent-soft);
}

.hero-identity > strong {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 8ch;
    margin-top: 3.8rem;
    color: var(--aero-ink);
    font-size: clamp(2rem, 4vw, 3.25rem);
    letter-spacing: -0.055em;
    line-height: 0.95;
}

.hero-identity > small {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 1rem;
    color: #6b7280;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.hero-identity__signal {
    position: absolute;
    right: -4rem;
    bottom: -4rem;
    width: 16rem;
    aspect-ratio: 1;
    border: 1px solid var(--identity-accent-soft);
    border-radius: 50%;
}

.hero-identity__signal i {
    position: absolute;
    border: 1px solid var(--identity-accent-soft);
    border-radius: inherit;
}

.hero-identity__signal i:nth-child(1) { inset: 14%; }
.hero-identity__signal i:nth-child(2) { inset: 29%; }
.hero-identity__signal i:nth-child(3) { inset: 44%; }

.hero-identity__signal b {
    position: absolute;
    top: 19%;
    left: 18%;
    width: 0.65rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--identity-accent);
    box-shadow: 0 0 0 0.6rem var(--identity-accent-soft);
}

@media (min-width: 75rem) {
    .hero-identity {
        position: absolute;
        top: 3.5rem;
        right: 0;
        margin: 0;
    }

    .has-hero-identity > .premium-shell > h1,
    .has-hero-identity > .premium-shell > .premium-lede,
    .has-hero-identity > .premium-shell > .premium-actions,
    .has-hero-identity > .premium-shell > .premium-section__intro {
        max-width: calc(100% - 27rem);
    }

    .has-hero-identity .premium-display {
        max-width: 10ch;
        font-size: clamp(3.2rem, 5.8vw, 5.7rem);
    }
}

/* Supplied antenna geometry, integrated without redrawing. */
.tag-catalogue-hero__inner {
    min-height: min(48rem, calc(100svh - 4rem));
    align-items: center;
}

.tag-catalogue-hero__signal {
    position: relative;
    min-height: 34rem;
}

.tag-catalogue-hero__orbit {
    position: absolute;
    inset: 8% 5% 4% 8%;
    border: 1px solid rgba(63, 94, 204, 0.14);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78, 108, 220, 0.1), transparent 66%);
}

.tag-catalogue-hero__sample {
    position: absolute;
    display: grid;
    width: min(85%, 25rem);
    min-height: 9.4rem;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(40, 53, 85, 0.12);
    border-radius: 1.5rem;
    padding: 1.25rem 1.25rem 2.25rem;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 1.8rem 4rem rgba(48, 59, 91, 0.14);
    backdrop-filter: blur(14px);
    animation: tag-sample-float 6s ease-in-out infinite;
}

.tag-catalogue-hero__sample img {
    width: 100%;
    max-height: 5.6rem;
    object-fit: contain;
    filter: contrast(1.12);
    mix-blend-mode: multiply;
}

.tag-catalogue-hero__sample figcaption {
    position: absolute;
    right: 1.1rem;
    bottom: 0.85rem;
    left: 1.1rem;
    color: #777f8e;
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: right;
    text-transform: uppercase;
}

.tag-catalogue-hero__sample--one {
    z-index: 1;
    top: 0;
    right: 3%;
    transform: rotate(4deg);
}

.tag-catalogue-hero__sample--two {
    z-index: 3;
    top: 31%;
    left: 0;
    transform: rotate(-3deg);
    animation-delay: -2s;
}

.tag-catalogue-hero__sample--three {
    z-index: 2;
    right: 0;
    bottom: 0;
    transform: rotate(2deg);
    animation-delay: -4s;
}

.tag-catalogue-hero__sample--two img,
.tag-catalogue-hero__sample--three img { opacity: 1; }

.tag-catalogue-hero__band {
    position: absolute;
    z-index: 5;
    top: 44%;
    right: -1rem;
    display: grid;
    min-width: 8.5rem;
    border: 1px solid rgba(37, 54, 95, 0.13);
    border-radius: 1.1rem;
    padding: 0.8rem 1rem;
    color: #737b89;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 1rem 2.5rem rgba(37, 50, 82, 0.13);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.11em;
}

.tag-catalogue-hero__band strong {
    margin-top: 0.25rem;
    color: #253969;
    font-size: 0.82rem;
}

@keyframes tag-sample-float {
    50% { margin-top: -0.45rem; }
}

.tag-card {
    border-color: var(--aero-line);
    box-shadow: 0 1.5rem 4rem rgba(39, 48, 76, 0.08);
}

.tag-card:hover {
    border-color: rgba(49, 87, 213, 0.28);
    box-shadow: 0 2rem 5rem rgba(39, 48, 76, 0.13);
}

.tag-card__visual {
    min-height: 16rem;
    background: #fff;
}

.tag-card__visual > img {
    max-height: 8.5rem;
    object-fit: contain;
    filter: contrast(1.12);
    mix-blend-mode: multiply;
}

.tag-card__chip-badge {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    display: flex;
    min-width: 8.4rem;
    align-items: center;
    gap: 0.15rem;
    border: 1px solid rgba(45, 58, 93, 0.14);
    border-radius: 0.8rem;
    padding: 0.3rem 0.55rem 0.3rem 0.25rem;
    color: #27314d;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 0.65rem 1.6rem rgba(39, 48, 76, 0.14);
    backdrop-filter: blur(0.8rem);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.tag-card__chip-badge > span:last-child {
    display: grid;
    gap: 0.08rem;
    white-space: nowrap;
}

.tag-card__chip-badge small {
    color: #7a8295;
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
}

.tag-card__chip-badge strong {
    font-size: 0.64rem;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.tag-card__chip-product {
    width: 4.8rem;
    height: 3.2rem;
    object-fit: contain;
}

.tag-card__chip-stack {
    position: relative;
    display: block;
    width: 5rem;
    height: 3.2rem;
}

.tag-card__chip-stack .tag-card__chip-product {
    position: absolute;
    inset: 0 auto auto 0;
    width: 4.4rem;
    height: 3rem;
    filter: none;
    mix-blend-mode: normal;
}

.tag-card__chip-stack .tag-card__chip-product--m700 {
    transform: translate(-0.45rem, 0.05rem) rotate(-6deg);
}

.tag-card__chip-stack .tag-card__chip-product--m830 {
    transform: translate(0.75rem, 0.15rem) rotate(5deg);
}

.tag-card:hover .tag-card__chip-badge {
    box-shadow: 0 0.85rem 2rem rgba(39, 48, 76, 0.2);
    transform: translateY(-0.15rem);
}

.tag-card__model,
.tag-card__link {
    color: #334fb4;
}

.tag-card__range-track i {
    background: linear-gradient(90deg, #3157d5, #8266dc 68%, #ee8d58);
}

.tag-filter:hover,
.tag-filter.is-active {
    border-color: rgba(49, 87, 213, 0.42);
    color: #2947aa;
    background: #edf1ff;
}

.tag-detail-hero__visual {
    display: grid;
    min-height: 24rem;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(45, 58, 93, 0.12);
    border-radius: 2.4rem;
    padding: clamp(2rem, 5vw, 4rem);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 2.5rem 6rem rgba(47, 58, 90, 0.14);
    backdrop-filter: blur(20px);
}

.tag-detail-hero__visual::before {
    inset: 10%;
    border-color: rgba(57, 89, 205, 0.15);
    box-shadow: 0 0 6rem rgba(73, 102, 210, 0.11), inset 0 0 5rem rgba(84, 109, 210, 0.05);
}

.tag-detail-hero__visual img {
    filter: contrast(1.12);
    mix-blend-mode: multiply;
}

.tag-hero-facts div {
    border-color: rgba(38, 52, 86, 0.12);
    background: rgba(255, 255, 255, 0.56);
}

.tag-hero-facts span {
    color: #7c8391;
}

.tag-hero-facts strong {
    color: #202837;
}

/* Scroll-driven exploded material assembly */
.tag-detail #construction {
    background:
        radial-gradient(circle at 15% 36%, rgba(87, 117, 225, 0.12), transparent 24rem),
        radial-gradient(circle at 88% 76%, rgba(238, 142, 86, 0.1), transparent 26rem),
        #f7f6f2;
}

.tag-layer-explorer {
    --assembly-progress: 1;
    --assembly-fill: 100%;
    display: grid;
    min-height: auto;
    gap: 2rem;
    align-items: start;
}

.tag-layer-stage {
    position: relative;
    min-height: 37rem;
    overflow: hidden;
    border: 1px solid rgba(40, 54, 88, 0.1);
    border-radius: 2.2rem;
    padding: 1.25rem;
    background:
        radial-gradient(circle at 50% 45%, rgba(83, 112, 218, 0.12), transparent 18rem),
        rgba(255, 255, 255, 0.66);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), 0 1.8rem 5rem rgba(48, 57, 86, 0.08);
}

.tag-layer-stage::before {
    position: absolute;
    inset: 10% 8%;
    border: 1px solid rgba(67, 96, 205, 0.13);
    border-radius: 50%;
    content: "";
}

.tag-layer-stage::after {
    position: absolute;
    right: 1.5rem;
    bottom: 1.2rem;
    color: #858b97;
    content: attr(data-scroll-hint);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.tag-layer-stack {
    position: relative;
    top: auto;
    z-index: 1;
    display: grid;
    width: 100%;
    gap: 0.65rem;
    transform: none;
}

.tag-layer {
    --active-shift: 0px;
    position: relative;
    top: auto;
    display: flex;
    width: 100%;
    min-height: 5.35rem;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    border-color: rgba(35, 48, 78, 0.16);
    border-radius: 1rem;
    padding: 1rem 1.15rem 1rem 42%;
    box-shadow: 0 0.8rem 1.8rem rgba(40, 50, 80, 0.09);
    letter-spacing: 0.08em;
    transform: none;
}

.tag-layer::before {
    top: 50%;
    left: 1rem;
    width: 2.8rem;
    height: 0.35rem;
    background: rgba(31, 43, 68, 0.2);
}

.tag-layer--face { background: linear-gradient(105deg, rgba(255,255,255,0.98), #eceff3); }
.tag-layer--face-adhesive { background: linear-gradient(105deg, #e2e8ff, #aebcf0); }
.tag-layer--inlay { color: #eaf0ff; background: linear-gradient(105deg, #263f9c, #617de3); }
.tag-layer--bond { background: linear-gradient(105deg, #ffe6cf, #efb079); }
.tag-layer--liner { background: linear-gradient(105deg, #f4efe5, #d8d0c2); }

.tag-layer--inlay::after {
    position: absolute;
    top: 20%;
    bottom: 20%;
    left: 1.1rem;
    width: 55%;
    background-image: var(--tag-antenna);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 145% auto;
    content: "";
    filter: invert(1) contrast(1.18);
    mix-blend-mode: screen;
    opacity: 0.9;
}

.tag-layer:hover,
.tag-layer.is-active {
    border-color: rgba(49, 87, 213, 0.55);
    box-shadow: 0 1.2rem 2.6rem rgba(46, 67, 145, 0.18);
    transform: none;
}

.tag-layer-readout {
    position: relative;
    overflow: hidden;
    border-color: rgba(39, 52, 84, 0.1);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 1.5rem 4rem rgba(42, 53, 86, 0.1);
    backdrop-filter: blur(18px);
}

.tag-layer-readout::before {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--assembly-fill);
    height: 0.22rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #3157d5, #7b62dc, #ef8c55);
    content: "";
    transition: width 80ms linear;
}

.tag-layer-readout__index,
.tag-layer-readout strong {
    color: #3855bc;
}

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

.tag-layer-key li {
    border: 1px solid rgba(38, 51, 82, 0.09);
    border-left: 3px solid #526fd3;
    border-radius: 0 1rem 1rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.62);
}

@media (min-width: 64rem) {
    .tag-layer-explorer {
        min-height: 225vh;
        grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
        gap: clamp(3rem, 6vw, 6rem);
    }

    .tag-layer-stage {
        position: sticky;
        top: 5.5rem;
        height: calc(100svh - 7.5rem);
        min-height: 40rem;
        perspective: 1100px;
    }

    .tag-layer-stack {
        top: 50%;
        display: block;
        height: 31rem;
        transform: translateY(-50%) rotateX(57deg) rotateZ(-4deg) scale(0.9);
        transform-style: preserve-3d;
    }

    .tag-layer {
        position: absolute;
        top: 50%;
        left: 4%;
        width: 92%;
        min-height: 7.4rem;
        padding-left: 48%;
        transform: translate3d(var(--active-shift), calc(-50% + var(--layer-offset, 0px)), var(--layer-depth, 0px));
        transition: transform 420ms cubic-bezier(0.2, 0.75, 0.2, 1), border-color 180ms ease, box-shadow 180ms ease;
    }

    .tag-layer--face { z-index: 5; }
    .tag-layer--face-adhesive { z-index: 4; }
    .tag-layer--inlay { z-index: 3; }
    .tag-layer--bond { z-index: 2; }
    .tag-layer--liner { z-index: 1; }

    .tag-layer:hover,
    .tag-layer.is-active {
        --active-shift: 1.1rem;
        z-index: 10;
        transform: translate3d(var(--active-shift), calc(-50% + var(--layer-offset, 0px)), calc(var(--layer-depth, 0px) + 2rem));
    }

    .tag-layer-readout {
        position: sticky;
        top: calc(50svh - 10rem);
        min-height: 20rem;
        padding: clamp(2rem, 4vw, 3.25rem);
    }

    .tag-layer-key {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

/* Reference performance no longer needs a black stage. */
.tag-detail #performance {
    color: #5e6674;
    background:
        radial-gradient(circle at 82% 30%, rgba(107, 86, 217, 0.14), transparent 24rem),
        linear-gradient(145deg, #eef2ff, #f7f5f1);
}

.tag-detail #performance h2 {
    color: var(--aero-ink);
}

.tag-detail #performance .premium-lede,
.tag-detail #performance .text-white\/40 {
    color: #667080;
}

.tag-range-meter {
    border-color: rgba(38, 52, 85, 0.1);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 1rem 3rem rgba(44, 55, 89, 0.08);
}

.tag-range-meter__head span {
    color: #737c8c;
}

.tag-range-meter__head strong {
    color: #20293a;
}

.tag-range-meter__track {
    background: rgba(42, 57, 94, 0.1);
}

.tag-range-meter__track i {
    background: linear-gradient(90deg, #3157d5, #7963d9 68%, #ef8d55);
    box-shadow: 0 0 1.5rem rgba(83, 103, 205, 0.24);
}

.tag-datasheet-cta {
    color: #626a79;
    background:
        radial-gradient(circle at 92% 12%, rgba(238, 142, 86, 0.15), transparent 18rem),
        linear-gradient(140deg, #eef2ff, #f8f5f0);
    box-shadow: 0 1.6rem 4rem rgba(43, 54, 87, 0.09);
}

.tag-datasheet-cta h2 {
    color: var(--aero-ink);
}

.tag-datasheet-cta .premium-button--glass {
    border-color: rgba(32, 44, 73, 0.16);
    color: #222a39;
    background: rgba(255, 255, 255, 0.58);
}

@media (max-width: 63.99rem) {
    .tag-catalogue-hero__signal {
        width: min(100%, 31rem);
        margin-inline: auto;
    }

    .tag-layer-stage::after {
        display: none;
    }
}

@media (max-width: 47.99rem) {
    .hero-identity {
        min-height: 15rem;
        border-radius: 1.5rem;
    }

    .tag-catalogue-hero__inner {
        min-height: auto;
        padding-top: 5rem;
    }

    .tag-catalogue-hero__signal {
        min-height: 27rem;
    }

    .tag-catalogue-hero__sample {
        min-height: 7.8rem;
    }

    .tag-catalogue-hero__band {
        top: 46%;
        right: 0;
    }

    .tag-detail-hero__grid {
        min-height: auto;
        padding-block: 4.5rem;
    }

    .tag-detail-hero__grid > * {
        min-width: 0;
    }

    .tag-detail-hero .premium-display {
        max-width: 100%;
        font-size: clamp(2.65rem, 13vw, 4rem);
        overflow-wrap: anywhere;
    }

    .tag-detail-hero .premium-lede {
        max-width: 100%;
    }

    .tag-detail-hero__visual {
        min-height: 18rem;
        border-radius: 1.7rem;
    }

    .tag-layer-stage {
        min-height: 35rem;
    }

    .tag-layer-key {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tag-catalogue-hero__sample {
        animation: none;
    }

    .tag-layer-explorer {
        min-height: auto;
    }

    .tag-layer-stage,
    .tag-layer-readout {
        position: relative;
        top: auto;
        height: auto;
    }

    .tag-layer-stack {
        top: auto;
        display: grid;
        height: auto;
        transform: none;
    }

    .tag-layer {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        transform: none !important;
    }
}

/* Compact, reversible cookie choice. */
.privacy-consent {
    position: fixed;
    z-index: 90;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    box-sizing: border-box;
    display: grid;
    width: min(calc(100% - 2rem), 44rem);
    margin-inline: auto;
    gap: 0.8rem;
    align-items: center;
    border: 1px solid rgba(42, 57, 94, 0.13);
    border-radius: 1rem;
    padding: 0.85rem 0.95rem;
    color: #626a78;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 0.9rem 2.5rem rgba(24, 31, 52, 0.13);
    backdrop-filter: blur(16px);
}

.privacy-consent[hidden] {
    display: none;
}

.privacy-consent.is-visible {
    animation: privacy-consent-enter 420ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.privacy-consent__label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--aero-cobalt);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.privacy-consent__label::before {
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 50%;
    background: var(--aero-amber);
    box-shadow: 0 0 0 0.2rem rgba(240, 138, 75, 0.1);
    content: "";
}

.privacy-consent h2 {
    margin-top: 0.18rem;
    color: var(--aero-ink);
    font-size: 0.98rem;
    font-weight: 750;
    letter-spacing: -0.02em;
}

.privacy-consent p {
    max-width: 47rem;
    margin-top: 0.2rem;
    font-size: 0.74rem;
    line-height: 1.45;
}

.privacy-consent p a {
    color: var(--aero-cobalt-deep);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.16rem;
}

.privacy-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.privacy-consent__button,
.privacy-inline-button {
    box-sizing: border-box;
    min-height: 2.15rem;
    border: 1px solid rgba(38, 52, 85, 0.16);
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
    color: #283043;
    background: #fff;
    font-size: 0.72rem;
    font-weight: 750;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.privacy-consent__button:hover,
.privacy-inline-button:hover {
    border-color: rgba(49, 87, 213, 0.42);
    box-shadow: 0 0.6rem 1.5rem rgba(40, 60, 120, 0.1);
    transform: translateY(-1px);
}

.privacy-consent__button--primary {
    border-color: transparent;
    color: #fff;
    background: linear-gradient(135deg, #3f67e4, #2949b8);
}

.privacy-inline-button {
    margin-top: 1.25rem;
}

@keyframes privacy-consent-enter {
    from { opacity: 0; transform: translateY(1rem); }
    to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 48rem) {
    .privacy-consent {
        grid-template-columns: minmax(0, 1fr) auto;
    }
}

@media (max-width: 47.99rem) {
    .privacy-consent {
        right: 0.65rem;
        bottom: 0.65rem;
        left: 0.65rem;
        width: auto;
        max-width: 34rem;
        border-radius: 0.95rem;
    }

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

    .privacy-consent__button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .privacy-consent.is-visible {
        animation: none;
    }
}

/* Reader silicon, Gen2X and knowledge centre */
.reader-tier-grid {
    display: grid;
    margin-top: clamp(3rem, 7vw, 5.5rem);
    gap: 1.25rem;
}

.reader-tier {
    overflow: hidden;
    border: 1px solid rgba(26, 32, 29, 0.18);
    border-radius: 0.22rem;
    background: #f8f7f3;
    box-shadow: none;
}

.reader-tier--performance {
    border-color: rgba(40, 83, 106, 0.34);
    box-shadow: none;
}

.reader-tier__visual {
    position: relative;
    display: grid;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    place-items: center;
    background:
        radial-gradient(circle at 48% 44%, rgba(255, 255, 255, 0.92), rgba(235, 233, 226, 0.72) 48%, rgba(220, 217, 207, 0.9) 100%);
}

.reader-tier__visual::before {
    position: absolute;
    width: 60%;
    aspect-ratio: 1;
    border: 1px solid rgba(40, 83, 106, 0.14);
    border-radius: 50%;
    content: "";
}

.reader-tier__product {
    position: relative;
    z-index: 1;
    display: block;
    width: min(88%, 25rem);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 1.4rem 1.3rem rgba(17, 23, 21, 0.22));
    transition: transform 600ms cubic-bezier(0.2, 0.75, 0.2, 1),
        filter 600ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reader-tier__product--front {
    width: min(94%, 27rem);
}

.reader-tier:hover .reader-tier__product {
    filter: drop-shadow(0 1.65rem 1.5rem rgba(17, 23, 21, 0.26));
    transform: translateY(-0.2rem) scale(1.012);
}

.reader-tier__silicon {
    position: absolute;
    right: clamp(0.65rem, 1.8vw, 1rem);
    bottom: clamp(0.65rem, 1.8vw, 1rem);
    z-index: 3;
    width: clamp(3.5rem, 5vw, 4.5rem);
    aspect-ratio: 3 / 2;
    isolation: isolate;
    pointer-events: none;
    transform: rotate(2deg);
    transition: transform 450ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reader-tier__silicon::before,
.reader-tier__silicon::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(26, 32, 29, 0.18);
    border-radius: 0.14rem;
    background: #e5e3dc;
    box-shadow: 0 0.45rem 0.9rem rgba(26, 32, 29, 0.1);
    content: "";
}

.reader-tier__silicon::before {
    z-index: 0;
    transform: translate(-0.42rem, -0.28rem) rotate(-7deg);
}

.reader-tier__silicon::after {
    z-index: 1;
    transform: translate(-0.2rem, -0.13rem) rotate(-3deg);
}

.reader-tier__silicon img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(26, 32, 29, 0.22);
    border-radius: 0.14rem;
    padding: 0.18rem;
    object-fit: contain;
    background: rgba(248, 247, 243, 0.98);
    box-shadow: 0 0.65rem 1.2rem rgba(26, 32, 29, 0.16);
}

.reader-tier:hover .reader-tier__silicon {
    transform: translate(-0.12rem, -0.08rem) rotate(0deg);
}

.reader-tier__body {
    padding: clamp(1.35rem, 3vw, 2rem);
}

.reader-tier__body h3 {
    margin-top: 0.55rem;
    color: #20283a;
    font-size: clamp(1.3rem, 2.1vw, 1.75rem);
    font-weight: 750;
    letter-spacing: -0.035em;
}

.reader-tier__body p {
    min-height: 5.2rem;
    margin-top: 0.85rem;
    color: #667084;
    line-height: 1.65;
}

.reader-tier__link {
    display: inline-flex;
    margin-top: 1.25rem;
    align-items: center;
    gap: 0.4rem;
    color: #304eb8;
    font-size: 0.9rem;
    font-weight: 750;
}

.reader-media-note {
    width: min(calc(100% - 2rem), 70rem);
    max-width: 70rem;
    margin: 1rem auto 0;
    color: #747c77;
    font-size: 0.72rem;
    line-height: 1.55;
}

.reader-media-note a {
    color: #28536a;
    font-weight: 700;
}

.technology-callout {
    display: grid;
    margin-top: clamp(2rem, 5vw, 4rem);
    gap: 1.5rem;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(26, 32, 29, 0.18);
    border-radius: 0.22rem;
    padding: clamp(1.5rem, 4vw, 3rem);
    background: #f1efe8;
    box-shadow: none;
}

.technology-callout h2 {
    max-width: 47rem;
    margin-top: 0.45rem;
    color: #20283a;
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    font-weight: 750;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.technology-callout p {
    max-width: 50rem;
    margin-top: 0.8rem;
    color: #657084;
    line-height: 1.65;
}

.technology-callout__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

.technology-callout__actions img {
    width: 8.5rem;
    height: auto;
    border: 1px solid rgba(26, 32, 29, 0.14);
    padding: 0.35rem 0.5rem;
    background: #fff;
}

.model-silicon {
    margin-top: 1rem;
}

.model-silicon__item {
    display: grid;
    grid-template-columns: 7.5rem minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(62, 78, 122, 0.12);
    border-radius: 0.18rem;
    padding: 0.55rem;
    background: #f4f2ec;
    animation: silicon-enter 320ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.model-silicon__item[hidden] {
    display: none;
}

.model-silicon__item img {
    width: 7.5rem;
    aspect-ratio: 3 / 2;
    object-fit: contain;
    padding: 0.35rem;
}

.model-silicon__item figcaption {
    display: grid;
    gap: 0.18rem;
}

.model-silicon__item strong {
    color: #273047;
    font-size: 0.95rem;
}

.model-silicon__item span {
    color: #6d7688;
    font-size: 0.76rem;
    line-height: 1.45;
}

.model-silicon__source {
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.67rem;
    line-height: 1.45;
}

.model-silicon__source a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: underline;
    text-underline-offset: 0.16em;
}

@keyframes silicon-enter {
    from { opacity: 0; transform: translateY(0.35rem); }
    to { opacity: 1; transform: translateY(0); }
}

.technology-hero-grid,
.knowledge-hero-grid {
    display: grid;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.technology-hero-grid > *,
.knowledge-hero-grid > * {
    min-width: 0;
}

.technology-page .premium-display,
.knowledge-page .premium-display {
    overflow-wrap: anywhere;
}

.technology-chip,
.knowledge-hero-image {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(48, 62, 97, 0.12);
    border-radius: 0.22rem;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: none;
}

.technology-chip img,
.knowledge-hero-image img {
    display: block;
    width: 100%;
}

.technology-chip figcaption,
.knowledge-hero-image figcaption {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    border: 1px solid rgba(38, 51, 82, 0.12);
    border-radius: 1rem;
    padding: 0.8rem 1rem;
    color: #626d82;
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.73rem;
    line-height: 1.4;
    backdrop-filter: blur(16px);
}

.technology-chip figcaption {
    display: grid;
    position: static;
    border: 0;
    border-top: 1px solid rgba(26, 32, 29, 0.14);
    border-radius: 0;
    background: #f8f7f3;
    backdrop-filter: none;
}

.technology-chip__stage {
    position: relative;
    display: grid;
    min-height: 28rem;
    overflow: hidden;
    place-items: center;
    background:
        radial-gradient(circle at 52% 44%, rgba(255, 255, 255, 0.96), rgba(235, 233, 226, 0.78) 52%, rgba(220, 217, 207, 0.92) 100%);
}

.technology-chip__deck {
    position: relative;
    width: min(84%, 26rem);
    height: 20rem;
}

.technology-chip .technology-chip__card {
    position: absolute;
    width: min(57%, 14.5rem);
    height: auto;
    filter: drop-shadow(0 1.25rem 1.15rem rgba(26, 32, 29, 0.2));
    transform-origin: 50% 100%;
    transition: transform 500ms cubic-bezier(0.2, 0.75, 0.2, 1),
        filter 500ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.technology-chip__card--e310 {
    top: 3%;
    left: 2%;
    z-index: 1;
    transform: rotate(-9deg);
}

.technology-chip__card--e510 {
    top: 12%;
    left: 14%;
    z-index: 2;
    transform: rotate(-5deg);
}

.technology-chip__card--e710 {
    top: 21%;
    left: 26%;
    z-index: 3;
    transform: rotate(-1deg);
}

.technology-chip__card--e910 {
    top: 30%;
    left: 38%;
    z-index: 4;
    transform: rotate(3deg);
}

.technology-chip:hover .technology-chip__card {
    filter: drop-shadow(0 1.45rem 1.35rem rgba(26, 32, 29, 0.24));
}

.technology-chip:hover .technology-chip__card--e310 {
    transform: translate(-0.45rem, -0.35rem) rotate(-11deg);
}

.technology-chip:hover .technology-chip__card--e910 {
    transform: translate(0.35rem, 0.25rem) rotate(4deg);
}

.technology-chip .technology-chip__badge {
    position: absolute;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 5;
    width: 6.25rem;
    height: auto;
    border: 1px solid rgba(26, 32, 29, 0.16);
    padding: 0.28rem 0.38rem;
    background: #fff;
}

.technology-chip figcaption span,
.technology-chip figcaption small {
    color: #778196;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.technology-chip figcaption strong {
    margin-block: 0.18rem;
    color: #26304a;
    font-size: 1.05rem;
}

.technology-benefits {
    display: grid;
    margin-top: clamp(2.5rem, 6vw, 4.5rem);
    gap: 1rem;
}

.technology-benefits article {
    border: 1px solid rgba(43, 57, 91, 0.1);
    border-radius: 1.6rem;
    padding: clamp(1.4rem, 3vw, 2rem);
    background: #fff;
    box-shadow: 0 1rem 3rem rgba(40, 52, 83, 0.06);
}

.technology-benefits article > span {
    color: #526cd0;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.technology-benefits h3 {
    margin-top: 1.2rem;
    color: #20283a;
    font-size: 1.3rem;
    font-weight: 750;
}

.technology-benefits p {
    margin-top: 0.65rem;
    color: #667084;
    line-height: 1.65;
}

.capability-path,
.rfid-system-path {
    display: grid;
    margin-top: clamp(2.5rem, 6vw, 4.5rem);
    gap: 0;
    list-style: none;
    counter-reset: none;
}

.capability-path li,
.rfid-system-path li {
    position: relative;
    border: 1px solid rgba(45, 59, 92, 0.1);
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.76);
}

.capability-path li:first-child,
.rfid-system-path li:first-child {
    border-radius: 1.5rem 1.5rem 0 0;
}

.capability-path li:last-child,
.rfid-system-path li:last-child {
    border-radius: 0 0 1.5rem 1.5rem;
}

.capability-path li + li,
.rfid-system-path li + li {
    border-top: 0;
}

.capability-path li > span,
.rfid-system-path li > span {
    color: #526cd0;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.capability-path strong,
.rfid-system-path h3 {
    display: block;
    margin-top: 0.7rem;
    color: #20283a;
    font-size: 1.08rem;
    font-weight: 750;
}

.capability-path p,
.rfid-system-path p {
    margin-top: 0.5rem;
    color: #687286;
    font-size: 0.9rem;
    line-height: 1.6;
}

.compatibility-table thead th,
.comparison-table thead th {
    color: #33405a;
    background: #eef1f8;
}

.status-good {
    display: inline-flex;
    border-radius: 999px;
    padding: 0.35rem 0.65rem;
    color: #254aa8;
    background: #e9efff;
    font-size: 0.72rem;
    font-weight: 800;
}

.evidence-note {
    margin-top: 1.5rem;
    border: 1px solid rgba(203, 120, 70, 0.18);
    border-left: 4px solid #e58b58;
    border-radius: 0 1.1rem 1.1rem 0;
    padding: 1.2rem 1.4rem;
    background: #fff9f4;
}

.evidence-note strong {
    color: #733f23;
}

.evidence-note p {
    margin-top: 0.35rem;
    color: #725c50;
    line-height: 1.6;
}

.technology-next,
.learning-next,
.editorial-cta {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.source-card {
    display: grid;
    border: 1px solid rgba(41, 55, 89, 0.11);
    border-radius: 1.6rem;
    padding: clamp(1.4rem, 3vw, 2rem);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 1rem 3rem rgba(41, 53, 84, 0.07);
}

.source-card > span {
    color: #516bd0;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.source-card h3 {
    margin-top: 0.65rem;
    color: #20283a;
    font-size: 1.4rem;
    font-weight: 750;
}

.source-card p {
    margin-block: 0.6rem 1rem;
    color: #667084;
    line-height: 1.6;
}

.source-card a {
    border-top: 1px solid rgba(41, 55, 89, 0.09);
    padding-block: 0.72rem;
    color: #304eb8;
    font-size: 0.86rem;
    font-weight: 750;
}

.source-card__disclaimer {
    margin-top: 0.8rem;
    color: #7a817d;
    font-size: 0.68rem;
    line-height: 1.5;
}

.knowledge-hero-image {
    min-height: 20rem;
}

.knowledge-hero-image img {
    min-height: 20rem;
    object-fit: cover;
}

.comparison-layout {
    display: grid;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.read-zone-layout {
    display: grid;
    margin-top: clamp(2.5rem, 6vw, 4.5rem);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.read-zone-layout figure {
    overflow: hidden;
    border-radius: 2rem;
    background: #eef1f8;
    box-shadow: 0 1.5rem 4rem rgba(39, 51, 83, 0.1);
}

.read-zone-layout figure img {
    display: block;
    width: 100%;
}

.read-zone-layout figure figcaption {
    padding: 0.8rem 1rem;
    color: #737d90;
    background: #fff;
    font-size: 0.7rem;
}

.deployment-checklist {
    display: grid;
    gap: 0;
    list-style: none;
}

.deployment-checklist li {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(43, 57, 91, 0.11);
    padding-block: 1.15rem;
}

.deployment-checklist strong {
    color: #263047;
}

.deployment-checklist span {
    color: #6c7587;
    line-height: 1.55;
}

.application-story-grid {
    display: grid;
    margin-top: clamp(2.5rem, 6vw, 4.5rem);
    gap: 1.25rem;
}

.application-story-grid article {
    overflow: hidden;
    border: 1px solid rgba(42, 56, 89, 0.1);
    border-radius: 1.75rem;
    background: #fff;
    box-shadow: 0 1.2rem 3.5rem rgba(40, 52, 84, 0.08);
}

.application-story-grid article > img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.application-story-grid article:hover > img {
    transform: scale(1.025);
}

.application-story-grid article > div {
    padding: 1.4rem;
}

.application-story-grid article span,
.article-library article span,
.article-library a span {
    color: #526bd0;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.application-story-grid h3 {
    margin-top: 0.5rem;
    color: #20283a;
    font-size: 1.25rem;
    font-weight: 750;
}

.application-story-grid p {
    margin-top: 0.55rem;
    color: #687285;
    line-height: 1.6;
}

.application-story-grid a {
    display: inline-flex;
    margin-top: 0.9rem;
    color: #304eb8;
    font-size: 0.84rem;
    font-weight: 750;
}

.learning-next {
    border: 1px solid rgba(42, 57, 94, 0.11);
    border-radius: 2rem;
    padding: clamp(1.5rem, 4vw, 3rem);
    background: linear-gradient(140deg, #f1f4ff, #f9f6f1);
}

.learning-next__links {
    display: grid;
    gap: 0.7rem;
}

.learning-next__links a {
    display: grid;
    gap: 0.25rem;
    border: 1px solid rgba(43, 57, 91, 0.1);
    border-radius: 1rem;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.72);
    transition: border-color 180ms ease, transform 180ms ease;
}

.learning-next__links a:hover {
    border-color: rgba(48, 78, 184, 0.3);
    transform: translateX(0.2rem);
}

.learning-next__links strong { color: #273047; }
.learning-next__links span { color: #687286; font-size: 0.8rem; }

.knowledge-feature {
    display: grid;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.knowledge-feature figure {
    overflow: hidden;
    border-radius: 2rem;
    background: #eef1f8;
    box-shadow: 0 1.8rem 4.5rem rgba(39, 52, 86, 0.12);
}

.knowledge-feature figure img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.knowledge-feature figure figcaption {
    padding: 0.8rem 1rem;
    color: #727c8e;
    background: #fff;
    font-size: 0.72rem;
}

.knowledge-feature__list {
    display: grid;
    margin-block: 1.25rem 1.5rem;
    gap: 0.55rem;
    color: #596478;
    list-style: none;
}

.knowledge-feature__list li::before {
    margin-right: 0.55rem;
    color: #516bd0;
    content: "✓";
    font-weight: 800;
}

.learning-track-grid,
.article-library,
.news-feature-grid {
    display: grid;
    margin-top: clamp(2.5rem, 6vw, 4.5rem);
    gap: 1rem;
}

.learning-track-grid > a {
    display: flex;
    min-height: 17rem;
    flex-direction: column;
    border: 1px solid rgba(42, 56, 90, 0.1);
    border-radius: 1.6rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 1rem 3rem rgba(39, 52, 84, 0.06);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.learning-track-grid > a:hover {
    border-color: rgba(48, 78, 184, 0.28);
    box-shadow: 0 1.5rem 3.5rem rgba(39, 52, 84, 0.1);
    transform: translateY(-0.2rem);
}

.learning-track-grid span {
    color: #526bd0;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.learning-track-grid h3 {
    margin-top: 2rem;
    color: #20283a;
    font-size: 1.35rem;
    font-weight: 750;
}

.learning-track-grid p {
    margin-top: 0.7rem;
    color: #687285;
    line-height: 1.6;
}

.learning-track-grid strong {
    margin-top: auto;
    padding-top: 1rem;
    color: #304eb8;
    font-size: 0.84rem;
}

.article-library > a {
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(43, 57, 91, 0.1);
    border-radius: 1.4rem;
    background: #fff;
}

.article-library > a > img,
.article-library__signal {
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: cover;
}

.article-library__signal {
    display: grid;
    place-items: center;
    color: #8892a6;
    background: linear-gradient(145deg, #eef1fa, #f7f3ee);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.08em;
}

.article-library > a > div:last-child {
    padding: 1.25rem;
}

.article-library h3 {
    margin-top: 0.45rem;
    color: #20283a;
    font-size: 1.12rem;
    font-weight: 750;
}

.article-library p {
    margin-top: 0.5rem;
    color: #6a7487;
    font-size: 0.87rem;
    line-height: 1.55;
}

.editorial-cta {
    border: 1px solid rgba(46, 62, 103, 0.11);
    border-radius: 2rem;
    padding: clamp(1.5rem, 4vw, 3rem);
    background: linear-gradient(135deg, #f6f3ef, #edf2ff);
}

.news-feature-grid {
    margin-bottom: 2rem;
}

.news-feature {
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(42, 56, 90, 0.11);
    border-radius: 1.7rem;
    background: #fff;
    box-shadow: 0 1.2rem 3.4rem rgba(40, 52, 84, 0.08);
    transition: box-shadow 180ms ease, transform 180ms ease;
}

.news-feature:hover {
    box-shadow: 0 1.7rem 4rem rgba(40, 52, 84, 0.12);
    transform: translateY(-0.2rem);
}

.news-feature img {
    width: 100%;
    height: 15rem;
    object-fit: cover;
}

.news-feature .news-feature__technology-mark {
    object-fit: contain;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    background: #ebe9e2;
}

.news-feature > div {
    padding: 1.4rem;
}

.news-feature span {
    color: #526bd0;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-feature h3 {
    margin-top: 0.55rem;
    color: #20283a;
    font-size: 1.35rem;
    font-weight: 750;
}

.news-feature p {
    margin-top: 0.6rem;
    color: #687285;
    line-height: 1.6;
}

.news-feature strong {
    display: inline-flex;
    margin-top: 1rem;
    color: #304eb8;
    font-size: 0.84rem;
}

@media (min-width: 48rem) {
    .technology-benefits,
    .capability-path,
    .rfid-system-path,
    .application-story-grid,
    .article-library,
    .news-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .capability-path li:first-child,
    .rfid-system-path li:first-child { border-radius: 1.5rem 0 0 1.5rem; }
    .capability-path li:last-child,
    .rfid-system-path li:last-child { border-radius: 0 1.5rem 1.5rem 0; }
    .capability-path li + li,
    .rfid-system-path li + li { border-top: 1px solid rgba(45, 59, 92, 0.1); }
    .capability-path li:nth-child(even),
    .rfid-system-path li:nth-child(even) { border-left: 0; }
}

@media (min-width: 64rem) {
    .reader-tier-grid,
    .application-story-grid,
    .learning-track-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .technology-callout,
    .editorial-cta {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .technology-hero-grid,
    .knowledge-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(27rem, 0.82fr);
    }

    .technology-benefits,
    .capability-path,
    .rfid-system-path {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .capability-path li:nth-child(even),
    .rfid-system-path li:nth-child(even) { border-left: 1px solid rgba(45, 59, 92, 0.1); }
    .capability-path li + li,
    .rfid-system-path li + li { border-left: 0; }

    .technology-next,
    .learning-next,
    .knowledge-feature,
    .comparison-layout,
    .read-zone-layout {
        grid-template-columns: minmax(0, 1fr) minmax(26rem, 0.82fr);
    }

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

@media (max-width: 47.99rem) {
    .technology-page .premium-display,
    .knowledge-page .premium-display {
        max-width: 100%;
        font-size: clamp(2.75rem, 13vw, 4rem);
        letter-spacing: -0.055em;
    }

    .reader-tier__body p {
        min-height: auto;
    }

    .reader-tier__silicon {
        right: 0.75rem;
        bottom: 0.75rem;
        width: 3.65rem;
    }

    .model-silicon__item {
        grid-template-columns: 5.6rem minmax(0, 1fr);
    }

    .model-silicon__item img {
        width: 5.6rem;
    }

    .technology-chip figcaption,
    .knowledge-hero-image figcaption {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        border: 0;
        border-radius: 0;
    }

    .technology-chip,
    .knowledge-hero-image,
    .read-zone-layout figure,
    .knowledge-feature figure {
        border-radius: 1.4rem;
    }

    .technology-chip {
        border-radius: 0.22rem;
    }

    .technology-chip__stage {
        min-height: 23rem;
    }

    .technology-chip__deck {
        width: 92%;
        height: 17rem;
    }

    .technology-chip .technology-chip__badge {
        right: 0.75rem;
        bottom: 0.75rem;
        width: 5.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reader-tier__product,
    .reader-tier__silicon,
    .technology-chip__card,
    .application-story-grid article > img,
    .learning-next__links a,
    .learning-track-grid > a,
    .news-feature,
    .model-silicon__item {
        animation: none;
        transition: none;
    }
}

@media (min-width: 80rem) {
    .order-summary {
        top: 8rem;
    }

    .tag-layer-stage {
        top: 7.5rem;
        height: calc(100svh - 9.5rem);
    }
}

/* ---------- Software downloads ---------- */

.software-downloads-page {
    color: #536078;
    background: #fbfbfd;
}

.software-hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(4.75rem, 9vw, 8rem);
    background:
        radial-gradient(circle at 82% 20%, rgba(86, 118, 223, 0.22), transparent 32%),
        linear-gradient(135deg, #f8f5f0 0%, #f7f8fd 48%, #eaf0ff 100%);
}

.software-hero::before {
    position: absolute;
    inset: 0;
    opacity: 0.32;
    background-image:
        linear-gradient(rgba(51, 69, 111, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(51, 69, 111, 0.08) 1px, transparent 1px);
    background-size: 5.5rem 5.5rem;
    mask-image: linear-gradient(90deg, #000, transparent 74%);
    pointer-events: none;
    content: "";
}

.software-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    gap: clamp(3rem, 7vw, 6.5rem);
}

.software-breadcrumb {
    display: flex;
    margin-bottom: 2.5rem;
    gap: 0.6rem;
    color: #7d879b;
    font-size: 0.78rem;
}

.software-breadcrumb a:hover {
    color: #304eb8;
}

.software-hero .premium-display {
    max-width: 10ch;
    margin-top: 1.2rem;
    color: #151b29;
}

.software-hero .premium-lede {
    max-width: 42rem;
    color: #657087;
}

.software-platform-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 2rem;
}

.software-platform-line span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(47, 67, 111, 0.1);
    border-radius: 999px;
    padding: 0.55rem 0.75rem;
    color: #4f5d78;
    background: rgba(255, 255, 255, 0.68);
    font-size: 0.72rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.software-platform-line i {
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: #536fd0;
    box-shadow: 0 0 0 0.23rem rgba(83, 111, 208, 0.12);
}

.software-window {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(39, 55, 91, 0.16);
    border-radius: 1.55rem;
    background: #fff;
    box-shadow: 0 2.4rem 6rem -2.6rem rgba(32, 48, 89, 0.52);
    transform: perspective(1000px) rotateY(-4deg) rotateX(1deg);
}

.software-window__bar {
    display: flex;
    height: 2.9rem;
    align-items: center;
    gap: 0.38rem;
    border-bottom: 1px solid rgba(38, 53, 86, 0.09);
    padding-inline: 1rem;
    background: #f7f8fb;
}

.software-window__bar span {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: #cfd5e1;
}

.software-window__bar span:first-child { background: #ff9a7b; }
.software-window__bar span:nth-child(2) { background: #ffc45f; }
.software-window__bar span:nth-child(3) { background: #58c981; }

.software-window__bar strong {
    margin-left: auto;
    color: #647089;
    font-size: 0.7rem;
}

.software-window img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: top left;
}

.software-window figcaption {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    padding: 0.6rem 0.8rem;
    color: #fff;
    background: rgba(24, 36, 67, 0.74);
    font-size: 0.68rem;
    font-weight: 700;
    backdrop-filter: blur(12px);
}

.software-release-section {
    background: #fbfbfd;
}

.software-section-heading {
    display: grid;
    align-items: end;
    gap: 1.5rem;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.software-section-heading h2,
.software-install-copy h2,
.software-integrity-card h2 {
    margin-top: 0.75rem;
    color: #1c2333;
    font-size: clamp(2.15rem, 4vw, 3.75rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.02;
}

.software-section-heading > p,
.software-install-copy > p,
.software-integrity-card > div > p {
    max-width: 36rem;
    color: #6a7489;
    line-height: 1.7;
}

.software-release-grid {
    display: grid;
    gap: 1rem;
}

.software-release-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    border: 1px solid rgba(39, 55, 91, 0.11);
    border-radius: 1.7rem;
    padding: clamp(1.35rem, 3vw, 2rem);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 1.5rem 4rem -3rem rgba(31, 47, 88, 0.38);
}

.software-release-card--featured {
    background: linear-gradient(150deg, #fff 0%, #f1f5ff 100%);
}

.software-release-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.software-platform-mark {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border: 1px solid rgba(52, 72, 121, 0.12);
    border-radius: 1rem;
    color: #fff;
    background: linear-gradient(145deg, #26375f, #6077c8);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.22);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.software-status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.45rem 0.65rem;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.software-status::before {
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    content: "";
}

.software-status--live { color: #19743a; background: #eaf7ee; }
.software-status--live::before { background: #25aa53; }
.software-status--preview { color: #3954b0; background: #edf1ff; }
.software-status--preview::before { background: #5572d5; }
.software-status--pending { color: #855c1d; background: #fff5df; }
.software-status--pending::before { background: #dfa33c; }

.software-release-card__eyebrow {
    margin-top: 1.7rem;
    color: #6d7890;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.software-release-card h3 {
    margin-top: 0.45rem;
    color: #1a2130;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.software-release-card__summary {
    min-height: 7.8rem;
    margin-top: 0.8rem;
    color: #657087;
    line-height: 1.65;
}

.software-capabilities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1.1rem;
}

.software-capabilities li {
    border: 1px solid rgba(47, 66, 106, 0.09);
    border-radius: 999px;
    padding: 0.42rem 0.58rem;
    color: #59657c;
    background: #f6f7fa;
    font-size: 0.68rem;
    font-weight: 700;
}

.software-release-meta {
    display: flex;
    margin-top: 1.35rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-block: 1px solid rgba(42, 58, 95, 0.09);
    padding-block: 1rem;
    color: #7a8498;
    font-size: 0.74rem;
}

.software-release-meta strong {
    color: #26324a;
}

.software-card-actions {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.35rem;
}

.software-download-button {
    display: inline-flex;
    min-height: 3.2rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-radius: 0.95rem;
    padding: 0.8rem 1rem;
    color: #fff;
    background: linear-gradient(135deg, #3e61ce, #2c47a5);
    box-shadow: 0 1rem 1.8rem -1.35rem rgba(44, 71, 165, 0.9);
    font-size: 0.82rem;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.software-download-button:hover {
    color: #fff;
    filter: brightness(1.07);
    transform: translateY(-2px);
    box-shadow: 0 1.3rem 2.2rem -1.35rem rgba(44, 71, 165, 0.95);
}

.software-download-button--secondary {
    background: linear-gradient(135deg, #596479, #343f56);
}

.software-text-link {
    color: #3b56b4;
    font-size: 0.78rem;
    font-weight: 700;
}

.software-release-note {
    margin-top: 1.2rem;
    color: #7b8598;
    font-size: 0.72rem;
    line-height: 1.55;
}

.software-release-note--caution {
    border-left: 2px solid #d59a38;
    padding-left: 0.75rem;
    color: #79613e;
}

.software-install-layout,
.software-integrity-card {
    display: grid;
    gap: clamp(2.5rem, 7vw, 6rem);
}

.software-install-copy {
    scroll-margin-top: 8rem;
}

.software-install-steps {
    display: grid;
    gap: 0.8rem;
}

.software-install-steps li {
    display: grid;
    grid-template-columns: 2.7rem minmax(0, 1fr);
    gap: 1rem;
    border: 1px solid rgba(39, 55, 91, 0.1);
    border-radius: 1.25rem;
    padding: 1.15rem;
    background: rgba(255, 255, 255, 0.78);
}

.software-install-steps li > span {
    color: #536fd0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.software-install-steps h3 {
    color: #20283a;
    font-size: 1rem;
    font-weight: 750;
}

.software-install-steps p {
    margin-top: 0.35rem;
    color: #6b7589;
    font-size: 0.84rem;
    line-height: 1.6;
}

.software-integrity-card {
    border: 1px solid rgba(39, 55, 91, 0.11);
    border-radius: 2rem;
    padding: clamp(1.5rem, 4vw, 3.2rem);
    background: linear-gradient(145deg, #f8f4ee, #edf2ff);
}

.software-integrity-card dl {
    display: grid;
    min-width: 0;
    gap: 1rem;
}

.software-integrity-card dl > div {
    min-width: 0;
    border-bottom: 1px solid rgba(42, 58, 95, 0.1);
    padding-bottom: 1rem;
}

.software-integrity-card dt {
    color: #7b8599;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.software-integrity-card dd {
    margin-top: 0.45rem;
    color: #27334a;
    font-size: 0.83rem;
    font-weight: 700;
}

.software-integrity-card code {
    display: block;
    overflow-wrap: anywhere;
    color: #425579;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.66rem;
    font-weight: 600;
}

.software-integrity-card a {
    color: #304eb8;
}

@media (min-width: 48rem) {
    .software-section-heading {
        grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.62fr);
    }

    .software-card-actions {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }
}

@media (min-width: 64rem) {
    .software-hero__grid {
        grid-template-columns: minmax(0, 0.87fr) minmax(30rem, 1.13fr);
    }

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

    .software-install-layout,
    .software-integrity-card {
        grid-template-columns: minmax(0, 0.78fr) minmax(30rem, 1.22fr);
        align-items: start;
    }
}

@media (max-width: 47.99rem) {
    .software-hero .premium-display {
        max-width: 100%;
        font-size: clamp(2.75rem, 13vw, 4rem);
    }

    .software-window {
        border-radius: 1.2rem;
        transform: none;
    }

    .software-window figcaption {
        position: relative;
        right: auto;
        bottom: auto;
        border: 0;
        border-radius: 0;
        color: #637089;
        background: #f6f7fa;
    }

    .software-release-card__summary {
        min-height: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .software-download-button {
        transition: none;
    }
}

/* Independent market evidence */
.adoption-proof {
    position: relative;
    overflow: hidden;
    color: #1b2437;
    background:
        radial-gradient(circle at 10% 15%, rgba(241, 186, 149, 0.24), transparent 28rem),
        radial-gradient(circle at 88% 8%, rgba(117, 144, 226, 0.2), transparent 31rem),
        linear-gradient(155deg, #fbf8f4 0%, #f4f6fc 55%, #eef2fb 100%);
}

.adoption-proof::before {
    position: absolute;
    inset: 0;
    opacity: 0.34;
    background-image: radial-gradient(rgba(55, 74, 126, 0.2) 0.75px, transparent 0.75px);
    background-size: 22px 22px;
    mask-image: linear-gradient(to bottom, #000, transparent 55%);
    pointer-events: none;
    content: "";
}

.adoption-proof .premium-shell {
    position: relative;
}

.adoption-proof__intro {
    display: grid;
    align-items: end;
    gap: clamp(1.5rem, 5vw, 5rem);
    margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.adoption-proof__intro .premium-section__title {
    max-width: 58rem;
}

.adoption-proof__intro .premium-section__lede {
    max-width: 36rem;
    margin: 0;
}

.adoption-proof__dashboard {
    display: grid;
    gap: 1rem;
}

.adoption-scale {
    position: relative;
    display: flex;
    min-height: 31rem;
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 2rem;
    padding: clamp(1.5rem, 4vw, 3rem);
    color: #edf2ff;
    background:
        radial-gradient(circle at 82% 15%, rgba(111, 143, 240, 0.5), transparent 38%),
        linear-gradient(145deg, #263456, #111a2e 76%);
    box-shadow: 0 2.6rem 6rem -3.7rem rgba(29, 43, 83, 0.8);
}

.adoption-scale::before,
.adoption-scale::after {
    position: absolute;
    width: 17rem;
    height: 17rem;
    border: 1px solid rgba(165, 183, 241, 0.18);
    border-radius: 50%;
    content: "";
}

.adoption-scale::before {
    top: -4.5rem;
    right: -3rem;
    box-shadow: 0 0 0 3rem rgba(141, 163, 233, 0.05), 0 0 0 6rem rgba(141, 163, 233, 0.035);
}

.adoption-scale::after {
    top: 2.15rem;
    right: 3.65rem;
    width: 3.5rem;
    height: 3.5rem;
    border: 0;
    background: #7d98ed;
    box-shadow: 0 0 3rem rgba(125, 152, 237, 0.85);
}

.adoption-scale > * {
    position: relative;
    z-index: 1;
}

.adoption-scale__label {
    max-width: 18rem;
    color: #aebce1;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5;
    text-transform: uppercase;
}

.adoption-scale strong {
    display: flex;
    align-items: baseline;
    gap: 0.65rem;
    margin-top: 1rem;
    color: #fff;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 500;
    letter-spacing: -0.03em;
}

.adoption-scale strong span {
    font-size: clamp(4.6rem, 9vw, 8.5rem);
    font-weight: 700;
    letter-spacing: -0.09em;
    line-height: 0.82;
}

.adoption-scale p {
    max-width: 31rem;
    margin-top: 1.4rem;
    color: #bbc5df;
    line-height: 1.7;
}

.adoption-scale a {
    width: fit-content;
    margin-top: 1.4rem;
    color: #dce5ff;
    font-size: 0.78rem;
    font-weight: 700;
}

.adoption-scale a:hover {
    color: #fff;
}

.adoption-evidence {
    display: grid;
    gap: 1rem;
}

.adoption-evidence article {
    display: flex;
    min-width: 0;
    flex-direction: column;
    border: 1px solid rgba(51, 68, 108, 0.1);
    border-radius: 1.6rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 1.8rem 4rem -3.3rem rgba(40, 57, 99, 0.55);
    backdrop-filter: blur(12px);
}

.adoption-evidence__sector {
    color: #66779f;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.adoption-evidence h3 {
    margin-top: 0.55rem;
    color: #1c263b;
    font-size: clamp(1.35rem, 2.2vw, 1.8rem);
    font-weight: 700;
    letter-spacing: -0.04em;
}

.adoption-evidence p {
    margin-top: 0.75rem;
    color: #667187;
    font-size: 0.88rem;
    line-height: 1.65;
}

.adoption-evidence__sources {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: auto;
    padding-top: 1.25rem;
}

.adoption-evidence__sources a,
.adoption-context__source {
    color: #3856b5;
    font-size: 0.72rem;
    font-weight: 750;
}

.adoption-evidence__sources a:hover,
.adoption-context__source:hover {
    color: #223a8d;
}

.adoption-name-rail {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    margin-top: clamp(2rem, 5vw, 3.5rem);
}

.adoption-name-rail li {
    border: 1px solid rgba(46, 63, 104, 0.12);
    border-radius: 999px;
    padding: 0.62rem 0.9rem;
    color: #5e6a81;
    background: rgba(255, 255, 255, 0.48);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.015em;
}

.adoption-disclosure {
    max-width: 64rem;
    margin: 1.5rem auto 0;
    color: #737d91;
    font-size: 0.74rem;
    line-height: 1.7;
    text-align: center;
}

.adoption-disclosure strong {
    color: #3b465d;
}

.adoption-disclosure a {
    margin-left: 0.25rem;
    color: #3856b5;
    font-weight: 750;
    white-space: nowrap;
}

.adoption-disclosure a:hover {
    color: #223a8d;
}

.adoption-context {
    color: #1b2437;
    background: linear-gradient(180deg, #fff 0%, #f7f8fc 100%);
}

.adoption-context__grid {
    display: grid;
    gap: clamp(2.5rem, 7vw, 7rem);
}

.adoption-context__source {
    display: inline-flex;
    margin-top: 1.3rem;
}

.adoption-context__lessons {
    display: grid;
    gap: 0.85rem;
}

.adoption-context__lessons article {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 1rem;
    border-bottom: 1px solid rgba(41, 58, 97, 0.11);
    padding: 0.85rem 0 1.35rem;
}

.adoption-context__lessons article > span {
    color: #5871c5;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.adoption-context__lessons h3 {
    color: #202a3e;
    font-size: 1.08rem;
    font-weight: 700;
}

.adoption-context__lessons p {
    margin-top: 0.35rem;
    color: #687389;
    font-size: 0.88rem;
    line-height: 1.65;
}

.adoption-disclosure--compact {
    max-width: none;
    margin: 0;
    border: 1px solid rgba(48, 65, 106, 0.1);
    border-radius: 1rem;
    padding: 1rem 1.15rem;
    background: #f2f4f9;
    text-align: left;
}

@media (min-width: 48rem) {
    .adoption-proof__intro {
        grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
    }

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

@media (min-width: 64rem) {
    .adoption-proof__dashboard {
        grid-template-columns: minmax(22rem, 0.84fr) minmax(0, 1.16fr);
    }

    .adoption-context__grid {
        grid-template-columns: minmax(0, 0.88fr) minmax(27rem, 1.12fr);
        align-items: start;
    }

    .adoption-disclosure--compact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 47.99rem) {
    .adoption-scale {
        min-height: 27rem;
        border-radius: 1.5rem;
    }

    .adoption-scale strong {
        display: block;
    }

    .adoption-scale strong span {
        display: block;
        margin-bottom: 0.75rem;
    }

    .adoption-evidence article {
        border-radius: 1.3rem;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .adoption-scale::after {
        animation: adoption-pulse 4.5s ease-in-out infinite;
    }
}

@keyframes adoption-pulse {
    0%, 100% { transform: scale(0.88); opacity: 0.72; }
    50% { transform: scale(1.08); opacity: 1; }
}

/* Industrial editorial identity */
:root {
    --brand: #08734a;
    --brand-dark: #055c3a;
    --brand-050: #e6eee9;
    --primary: #28536a;
    --primary-dark: #1d4052;
    --primary-050: #e5ecef;
    --ink: #1a201d;
    --body: #3b443f;
    --muted: #6f7671;
    --surface: #f8f7f3;
    --surface-alt: #ebe8e0;
    --border: #cbc9c1;
    --aero-cobalt: #28536a;
    --aero-cobalt-deep: #1d4052;
    --aero-indigo: #596a73;
    --aero-amber: #b45f38;
    --aero-ink: #1a201d;
    --aero-muted: #69716c;
    --aero-ceramic: #ebe8e0;
    --aero-line: rgba(31, 39, 35, 0.17);
}

body {
    color: var(--body);
    background: #f4f2ec;
}

main {
    background: #f8f7f3;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--ink);
}

.site-header,
.site-header.is-scrolled {
    background: rgba(248, 247, 243, 0.97);
    box-shadow: 0 1px 0 rgba(26, 32, 29, 0.18);
    backdrop-filter: blur(10px);
}

.site-primary {
    border-color: rgba(26, 32, 29, 0.16);
    background: #f8f7f3;
}

.site-menu-button,
.site-primary__actions #langBtn,
.site-buy-button,
.site-mobile-menu__primary > a,
.site-mobile-menu__resource {
    border-radius: 0.18rem;
}

.site-menu-button,
.site-primary__actions #langBtn {
    color: #35423b;
    background: transparent;
}

.site-buy-button {
    color: #fff;
    background: #28536a;
    box-shadow: none;
    letter-spacing: 0.01em;
}

.site-buy-button:hover {
    background: #1d4052;
    box-shadow: none;
    filter: none;
    transform: none;
}

.nav-link::after {
    background: #b45f38;
}

.nav-link:hover,
.nav-link.is-active {
    color: #1d4052;
}

@media (min-width: 80rem) {
    .site-utility {
        color: #e6e8e3;
        background: #29332f;
    }

    .site-utility__home {
        color: #1f2824;
        background: #dedbd3;
        clip-path: none;
    }

    .site-utility__home span::before {
        border-radius: 0;
        background: #b45f38;
        box-shadow: none;
    }

    .site-utility__link--accent,
    .site-utility__link--accent:hover,
    .site-utility__link--accent.is-active {
        background: #9b4f2e;
    }

    .site-utility__link.is-active::after,
    .site-primary__nav .nav-link::after {
        border-radius: 0;
        background: #b45f38;
    }

    .site-primary__nav .nav-link {
        color: #35423b;
    }

    .site-primary__nav .nav-link:hover,
    .site-primary__nav .nav-link.is-active {
        color: #1d4052;
    }
}

.premium-dark:not(.aero-light-hero),
.scroll-story {
    color: #c8cec9;
    background: #202825;
}

.premium-hero,
.aero-light-hero,
.premium-hero.aero-light-hero,
.tag-catalogue-hero,
.tag-detail-hero,
.contact-hero {
    background: #e9e6de !important;
}

.premium-hero::before,
.aero-light-hero::before,
.aero-light-hero::after,
.tag-catalogue-hero::before,
.tag-detail-hero::before,
.contact-hero::after {
    background-image: linear-gradient(90deg, transparent calc(25% - 1px), rgba(45, 55, 50, 0.07) 25%, transparent calc(25% + 1px)) !important;
    background-size: 25% 100% !important;
    mask-image: none;
    opacity: 1;
}

.premium-display {
    max-width: 11ch;
    margin-top: 1.35rem;
    font-size: clamp(3.1rem, 7.2vw, 6.7rem);
    letter-spacing: -0.052em;
    line-height: 0.94;
}

.premium-display--wide {
    max-width: 15ch;
    font-size: clamp(2.9rem, 6.2vw, 5.9rem);
}

.premium-kicker,
.eyebrow {
    color: #8a4b2e;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.premium-kicker::before {
    width: 2.4rem;
}

.premium-dark:not(.aero-light-hero) .premium-kicker,
.story-step__index,
.premium-card--dark .premium-kicker,
.contact-path--dark > span {
    color: #d39570;
}

.premium-lede,
.aero-light-hero .premium-lede,
.premium-section__lede {
    color: #626b66;
}

.premium-dark:not(.aero-light-hero) .premium-lede,
.premium-dark:not(.aero-light-hero) .premium-section__lede,
.premium-dark:not(.aero-light-hero) p,
.story-step p {
    color: #aeb8b2;
}

.premium-button,
.btn {
    border-radius: 0.18rem;
    box-shadow: none;
    letter-spacing: 0.01em;
}

.premium-button:hover,
.btn:hover {
    box-shadow: none;
    transform: none;
}

.premium-button--brand,
.privacy-consent__button--primary {
    color: #fff;
    background: #28536a;
    box-shadow: none;
}

.premium-button--brand:hover,
.privacy-consent__button--primary:hover {
    background: #1d4052;
}

.premium-button--glass {
    border-color: rgba(255, 255, 255, 0.34);
    background: transparent;
    backdrop-filter: none;
}

.aero-light-hero .premium-button--glass,
.tag-datasheet-cta .premium-button--glass {
    border-color: rgba(26, 32, 29, 0.28);
    color: #26322c;
    background: transparent;
}

.premium-section {
    border-top: 1px solid rgba(26, 32, 29, 0.1);
}

.premium-section--soft,
.adoption-proof,
.adoption-context,
.tag-detail #construction,
.tag-detail #performance {
    background: #ebe8e0;
}

.premium-section__intro--center {
    margin-inline: 0;
    text-align: left;
}

.premium-section__intro--center .premium-section__lede {
    margin-inline: 0;
}

.premium-section__title {
    max-width: 15ch;
    font-size: clamp(2.4rem, 5.2vw, 4.8rem);
    letter-spacing: -0.045em;
    line-height: 1;
}

.premium-bento {
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(26, 32, 29, 0.16);
    background: rgba(26, 32, 29, 0.16);
}

.premium-card,
.premium-card--dark,
.contact-path,
.contact-path--dark,
.sdk-path,
.bridge-map,
.bridge-experience__guide,
.bridge-deep-link,
.news-feature,
.learning-track-grid > a,
.article-library > a,
.editorial-cta,
.tag-card,
.tag-detail-hero__visual,
.tag-layer-stage,
.tag-layer-readout,
.tag-spec-card,
.tag-table-wrap,
.tag-range-panel,
.tag-datasheet-cta,
.contact-form-card,
.adoption-scale,
.adoption-evidence article,
.adoption-disclosure--compact {
    border-radius: 0.22rem;
    box-shadow: none;
    backdrop-filter: none;
}

.premium-card {
    min-height: 19rem;
    border: 0;
    background: #f8f7f3;
}

.premium-card--dark,
.contact-path--dark {
    color: #c8cec9;
    background: #26302c;
}

.premium-card__number {
    color: #9b4f2e;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.tech-chip,
.sdk-path__status,
.platform-tab,
.tag-filter,
.adoption-name-rail li,
.privacy-consent__button,
.privacy-inline-button,
.footer-link__status {
    border-radius: 0.16rem;
}

.tech-chip,
.platform-tab,
.sdk-path__status,
.adoption-name-rail li {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.product-stage,
.product-overview__stage,
.article-library__signal {
    background: #e5e3dc;
}

.premium-hero__visual::before {
    position: absolute;
    top: 8%;
    right: 0;
    z-index: 4;
    color: #6d756f;
    content: "MARK3 / FIXED READ POINT";
    font: 0.65rem/1.4 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    letter-spacing: 0.12em;
}

.premium-hero__product,
.aero-light-hero .premium-hero__product,
.story-image {
    filter: drop-shadow(0 2rem 2rem rgba(26, 32, 29, 0.18));
}

.signal-orbit,
.story-radar,
.aero-light-hero .signal-orbit {
    border-color: rgba(40, 83, 106, 0.25);
    box-shadow: none;
}

.signal-orbit::before,
.signal-orbit::after,
.aero-light-hero .signal-orbit::before,
.aero-light-hero .signal-orbit::after {
    border-color: rgba(40, 83, 106, 0.13);
}

.signal-orbit__dot,
.aero-light-hero .signal-orbit__dot {
    border-radius: 0;
    background: #b45f38;
    box-shadow: none;
}

.floating-spec,
.aero-light-hero .floating-spec {
    border-color: rgba(26, 32, 29, 0.24);
    border-radius: 0.18rem;
    color: #626b66;
    background: rgba(248, 247, 243, 0.94);
    box-shadow: none;
    backdrop-filter: none;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.floating-spec strong,
.aero-light-hero .floating-spec strong {
    color: #1a201d;
}

.premium-metrics.premium-dark {
    border-color: rgba(255, 255, 255, 0.14);
    background: #26302c;
}

.premium-metrics.premium-dark .premium-metric {
    border-color: rgba(255, 255, 255, 0.14);
}

.premium-metrics.premium-dark .premium-metric strong {
    color: #f8fafc;
}

.premium-metrics.premium-dark .premium-metric span {
    color: #adb7b1;
}

.scroll-story {
    background-image: linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.07) 50%, transparent calc(50% + 1px));
}

.story-radar {
    border-color: rgba(164, 185, 175, 0.2);
}

.story-step {
    opacity: 0.22;
}

.story-step.is-active {
    opacity: 1;
}

.story-step__detail {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.hero-identity {
    min-height: 14rem;
    overflow: hidden;
    border: 0;
    border-top: 2px solid #2d3d36;
    border-bottom: 1px solid rgba(45, 61, 54, 0.32);
    border-radius: 0;
    padding: 1.25rem 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.hero-identity__top i,
.hero-identity__signal b {
    border-radius: 0;
    box-shadow: none;
}

.hero-identity > strong {
    margin-top: 2.7rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: clamp(1.65rem, 3vw, 2.55rem);
    letter-spacing: -0.04em;
}

.hero-identity__signal {
    right: -1rem;
    bottom: -5rem;
    width: 13rem;
}

.ai-integrator {
    border-color: rgba(255, 255, 255, 0.16);
    border-radius: 0.22rem;
    background: #222c28;
    box-shadow: none;
}

.ai-integrator::before {
    display: none;
}

.ai-prompt {
    color: #c5cec9;
    background: #18201d;
}

.platform-tab:hover,
.platform-tab.is-active {
    border-color: #d39570;
    color: #1b211e;
    background: #d39570;
}

.sdk-path {
    border-color: rgba(26, 32, 29, 0.18);
    background: #f8f7f3;
}

.bridge-map,
.bridge-experience__guide,
.bridge-deep-link {
    border-color: rgba(26, 32, 29, 0.18);
    background: #f8f7f3;
}

.ai-context-control {
    right: 0.75rem;
}

.ai-context-button {
    min-width: 2.6rem;
    min-height: 2.6rem;
    border-color: rgba(26, 32, 29, 0.22);
    border-radius: 0.18rem;
    color: #4b5650;
    background: rgba(248, 247, 243, 0.94);
    box-shadow: none;
    backdrop-filter: blur(8px);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-weight: 600;
}

.ai-context-button:hover,
.ai-context-button.is-copied,
.ai-context-control--prominent .ai-context-button {
    border-color: rgba(40, 83, 106, 0.5);
    color: #1d4052;
    background: #f8f7f3;
}

.ai-context-tooltip {
    border-radius: 0.18rem;
    background: #202825;
    box-shadow: none;
}

.adoption-proof::before,
.adoption-scale::before,
.adoption-scale::after {
    display: none;
}

.adoption-scale {
    color: #edf1ee;
    background: #2b3b43;
}

.adoption-evidence article {
    border-color: rgba(26, 32, 29, 0.16);
    background: rgba(248, 247, 243, 0.82);
}

.adoption-evidence__brand-row {
    display: flex;
    align-items: center;
    min-height: 3.7rem;
    margin-top: 0.85rem;
}

.adoption-evidence__brand-row--retail {
    justify-content: space-between;
    gap: clamp(0.9rem, 2vw, 1.55rem);
    width: min(100%, 19rem);
}

.adoption-brand-logo {
    display: block;
    width: auto;
    height: 2.6rem;
    max-width: 10rem;
    object-fit: contain;
}

.adoption-brand-logo--nike {
    width: 4.2rem;
    height: 2rem;
}

.adoption-brand-logo--zara {
    width: 4rem;
    height: 2.2rem;
}

.adoption-brand-logo--walmart {
    width: 7.6rem;
    height: auto;
}

.adoption-brand-logo--delta {
    width: 7.4rem;
    height: 3rem;
}

.adoption-brand-logo--ups {
    width: 3rem;
    height: 3rem;
}

.adoption-brand-logo--fresenius {
    width: 9.5rem;
    height: auto;
}

.adoption-brand-name {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    clip-path: inset(50%) !important;
}

.adoption-name-rail {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    width: 100%;
}

.adoption-name-rail li {
    display: grid;
    place-items: center;
    min-width: 0;
    min-height: 4.5rem;
    padding: 0.8rem;
    border-color: rgba(26, 32, 29, 0.2);
    color: #4f5954;
    background: rgba(248, 247, 243, 0.7);
}

.adoption-name-rail .adoption-brand-logo {
    width: min(100%, 4.5rem);
    height: 1.75rem;
    max-width: 4.5rem;
    object-fit: contain;
    object-position: center;
}

.adoption-disclosure {
    margin-inline: 0;
    text-align: left;
}

.adoption-trademark-note {
    display: block;
    margin-top: 0.55rem;
    color: #858d88;
    font-size: 0.68rem;
    line-height: 1.55;
}

@media (min-width: 48rem) {
    .adoption-name-rail {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (min-width: 64rem) {
    .adoption-name-rail {
        grid-template-columns: repeat(9, minmax(0, 1fr));
    }
}

.news-feature,
.premium-newsroom .news-grid article {
    border-color: rgba(26, 32, 29, 0.18);
    border-radius: 0.22rem !important;
    background: #f8f7f3;
    box-shadow: none;
}

.news-feature:hover,
.premium-newsroom .news-grid article:hover {
    box-shadow: none;
    transform: none;
}

.tag-catalogue-hero__orbit {
    border-color: rgba(40, 83, 106, 0.2);
    background: transparent;
}

.tag-catalogue-hero__sample,
.tag-catalogue-hero__band {
    border-radius: 0.18rem;
    background: rgba(248, 247, 243, 0.95);
    box-shadow: none;
    backdrop-filter: none;
}

.tag-catalogue-hero__sample {
    animation: none;
}

.tag-layer-stage,
.tag-layer-readout,
.tag-layer-key li {
    border-color: rgba(26, 32, 29, 0.18);
    background: #f2f0ea;
    box-shadow: none;
    backdrop-filter: none;
}

.tag-layer {
    border-radius: 0.16rem;
    box-shadow: 0 0.7rem 1.3rem rgba(26, 32, 29, 0.1);
}

.tag-layer--face { background: #f7f6f1; }
.tag-layer--face-adhesive { background: #c9c1ae; }
.tag-layer--inlay { color: #f1f4f2; background: #49685c; }
.tag-layer--bond { background: #bd784f; }
.tag-layer--liner { background: #ddd7ca; }

.tag-layer-readout::before,
.tag-card__range-track i,
.tag-range-meter__track i {
    border-radius: 0;
    background: #b45f38;
    box-shadow: none;
}

.contact-form-card form input,
.contact-form-card form select,
.contact-form-card form textarea {
    border-radius: 0.18rem;
    background: #fbfaf7;
}

.privacy-consent {
    border-color: rgba(26, 32, 29, 0.24);
    border-radius: 0.18rem;
    color: #59635e;
    background: rgba(248, 247, 243, 0.98);
    box-shadow: none;
    backdrop-filter: blur(8px);
}

.privacy-consent__label::before {
    border-radius: 0;
    background: #b45f38;
    box-shadow: none;
}

@media (max-width: 47.99rem) {
    .premium-display,
    .premium-display--wide {
        font-size: clamp(2.8rem, 15vw, 4.2rem);
    }

    .premium-hero__visual::before {
        top: 3%;
        right: 0.5rem;
    }

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

    .system-intro__path article {
        grid-template-columns: 4.5rem minmax(0, 1fr);
    }

    .floating-spec {
        font-size: 0.66rem;
    }

    .ai-context-control {
        top: 4.75rem;
        right: 0.55rem;
    }
}

@media (min-width: 48rem) {
    .comparison-layout .spec-table-wrap {
        overflow-x: visible;
    }

    .comparison-layout .comparison-table {
        min-width: 0;
        table-layout: fixed;
    }

    .comparison-layout .comparison-table th {
        width: auto;
    }

    .comparison-layout .comparison-table thead th:first-child {
        width: 24%;
    }

    .comparison-layout .comparison-table thead th:nth-child(2),
    .comparison-layout .comparison-table thead th:nth-child(3) {
        width: 38%;
    }
}

@media (min-width: 64rem) {
    .comparison-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (min-width: 80rem) {
    .comparison-layout {
        grid-template-columns: minmax(22rem, 0.72fr) minmax(42rem, 1.28fr);
        gap: clamp(2rem, 3vw, 3rem);
    }

    .ai-context-control {
        top: 7.5rem;
    }

    .privacy-consent {
        width: min(calc(100% - 3rem), 36rem);
        padding: 0.7rem 0.8rem;
    }
}
