:root {
    color-scheme: dark;
    --bg: #07111d;
    --bg-2: #0b1724;
    --panel: #101e2c;
    --panel-2: #142536;
    --text: #f4f8fb;
    --muted: #9db0bf;
    --line: rgba(174, 211, 231, 0.17);
    --line-strong: rgba(174, 211, 231, 0.34);
    --cyan: #64d9ff;
    --pink: #ff4f87;
    --pink-hi: #ff78a4;
    --ink: #050a0f;
    --shadow: 0 28px 80px rgba(0, 3, 8, 0.4);
    --max: 1440px;
    --display: "Onest", "Segoe UI", sans-serif;
    --body: "Onest", "Segoe UI", sans-serif;
    --mono: "IBM Plex Mono", monospace;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --spot-x: 50%;
    --spot-y: 50%;
}
html[data-theme="light"] {
    color-scheme: light;
    --bg: #edf5f8;
    --bg-2: #f7fbfc;
    --panel: #fff;
    --panel-2: #e4f0f5;
    --text: #0a1a28;
    --muted: #536c7c;
    --line: rgba(25, 68, 91, 0.15);
    --line-strong: rgba(25, 68, 91, 0.32);
    --cyan: #007ca6;
    --pink: #d7195c;
    --pink-hi: #ef3876;
    --ink: #fff;
    --shadow: 0 28px 80px rgba(32, 74, 96, 0.15);
}
* {
    box-sizing: border-box;
}
[hidden] {
    display: none !important;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
}
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    transition:
        background 0.35s,
        color 0.35s;
}
body::selection {
    background: var(--pink);
    color: #fff;
}
a {
    color: inherit;
    text-decoration: none;
}
button,
input {
    font: inherit;
}
button {
    color: inherit;
}
img {
    display: block;
    max-width: 100%;
}
svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.skip-link {
    position: fixed;
    left: 18px;
    top: 12px;
    z-index: 999;
    transform: translateY(-160%);
    padding: 10px 14px;
    background: var(--text);
    color: var(--bg);
    border-radius: 8px;
}
.skip-link:focus {
    transform: none;
}
.page-progress {
    position: fixed;
    z-index: 120;
    inset: 0 0 auto;
    height: 2px;
    background: transparent;
}
.page-progress i {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--cyan), var(--pink));
    transform: scaleX(var(--page-progress, 0));
    transform-origin: left;
}
.site-nav {
    position: fixed;
    z-index: 100;
    left: 50%;
    top: 18px;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: min(calc(100% - 36px), var(--max));
    height: 68px;
    padding: 0 12px 0 18px;
    border: 1px solid transparent;
    border-radius: 16px;
    transition:
        background 0.3s,
        border-color 0.3s,
        box-shadow 0.3s,
        top 0.3s;
}
.site-nav.is-scrolled {
    top: 10px;
    background: color-mix(in srgb, var(--bg-2) 88%, transparent);
    border-color: var(--line);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(18px);
}
.site-nav:not(.is-scrolled) .brand b,
.site-nav:not(.is-scrolled) .nav-links a {
    color: #f4f8fb;
}
.site-nav:not(.is-scrolled) .brand small,
.site-nav:not(.is-scrolled) .lang-link,
.site-nav:not(.is-scrolled) .nav-account {
    color: rgba(244, 248, 251, 0.72);
}
.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    width: max-content;
}
.brand > svg {
    width: 38px;
    height: 38px;
    padding: 7px;
    border-radius: 11px;
    background: var(--pink);
    color: #fff;
    stroke-width: 1.4;
}
.brand > span {
    display: grid;
    line-height: 1;
}
.brand b {
    font: 600 13px var(--display);
    letter-spacing: -0.02em;
}
.brand small {
    margin-top: 5px;
    color: var(--muted);
    font: 600 7px var(--mono);
    letter-spacing: 0.13em;
}
.nav-links {
    display: flex;
    justify-content: center;
    gap: clamp(18px, 3vw, 46px);
}
.nav-links a {
    position: relative;
    padding: 22px 0;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 15px;
    height: 1px;
    background: var(--pink);
    transition: right 0.35s var(--ease);
}
.nav-links a:hover,
.nav-links a.is-active {
    color: var(--text);
}
.nav-links a:hover::after,
.nav-links a.is-active::after {
    right: 0;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.theme-toggle {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 40px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--panel);
    cursor: pointer;
}
.theme-toggle > svg {
    width: 14px;
}
.theme-toggle > span {
    width: 30px;
    height: 16px;
    padding: 2px;
    border-radius: 999px;
    background: var(--bg);
    box-shadow: inset 0 0 0 1px var(--line);
}
.theme-toggle i {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--pink);
    transform: translateX(14px);
    transition:
        transform 0.35s var(--ease),
        background 0.35s;
}
html[data-theme="light"] .theme-toggle i {
    transform: none;
    background: var(--cyan);
}
.lang-link {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--muted);
    font: 600 10px var(--mono);
}
/* Entry to the customer cabinet: the language switch's frame, sized to its label. */
.nav-account {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 40px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--muted);
    font: 600 10px var(--mono);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        color 0.3s,
        border-color 0.3s;
}
.nav-account:hover {
    border-color: var(--line-strong);
    color: var(--text);
}
.nav-account svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}
.nav-cta {
    display: grid;
    place-items: center;
    height: 42px;
    padding: 0 17px;
    border-radius: 12px;
    background: var(--text);
    color: var(--bg);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--panel);
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 17px;
    height: 1px;
    margin: 5px auto;
    background: currentColor;
    transition: transform 0.25s;
}
.hero {
    position: relative;
    isolation: isolate;
    min-height: 100svh;
    overflow: hidden;
    background: #07111d;
}
.hero-art {
    position: absolute;
    z-index: -3;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% 38%;
    filter: saturate(0.9) contrast(1.06);
    /* A little headroom so the tilt that follows the cursor never shows an edge. */
    transform: perspective(1600px) rotateX(var(--hero-rx, 0deg)) rotateY(var(--hero-ry, 0deg)) translate3d(0, var(--hero-ty, 0px), 0) scale(1.06);
    transform-origin: 60% 50%;
    will-change: transform;
}
/* The frame sequence of the helmet turn fades in over the still picture once
   its first frame is decoded; the still stays underneath as the fallback. */
