:root {
    --page-bg-start: #0a1116;
    --page-bg-end: #163150;
    --hero-image-offset-y: -180px;
    --content-gutter: max(24px, calc((100vw - 1380px) / 2));
    --button-radius: 4px;
    --header-bg: rgba(25, 52, 90, 0.98);
    --panel-bg: rgba(246, 244, 238, 0.92);
    --dropdown-bg: rgba(165, 168, 173, 0.98);
    --dropdown-content-bg: #ffffff;
    --header-cta-bg: #d7d0be;
    --header-cta-text: #103d7f;
    --ink: #143040;
    --ink-soft: rgba(20, 48, 64, 0.76);
    --brand-surface: #1756a2;
    --brand-accent: #8ec0e8;
    --brand-accent-strong: #6ca8db;
    --sand-100: #f6f4ee;
    --sand-200: #ece0c5;
    --line: rgba(255, 255, 255, 0.1);
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--sand-100);
    background:
        radial-gradient(
            circle at top left,
            rgba(108, 168, 219, 0.2),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            var(--page-bg-start) 0%,
            var(--page-bg-end) 100%
        );
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

video {
    display: block;
    max-width: 100%;
}

.page-shell {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    padding: 16px 32px;
    border-radius: 0;
    background:
        radial-gradient(
            circle at top left,
            rgba(255, 255, 255, 0.16),
            transparent 24%
        ),
        linear-gradient(
            155deg,
            var(--brand-surface) 0%,
            var(--brand-surface) 100%
        );
    border: 0;
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 26px rgba(12, 31, 42, 0.08);
    overflow: visible;
    margin-bottom: 0;
    box-sizing: border-box;
    padding-left: var(--content-gutter);
    padding-right: var(--content-gutter);
}

.site-header > .brand-mark,
.site-header > .site-nav,
.site-header > .mobile-toggle {
    position: relative;
    z-index: 1;
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top left,
            rgba(255, 255, 255, 0.16),
            transparent 24%
        ),
        linear-gradient(
            155deg,
            var(--brand-surface) 0%,
            var(--brand-surface) 100%
        );
    pointer-events: none;
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 4px 10px 4px 0;
}

.brand-mark img {
    height: 46px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(99%) sepia(16%) saturate(332%)
        hue-rotate(306deg) brightness(102%) contrast(94%);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    position: static;
}

.nav-group {
    position: static;
}

.nav-trigger,
.nav-link,
.nav-cta,
.mobile-toggle {
    border: 0;
    background: transparent;
    color: #f7f5ef;
    font: inherit;
    font-weight: 700;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease,
        color 180ms ease,
        border-color 180ms ease;
}

.nav-trigger,
.nav-link,
.nav-cta {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: var(--button-radius);
}

.nav-link:hover,
.nav-trigger:hover,
.nav-group.is-open .nav-trigger {
    background: rgba(255, 255, 255, 0.14);
}

.nav-cta {
    color: var(--header-cta-text);
    background: var(--header-cta-bg);
    box-shadow: 0 16px 28px rgba(8, 29, 48, 0.22);
    border: 2px solid transparent;
}

.mobile-toggle {
    display: none;
    padding: 12px 16px;
    border-radius: var(--button-radius);
    background: rgba(255, 255, 255, 0.14);
}

.mega-panel {
    position: fixed;
    top: var(--panel-top, 100%);
    left: var(--panel-left, var(--content-gutter));
    width: var(--panel-width, calc(100vw - (var(--content-gutter) * 2)));
    display: grid;
    grid-template-columns: minmax(240px, 0.95fr) minmax(360px, 1.05fr);
    gap: 22px;
    padding: 28px 32px;
    border-radius: 0 0 var(--button-radius) var(--button-radius);
    background: var(--dropdown-bg);
    border: 1px solid rgba(20, 48, 64, 0.1);
    border-top: 0;
    box-shadow: 0 34px 72px rgba(12, 31, 42, 0.22);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
    box-sizing: border-box;
    overflow: hidden;
}

.nav-group.is-open .mega-panel {
    opacity: 1;
    pointer-events: auto;
}

