:root {
    color-scheme: dark;
    --bg: #080b0f;
    --surface: #101820;
    --surface-muted: #0d1319;
    --text: #eef6fb;
    --muted: #a9b8c6;
    --line: rgba(173, 207, 235, 0.18);
    --accent: #42b7ff;
    --accent-strong: #8bd2ff;
    --success: #34d399;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
    --dark-bg: #080b0f;
    --dark-surface: #101820;
    --dark-surface-strong: #14222d;
    --dark-line: rgba(173, 207, 235, 0.18);
    --dark-text: #eef6fb;
    --dark-muted: #a9b8c6;
    --dark-accent: #42b7ff;
    --dark-emerald: #34d399;
    --cinema-bg: #02070b;
    --cinema-bg-soft: #050a0e;
}

* {
    box-sizing: border-box;
}

html,
body {
    background: var(--cinema-bg);
    overflow-x: hidden;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 50% 18%, rgba(8, 18, 22, 0.5), transparent 44%),
        var(--cinema-bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

a {
    color: var(--accent);
    text-decoration: none;
}

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

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

@media (min-width: 1280px) {
    .container {
        width: min(1280px, calc(100% - 80px));
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(8, 11, 15, 0.88);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    gap: 24px;
}

.brand {
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 800;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    font-weight: 650;
}

.nav-links a {
    color: var(--muted);
}

.hero {
    padding: 86px 0 58px;
    background:
        linear-gradient(180deg, rgba(20, 34, 45, 0.98) 0%, rgba(8, 11, 15, 1) 100%);
    border-bottom: 1px solid var(--line);
}

.page-hero {
    padding: 68px 0 18px;
    background: transparent;
    border-bottom: 0;
}

.page-hero .eyebrow,
.page-hero .lead {
    display: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 56px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--success);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    margin: 0;
    font-size: clamp(2.7rem, 7vw, 5.8rem);
    line-height: 0.96;
}

h2 {
    margin: 0 0 16px;
    font-size: clamp(1.55rem, 3vw, 2.5rem);
    line-height: 1.12;
}

h3 {
    margin: 0 0 10px;
    font-size: 1.08rem;
}

.lead {
    max-width: 650px;
    color: var(--muted);
    font-size: 1.18rem;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 800;
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;
}

.button.primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
}

.button.primary:hover {
    background: var(--accent-strong);
    border-color: var(--accent-strong);
    color: #ffffff;
}

.button.secondary {
    background: var(--surface);
    color: var(--text);
}

.button.disabled {
    color: var(--muted);
    cursor: default;
}

.download-neon-button {
    border-color: rgba(34, 197, 94, 0.62);
    box-shadow:
        0 0 0 1px rgba(74, 222, 128, 0.2) inset,
        0 0 18px rgba(22, 163, 74, 0.22),
        0 0 42px rgba(45, 212, 191, 0.14);
    text-shadow: 0 1px 8px rgba(134, 239, 172, 0.34);
}

.download-neon-button::before,
.home-hero-sweep-button::before {
    content: "";
    position: absolute;
    inset: -35% auto -35% 0;
    z-index: 1;
    width: 64%;
    transform: translateX(-120%) skewX(-22deg);
    opacity: 0;
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(45, 212, 191, 0.18) 16%,
            rgba(34, 197, 94, 0.72) 34%,
            rgba(134, 239, 172, 0.98) 50%,
            rgba(22, 163, 74, 0.84) 62%,
            rgba(45, 212, 191, 0.34) 82%,
            transparent 100%
        );
    filter: blur(1px);
    box-shadow: 0 0 18px rgba(34, 197, 94, 0.48);
    animation: downloadNeonSweep 2.8s ease-in-out infinite;
}

.download-neon-button::after {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: 0;
    border-radius: inherit;
    background:
        linear-gradient(90deg, rgba(21, 128, 61, 0.28), rgba(45, 212, 191, 0.12), rgba(22, 163, 74, 0.28));
    opacity: 0.68;
}

.download-neon-button:hover {
    border-color: rgba(74, 222, 128, 0.9);
    box-shadow:
        0 0 0 1px rgba(74, 222, 128, 0.34) inset,
        0 0 22px rgba(22, 163, 74, 0.3),
        0 0 52px rgba(45, 212, 191, 0.2);
}