.hero-turn {
    opacity: 0;
    transition: opacity 0.7s var(--ease);
}
.hero-turn.is-ready {
    opacity: 1;
}
.hero-wash {
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
        /* darken the left where the copy sits, let the right stay open so more
           of the picture reads */
        linear-gradient(
            90deg,
            rgba(3, 9, 15, 0.94) 0%,
            rgba(4, 11, 18, 0.68) 34%,
            rgba(5, 12, 20, 0.10) 62%,
            rgba(4, 9, 15, 0.24) 100%
        ),
        /* fade the foot of the picture straight into the page background so the
           hero flows into the content below instead of ending on a hard edge */
        linear-gradient(
            0deg,
            var(--bg) 0%,
            rgba(4, 10, 17, 0.82) 11%,
            rgba(4, 10, 17, 0.32) 26%,
            transparent 48%
        );
}
.hero::after,
[data-spotlight]::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        540px circle at var(--spot-x) var(--spot-y),
        rgba(100, 217, 255, 0.13),
        transparent 55%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.5fr);
    align-items: end;
    gap: 60px;
    width: min(calc(100% - 64px), var(--max));
    min-height: 100svh;
    margin: auto;
    padding: 150px 0 82px;
}
.hero-copy {
    min-width: 0;
    max-width: 820px;
}
.signal-status {
    display: flex !important;
    align-items: center;
    gap: 10px;
    margin: 0 0 28px !important;
    color: #d9edf6 !important;
    font: 600 10px var(--mono) !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.signal-status i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 0 5px rgba(100, 217, 255, 0.12);
    animation: statusPulse 2s ease-in-out infinite;
}
.hero h1 {
  max-width: 900px;
  margin: 0;
  color: #f4f8fb;
    font: 600 clamp(48px, 7vw, 112px) / 0.94 var(--display);
    letter-spacing: -0.04em;
    text-wrap: balance;
}
.hero h1 span,
.hero h1 em {
    display: block;
    opacity: 0;
    animation: titleReveal 1.1s var(--ease) forwards;
}
.hero h1 em {
    margin-top: 10px;
    color: transparent;
    font-style: normal;
    -webkit-text-stroke: 1.5px rgba(244, 248, 251, 0.78);
    animation-delay: 0.13s;
}
.hero-copy > p {
    max-width: 650px;
    margin: 32px 0 0;
    color: #c0d0db;
    font-size: clamp(15px, 1.35vw, 19px);
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-height: 54px;
    padding: 0 22px;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    transition:
        transform 0.3s var(--ease),
        background 0.3s,
        color 0.3s,
        border-color 0.3s;
}
.button svg {
    width: 18px;
}
.button:hover {
    transform: translateY(-3px);
}
.button-primary {
    border-color: var(--pink);
    background: var(--pink);
    color: #fff;
}
.button-primary:hover {
    background: var(--pink-hi);
}
.button-quiet {
    background: rgba(7, 17, 29, 0.56);
    color: #fff;
    backdrop-filter: blur(10px);
}
.hero-note {
    align-self: end;
    margin-bottom: 6px;
    padding: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.32);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    animation: noteEnter 1s 0.45s var(--ease) both;
}
.hero-note span,
.section-heading span,
.workflow-copy > span,
.system-copy > span,
.access-heading > span,
.final-cta > div > span {
    font: 600 9px var(--mono);
    letter-spacing: 0.13em;
    color: var(--cyan);
}
.hero-note b {
    display: block;
    margin: 18px 0 10px;
    font: 600 16px var(--display);
}
.hero-note p {
    margin: 0;
    color: #c4d3dc;
    font-size: 12px;
}
.scroll-cue {
    position: absolute;
    z-index: 3;
    right: 32px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b9cad4;
    font: 600 8px var(--mono);
    letter-spacing: 0.12em;
    writing-mode: vertical-rl;
}
.scroll-cue span {
    width: 1px;
    height: 42px;
    background: linear-gradient(var(--cyan), transparent);
    animation: scrollCue 1.8s ease-in-out infinite;
}
.interface,
.workflow,
.system,
.access,
.final-cta,
.site-footer {
    width: min(calc(100% - 64px), var(--max));
    margin-inline: auto;
}
.interface {
    padding: 80px 0 150px;
}
.section-heading {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 54px;
}
.section-heading h2,
.workflow h2,
.system h2,
.access h2,
.final-cta h2 {
    margin: 12px 0 0;
    font: 600 clamp(34px, 4.3vw, 68px) / 1.04 var(--display);
    letter-spacing: -0.035em;
    text-wrap: balance;
}
.section-heading > p,
.workflow-copy > p,
.system-copy > p,
.access-heading > p,
.final-cta p {
    max-width: 62ch;
    margin: 0;
    color: var(--muted);
}
.screen-explorer {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    border-top: 1px solid var(--line);
}
.screen-tabs {
    padding: 30px 24px 30px 0;
    border-right: 1px solid var(--line);
}
.screen-tabs button {
    position: relative;
    display: grid;
    grid-template-columns: 32px 1fr;
    align-items: center;
    width: 100%;
    min-height: 62px;
    padding: 8px 14px;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    text-align: left;
    cursor: pointer;
}
.screen-tabs button small {
    color: var(--muted);
    font: 600 9px var(--mono);
}
.screen-tabs button span {
    font-size: 12px;
    font-weight: 700;
}
.screen-tabs button i {
    position: absolute;
    left: 0;
    top: 50%;
    width: 2px;
    height: 32px;
    background: var(--pink);
    transform: translateY(-50%) scaleY(0);
    transition: transform 0.3s var(--ease);
}
.screen-tabs button:hover {
    background: color-mix(in srgb, var(--panel) 65%, transparent);
}
.screen-tabs button[aria-selected="true"] {
    color: var(--pink);
}
.screen-tabs button[aria-selected="true"] i {
    transform: translateY(-50%) scaleY(1);
}
.screen-stage {
    position: relative;
    isolation: isolate;
    min-width: 0;
    padding: 42px;
    background: var(--bg-2);
    overflow: hidden;
}
.screen-stage::after {
    opacity: 0.75;
}
.screen-stage figure {
    position: relative;
    z-index: 2;
    margin: 0;
}
.screen-stage figure.is-entering {
    animation: panelEnter 0.65s var(--ease) both;
}
.window-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 36px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-bottom: 0;
    background: var(--panel);
    color: var(--muted);
    font: 600 8px var(--mono);
    letter-spacing: 0.09em;
}
.window-bar span {
    display: flex;
    align-items: center;
    gap: 8px;
}
.window-bar i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pink);
}
.window-bar b {
    font-weight: 500;
}
.screen-stage img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 72vh;
    margin-inline: auto;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: top center;
    background: #090f16;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.screen-stage figcaption {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 22px;
    margin: 24px 0 0;
}
.screen-stage figcaption > span {
    grid-row: 1/3;
    padding-top: 7px;
    color: var(--pink);
    font: 600 9px var(--mono);
    letter-spacing: 0.1em;
}
.screen-stage h3 {
    margin: 0;
    font: 600 clamp(21px, 2.2vw, 34px) var(--display);
}
.screen-stage figcaption p {
    max-width: 68ch;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}
.stage-pulse {
    position: absolute;
    right: -100px;
    top: -100px;
    width: 260px;
    height: 260px;
    border: 1px solid var(--line);
    border-radius: 50%;
    animation: orbitPulse 5s ease-in-out infinite;
}
.workflow {
    padding: 150px 0;
}
.workflow-intro {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;
}
.workflow-copy {
    position: sticky;
    top: 130px;
    align-self: start;
}
.workflow-copy > p {
    margin-top: 24px;
}
.workflow-steps {
    margin: 0;
    padding: 0;
    list-style: none;
}
.workflow-steps li {
    display: grid;
    grid-template-columns: 46px 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 150px;
    padding: 28px 18px;
    border-bottom: 1px solid var(--line);
    transition:
        padding 0.35s var(--ease),
        background 0.35s;
}
.workflow-steps li:first-child {
    border-top: 1px solid var(--line);
}
.workflow-steps li:hover {
    padding-left: 32px;
    background: var(--panel);
}
.workflow-steps li > span {
    color: var(--pink);
    font: 600 11px var(--mono);
}
.workflow-steps h3 {
    margin: 0 0 7px;
    font: 600 20px var(--display);
}
.workflow-steps p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}
.workflow-steps svg {
    width: 24px;
    transition: transform 0.35s var(--ease);
}
.workflow-steps li:hover svg {
    transform: translateX(7px);
}
/* Full feature guide under the three steps: one grid row across both columns. */
.guide {
    display: grid;
    gap: 72px;
    margin-top: 130px;
}
.guide h3 {
    margin: 0;
    font: 600 clamp(26px, 2.6vw, 40px) / 1.1 var(--display);
    letter-spacing: -0.025em;
    text-wrap: balance;
}
.guide-heading {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 80px;
}
.guide-heading span {
    font: 600 9px var(--mono);
    letter-spacing: 0.13em;
    color: var(--cyan);
}
.guide-heading h3 {
    margin-top: 12px;
}
.guide-heading p,
.guide-keys header p {
    max-width: 62ch;
    margin: 0;
    color: var(--muted);
}
.guide-topics {
    margin-top: -32px;
    border-top: 1px solid var(--line);
}
.guide-topic {
    border-bottom: 1px solid var(--line);
    transition: background 0.35s;
}
.guide-topic[open],
.guide-topic:hover {
    background: var(--panel);
}
.guide summary,
.guide-faq summary {
    list-style: none;
    cursor: pointer;
}
.guide summary::-webkit-details-marker {
    display: none;
}
.guide-topic summary {
    display: grid;
    grid-template-columns: 110px 1fr 24px;
    align-items: center;
    gap: 24px;
    padding: 26px 18px;
}
.guide-topic summary b {
    color: var(--pink);
    font: 600 11px var(--mono);
    letter-spacing: 0.08em;
}
.guide-topic summary strong {
    display: block;
    font: 600 20px var(--display);
}
.guide-topic summary small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
}
/* A plus that turns into a minus while the topic is open. */
.guide summary i {
    position: relative;
    width: 16px;
    height: 16px;
    justify-self: end;
}
.guide summary i::before,
.guide summary i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: currentColor;
    transition: transform 0.35s var(--ease);
}
.guide summary i::after {
    transform: rotate(90deg);
}
.guide details[open] > summary i::after {
    transform: rotate(0);
}
.guide-topic ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 48px;
    margin: 0;
    padding: 0 18px 32px calc(18px + 110px + 24px);
    list-style: none;
}
.guide-topic li {
    position: relative;
    padding-left: 20px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}