.mega-feature {
    padding: 22px;
    border-radius: var(--button-radius);
    color: var(--ink);
    background: var(--dropdown-content-bg);
}

.feature-label,
.eyebrow,
.band-label {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
    font-weight: 800;
}

.mega-feature h2,
.summary-band h2,
.content-section h2,
.demo-section h2 {
    margin: 0;
    letter-spacing: -0.04em;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
}

.mega-feature h2 {
    font-size: 1.8rem;
    line-height: 1.02;
}

.mega-feature p:last-child {
    margin: 14px 0 0;
    color: var(--ink-soft);
    line-height: 1.65;
}

.mega-links {
    display: grid;
    gap: 10px;
    align-content: start;
}

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

.mega-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--button-radius);
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    font-weight: 700;
    transition:
        background-color 160ms ease,
        color 160ms ease,
        transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
    border: 1px solid transparent;
}

.mega-links a::after {
    content: "";
    display: inline-block;
    flex: 0 0 auto;
    width: 1rem;
    height: 1rem;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='64 64 896 896'%3E%3Cpath d='M869 487.8L491.2 159.9c-2.9-2.5-6.6-3.9-10.5-3.9h-88.5c-7.4 0-10.8 9.2-5.2 14l350.2 304H152c-4.4 0-8 3.6-8 8v60c0 4.4 3.6 8 8 8h585.1L386.9 854c-5.6 4.9-2.2 14 5.2 14h91.5c1.9 0 3.8-.7 5.2-2L869 536.2a32.07 32.07 0 000-48.4z'/%3E%3C/svg%3E")
        center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='64 64 896 896'%3E%3Cpath d='M869 487.8L491.2 159.9c-2.9-2.5-6.6-3.9-10.5-3.9h-88.5c-7.4 0-10.8 9.2-5.2 14l350.2 304H152c-4.4 0-8 3.6-8 8v60c0 4.4 3.6 8 8 8h585.1L386.9 854c-5.6 4.9-2.2 14 5.2 14h91.5c1.9 0 3.8-.7 5.2-2L869 536.2a32.07 32.07 0 000-48.4z'/%3E%3C/svg%3E")
        center / contain no-repeat;
    transition: transform 160ms ease;
}

.mega-links a:hover {
    background: #d9e6f4;
    color: var(--ink);
    transform: translateY(-1px);
    border-color: rgba(20, 48, 64, 0.18);
    box-shadow: 0 10px 20px rgba(12, 31, 42, 0.08);
}

.mega-links a:hover::after {
    transform: translateX(4px);
}

.hero {
    display: block;
    width: 100%;
    padding: 0;
}

.hero-copy {
    border-radius: 0;
}

.hero-visual-shell,
.summary-band,
.content-section,
.demo-section {
    border-radius: 0;
}

.hero-copy {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--content-gutter);
    right: var(--content-gutter);
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 100%;
    padding: 42px 24px;
    color: #f7f5ef;
    background: linear-gradient(
        90deg,
        rgba(8, 17, 29, 0) 0%,
        rgba(8, 17, 29, 0.42) 18%,
        rgba(8, 17, 29, 0.58) 50%,
        rgba(8, 17, 29, 0.42) 82%,
        rgba(8, 17, 29, 0) 100%
    );
    text-align: center;
}

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

.hero h1 {
    margin: 0;
    max-width: 18ch;
    white-space: normal;
    font-size: clamp(2.8rem, 4vw, 5rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
}

.hero-emphasis {
    color: var(--sand-200);
}

.hero-lockup {
    white-space: nowrap;
}

.hero-summary {
    margin: 16px 0 0;
    max-width: 29rem;
    font-size: 1.02rem;
    line-height: 1.65;
    color: rgba(247, 245, 239, 0.82);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.primary-cta,
.secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: var(--button-radius);
    font-weight: 800;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease,
        color 180ms ease,
        border-color 180ms ease;
}

.nav-cta,
.primary-cta,
.secondary-cta,
.footer-demo-link {
    position: relative;
    overflow: hidden;
}

.primary-cta {
    background: var(--brand-accent);
    color: #123746;
    border: 2px solid transparent;
}

.secondary-cta {
    background: rgba(255, 255, 255, 0.12);
    color: #fff9f2;
    border: 2px solid rgba(255, 255, 255, 0.18);
}

.primary-cta:hover,
.primary-cta:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible,
.footer-demo-link:hover,
.footer-demo-link:focus-visible {
    background: #d7e7f7;
    border-color: rgba(255, 255, 255, 0.78);
    box-shadow: none;
}

.secondary-cta:hover,
.secondary-cta:focus-visible {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.72);
    box-shadow: none;
}