@keyframes downloadNeonSweep {
    0% {
        transform: translateX(-120%) skewX(-22deg);
        opacity: 0;
    }

    18% {
        opacity: 0.9;
    }

    55% {
        opacity: 0.82;
    }

    78%,
    100% {
        transform: translateX(190%) skewX(-22deg);
        opacity: 0;
    }
}

@keyframes homeHeroNeonSweep {
    0% {
        transform: translateX(-96%) skewX(-22deg);
        opacity: 0;
    }

    1.42% {
        opacity: 0.86;
    }

    3.54% {
        transform: translateX(-60%) skewX(-22deg);
        opacity: 0.9;
    }

    17.72% {
        transform: translateX(145%) skewX(-22deg);
        opacity: 0.78;
    }

    20.56% {
        transform: translateX(190%) skewX(-22deg);
        opacity: 0;
    }

    20.63%,
    100% {
        transform: translateX(-96%) skewX(-22deg);
        opacity: 0;
    }
}

.notify-section {
    padding-top: 34px;
}

.notify-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 28px;
    align-items: center;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.notify-copy p:last-child,
.notify-form p:last-child {
    margin-bottom: 0;
}

.notify-form {
    display: grid;
    gap: 10px;
}

.notify-form label {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.notify-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.notify-email-input {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--dark-bg);
    color: var(--text);
    font: inherit;
}

.notify-email-input:focus {
    border-color: var(--accent);
    outline: 2px solid rgba(66, 183, 255, 0.18);
    outline-offset: 2px;
}

.notification-honeypot {
    display: none;
}

.form-error {
    color: #fca5a5;
    font-size: 0.92rem;
}

.form-success {
    color: var(--success);
    font-size: 0.92rem;
    font-weight: 700;
}

.product-panel {
    background: #0f1720;
    border: 1px solid #263446;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.panel-top {
    display: flex;
    gap: 8px;
    padding: 14px;
    background: #162232;
}

.panel-top span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6c7a88;
}

.panel-body {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 20px;
}

.note-card {
    min-height: 96px;
    padding: 16px;
    border: 1px solid #2e4055;
    border-radius: 8px;
    background: #162232;
    color: #dbe6f2;
    font-weight: 700;
}

.note-card.strong {
    background: #0b6bcb;
    border-color: #2b8ce8;
    color: #ffffff;
}

.section {
    padding: 72px 0;
}

.section.muted {
    background: var(--surface-muted);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 46px;
    align-items: start;
}

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

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--shadow);
}

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

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: var(--accent);
    color: #ffffff;
    font-weight: 900;
}

.cta {
    padding: 70px 0;
    background: #111a24;
    color: #ffffff;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.download-card {
    display: flex;
    min-height: 360px;
    flex-direction: column;
}

.download-page,
.download-page main {
    background: var(--dark-bg);
}

.download-page main {
    min-height: calc(100vh - 68px);
}

.download-grid {
    align-items: stretch;
    justify-content: center;
}

.download-page .notify-section {
    padding-bottom: 28px;
}

.download-section {
    padding-top: 28px;
}

.download-card .button {
    margin-top: auto;
}

.release-meta {
    display: grid;
    gap: 12px;
    margin: 18px 0;
}

.release-meta div {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 12px;
}

.release-meta dt {
    color: var(--muted);
    font-weight: 700;
}

.release-meta dd {
    margin: 0;
}

.checksum {
    font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
    font-size: 0.78rem;
}

.empty-state {
    color: var(--muted);
    font-weight: 700;
}

.release-list {
    display: grid;
    gap: 22px;
}

.release-entry {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 30px;
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
}

.date {
    color: var(--muted);
}

.text-page h2 {
    margin-top: 34px;
}

.policy-updated {
    color: var(--muted);
    font-weight: 800;
}

.narrow {
    max-width: 760px;
}

.contact-policy-footer {
    border-top: 1px solid var(--line);
    background: var(--dark-bg);
}

.contact-policy-footer-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    padding: 24px 0;
}

.contact-policy-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.contact-policy-footer-links a {
    color: var(--text);
    font-weight: 800;
}

.site-dark {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background: var(--dark-bg);
    color: var(--dark-text);
}

body.site-dark:not(.home-page) {
    background: var(--dark-bg);
}

body.site-dark:not(.home-page) main {
    flex: 1 0 auto;
    background: var(--dark-bg);
}

.site-dark .site-header {
    background: #080b0f;
    border-bottom-color: var(--dark-line);
}