.guide-topic li::before {
    content: "";
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 8px;
    height: 1.5px;
    background: var(--cyan);
}
.guide-keys {
    display: grid;
    gap: 28px;
}
.guide-keys header {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 80px;
}
.guide-keys__groups {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.guide-keys__group {
    padding: 22px 20px 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.guide-keys__group > b {
    display: block;
    margin-bottom: 18px;
    color: var(--cyan);
    font: 600 9px var(--mono);
    letter-spacing: 0.13em;
    text-transform: uppercase;
}
.guide-keys dl {
    display: grid;
    gap: 12px;
    margin: 0;
}
.guide-keys dl div {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
}
.guide-keys dt,
.guide-keys dd {
    margin: 0;
}
.guide-keys dd {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}
.guide-keys kbd {
    display: inline-block;
    min-width: 34px;
    padding: 5px 8px;
    border: 1px solid var(--line-strong);
    border-bottom-width: 2px;
    border-radius: 6px;
    background: var(--panel-2);
    color: var(--text);
    font: 600 11px var(--mono);
    text-align: center;
    white-space: nowrap;
}
.guide-faq {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    column-gap: 80px;
    align-items: start;
}
.guide-faq details {
    border-bottom: 1px solid var(--line);
}
.guide-faq details:first-of-type {
    border-top: 1px solid var(--line);
}
.guide-faq summary {
    display: grid;
    grid-template-columns: 1fr 16px;
    align-items: center;
    gap: 24px;
    padding: 22px 4px;
    font: 600 16px var(--display);
}
.guide-faq summary:hover {
    color: var(--pink);
}
.guide-faq p {
    margin: 0;
    padding: 0 44px 24px 4px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}
@media (max-width: 1050px) {
    .guide-keys__groups {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .guide-topic ul {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 860px) {
    .guide {
        gap: 56px;
        margin-top: 90px;
    }
    .guide-heading,
    .guide-keys header,
    .guide-faq {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .guide-faq h3 {
        margin-bottom: 12px;
    }
    .guide-topics {
        margin-top: -24px;
    }
    .guide-topic summary {
        grid-template-columns: 1fr 16px;
        gap: 6px 16px;
        padding: 22px 5px;
    }
    .guide-topic summary b {
        grid-column: 1 / -1;
    }
    .guide-topic summary span,
    .guide-topic summary i {
        grid-row: 2;
    }
    .guide-topic ul {
        padding: 0 5px 26px;
    }
    .guide-keys__groups {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 600px) {
    .guide-keys__groups {
        grid-template-columns: 1fr;
    }
    .guide-topic summary strong {
        font-size: 18px;
    }
    .guide-faq summary {
        font-size: 15px;
    }
    .guide-faq p {
        padding-right: 4px;
    }
}
.system {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 100px;
    padding: 130px 0;
}
.system-orbit {
    position: relative;
    aspect-ratio: 1;
    max-width: 480px;
    border: 1px solid var(--line);
    border-radius: 50%;
}
.system-orbit::before,
.system-orbit::after,
.system-orbit span {
    content: "";
    position: absolute;
    inset: 12%;
    border: 1px solid var(--line);
    border-radius: 50%;
    animation: orbitSpin 18s linear infinite;
}
.system-orbit::after {
    inset: 28%;
    animation-direction: reverse;
    animation-duration: 11s;
}
.system-orbit span {
    inset: 12%;
    border: 0;
    animation-duration: 18s;
}
.system-orbit span::after {
    content: "";
    position: absolute;
    top: -5.5px;
    left: 50%;
    width: 11px;
    height: 11px;
    margin-left: -5.5px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 22px var(--cyan);
}
.system-orbit span:nth-child(2) {
    inset: 28%;
    animation-duration: 11s;
    animation-direction: reverse;
}
.system-orbit span:nth-child(2)::after {
    background: var(--pink);
    box-shadow: 0 0 22px var(--pink);
}
.system-orbit span:nth-child(3) {
    inset: 0;
    animation-duration: 27s;
    animation-delay: -9s;
}
.system-orbit span:nth-child(3)::after {
    top: -3px;
    width: 6px;
    height: 6px;
    margin-left: -3px;
}
.system-orbit b {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    font: 600 clamp(40px, 6vw, 86px) var(--display);
    letter-spacing: -0.04em;
}
.system-copy > p {
    margin-top: 24px;
}
.system-copy ul {
    margin: 38px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}
.system-copy li {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
}
.system-copy li > b {
    color: var(--pink);
    font: 600 9px var(--mono);
}
.system-copy li span {
    display: grid;
}
.system-copy li strong {
    font-size: 13px;
}
.system-copy li small {
    color: var(--muted);
    font-size: 11px;
}
.access {
    padding: 150px 0;
}
.access-heading {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 26px 80px;
    margin-bottom: 64px;
}
.access-heading > span {
    grid-column: 1;
}
.access-heading h2 {
    grid-column: 1;
    max-width: 800px;
}
.access-heading p {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
}
.price-list {
    border-top: 1px solid var(--line);
}
.price-list > a {
    display: grid;
    grid-template-columns: 45px 1.1fr 0.75fr 0.75fr 1fr auto;
    align-items: center;
    gap: 22px;
    min-height: 112px;
    padding: 18px;
    border-bottom: 1px solid var(--line);
    transition:
        background 0.3s,
        padding 0.35s var(--ease);
}
.price-list > a:hover {
    padding-inline: 30px;
    background: var(--panel);
}
.price-list small {
    color: var(--pink);
    font: 600 10px var(--mono);
}
.price-list h3 {
    margin: 0;
    font: 600 20px var(--display);
}
.price-list > a > span {
    color: var(--muted);
    font-size: 11px;
}
.price-list p {
    margin: 0;
}
.price-list p b {
    font: 600 28px var(--display);
}
.price-list em {
    color: var(--muted);
    font-size: 10px;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
}
.price-list svg {
    width: 24px;
}
.currency-switch {
    display: flex;
    align-items: end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px 32px;
    margin-bottom: 26px;
}
.currency-switch__label {
    display: grid;
    gap: 6px;
    margin: 0;
}
.currency-switch__label span {
    font: 600 9px var(--mono);
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--cyan);
}
.currency-switch__label small {
    color: var(--muted);
    font-size: 12px;
}
.currency-switch > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.currency-switch button {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--panel);
    color: var(--muted);
    cursor: pointer;
    transition:
        border-color 0.3s,
        background 0.3s,
        color 0.3s,
        transform 0.3s var(--ease);
}
.currency-switch button b {
    font: 700 12px var(--mono);
    letter-spacing: 0.08em;
}
.currency-switch button i {
    font-size: 13px;
    font-style: normal;
    opacity: 0.75;
}
.currency-switch button:hover {
    color: var(--text);
    border-color: var(--line-strong);
    transform: translateY(-2px);
}
.currency-switch button.is-active {
    border-color: var(--pink);
    background: color-mix(in srgb, var(--pink) 14%, transparent);
    color: var(--text);
}
.currency-switch button:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
}
.price-list p i {
    margin-left: 6px;
    font-size: 15px;
    font-style: normal;
    color: var(--muted);
}
.price-list > a.is-highlighted {
    background: color-mix(in srgb, var(--pink) 7%, transparent);
}
.price-list > a.is-highlighted > span {
    color: var(--pink);
    font-weight: 700;
}
.currency-note {
    margin: 22px 0 0;
    color: var(--muted);
    font: 500 9px var(--mono);
    letter-spacing: 0.05em;
}
.falsepositive {
    width: min(calc(100% - 64px), var(--max));
    margin-inline: auto;
    padding: 20px 0 130px;
}
.fp-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.fp-grid article {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 26px 24px 30px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--panel);
    transition:
        border-color 0.3s,
        transform 0.3s var(--ease);
}
.fp-grid article:hover {
    border-color: var(--line-strong);
    transform: translateY(-4px);
}
.fp-grid svg {
    width: 30px;
    height: 30px;
    padding: 6px;
    box-sizing: content-box;
    border: 1px solid color-mix(in srgb, var(--cyan) 34%, transparent);
    border-radius: 12px;
    background: color-mix(in srgb, var(--cyan) 10%, transparent);
    color: var(--cyan);
    stroke-width: 1.6;
}
.fp-grid b {
    margin-top: 8px;
    color: var(--muted);
    font: 600 9px var(--mono);
    letter-spacing: 0.13em;
}
.fp-grid h3 {
    margin: 0;
    font: 600 17px var(--display);
    letter-spacing: -0.02em;
}
.fp-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}
.fp-action {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    align-items: center;
    gap: 30px 60px;
    margin-top: 16px;
    padding: 40px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--pink) 9%, var(--panel)),
        var(--panel)
    );
}
.fp-action > div {
    display: grid;
    gap: 12px;
}
.fp-action svg {
    width: 34px;
    height: 34px;
    padding: 7px;
    box-sizing: content-box;
    border-radius: 12px;
    background: var(--pink);
    color: #fff;
    stroke-width: 1.6;
}
.fp-action h3 {
    margin: 0;
    font: 600 clamp(22px, 2.4vw, 30px) / 1.15 var(--display);
    letter-spacing: -0.03em;
}
.fp-action > div p {
    max-width: 52ch;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}