.summary-grid strong,
.summary-grid strong,
.story-grid strong,
.product-shot strong {
    display: block;
    margin-bottom: 8px;
}

.hero-visual-shell {
    position: relative;
    display: flex;
    overflow: hidden;
    padding: 0;
    background: rgba(12, 20, 24, 0.72);
    border: 0;
    box-shadow: var(--shadow);
}

.hero-visual-stage {
    position: relative;
    flex: 1;
    min-height: 0;
    height: clamp(480px, 58vh, 620px);
    border-radius: 0;
    overflow: hidden;
    background: #08111d;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(4, 12, 22, 0.1) 0%,
        rgba(4, 12, 22, 0.22) 48%,
        rgba(4, 12, 22, 0.9) 100%
    );
    z-index: 1;
}

.hero-scene {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.82) saturate(0.98) hue-rotate(-10deg);
    transform: translateY(var(--hero-image-offset-y));
    animation: sceneDrift 14s ease-in-out infinite alternate;
}

.scene-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(24px);
    opacity: 0.42;
    pointer-events: none;
}

.scene-glow-one {
    top: 10%;
    right: 10%;
    width: 240px;
    height: 240px;
    background: rgba(142, 192, 232, 0.24);
}

.scene-glow-two {
    bottom: 12%;
    left: 8%;
    width: 220px;
    height: 220px;
    background: rgba(108, 168, 219, 0.26);
}

.hero-belt {
    position: absolute;
    top: 22px;
    right: var(--content-gutter);
    bottom: 22px;
    width: 320px;
    padding: 18px;
    background: transparent;
    overflow: hidden;
    z-index: 2;
}

.hero-belt-track {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    animation: beltDrift 24s linear infinite;
}

.belt-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    height: 100%;
    padding: 6px;
    border-radius: 0;
    background: rgba(13, 26, 44, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
}

.card-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 20px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--sand-100);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.58rem;
    font-weight: 800;
}

.belt-card img {
    width: 100%;
    flex: 1;
    min-height: 0;
    object-fit: cover;
    object-position: left top;
    border-radius: 0;
}
.summary-grid span,
.summary-grid span,
.story-grid p,
.content-section p,
.demo-section p,
.product-shot span {
    color: var(--ink-soft);
    line-height: 1.7;
}