.site-dark .brand,
.site-dark .nav-links a {
    color: var(--dark-text);
}

.site-dark .nav-links a {
    opacity: 0.76;
}

.site-dark .nav-links a:hover {
    color: var(--dark-accent);
    opacity: 1;
}

.home-page .site-header {
    background: rgba(2, 7, 11, 0.92);
    border-bottom-color: transparent;
}

.home-page main {
    background: var(--cinema-bg);
}

.home-hero {
    position: relative;
    min-height: calc(100vh - 68px);
    padding: 0;
    overflow: hidden;
    --home-hero-edge: clamp(20px, 4vw, 80px);
    --home-hero-control-bottom: clamp(20px, 4vh, 44px);
    --home-hero-actions-width: 356px;
    --home-hero-row-gap: clamp(18px, 2.4vw, 32px);
    --home-hero-action-height: 44px;
    --home-hero-terminal-width: min(1120px, calc(100vw - (var(--home-hero-edge) * 2)));
    --hero-image: image-set(
        url("../img/hero-job-offer-1536.avif") type("image/avif"),
        url("../img/hero-job-offer-1536.webp") type("image/webp")
    );
    background:
        radial-gradient(circle at 50% 54%, rgba(26, 39, 37, 0.3), transparent 48%),
        linear-gradient(180deg, var(--cinema-bg) 0%, #03080c 42%, var(--cinema-bg) 100%);
}

.home-hero::before {
    position: absolute;
    inset: -8%;
    z-index: 0;
    content: "";
    background: var(--hero-image) center / cover no-repeat;
    filter: blur(46px) brightness(0.43) saturate(1.2);
    opacity: 0.58;
    transform: scale(1.08);
    -webkit-mask-image: radial-gradient(
        ellipse at center,
        #000000 34%,
        rgba(0, 0, 0, 0.72) 58%,
        rgba(0, 0, 0, 0.22) 82%,
        transparent 100%
    );
    mask-image: radial-gradient(
        ellipse at center,
        #000000 34%,
        rgba(0, 0, 0, 0.72) 58%,
        rgba(0, 0, 0, 0.22) 82%,
        transparent 100%
    );
}

.home-hero::after {
    display: none;
}

.home-hero-inner {
    position: relative;
    z-index: 7;
    min-height: calc(100vh - 68px);
}

.home-hero-slogans {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: var(--home-hero-control-bottom);
    z-index: 8;
    width: var(--home-hero-terminal-width);
    max-width: none;
    margin: 0;
    padding: 34px 20px 18px;
    border: 1px solid rgba(121, 231, 171, 0.26);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(3, 8, 13, 0.88), rgba(3, 8, 13, 0.7));
    box-shadow:
        0 22px 80px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    transform: translateX(-50%);
}

.home-hero-slogans::before {
    position: absolute;
    top: 14px;
    left: 16px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 95, 87, 0.86);
    box-shadow:
        13px 0 0 rgba(255, 189, 46, 0.82),
        26px 0 0 rgba(40, 201, 64, 0.8);
    content: "";
}

.home-hero-slogans > h1:not(.home-hero-temporary-title),
.home-hero-slogans .home-hero-title:not(.home-hero-temporary-title) {
    display: none !important;
}

.home-hero-slogan {
    position: relative;
    display: block;
    width: fit-content;
    max-width: 100%;
    min-height: calc(2 * 1.45em);
    margin: 0;
    color: rgba(219, 255, 229, 0.94);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: clamp(0.88rem, 1.05vw, 1.08rem);
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
    overflow-wrap: anywhere;
}

.home-hero-slogan::after {
    display: inline-block;
    width: 0.08em;
    height: 1em;
    margin-left: 0.12em;
    background: rgba(121, 231, 171, 0.96);
    box-shadow: 0 0 12px rgba(121, 231, 171, 0.62);
    content: "";
    vertical-align: -0.12em;
    animation: hero-caret-blink 0.82s steps(1, end) infinite;
}

@keyframes hero-caret-blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

.home-hero-actions {
    position: absolute;
    left: auto;
    right: var(--home-hero-edge);
    bottom: var(--home-hero-control-bottom);
    width: var(--home-hero-actions-width);
    justify-content: flex-end;
    margin-top: 0;
}

.home-hero-actions .button {
    flex: 0 0 172px;
    width: 172px;
    min-width: 172px;
    max-width: 172px;
    white-space: nowrap;
}