.fp-action ol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.fp-action li {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: color-mix(in srgb, var(--bg) 42%, transparent);
    font-size: 13px;
    font-weight: 600;
}
.fp-action li span {
    color: var(--cyan);
    font: 600 10px var(--mono);
}
.fp-note {
    grid-column: 1 / -1;
    margin: 0;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
}
.final-cta {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 100px;
    padding: 80px;
    border-radius: 16px;
    background: var(--panel);
    overflow: hidden;
}
.final-cta::before {
    content: "";
    position: absolute;
    z-index: -1;
    right: -12%;
    top: -50%;
    width: 48%;
    aspect-ratio: 1;
    border: 1px solid var(--line);
    border-radius: 50%;
    box-shadow:
        0 0 0 80px rgba(100, 217, 255, 0.025),
        0 0 0 160px rgba(255, 79, 135, 0.025);
}
.final-cta h2 {
    max-width: 940px;
}
.final-cta p {
    margin-top: 22px;
}
.final-cta .button {
    flex: 0 0 auto;
}
.site-footer {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 34px 90px;
    padding: 40px 0 60px;
    border-top: 1px solid var(--line);
}
.site-footer > p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
}
.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
.site-footer nav a {
    color: var(--muted);
    font-size: 10px;
}
.site-footer nav a:hover {
    color: var(--text);
}
.site-footer > small {
    justify-self: end;
    color: var(--muted);
    font: 500 9px var(--mono);
}
@keyframes titleReveal {
    from {
        opacity: 0;
        clip-path: inset(0 0 100%);
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        clip-path: inset(0);
        transform: none;
    }
}
@keyframes noteEnter {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes statusPulse {
    50% {
        opacity: 0.55;
        box-shadow: 0 0 0 9px rgba(100, 217, 255, 0);
    }
}
@keyframes scrollCue {
    50% {
        transform: translateY(8px);
        opacity: 0.5;
    }
}
@keyframes panelEnter {
    from {
        opacity: 0.2;
        filter: blur(7px);
        clip-path: inset(0 0 0 100%);
    }
    to {
        opacity: 1;
        filter: blur(0);
        clip-path: inset(0);
    }
}
@keyframes orbitPulse {
    50% {
        transform: scale(1.12);
        opacity: 0.3;
    }
}
@keyframes orbitSpin {
    to {
        transform: rotate(360deg);
    }
}
@media (max-width: 1050px) {
    .fp-grid {
        grid-template-columns: 1fr 1fr;
    }
    .fp-action {
        grid-template-columns: 1fr;
        padding: 32px;
    }
    .site-nav {
        grid-template-columns: auto 1fr;
    }
    .nav-links {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        /* override the desktop centering: on the mobile panel every row is a
           full-width, left-aligned list item, so the plain links line up with
           the "Materials" group and its children instead of drifting centre. */
        align-items: stretch;
        text-align: left;
        gap: 0;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 14px;
        background: var(--bg-2);
        box-shadow: var(--shadow);
    }
    .nav-links.is-open {
        display: flex;
    }
    .nav-links a {
        padding: 14px;
    }
    /* Beat the global `.nav-links{align-items:center}` (added for the desktop
       dropdown) with a more specific selector, so on the mobile column every
       row is full-width and left-aligned instead of centred. */
    .site-nav .nav-links {
        align-items: stretch;
    }
    /* The mobile panel is an opaque, theme-coloured sheet, so the hero's
       near-white link colour would vanish on it (light theme especially). */
    .site-nav:not(.is-scrolled) .nav-links a {
        color: var(--text);
    }
    .nav-links a::after {
        display: none;
    }
    .nav-actions {
        justify-self: end;
    }
    .nav-cta {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .hero-content {
        grid-template-columns: 1fr;
    }
    .hero-note {
        max-width: 430px;
    }
    .screen-explorer {
        grid-template-columns: 220px minmax(0, 1fr);
    }
    .screen-stage {
        padding: 24px;
    }
    .workflow-intro,
    .system {
        gap: 50px;
    }
    .price-list > a {
        grid-template-columns: 36px 1fr 0.7fr 0.7fr auto;
    }
    .price-list em {
        display: none;
    }
}
@media (max-width: 860px) {
    html {
        scroll-padding-top: 72px;
    }
    .site-nav {
        top: 10px;
        width: calc(100% - 20px);
        height: 58px;
        padding-left: 10px;
    }
    .brand > span {
        display: none;
    }
    .brand > svg {
        width: 36px;
        height: 36px;
    }
    .theme-toggle {
        padding: 0 8px;
    }
    .lang-link {
        width: 36px;
    }
    .nav-account {
        width: 36px;
        padding: 0;
        justify-content: center;
    }
    .nav-account span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }
    .hero-art {
        object-position: 62% center;
    }
    .hero-wash {
        background: linear-gradient(
            0deg,
            rgba(4, 10, 17, 0.98) 0%,
            rgba(4, 10, 17, 0.74) 62%,
            rgba(4, 10, 17, 0.26) 100%
        );
    }
    .hero-content {
        width: calc(100% - 32px);
        padding: 120px 0 52px;
        align-items: end;
    }
    .hero h1 {
        font-size: clamp(38px, 11vw, 64px);
    }
    .hero-copy > p {
        font-size: 14px;
    }
    .hero-note {
        display: none;
    }
    .scroll-cue {
        display: none;
    }
    .interface,
    .workflow,
    .system,
    .falsepositive,
    .access,
    .final-cta,
    .site-footer {
        width: calc(100% - 32px);
    }
    .fp-grid {
        grid-template-columns: 1fr;
    }
    .fp-action ol {
        grid-template-columns: 1fr;
    }
    .fp-action {
        padding: 26px 22px;
    }
    .currency-switch {
        align-items: start;
        flex-direction: column;
    }
    .section-heading,
    .workflow-intro,
    .system,
    .access-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .interface {
        padding-bottom: 100px;
    }
    .section-heading {
        margin-bottom: 34px;
    }
    .screen-explorer {
        display: block;
    }
    .screen-tabs {
        display: flex;
        overflow: auto;
        padding: 0 0 14px;
        border-right: 0;
        scroll-snap-type: x mandatory;
    }
    .screen-tabs button {
        flex: 0 0 180px;
        scroll-snap-align: start;
    }
    .screen-stage {
        padding: 14px;
    }
    .screen-stage figcaption {
        display: block;
    }
    .screen-stage figcaption > span {
        display: block;
        margin-bottom: 8px;
    }
    .workflow {
        padding: 100px 0;
    }
    .workflow-copy {
        position: static;
    }
    .workflow-steps li {
        min-height: 130px;
        grid-template-columns: 34px 1fr auto;
        padding-inline: 5px;
    }
    .system {
        padding: 90px 0;
    }
    .system-orbit {
        width: min(80vw, 430px);
        margin: auto;
    }
    .access {
        padding: 100px 0;
    }
    .access-heading h2,
    .access-heading p {
        grid-column: auto;
        grid-row: auto;
    }
    .price-list > a {
        grid-template-columns: 30px 1fr auto;
        gap: 12px;
        min-height: 104px;
        padding-inline: 4px;
    }
    .price-list > a > span,
    .price-list em {
        display: none;
    }
    .price-list p b {
        font-size: 20px;
    }
    .price-list svg {
        display: none;
    }
    .final-cta {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 70px;
        padding: 34px 24px;
    }
    .site-footer {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .site-footer > small {
        justify-self: start;
    }
}
@media (max-width: 600px) {
    .hero h1 {
        font-size: clamp(34px, 9vw, 46px);
    }
    .hero h1 span,
    .hero h1 em {
        overflow-wrap: anywhere;
    }
    .hero-actions {
        display: grid;
    }
    .button {
        width: 100%;
    }
}
@media (max-width: 430px) {
    .theme-toggle > svg {
        display: none;
    }
    .theme-toggle {
        width: 46px;
    }
    .screen-stage h3 {
        font-size: 19px;
    }
    .workflow-steps p {
        font-size: 12px;
    }
    .price-list h3 {
        font-size: 15px;
    }
    .price-list p b {
        font-size: 17px;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .workflow-copy {
        position: static;
    }
}
@media (forced-colors: active) {
    .button,
    .theme-toggle,
    .screen-tabs button[aria-selected="true"],
    .workflow-steps li,
    .price-list > a {
        border: 1px solid CanvasText;
    }
}
:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 4px;
}
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    border: 3px solid var(--bg);
    border-radius: 10px;
    background: var(--line-strong);
}

/* Legal documents share the landing world at reading density. */
.legal-site {
    scroll-padding-top: 110px;
}
.legal-site .site-nav .nav-links a.is-current {
    color: var(--text);
}
.legal-page {
    width: min(calc(100% - 64px), var(--max));
    margin-inline: auto;
    padding-top: 150px;
}
.legal-head {
    display: grid;
    gap: 16px;
    max-width: 900px;
    padding-bottom: 46px;
    border-bottom: 1px solid var(--line);
}
.legal-head > span {
    color: var(--cyan);
    font: 600 9px var(--mono);
    letter-spacing: 0.13em;
}
.legal-head h1 {
    margin: 0;
    font: 600 clamp(36px, 5vw, 68px) / 1.03 var(--display);
    letter-spacing: -0.04em;
    text-wrap: balance;
}
.legal-head p {
    max-width: 62ch;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}
.legal-date {
    font: 600 10px var(--mono) !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.legal-body {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 80px;
    padding: 60px 0 130px;
}
.legal-toc__inner {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 10px;
}
.legal-toc p {
    margin: 14px 0 4px;
    color: var(--cyan);
    font: 600 9px var(--mono);
    letter-spacing: 0.13em;
    text-transform: uppercase;
}
.legal-toc ol,
.legal-toc ul {
    display: grid;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: toc;
}
.legal-toc a {
    display: block;
    padding: 7px 12px;
    border-left: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
    transition:
        color 0.3s,
        border-color 0.3s,
        padding 0.3s var(--ease);
}
.legal-toc a:hover {
    padding-left: 18px;
    border-color: var(--line-strong);
    color: var(--text);
}
.legal-toc a.is-current {
    border-color: var(--pink);
    color: var(--text);
    font-weight: 600;
}
.legal-content {
    max-width: 78ch;
}
.legal-content section {
    padding-bottom: 34px;
}
.legal-content h2 {
    margin: 0 0 14px;
    font: 600 clamp(19px, 2vw, 24px) / 1.25 var(--display);
    letter-spacing: -0.025em;
    scroll-margin-top: 110px;
}
.legal-content p {
    max-width: 70ch;
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}
.legal-content ul {
    display: grid;
    gap: 9px;
    margin: 6px 0 16px;
    padding: 0;
    list-style: none;
}
.legal-content li {
    position: relative;
    max-width: 70ch;
    padding-left: 22px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}
.legal-content li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 11px;
    width: 6px;
    height: 1px;
    background: var(--cyan);
}
.legal-contact {
    margin-top: 20px;
    padding: 30px 32px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--panel);
}
.legal-contact h2 {
    margin: 0 0 10px;
    font: 600 18px var(--display);
    letter-spacing: -0.02em;
}
.legal-contact p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}
@media (max-width: 1050px) {
    .legal-body {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-top: 34px;
    }
    .legal-toc__inner {
        position: static;
    }
    .legal-page {
        width: calc(100% - 32px);
        padding-top: 120px;
    }
}
@media print {
    .site-nav,
    .legal-toc,
    .site-footer,
    .skip-link {
        display: none !important;
    }
    .legal-page {
        width: 100%;
        padding: 0;
    }
    .legal-content p,
    .legal-content li {
        color: #000;
    }
}