.summary-band,
.content-section,
.demo-section {
    width: 100%;
    margin-top: 0;
    padding: 0 48px;
    background: var(--panel-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dark-section {
    background: #2d5081;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dark-section h2,
.dark-section p,
.dark-section strong,
.dark-section .band-label,
.dark-section .eyebrow {
    color: var(--sand-100);
}

.dark-section .section-copy h2,
.dark-section .summary-band h2,
.dark-section .demo-section h2 {
    color: #f6f4ee;
}

.dark-section .summary-grid div,
.dark-section .story-grid article {
    background: rgba(255, 255, 255, 0.06);
}

.dark-section .summary-grid span,
.dark-section .story-grid p,
.dark-section .content-section p,
.dark-section .demo-section p {
    color: rgba(246, 244, 238, 0.76);
}

.content-section.dark-section {
    background: #c7dfef;
    border-top: 0;
}

.content-section.dark-section h2,
.content-section.dark-section p,
.content-section.dark-section strong,
.content-section.dark-section .band-label,
.content-section.dark-section .eyebrow {
    color: #143040;
}

.content-section.dark-section .section-copy h2 {
    color: #143040;
}

.content-section.dark-section p {
    color: rgba(20, 48, 64, 0.82);
}

.content-section.dark-section .summary-grid div,
.content-section.dark-section .story-grid article {
    background: rgba(255, 255, 255, 0.3);
}

.metrics-section {
    width: 100%;
    padding: 0 48px;
    background: #8ec0e8;
    border-top: 0;
}

.metrics-section .section-inner {
    width: min(1380px, 100%);
    max-width: none;
    padding: 6px 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
}

.metric-card {
    display: grid;
    grid-template-columns: max-content max-content;
    justify-content: start;
    align-items: stretch;
    column-gap: 14px;
    row-gap: 0;
    min-height: 88px;
    padding: 0;
    border-right: 1px solid rgba(20, 48, 64, 0.12);
}

.metric-value-panel,
.metric-copy-panel {
    display: flex;
    align-items: center;
    min-height: 100%;
}

.metric-value-panel {
    justify-content: flex-start;
    padding: 6px 0 6px 12px;
}

.metric-copy-panel {
    padding: 6px 0 6px 0;
}

.metric-value {
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 0.88;
    letter-spacing: -0.05em;
    color: #143040;
    font-weight: 800;
}

.metric-copy {
    width: 17ch;
    font-size: 1.02rem;
    line-height: 1.2;
    font-weight: 700;
    color: rgba(20, 48, 64, 0.96);
}

.metric-card:last-child {
    border-right: 0;
}

.metric-card:first-child .metric-value-panel {
    padding-left: 10px;
}

.screens-strip {
    width: 100%;
    overflow: hidden;
}

.screens-strip-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: beltDriftHorizontal 22s linear infinite;
}

.screens-strip-group {
    display: flex;
    flex: 0 0 auto;
    gap: 14px;
}

.screens-strip .belt-card {
    display: grid;
    gap: 8px;
    width: 180px;
    height: auto;
    padding: 8px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(20, 48, 64, 0.08);
    box-shadow: 0 12px 30px rgba(12, 31, 42, 0.12);
    backdrop-filter: none;
}

.screens-strip .card-tag {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 0;
    color: var(--ink);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.screens-strip .belt-card img {
    width: 100%;
    aspect-ratio: 16 / 8.6;
    flex: initial;
    min-height: 0;
    object-fit: cover;
    object-position: left top;
    border-radius: 0;
}

.section-inner {
    width: min(1380px, calc(100vw - 96px));
    margin: 0 auto;
    padding: 34px 0;
}

.summary-band-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 26px;
    color: var(--ink);
}

.summary-lead {
    min-width: 0;
    max-width: 46rem;
}

.summary-side {
    display: grid;
    gap: 22px;
    min-width: 0;
    align-content: start;
}

.summary-belt {
    min-width: 0;
    align-self: start;
    margin-top: 0;
}

.summary-belt .screens-strip {
    background: transparent;
}

.summary-belt .screens-strip-track {
    padding: 0;
}

.summary-belt .belt-card {
    background: rgba(255, 255, 255, 0.7);
}

.summary-intro {
    margin: 14px 0 0;
    max-width: 34rem;
    color: var(--ink-soft);
    line-height: 1.65;
}

.summary-band h2,
.content-section h2,
.demo-section h2 {
    font-size: clamp(2rem, 3vw, 3.4rem);
    line-height: 0.98;
    color: var(--ink);
}

.summary-grid,
.story-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.feature-card-link,
.story-card-link {
    display: grid;
    gap: 6px;
    align-content: start;
    padding: 20px;
    border-radius: 0;
    background: rgba(20, 48, 64, 0.05);
    box-shadow: none;
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        background-color 220ms ease;
    cursor: pointer;
}

.card-heading-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 12px;
}

.card-icon-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    align-self: stretch;
    margin-top: 0;
    color: #2f6fb0;
    font-size: 1.55rem;
    line-height: 1;
    flex: 0 0 auto;
}

.card-heading-row strong {
    margin-bottom: 0;
}

.card-body-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: stretch;
    column-gap: 16px;
}