.home-hero-actions .home-hero-sweep-button::before {
    animation: homeHeroNeonSweep 15.8s linear infinite;
}

.home-hero-actions .home-hero-license-button::before {
    animation-delay: 2.55s;
}

.home-hero-visual {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0;
    isolation: isolate;
    z-index: 1;
}

.home-hero-visual img {
    position: absolute;
    top: 48%;
    left: 50%;
    z-index: 1;
    display: block;
    width: min(76vw, 1536px);
    max-width: none;
    height: auto;
    transform: translate(-50%, -50%);
    filter: saturate(1.06) contrast(1.03) brightness(1.1);
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.15) 5%,
        rgba(0, 0, 0, 0.55) 13%,
        #000000 24%,
        #000000 76%,
        rgba(0, 0, 0, 0.55) 87%,
        rgba(0, 0, 0, 0.15) 95%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.15) 5%,
        rgba(0, 0, 0, 0.55) 13%,
        #000000 24%,
        #000000 76%,
        rgba(0, 0, 0, 0.55) 87%,
        rgba(0, 0, 0, 0.15) 95%,
        transparent 100%
    );
}

.home-hero-effects,
.home-hero-effects > * {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.home-hero-effects {
    z-index: 2;
    overflow: hidden;
    isolation: isolate;
}

.home-hero-effects::before,
.home-hero-effects::after {
    display: none;
}

.home-hero-effects::before {
    content: none;
}

.home-hero-effects::after {
    content: none;
}

.home-hero-edge-fade {
    z-index: 6;
    background:
        radial-gradient(ellipse at center, transparent 34%, rgba(2, 7, 11, 0.16) 58%, rgba(2, 7, 11, 0.7) 86%, var(--cinema-bg) 100%),
        linear-gradient(to right, var(--cinema-bg) 0%, rgba(2, 7, 11, 0.9) 11%, rgba(2, 7, 11, 0.54) 22%, rgba(2, 7, 11, 0.18) 33%, transparent 44%, transparent 58%, rgba(2, 7, 11, 0.22) 70%, rgba(2, 7, 11, 0.62) 82%, rgba(2, 7, 11, 0.92) 93%, var(--cinema-bg) 100%),
        linear-gradient(to bottom, var(--cinema-bg) 0%, rgba(2, 7, 11, 0.46) 12%, transparent 30%, transparent 70%, rgba(2, 7, 11, 0.86) 91%, var(--cinema-bg) 100%);
}

.home-hero-fire-glow {
    z-index: 2;
    background:
        radial-gradient(ellipse at 24% 80%, rgba(255, 130, 31, 0.3), rgba(255, 72, 0, 0.1) 24%, transparent 44%),
        radial-gradient(ellipse at 76% 79%, rgba(255, 142, 35, 0.3), rgba(255, 84, 0, 0.1) 24%, transparent 44%),
        radial-gradient(ellipse at 50% 90%, rgba(255, 194, 72, 0.14), rgba(255, 92, 0, 0.07) 18%, transparent 40%),
        linear-gradient(to top, rgba(255, 98, 0, 0.18), rgba(255, 98, 0, 0.06) 18%, transparent 40%);
    mix-blend-mode: screen;
    opacity: 0.34;
    transform: translate3d(0, 0, 0);
}

.home-hero-fire-glow::before,
.home-hero-fire-glow::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        radial-gradient(circle at 30% 86%, rgba(255, 208, 105, 0.22), transparent 5%),
        radial-gradient(circle at 38% 83%, rgba(255, 112, 27, 0.16), transparent 7%),
        radial-gradient(circle at 64% 84%, rgba(255, 170, 54, 0.18), transparent 6%),
        radial-gradient(circle at 73% 80%, rgba(255, 100, 20, 0.16), transparent 8%);
    opacity: 0.24;
    mix-blend-mode: screen;
}

.home-hero-fire-glow::after {
    filter: blur(18px);
    opacity: 0.12;
    transform: scale(1.08);
}

.home-hero-green-glow {
    z-index: 3;
    background:
        radial-gradient(ellipse at 50% 57%, rgba(85, 255, 116, 0.18), rgba(48, 211, 97, 0.08) 12%, transparent 26%),
        radial-gradient(ellipse at 50% 64%, rgba(84, 255, 111, 0.22), rgba(44, 207, 91, 0.08) 10%, transparent 22%);
    mix-blend-mode: screen;
    opacity: 0.3;
}