/* Legal pages have no dark hero behind the header, so the bar stays solid. */
.legal-site .site-nav,
.legal-site .site-nav:not(.is-scrolled) {
    background: color-mix(in srgb, var(--bg-2) 88%, transparent);
    border-color: var(--line);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(18px);
}
.legal-site .site-nav:not(.is-scrolled) .brand b,
.legal-site .site-nav:not(.is-scrolled) .nav-links a {
    color: var(--muted);
}
.legal-site .site-nav .brand b {
    color: var(--text);
}
.legal-site .site-nav:not(.is-scrolled) .brand small,
.legal-site .site-nav:not(.is-scrolled) .lang-link,
.legal-site .site-nav:not(.is-scrolled) .nav-account {
    color: var(--muted);
}

/* Cookie consent: reject and accept carry the same weight (EDPB 03/2022). */
.cookie-notice {
    position: fixed;
    z-index: 130;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: grid;
    gap: 18px;
    width: min(calc(100% - 32px), 900px);
    padding: 24px 28px;
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    background: color-mix(in srgb, var(--panel) 96%, transparent);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    animation: cookieEnter 0.6s var(--ease) both;
}
.cookie-notice__copy {
    display: grid;
    gap: 6px;
}
.cookie-notice__copy span {
    color: var(--cyan);
    font: 600 9px var(--mono);
    letter-spacing: 0.13em;
}
.cookie-notice__copy h2 {
    margin: 0;
    font: 600 17px var(--display);
    letter-spacing: -0.02em;
}
.cookie-notice__copy p {
    max-width: 78ch;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}
.cookie-notice__copy a {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cookie-notice__details summary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    color: var(--muted);
    font: 600 11px var(--body);
    cursor: pointer;
    list-style: none;
}
.cookie-notice__details summary::-webkit-details-marker {
    display: none;
}
.cookie-notice__details summary::before {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1.5px solid var(--cyan);
    border-bottom: 1.5px solid var(--cyan);
    transform: rotate(45deg) translate(-1px, -1px);
    transition: transform 0.3s var(--ease);
}
.cookie-notice__details[open] summary::before {
    transform: rotate(-135deg) translate(-2px, -2px);
}
.cookie-notice__details summary:hover {
    color: var(--text);
}
.cookie-notice__details ul {
    display: grid;
    gap: 10px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}