.card-body-row p,
.card-body-row span:first-child {
    margin: 0;
}

.feature-card-link:hover,
.feature-card-link:focus-visible,
.story-card-link:hover,
.story-card-link:focus-visible {
    transform: translateY(-8px);
    box-shadow: 0 24px 42px rgba(12, 31, 42, 0.18);
    background: #d9e6f4;
    outline: none;
}

.feature-card-link:hover .card-icon-content,
.feature-card-link:focus-visible .card-icon-content,
.story-card-link:hover .card-icon-content,
.story-card-link:focus-visible .card-icon-content {
    color: #245b95;
}

.feature-card-link .card-read-more-arrow,
.story-card-link .card-read-more-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    margin-top: 0;
    color: var(--ink);
    font-size: 1.15rem;
    line-height: 1;
    font-weight: 800;
    transition:
        transform 220ms ease,
        color 220ms ease;
}

.card-read-more-arrow svg {
    display: block;
}

.feature-card-link:hover .card-read-more-arrow,
.feature-card-link:focus-visible .card-read-more-arrow,
.story-card-link:hover .card-read-more-arrow,
.story-card-link:focus-visible .card-read-more-arrow {
    color: #2f6fb0;
    animation: arrowNudge 650ms ease-in-out infinite alternate;
}

.content-section {
    color: var(--ink);
}

.content-section .section-inner {
    display: grid;
    gap: 16px;
}

.content-section.light {
    background: rgba(250, 248, 242, 0.96);
}

.section-copy {
    max-width: 56rem;
}

.demo-section {
    text-align: center;
    color: var(--ink);
}

.demo-section p {
    max-width: 40rem;
    margin: 12px auto 24px;
}

.site-footer {
    width: 100%;
    background:
        radial-gradient(
            circle at top left,
            rgba(255, 255, 255, 0.12),
            transparent 24%
        ),
        linear-gradient(
            155deg,
            #143f7d 0%,
            #143f7d 100%
        );
    color: #f7f5ef;
    border-top: 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 128px minmax(150px, 0.55fr) minmax(240px, 0.9fr) minmax(220px, 0.75fr);
    column-gap: 34px;
    row-gap: 28px;
    align-items: start;
    padding-top: 40px;
    padding-bottom: 24px;
}

.footer-brand,
.footer-links,
.footer-contact,
.footer-demo {
    display: grid;
    gap: 10px;
    align-content: start;
    grid-auto-rows: max-content;
}

.footer-brand {
    min-height: 100%;
    grid-template-rows: auto;
}

.footer-brand img {
    height: 152px;
    width: auto;
}

.footer-brand p,
.footer-contact p,
.footer-demo p {
    margin: 0;
    color: rgba(247, 245, 239, 0.82);
    line-height: 1.65;
}

.footer-copyright {
    font-size: 0.92rem;
    margin: 0;
    color: rgba(247, 245, 239, 0.82);
    line-height: 1.65;
}

.footer-links strong,
.footer-contact strong,
.footer-demo strong {
    color: #f7f5ef;
    font-size: 0.86rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-links a,
.footer-contact-link,
.footer-demo-link {
    color: rgba(247, 245, 239, 0.9);
    font-weight: 600;
    line-height: 1.65;
}

.footer-contact-link,
.footer-demo-link {
    margin-top: 0;
}

.footer-demo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 46px;
    padding: 0 18px;
    border-radius: var(--button-radius);
    background: var(--header-cta-bg);
    color: var(--header-cta-text);
    font-weight: 800;
    border: 2px solid transparent;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease,
        color 180ms ease,
        border-color 180ms ease;
}

.footer-demo-link:hover,
.footer-demo-link:focus-visible {
    background: #d7e7f7;
    border-color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
    padding-top: 18px;
    padding-bottom: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@keyframes sceneDrift {
    0% {
        transform: scale(1.02) translate3d(0, 0, 0);
    }

    100% {
        transform: scale(1.08) translate3d(-1.2%, 1.2%, 0);
    }
}

@keyframes beltDrift {
    0% {
        transform: translateY(calc(-50% - 8px));
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes beltDriftHorizontal {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 7px));
    }
}