.home-hero-embers {
    z-index: 4;
    display: block;
    width: 100%;
    height: 100%;
    mix-blend-mode: screen;
}

.home-hero-haze {
    z-index: 5;
    background:
        radial-gradient(ellipse at 50% 18%, rgba(3, 7, 10, 0.4), transparent 32%),
        radial-gradient(ellipse at 50% 64%, transparent 18%, rgba(3, 7, 10, 0.12) 55%, rgba(3, 7, 10, 0.42) 100%);
    opacity: 0.38;
}

.home-hero-haze::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        radial-gradient(circle at 34% 82%, rgba(255, 142, 37, 0.16), transparent 2.2%),
        radial-gradient(circle at 46% 80%, rgba(255, 197, 83, 0.12), transparent 1.6%),
        radial-gradient(circle at 62% 83%, rgba(255, 112, 28, 0.14), transparent 2%),
        radial-gradient(circle at 74% 77%, rgba(255, 172, 53, 0.1), transparent 1.8%);
    mix-blend-mode: screen;
    opacity: 0.16;
}

@media (min-width: 1280px) {
    .home-hero {
        min-height: max(calc(100vh - 68px), 720px);
    }

    .home-hero-inner {
        min-height: max(calc(100vh - 68px), 720px);
    }
}

@media (min-width: 1800px) {
    .home-hero {
        min-height: max(calc(100vh - 68px), 760px);
    }

    .home-hero-inner {
        min-height: max(calc(100vh - 68px), 760px);
    }

    .container {
        width: min(1440px, calc(100% - 120px));
    }
}

.site-dark .eyebrow {
    color: var(--dark-emerald);
}

.site-dark .lead {
    color: var(--dark-muted);
}

.site-dark .button.primary {
    background: #1f8fff;
    border-color: #56b8ff;
    box-shadow: 0 18px 44px rgba(31, 143, 255, 0.32);
}

.site-dark .button.primary:hover {
    background: #57b9ff;
    border-color: #8bd2ff;
}

.site-dark .button.secondary {
    background: #101820;
    border-color: var(--dark-line);
    color: var(--dark-text);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 42px;
}