.cookie-notice__details label {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 12px;
    align-items: start;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: color-mix(in srgb, var(--bg) 45%, transparent);
    cursor: pointer;
}
.cookie-notice__details input {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: var(--pink);
}
.cookie-notice__details input:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}
.cookie-notice__details label span {
    display: grid;
    gap: 3px;
}
.cookie-notice__details b {
    font-size: 12px;
}
.cookie-notice__details small {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.6;
}
.cookie-notice__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}
.cookie-button {
    min-width: 150px;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: var(--panel-2);
    color: var(--text);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background 0.3s,
        border-color 0.3s,
        transform 0.3s var(--ease);
}
.cookie-button:hover {
    border-color: var(--text);
    transform: translateY(-2px);
}
.cookie-button--quiet {
    background: transparent;
    color: var(--muted);
}
.cookie-button--quiet:hover {
    color: var(--text);
}
.cookie-button--primary {
    border-color: var(--pink);
    background: var(--pink);
    color: #fff;
}
.cookie-button--primary:hover {
    background: var(--pink-hi);
}
.cookie-notice button:focus-visible,
.cookie-notice a:focus-visible,
.cookie-notice summary:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
}
@keyframes cookieEnter {
    from {
        opacity: 0;
        transform: translate(-50%, 24px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}
.is-switching-language main {
    opacity: 0.35;
    transition: opacity 0.2s;
}
.cookie-settings-link {
    border: 0;
    padding: 0;
    background: none;
    color: var(--muted);
    font: inherit;
    cursor: pointer;
    text-decoration: none;
}
.cookie-settings-link:hover { color: var(--text); }
/* In the footer nav it must read as one of the section links, not an oversized
   underlined button. */
.site-footer nav .cookie-settings-link { font-size: 10px; line-height: inherit; }
@media (max-width: 700px) {
    .cookie-notice {
        max-height: calc(100dvh - 40px);
        overflow-y: auto;
        padding: 20px;
    }
    .cookie-notice__actions {
        justify-content: stretch;
    }
    .cookie-button {
        flex: 1 1 100%;
    }
}

/* Hero side column: the promo offer sits above the note, both aligned to the bottom of the hero. */
.hero-side {
    align-self: end;
    display: grid;
    gap: 16px;
    min-width: 0;
}
.hero-promo {
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    background: rgba(6, 16, 24, 0.55);
    color: #fff;
    animation: noteEnter 1s 0.35s var(--ease) both;
}
.hero-promo > span {
    font: 600 9px var(--mono);
    letter-spacing: 0.13em;
    color: var(--cyan);
}
.hero-promo__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 12px 0 10px;
}
.hero-promo__row code {
    font: 600 18px var(--mono);
    letter-spacing: 0.06em;
    color: #fff;
}
.hero-promo__copy {
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    background: transparent;
    color: #fff;
    font: 600 10px var(--mono);
    letter-spacing: 0.08em;
    cursor: pointer;
    transition:
        background 0.2s,
        border-color 0.2s;
}
.hero-promo__copy:hover,
.hero-promo__copy:focus-visible {
    border-color: var(--cyan);
    background: rgba(255, 255, 255, 0.1);
}
.hero-promo p {
    margin: 0;
    font-size: 12px;
    color: #c0d0db;
}
.button-download {
    border-color: rgba(120, 220, 255, 0.55);
}

/* Interface preview: theme and accent pickers above the screen explorer. */
.preview-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
    margin: 0 0 22px;
}
.preview-group {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.preview-group > span {
    font: 600 9px var(--mono);
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--muted);
}
.preview-circles {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.preview-circle {
    box-sizing: border-box;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
    cursor: pointer;
    transition:
        transform 0.2s,
        border-color 0.2s;
}
.preview-circle:hover,
.preview-circle:focus-visible,
.preview-circle[aria-pressed="true"] {
    transform: scale(1.15);
    border-color: var(--cyan);
}
/* The palette of the application itself, not the colors of this site. */
.preview-circle--dark {
    background: linear-gradient(135deg, #101e2c, #07111d);
}
.preview-circle--light {
    background: linear-gradient(135deg, #ffffff, #dbe8f0);
}
.preview-circle--standard {
    background: #ff4f87;
}
.preview-circle--green {
    background: #2ea119;
}
.preview-circle--orange {
    background: #c18807;
}
.preview-circle--red {
    background: #7e0303;
}
.preview-circle--blue {
    background: #028b99;
}
.preview-circle--silver {
    background: #9aa6ae;
}
@media (max-width: 700px) {
    .preview-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Loading screen ------------------------------------------------------------
   The mascot lit like a neon sign. The overlay is in the HTML from the first
   frame, so nothing of the page shows through before it; the script removes it
   when the animation has played, not when every asset has arrived. */
html[data-intro-run],
html[data-intro-run] body {
    overflow: hidden;
}
.intro {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-items: center;
    background: radial-gradient(120% 90% at 50% 45%, #0d1b2a 0%, #07111d 55%, #04080e 100%);
    transition: opacity 0.42s var(--ease), visibility 0.42s;
}
html:not([data-intro-run]) .intro {
    display: none;
}
.intro.is-done {
    opacity: 0;
    visibility: hidden;
}
.intro__stage {
    position: relative;
    display: grid;
    justify-items: center;
    width: min(320px, 76vw);
    animation: introRise 2s var(--ease) both;
}
.intro__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 340px;
    height: 340px;
    margin: -200px 0 0 -170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 79, 135, 0.42) 0%, rgba(255, 79, 135, 0.13) 42%, transparent 68%);
    animation: introFlicker 1.5s steps(1, end) both;
}
.intro__mascot {
    width: 240px;
    height: 240px;
    animation: introLamp 1.35s var(--ease) both;
}
/* The mascot's own eye, lit a moment after the helmet appears. */
.intro__eye {
    position: absolute;
    top: 45%;
    left: 56%;
    width: 84px;
    height: 84px;
    margin: -42px 0 0 -42px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 64, 96, 0.55) 0%, rgba(255, 64, 96, 0.18) 38%, transparent 66%);
    opacity: 0;
    animation: introEye 1.1s var(--ease) 0.75s both;
}
.intro__word {
    display: grid;
    justify-items: center;
    margin: 18px 0 0;
    text-align: center;
    opacity: 0;
    animation: introWord 0.8s var(--ease) 0.95s both;
}
.intro__word b {
    font: 800 20px/1 var(--display);
    letter-spacing: 0.06em;
    color: #f4f8fb;
    text-shadow: 0 0 22px rgba(255, 79, 135, 0.55);
}
.intro__word small {
    margin-top: 8px;
    font: 600 8px/1 var(--mono);
    letter-spacing: 0.32em;
    color: rgba(244, 248, 251, 0.6);
}
.intro__bar {
    width: 140px;
    height: 2px;
    margin-top: 20px;
    border-radius: 2px;
    background: rgba(244, 248, 251, 0.12);
    overflow: hidden;
}
.intro__bar i {
    display: block;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--pink), var(--cyan));
    transform-origin: left center;
    animation: introBar 1.85s cubic-bezier(0.32, 0.9, 0.35, 1) both;
}
@keyframes introRise {
    from { transform: translateY(8px); }
    to { transform: none; }
}
/* A tube that catches, misses, then holds. */
@keyframes introFlicker {
    0%, 14% { opacity: 0; }
    16%, 19% { opacity: 0.9; }
    20%, 27% { opacity: 0.05; }
    28%, 33% { opacity: 0.75; }
    34%, 38% { opacity: 0.15; }
    39%, 100% { opacity: 1; }
}
@keyframes introLamp {
    0%, 12% { opacity: 0; filter: brightness(0.25); transform: scale(0.965); }
    16% { opacity: 1; filter: brightness(1.7); }
    22% { opacity: 0.25; filter: brightness(0.4); }
    30% { opacity: 1; filter: brightness(1.35); }
    38% { opacity: 0.55; filter: brightness(0.7); }
    100% { opacity: 1; filter: none; transform: none; }
}
@keyframes introEye {
    0% { opacity: 0; transform: scale(0.6); }
    35% { opacity: 1; transform: scale(1.08); }
    60% { opacity: 0.55; transform: scale(0.98); }
    100% { opacity: 0.85; transform: scale(1); }
}
@keyframes introWord {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: none; }
}
@keyframes introBar {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) {
    .intro__stage,
    .intro__glow,
    .intro__mascot,
    .intro__eye,
    .intro__word,
    .intro__bar i {
        animation: none;
        opacity: 1;
        filter: none;
        transform: none;
    }
}
@media (max-width: 560px) {
    .intro__mascot { width: 180px; height: 180px; }
    .intro__glow { width: 260px; height: 260px; margin: -160px 0 0 -130px; }
}
/* ---- content sections (blog, weapons, news, updates) + nav dropdown ---- */
/* Keep every nav item, including the <details> dropdown, on one centred row. */
.nav-links { align-items: center; }
.nav-more { position: relative; display: flex; align-items: center; }
.nav-more > summary {
    list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
    padding: 22px 0; color: var(--muted);
    font-size: 11px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
}
.site-nav:not(.is-scrolled) .nav-more > summary { color: #f4f8fb; }
.nav-more > summary:hover { color: var(--text); }
.nav-more > summary::-webkit-details-marker { display: none; }
.nav-more > summary i {
    width: 6px; height: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
    transform: rotate(45deg); transition: transform .2s; opacity: .7;
}
.nav-more[open] > summary i { transform: rotate(-135deg); }
.nav-more__menu {
    position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
    display: grid; min-width: 210px; padding: 8px; gap: 2px;
    background: var(--surface, #101e2c); border: 1px solid var(--line, rgba(174,211,231,.17));
    border-radius: 14px; box-shadow: 0 24px 60px rgba(0,3,8,.45); z-index: 60;
}
.nav-more__menu a {
    padding: 10px 12px; border-radius: 9px; white-space: nowrap;
    color: var(--muted); font-size: 14px; font-weight: 600;
    letter-spacing: 0; text-transform: none;
}
/* The menu items are not top-bar links: drop the inherited underline sweep. */
.nav-more__menu a::after { display: none; }
.nav-more__menu a:hover, .nav-more__menu a.is-current { color: var(--text); background: color-mix(in srgb, var(--accent, #ff4f87) 14%, transparent); }
/* At the site's own mobile breakpoint the nav becomes a vertical panel; the
   dropdown then behaves like the other links and expands inline, not floating. */
@media (max-width: 1050px) {
    .nav-more { display: block; width: 100%; }
    .nav-more > summary { padding: 14px; width: 100%; justify-content: space-between; }
    /* Later than the hero white-summary rule, so it wins: on the opaque mobile
       panel the "Materials" summary reads in the theme text colour. */
    .site-nav:not(.is-scrolled) .nav-more > summary { color: var(--text); }
    .nav-more__menu {
        position: static; transform: none; box-shadow: none; border: 0;
        min-width: 0; padding: 0 0 6px 14px; background: transparent;
    }
    .nav-more__menu a { padding: 10px 14px; }
}

.content-page { min-height: 60vh; }
.content-shell { max-width: 1040px; margin: 0 auto; padding: 120px 24px 80px; }
.content-head { max-width: 720px; margin-bottom: 40px; }
.content-head .eyebrow { color: var(--accent, #ff4f87); font: 600 12px/1 "IBM Plex Mono", monospace; letter-spacing: .18em; }
.content-head h1 { margin: 14px 0 12px; font-size: clamp(30px, 5vw, 46px); line-height: 1.05; letter-spacing: -.03em; }
.content-head p { color: var(--muted, #9db0bf); font-size: 17px; }
.content-empty { color: var(--muted, #9db0bf); padding: 40px 0; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.card-grid--tight { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.post-card {
    display: flex; flex-direction: column; overflow: hidden;
    border: 1px solid var(--line, rgba(174,211,231,.17)); border-radius: 16px;
    background: var(--surface, #101e2c); transition: transform .2s, border-color .2s;
}
.post-card:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--accent,#ff4f87) 45%, transparent); }
.post-card__cover { aspect-ratio: 16/9; background-size: cover; background-position: center; }
.post-card__body { display: grid; gap: 8px; padding: 18px; }
.post-card__body time { color: var(--quiet, #6f8799); font: 600 11px "IBM Plex Mono", monospace; }
.post-card__body strong { font-size: 18px; line-height: 1.25; letter-spacing: -.02em; }
.post-card__body small { color: var(--muted, #9db0bf); font-size: 14px; line-height: 1.5; }
.weapon-card {
    display: grid; gap: 6px; padding: 18px 20px; border-radius: 14px;
    border: 1px solid var(--line, rgba(174,211,231,.17)); background: var(--surface, #101e2c);
    transition: transform .2s, border-color .2s;
}
.weapon-card:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--accent,#ff4f87) 45%, transparent); }
.weapon-card strong { font-size: 18px; letter-spacing: -.02em; }
.weapon-card small { color: var(--muted, #9db0bf); font-size: 13px; }

.article-page { max-width: 820px; }
.crumbs { display: flex; gap: 8px; align-items: center; color: var(--quiet,#6f8799); font-size: 13px; margin-bottom: 20px; }
.article-head h1 { font-size: clamp(28px, 4.5vw, 42px); line-height: 1.08; letter-spacing: -.03em; margin: 8px 0 12px; }
.article-meta { color: var(--quiet, #6f8799); font: 600 12px "IBM Plex Mono", monospace; }
.article-cover { width: 100%; border-radius: 16px; margin-top: 22px; }
.article-body { margin-top: 28px; font-size: 17px; line-height: 1.7; color: var(--text, #f4f8fb); }
.article-body h2 { font-size: 26px; letter-spacing: -.02em; margin: 36px 0 12px; }
.article-body h3 { font-size: 21px; margin: 28px 0 10px; }
.article-body p { margin: 0 0 18px; }
.article-body ul, .article-body ol { margin: 0 0 18px; padding-left: 22px; }
.article-body li { margin: 6px 0; }
.article-body a { color: var(--accent, #ff4f87); text-decoration: underline; }
.article-body img, .article-body video, .article-body iframe { max-width: 100%; border-radius: 12px; margin: 12px 0; }
.article-body iframe { width: 100%; aspect-ratio: 16/9; border: 0; }
.article-body blockquote { margin: 0 0 18px; padding: 6px 18px; border-left: 3px solid var(--accent,#ff4f87); color: var(--muted,#9db0bf); }
.article-body pre { background: var(--surface-2,#142536); padding: 16px; border-radius: 12px; overflow: auto; }
.article-foot { margin: 40px 0; }
.article-related { margin-top: 50px; border-top: 1px solid var(--line-soft, rgba(174,211,231,.09)); padding-top: 30px; }
.article-related h2 { font-size: 20px; margin-bottom: 18px; }

.post-list, .update-list { display: grid; gap: 20px; }
.post-row, .update-row { border: 1px solid var(--line, rgba(174,211,231,.17)); border-radius: 16px; padding: 22px 24px; background: var(--surface, #101e2c); }
.post-row__meta, .update-row__head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; color: var(--quiet,#6f8799); font: 600 12px "IBM Plex Mono", monospace; }
.post-row h2 { font-size: 21px; letter-spacing: -.02em; margin: 0 0 10px; }
.post-row__body, .update-row__body { color: var(--muted, #9db0bf); font-size: 15px; line-height: 1.6; }
.update-row__head strong { color: var(--text,#f4f8fb); font-size: 18px; }
.tag { padding: 3px 10px; border-radius: 999px; font-size: 11px; background: var(--signal-soft,rgba(100,217,255,.12)); color: var(--signal,#64d9ff); }
.tag--security { background: color-mix(in srgb, var(--accent,#ff4f87) 16%, transparent); color: var(--accent,#ff4f87); }
.content-pager { margin-top: 36px; }

/* ---- content-site header: solid pill, readable in both themes (like legal) ---- */
.content-site .site-nav,
.content-site .site-nav:not(.is-scrolled) {
    background: color-mix(in srgb, var(--bg-2) 88%, transparent);
    border-color: var(--line);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(18px);
}
.content-site .site-nav:not(.is-scrolled) .brand b,
.content-site .site-nav:not(.is-scrolled) .nav-links a { color: var(--muted); }
.content-site .site-nav .brand b { color: var(--text); }
.content-site .site-nav .nav-links a.is-active,
.content-site .site-nav .nav-links a:hover { color: var(--text); }
.content-site .site-nav:not(.is-scrolled) .brand small,
.content-site .site-nav:not(.is-scrolled) .lang-link,
.content-site .site-nav:not(.is-scrolled) .nav-account { color: var(--muted); }

/* ---- article hero: darkened cover behind the title ---- */
.article-page { max-width: none; padding: 0; }
.article-hero { position: relative; display: flex; align-items: flex-end; min-height: 460px; overflow: hidden; }
.article-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.03); }
.article-hero::after {
    content: ""; position: absolute; inset: 0;
    background:
        /* light wash up top so the picture stays visible */
        linear-gradient(180deg, rgba(6,14,23,.34) 0%, rgba(6,14,23,.08) 34%, rgba(6,14,23,0) 52%),
        /* dark scrim rising from the bottom to seat the title, then a clean
           hand-off to the page background so there is no hard seam */
        linear-gradient(180deg, rgba(6,14,23,0) 48%, rgba(6,14,23,.55) 74%, rgba(6,14,23,.82) 90%, var(--bg) 100%);
}
.article-hero__inner { position: relative; z-index: 1; width: min(100% - 48px, 900px); margin: 0 auto; padding: 158px 0 56px; }
.article-hero .crumbs, .article-hero .crumbs a { color: rgba(244,248,251,.78); }
.article-hero__eyebrow { display: inline-block; margin-bottom: 10px; color: var(--pink); font: 700 12px var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.article-hero h1 { max-width: 20ch; margin: 6px 0 14px; color: #fff; font-size: clamp(30px, 5vw, 52px); line-height: 1.05; letter-spacing: -.03em; }
.article-hero__meta { color: rgba(244,248,251,.72); font: 600 13px var(--mono); }
.article-hero__meta time + span { margin-left: 4px; }
.article-shell { width: min(100% - 48px, 760px); margin: 0 auto; padding: 46px 0 90px; }
.article-shell .article-body { margin-top: 0; }
.article-shell .article-foot {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
    margin: 44px 0 0; padding-top: 28px; border-top: 1px solid var(--line-soft);
}
.article-shell .article-foot span { color: var(--muted); font-size: 14px; max-width: 60%; }
@media (max-width: 640px) {
    .article-hero { min-height: 360px; }
    .article-hero__inner { padding-top: 120px; }
}

/* ---- section hero for index pages ---- */
.section-hero { position: relative; display: flex; align-items: flex-end; min-height: 340px; overflow: hidden; }
.section-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.03); }
.section-hero::after { content: ""; position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(6,14,23,.34) 0%, rgba(6,14,23,.08) 34%, rgba(6,14,23,0) 52%),
        linear-gradient(180deg, rgba(6,14,23,0) 46%, rgba(6,14,23,.52) 72%, rgba(6,14,23,.80) 90%, var(--bg) 100%); }
.section-hero__inner { position: relative; z-index: 1; width: min(100% - 48px, 1040px); margin: 0 auto; padding: 150px 0 52px; }
.section-hero__eyebrow { color: var(--pink); font: 700 12px var(--mono); letter-spacing: .16em; text-transform: uppercase; }
.section-hero h1 { margin: 14px 0 12px; max-width: 20ch; color: #fff; font-size: clamp(30px, 5vw, 50px); line-height: 1.04; letter-spacing: -.03em; }
.section-hero p { max-width: 60ch; color: rgba(244,248,251,.78); font-size: 17px; }
.content-shell--wide { width: min(100% - 48px, 1040px); }

/* ---- magazine feature cards (blog index) ---- */
.post-feed { display: grid; gap: 26px; }
.feature-card { display: grid; grid-template-columns: 1.05fr 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); transition: border-color .2s, transform .2s; }
.feature-card:hover { border-color: color-mix(in srgb, var(--accent) 45%, transparent); transform: translateY(-3px); }
.feature-card--flip .feature-card__media { order: 2; }
.feature-card__media { display: block; min-height: 240px; }
.feature-card__cover { display: block; width: 100%; height: 100%; min-height: 240px; background-size: cover; background-position: center; }
.feature-card__cover--brand {
    background:
        url('/images/brand/mascot-640.webp') center / 168px no-repeat,
        radial-gradient(circle at 50% 44%, color-mix(in srgb, var(--pink) 55%, transparent), transparent 68%),
        linear-gradient(135deg, var(--surface-2), var(--surface) 70%);
}
.feature-card__text { display: flex; flex-direction: column; gap: 12px; justify-content: center; padding: 32px 34px; }
.feature-card__text time { color: var(--quiet); font: 600 12px var(--mono); letter-spacing: .06em; }
.feature-card__text h2 { font-size: 25px; line-height: 1.16; letter-spacing: -.02em; }
.feature-card__text h2 a { color: var(--text); }
.feature-card__text h2 a:hover { color: var(--pink); }
.feature-card__text p { color: var(--muted); font-size: 15px; line-height: 1.6; }
.feature-card__more { margin-top: 2px; color: var(--pink); font-weight: 700; font-size: 14px; }
@media (max-width: 760px) {
    .feature-card { grid-template-columns: 1fr; }
    .feature-card--flip .feature-card__media { order: 0; }
    .feature-card__media, .feature-card__cover { min-height: 190px; }
    .feature-card__text { padding: 24px; }
}

/* Aliases so the content styles (written with the panel's variable names) map
   onto the site palette in both themes. */
:root {
    --surface: var(--panel);
    --surface-2: var(--panel-2);
    --surface-3: var(--panel-2);
    --accent: var(--pink);
    --accent-hi: var(--pink-hi);
    --quiet: var(--muted);
    --signal: var(--cyan);
    --line-soft: var(--line);
}

/* ---- article reading layout: body card + sticky sidebar -------------------- */
.article-layout {
    width: min(100% - 48px, 1160px);
    margin: 0 auto;
    padding: 48px 0 96px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 44px;
    align-items: start;
}
.article-main {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
    padding: 38px 44px;
}
.article-main .article-body { margin-top: 0; }
.article-main .article-foot {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
    margin: 40px 0 0; padding-top: 26px; border-top: 1px solid var(--line-soft);
}
.article-main .article-foot span { color: var(--muted); font-size: 14px; max-width: 60%; }

.article-aside { position: sticky; top: 92px; display: grid; gap: 18px; align-self: start; }
.aside-card { border: 1px solid var(--line); border-radius: 18px; background: var(--surface); padding: 22px 22px 24px; }
.aside-cta { background: linear-gradient(165deg, color-mix(in srgb, var(--pink) 18%, var(--surface)), var(--surface) 72%); border-color: color-mix(in srgb, var(--pink) 32%, var(--line)); }
.aside-views { display: flex; align-items: center; gap: 8px; margin: 0 0 14px; color: var(--muted); font: 600 13px var(--mono); }
.aside-views svg { width: 18px; height: 18px; fill: none; stroke: var(--pink); stroke-width: 1.7; }
.aside-views b { color: var(--text); }
.aside-cta strong { display: block; font-size: 18px; line-height: 1.25; letter-spacing: -.02em; }
.aside-cta p { margin: 8px 0 16px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.aside-cta .nav-cta { display: flex; width: 100%; justify-content: center; }
.aside-related h2 { margin: 0 0 14px; font-size: 15px; letter-spacing: .02em; text-transform: uppercase; color: var(--muted); }
.aside-related ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 15px; }
.aside-related li + li { border-top: 1px solid var(--line-soft); padding-top: 15px; }
.aside-related a { display: grid; gap: 4px; }
.aside-related strong { font-size: 15px; line-height: 1.3; letter-spacing: -.01em; color: var(--text); }
.aside-related a:hover strong { color: var(--pink); }
.aside-related small { color: var(--muted); font-size: 13px; line-height: 1.45; }
@media (max-width: 900px) {
    .article-layout { grid-template-columns: 1fr; gap: 26px; padding-top: 34px; }
    .article-aside { position: static; }
    .article-main { padding: 28px 22px; }
}

/* ---- news / updates list: warmer cards, gradient field, no flat boxes ------ */
.post-list, .update-list { display: grid; gap: 20px; }
.post-row, .update-row {
    position: relative; overflow: hidden;
    border: 1px solid var(--line); border-radius: 18px;
    padding: 26px 28px;
    background: linear-gradient(180deg, color-mix(in srgb, var(--pink) 7%, var(--surface)) 0%, var(--surface) 58%);
    transition: border-color .2s, transform .2s;
}
.post-row::before, .update-row::before {
    content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
    background: linear-gradient(90deg, var(--pink), color-mix(in srgb, var(--cyan) 60%, transparent) 60%, transparent);
}
.post-row:hover, .update-row:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--pink) 38%, var(--line)); }
.post-row__meta, .update-row__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; color: var(--quiet); font: 600 12px var(--mono); }
.post-row h2 { font-size: 23px; letter-spacing: -.02em; margin: 0 0 12px; }
.post-row__body, .update-row__body { color: var(--muted); font-size: 15px; line-height: 1.65; }
.update-row__head strong { color: var(--text); font-size: 18px; }