@keyframes arrowNudge {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(10px);
    }
}

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

    .hero-scene,
    .hero-belt-track,
    .screens-strip-track {
        animation: none;
    }

    .nav-trigger,
    .nav-link,
    .nav-cta,
    .mobile-toggle,
    .primary-cta,
    .secondary-cta,
    .footer-demo-link {
        transition: none;
        animation: none;
    }
}

@media (max-width: 1100px) {
    .hero,
    .summary-band-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero h1 {
        max-width: 100%;
    }

    .hero-visual-stage {
        min-height: 580px;
    }

    .hero-copy {
        width: min(640px, 62%);
    }

    .summary-band-inner {
        grid-template-columns: 1fr;
    }

    .summary-side {
        gap: 18px;
    }

    .summary-belt {
        grid-column: auto;
        grid-row: auto;
    }

}

@media (max-width: 980px) {
    .site-header {
        flex-wrap: wrap;
    }

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

    .site-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding-top: 10px;
    }

    .site-header.is-mobile-open .site-nav {
        display: flex;
    }

    .nav-group,
    .nav-link,
    .nav-cta {
        width: 100%;
    }

    .nav-trigger,
    .nav-link,
    .nav-cta {
        width: 100%;
        justify-content: space-between;
    }

    .mega-panel {
        position: static;
        width: 100%;
        margin-top: 8px;
        grid-template-columns: 1fr;
        display: none;
        opacity: 1;
        pointer-events: auto;
        box-shadow: none;
        border-radius: var(--button-radius);
        padding: 18px;
        left: auto;
        top: auto;
    }

    .nav-group.is-open .mega-panel {
        display: grid;
    }

    .summary-grid,
    .story-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .screens-strip .belt-card {
        width: 188px;
    }

    .metric-card {
        border-right: 1px solid rgba(20, 48, 64, 0.12);
        border-bottom: 0;
        grid-template-columns: 1fr;
        row-gap: 0;
        column-gap: 0;
    }

    .metric-card:last-child {
        border-right: 0;
    }
}

@media (max-width: 760px) {
    .page-shell {
        padding-top: 10px;
    }

    .site-header {
        padding: 14px 16px;
        margin-bottom: 16px;
    }

    .brand-mark img {
        height: 42px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .hero,
    .section-inner {
        width: min(1380px, calc(100vw - 48px));
    }

    .hero-copy,
    .hero-visual-shell,
    .summary-band,
    .content-section,
    .demo-section {
        padding: 20px 16px;
        border-radius: 0;
    }

    .hero-visual-shell {
        padding: 0;
    }

    .hero-copy {
        position: absolute;
        width: 100%;
        height: auto;
        top: auto;
        bottom: 0;
        padding: 26px 16px 146px;
        background: linear-gradient(
            180deg,
            rgba(11, 24, 44, 0) 0%,
            rgba(11, 24, 44, 0.78) 26%,
            rgba(11, 24, 44, 0.96) 100%
        );
    }

    .hero h1 {
        font-size: clamp(2.7rem, 13vw, 4rem);
    }

    .hero-visual-stage {
        height: 620px;
        min-height: 0;
    }

    .summary-band,
    .content-section,
    .demo-section {
        padding: 0 24px;
    }

    .metrics-section .section-inner {
        width: min(1380px, 100%);
        padding: 8px 0;
    }

    .metrics-section {
        padding: 0 24px;
    }

    .screens-strip-track {
        gap: 12px;
    }

    .screens-strip .belt-card {
        width: 176px;
    }

    .metric-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .metric-value-panel,
    .metric-copy-panel {
        justify-content: flex-start;
        padding: 10px 0;
    }

    .metric-copy-panel {
        border-top: 0;
        padding-top: 0;
    }

    .metric-value,
    .metric-copy {
        justify-content: flex-start;
    }

    .metric-value-panel {
        padding-bottom: 4px;
    }

    .metric-copy {
        width: auto;
        font-size: 0.88rem;
        line-height: 1.15;
    }
}