.hero-metrics div {
    min-height: 86px;
    padding: 16px;
    border: 1px solid var(--dark-line);
    border-radius: 8px;
    background: #101820;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.hero-metrics strong,
.hero-metrics span {
    display: block;
}

.hero-metrics strong {
    color: #ffffff;
    font-size: 0.98rem;
}

.hero-metrics span {
    margin-top: 6px;
    color: var(--dark-muted);
    font-size: 0.88rem;
}

.home-section {
    background: var(--cinema-bg);
    color: var(--dark-text);
}

.home-section.elevated {
    background: var(--cinema-bg-soft);
    border-top: 1px solid var(--dark-line);
    border-bottom: 1px solid var(--dark-line);
}

.home-section p {
    color: var(--dark-muted);
}

.feature-cards {
    margin-top: 28px;
}

.feature-card,
.step-card {
    background: #101820;
    border-color: var(--dark-line);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.feature-card h3,
.step-card h3 {
    color: #ffffff;
}

.feature-card p,
.step-card p {
    color: var(--dark-muted);
}

.accent-card {
    background: #14222d;
    border-color: rgba(66, 183, 255, 0.46);
}

.home-steps {
    align-items: stretch;
}

.step-card {
    padding: 24px;
    border: 1px solid var(--dark-line);
    border-radius: 8px;
}

.site-dark .step-number {
    background: rgba(52, 211, 153, 0.16);
    color: var(--dark-emerald);
    border: 1px solid rgba(52, 211, 153, 0.34);
}

.home-cta {
    background:
        linear-gradient(90deg, rgba(8, 11, 15, 1), rgba(15, 38, 51, 1) 55%, rgba(7, 19, 23, 1));
    border-top: 1px solid var(--dark-line);
}

.site-dark .page-hero {
    position: relative;
    overflow: visible;
    background: transparent;
}

.site-dark .page-hero::after {
    display: none;
}

.site-dark .section {
    background: var(--dark-bg);
}

.site-dark .section.muted {
    background: var(--dark-surface);
    border-top: 1px solid var(--dark-line);
    border-bottom: 1px solid var(--dark-line);
}

.site-dark .card {
    background: #101820;
    border-color: var(--dark-line);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.site-dark .card h2,
.site-dark .card h3,
.site-dark .text-page h2,
.site-dark .release-entry h2 {
    color: #ffffff;
}

.site-dark .card p,
.site-dark .text-page p,
.site-dark .release-entry p,
.site-dark .release-entry li {
    color: var(--dark-muted);
}

.site-dark .release-meta div {
    padding: 10px 0;
    border-bottom: 1px solid rgba(173, 207, 235, 0.1);
}

.site-dark .release-meta dt,
.site-dark .date,
.site-dark .empty-state {
    color: var(--dark-muted);
}

.site-dark .checksum {
    color: #d9f3ff;
}

.site-dark .release-entry {
    padding: 28px;
    border: 1px solid var(--dark-line);
    border-radius: 8px;
    background: #101820;
}

.site-dark .text-page .narrow {
    padding: 34px;
    border: 1px solid var(--dark-line);
    border-radius: 8px;
    background: #101820;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

@media (max-width: 2020px) {
    .home-hero-slogans {
        bottom: calc(var(--home-hero-control-bottom)
                     + var(--home-hero-action-height)
                     + var(--home-hero-row-gap));
    }

    .home-hero-actions {
        left: var(--home-hero-edge);
        width: auto;
    }
}

@media (max-width: 860px) {
    .nav,
    .nav-links,
    .contact-policy-footer-inner,
    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-grid,
    .split,
    .cards,
    .steps,
    .release-entry {
        grid-template-columns: 1fr;
    }

    .hero,
    .page-hero,
    .section {
        padding: 48px 0;
    }

    .product-panel {
        min-width: 0;
    }

    .home-hero {
        min-height: 680px;
        padding-bottom: 0;
        --home-hero-edge: 20px;
        --home-hero-control-bottom: 24px;
        --home-hero-row-gap: 20px;
    }

    .home-hero::before {
        background-size: cover;
        filter: blur(16px) brightness(0.38) saturate(1.12);
    }

    .home-hero-inner {
        min-height: 680px;
    }

    .home-hero-visual img {
        top: 43%;
        width: max(150vw, 940px);
        -webkit-mask-image: linear-gradient(
            to right,
            transparent 0%,
            rgba(0, 0, 0, 0.25) 8%,
            rgba(0, 0, 0, 0.68) 16%,
            #000000 26%,
            #000000 74%,
            rgba(0, 0, 0, 0.68) 84%,
            rgba(0, 0, 0, 0.25) 92%,
            transparent 100%
        );
        mask-image: linear-gradient(
            to right,
            transparent 0%,
            rgba(0, 0, 0, 0.25) 8%,
            rgba(0, 0, 0, 0.68) 16%,
            #000000 26%,
            #000000 74%,
            rgba(0, 0, 0, 0.68) 84%,
            rgba(0, 0, 0, 0.25) 92%,
            transparent 100%
        );
    }

    .home-hero-slogans {
        padding: 32px 14px 14px;
    }

    .home-hero-slogan {
        font-size: 0.9rem;
        line-height: 1.38;
    }

    .home-hero-effects {
        display: none;
    }

    .home-hero-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .home-hero {
        --home-hero-edge: 16px;
        --home-hero-row-gap: 16px;
    }

    .home-hero-slogans {
        padding: 30px 12px 12px;
    }

    .home-hero-actions {
        gap: 8px;
    }

    .home-hero-actions .button {
        flex: 1 1 calc(50% - 4px);
        width: auto;
        min-width: 0;
        max-width: none;
        padding: 0 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .download-neon-button::before,
    .home-hero-sweep-button::before,
    .home-hero-fire-glow,
    .home-hero-green-glow,
    .home-hero-haze,
    .home-hero-slogan,
    .home-hero-slogan::after {
        animation: none;
    }

    .download-neon-button::before {
        display: none;
    }

    .home-hero-sweep-button::before {
        display: none;
    }

    .home-hero-slogan {
        min-height: auto;
    }

    .home-hero-slogan::after {
        display: none;
    }

    .home-hero-fire-glow {
        opacity: 0.24;
    }

    .home-hero-green-glow {
        opacity: 0.18;
    }

    .home-hero-embers {
        display: none;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .notify-panel,
    .notify-row {
        grid-template-columns: 1fr;
    }

    .notify-panel {
        padding: 22px;
    }

    .panel-body {
        grid-template-columns: 1fr;
    }
}
