:root {
    --bg: #05070d;
    --accent: #f59e0b;
    --white: #ffffff;
    --muted: rgba(255, 255, 255, 0.74);
    --dark-card: rgba(255, 255, 255, 0.055);
    --border: rgba(255, 255, 255, 0.12);

    --heading-duration: 1.3s;
    --heading-delay-1: 0.4s;
    --heading-delay-2: 1.2s;
    --heading-delay-3: 2s;
    --heading-rise: 34px;
    --heading-blur: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

html,
body {
    min-height: 100%;
    height: 100%;
}

body {
    background: var(--bg);
    overflow-x: hidden;
    overflow-y: auto;
    cursor: default;
}

a,
button {
    cursor: pointer;
}

img,
svg {
    user-select: none;
}

html.is-programmatic-scroll,
html.is-programmatic-scroll body {
    scroll-behavior: auto;
}

.animated-heading {
    font-family: "Orbitron", sans-serif;
    font-weight: 500;
    color: var(--white);
}

.animated-heading span {
    display: block;
    opacity: 0;
    transform: translateY(var(--heading-rise));
}

.animated-heading.in-view span {
    animation: revealLine var(--heading-duration) cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animated-heading span:nth-child(1) {
    animation-delay: var(--heading-delay-1);
}

.animated-heading span:nth-child(2) {
    animation-delay: var(--heading-delay-2);
}

.animated-heading span:nth-child(3) {
    animation-delay: var(--heading-delay-3);
}

/* HERO */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    background:
        radial-gradient(circle at 72% 45%, rgba(245, 158, 11, 0.12), transparent 28%),
        radial-gradient(circle at 60% 55%, rgba(34, 197, 94, 0.08), transparent 34%),
        linear-gradient(90deg, #05070d 0%, #071019 52%, #05070d 100%);
}

.hero-art {
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    height: 100svh;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-art img {
    position: absolute;
    top: 50%;
    right: 0;
    height: 100vh;
    height: 100svh;
    width: auto;
    transform: translateY(-50%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 18%, black 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 18%, black 100%);
}

.mobile-hero-logo {
    display: none;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(5, 7, 13, 0.98) 0%,
        rgba(5, 7, 13, 0.88) 24%,
        rgba(5, 7, 13, 0.32) 55%,
        rgba(5, 7, 13, 0.64) 100%
    );
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(5, 7, 13, 0.15) 0%,
        rgba(5, 7, 13, 0) 45%,
        rgba(5, 7, 13, 0.35) 72%,
        rgba(5, 7, 13, 0.88) 90%,
        #05070d 100%
    );
}

.hero-copy {
    position: relative;
    z-index: 10;
    width: min(440px, 86vw);
    padding-left: clamp(24px, 4vw, 72px);
    padding-top: clamp(70px, 13vh, 150px);
}

.hero-heading {
    font-size: clamp(2.4rem, 4vw, 4.9rem);
    line-height: 1.42;
    letter-spacing: 0.18em;
}

.hero-tagline {
    margin-top: 30px;
    font-family: Arial, sans-serif;
    font-size: clamp(0.9rem, 1.15vw, 1.2rem);
    line-height: 1.6;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0;
    transform: translateY(24px);
    animation: revealLine 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 2.8s;
}

.hero-tagline span {
    color: var(--accent);
    margin: 0 10px;
}

.hero-accent {
    width: 60px;
    height: 2px;
    margin: 38px 0;
    background: var(--accent);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
    animation: revealAccent 0.8s ease-out forwards;
    animation-delay: 3.2s;
}

.hero-description {
    max-width: 380px;
    font-family: Arial, sans-serif;
    font-size: clamp(1.05rem, 1.18vw, 1.22rem);
    line-height: 1.85;
    color: var(--muted);
    opacity: 0;
    transform: translateY(24px);
    animation: revealLine 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 3.5s;
}

.hero-capabilities {
    position: absolute;
    z-index: 10;
    left: clamp(24px, 4vw, 72px);
    bottom: clamp(24px, 5vh, 60px);
    display: flex;
    gap: clamp(18px, 3vw, 50px);
    align-items: flex-start;
    opacity: 0;
    transform: translateY(24px);
    animation: revealIcons 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 4s;
}

.capability {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
    max-width: 340px;
    gap: 0.5rem;
    padding: 1.1rem 1.2rem 0.7rem;
    margin-bottom: 2rem;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    background: var(--dark-card);
    box-shadow: 0 2px 18px rgba(34, 34, 34, 0.08);
    color: var(--white);
    text-decoration: none;
    font-family: "Orbitron", sans-serif;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: border 0.18s, box-shadow 0.18s, background 0.18s, transform 0.25s;
}

.capability img {
    width: clamp(50px, 4.5vw, 72px);
    height: clamp(50px, 4.5vw, 72px);
    margin-bottom: 12px;
    filter: brightness(1.15);
}

.capability span {
    font-family: Arial, sans-serif;
    font-size: clamp(0.7rem, 0.82vw, 0.92rem);
    line-height: 1.35;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
}

.capability:hover,
.capability:focus-visible {
    border-color: var(--accent);
    background: rgba(245, 158, 11, 0.09);
    box-shadow: 0 4px 32px rgba(245, 158, 11, 0.13);
    transform: translateY(-5px);
}

.capability:hover img,
.capability:focus-visible img {
    filter:
        brightness(1.15)
        drop-shadow(0 0 8px rgba(245, 158, 11, 0.8))
        drop-shadow(0 0 20px rgba(245, 158, 11, 0.4));
}

/* STORY SECTIONS */

.content-section {
    position: relative;
    min-height: 100vh;
    padding: clamp(48px, 7vh, 92px) clamp(24px, 5vw, 90px);
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 20%, rgba(245, 158, 11, 0.11), transparent 28%),
        radial-gradient(circle at 82% 62%, rgba(34, 197, 94, 0.08), transparent 34%),
        linear-gradient(180deg, #05070d 0%, #071019 48%, #05070d 100%);
}

.content-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}

.technologies-section,
.available-platform-section {
    background:
        radial-gradient(circle at 76% 22%, rgba(245, 158, 11, 0.12), transparent 28%),
        radial-gradient(circle at 14% 68%, rgba(34, 197, 94, 0.08), transparent 34%),
        linear-gradient(180deg, #05070d 0%, #081018 48%, #05070d 100%);
}

.engineering-section {
    background:
        radial-gradient(circle at 24% 74%, rgba(245, 158, 11, 0.11), transparent 30%),
        radial-gradient(circle at 78% 32%, rgba(34, 197, 94, 0.075), transparent 34%),
        linear-gradient(180deg, #05070d 0%, #071019 50%, #05070d 100%);
}

.section-shell {
    position: relative;
    z-index: 2;
    max-width: 1380px;
    min-height: 76vh;
    margin: 0 auto;
}

.section-header {
    display: grid;
    grid-template-columns: minmax(260px, 0.62fr) minmax(420px, 1.38fr);
    gap: clamp(28px, 5vw, 78px);
    align-items: start;
    margin-bottom: clamp(28px, 4vh, 44px);
}

.section-kicker {
    margin-bottom: 24px;
    font-family: "Orbitron", sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.32em;
    color: var(--accent);
    opacity: 0;
    transform: translateY(24px);
}

.section-kicker.in-view {
    animation: revealLine 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.section-heading {
    max-width: 760px;
    font-size: clamp(1.55rem, 3.25vw, 3.6rem);
    line-height: 1.15;
    letter-spacing: 0.08em;
}

.section-lede {
    max-width: 760px;
    margin-top: 22px;
    font-family: Arial, sans-serif;
    font-size: clamp(1rem, 1.05vw, 1.12rem);
    line-height: 1.78;
    color: var(--muted);
}

.platform-extension-header {
    grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1.08fr);
    align-items: stretch;
}

.platform-extension-header .section-kicker {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.platform-architecture-visual {
    min-height: clamp(440px, 36vw, 620px);
}

.platform-architecture-image {
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--border);
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.085),
            rgba(255,255,255,0.025)
        );
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 60px rgba(0,0,0,0.3);
}

.platform-architecture-image img {
    width: 108%;
    height: 108%;
    object-fit: contain;
    filter: drop-shadow(0 22px 30px rgba(0,0,0,0.52));
}

.platform-foundation-box {
    max-width: 1380px;
    margin: 0 0 22px;
    padding: clamp(22px, 2.4vw, 34px);
    border-left: 2px solid rgba(245, 158, 11, 0.72);
    background:
        linear-gradient(
            90deg,
            rgba(245, 158, 11, 0.075),
            rgba(255, 255, 255, 0.025)
        );
}

.platform-foundation-box h3 {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(1rem, 1.3vw, 1.24rem);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
}

.platform-foundation-box p {
    margin-top: 12px;
    font-family: Arial, sans-serif;
    font-size: clamp(0.96rem, 1vw, 1.08rem);
    line-height: 1.78;
    color: var(--muted);
}

.section-glow,
.counter-glow,
.fpv-glow {
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.13);
    filter: blur(95px);
    pointer-events: none;
}

.section-glow {
    right: -160px;
    top: 20%;
}

.counter-glow {
    left: -180px;
    top: 28%;
}

.fpv-glow {
    right: -180px;
    top: 30%;
}

.capability-narrative,
.rd-narrative,
.highlight-list {
    display: grid;
    gap: 18px;
}

.capability-story,
.rd-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
    gap: 18px;
    align-items: stretch;
}

.capability-story {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
}

.reverse-story,
.rd-story.reverse-story {
    grid-template-columns: minmax(360px, 0.74fr) minmax(0, 1fr);
}

.capability-story.reverse-story {
    grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
}

.reverse-story .capability-copy,
.rd-story.reverse-story .rd-story-copy {
    grid-column: 2;
}

.reverse-story .capability-visual-placeholder,
.rd-story.reverse-story .story-card-grid,
.rd-story.reverse-story .architecture-placeholder {
    grid-column: 1;
    grid-row: 1;
}

.capability-copy,
.rd-story-copy {
    padding: clamp(22px, 2.4vw, 34px);
    border-left: 2px solid rgba(245, 158, 11, 0.72);
    background:
        linear-gradient(
            90deg,
            rgba(245, 158, 11, 0.075),
            rgba(255, 255, 255, 0.025)
        );
}

.capability-copy h3,
.rd-story-copy h3,
.story-card h4,
.highlight-card h3,
.about-panel h3 {
    font-family: "Orbitron", sans-serif;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
}

.capability-copy h3,
.rd-story-copy h3 {
    font-size: clamp(1rem, 1.4vw, 1.35rem);
}

.rd-story-copy span,
.highlight-card > span {
    display: block;
    margin-bottom: 16px;
    font-family: "Orbitron", sans-serif;
    font-size: 0.72rem;
    line-height: 1.6;
    letter-spacing: 0.18em;
    color: var(--accent);
}

.rd-copy-image {
    width: 100%;
    max-height: 420px;
    margin-top: 18px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 22px 30px rgba(0,0,0,0.46));
}

.capability-copy p,
.rd-story-copy p,
.story-card p,
.highlight-card p,
.about-copy p,
.available-platform-copy > p:not(.section-kicker):not(.section-lede) {
    margin-top: 16px;
    font-family: Arial, sans-serif;
    font-size: clamp(0.96rem, 1vw, 1.08rem);
    line-height: 1.78;
    color: var(--muted);
}

.capability-copy p,
.rd-story-copy p {
    max-width: 860px;
}

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

.zax-card-stack {
    grid-template-columns: 1fr;
}

.story-card,
.highlight-card,
.about-panel,
.engineering-asset,
.architecture-placeholder,
.capability-visual-placeholder {
    border: 1px solid var(--border);
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.085),
            rgba(255,255,255,0.025)
        );
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 60px rgba(0,0,0,0.3);
}

.story-card,
.highlight-card {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s ease, background 0.28s ease;
}

.story-card:hover,
.highlight-card:hover {
    border-color: rgba(245, 158, 11, 0.38);
    background: rgba(245, 158, 11, 0.08);
    transform: translateY(-6px);
}

.story-card {
    display: grid;
    grid-template-rows: minmax(150px, 1fr) auto;
    min-height: 260px;
    padding: 18px;
}

.story-card-large {
    grid-template-rows: minmax(220px, 1fr) auto;
}

.story-card img {
    width: 100%;
    height: 100%;
    max-height: 260px;
    object-fit: contain;
    filter: drop-shadow(0 22px 30px rgba(0,0,0,0.52));
}

.story-card h4 {
    margin-top: 18px;
    font-size: clamp(0.84rem, 0.95vw, 0.96rem);
}

.story-card p {
    margin-top: 10px;
    font-size: clamp(0.9rem, 0.98vw, 1.02rem);
    line-height: 1.7;
}

.highlight-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
    column-gap: 28px;
    align-items: start;
    min-height: 260px;
    padding: 22px;
}

.highlight-card strong {
    display: block;
    margin-bottom: 5px;
    font-family: "Orbitron", sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    color: var(--accent);
    text-transform: uppercase;
}

.engineering-asset,
.architecture-placeholder,
.capability-visual-placeholder {
    display: grid;
    place-items: center;
    border-style: dashed;
    border-color: rgba(245, 158, 11, 0.34);
    background:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        rgba(5, 7, 13, 0.42);
    background-size: 24px 24px;
}

.engineering-asset {
    grid-row: span 5;
    min-height: 210px;
    overflow: hidden;
}

.engineering-asset img {
    width: 100%;
    height: 100%;
    max-height: 320px;
    object-fit: contain;
    filter: drop-shadow(0 22px 30px rgba(0,0,0,0.52));
}

.architecture-placeholder {
    min-height: 260px;
}

.architecture-placeholder img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
}

.capability-visual-placeholder {
    min-height: 190px;
}

.capability-visual-placeholder img {
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
    display: block;
}

.architecture-placeholder span,
.capability-visual-placeholder span {
    max-width: 240px;
    font-family: "Orbitron", sans-serif;
    font-size: 0.76rem;
    line-height: 1.8;
    letter-spacing: 0.18em;
    text-align: center;
    color: rgba(245, 158, 11, 0.72);
}

.available-platform-layout,
.about-layout {
    display: grid;
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
}

.available-platform-layout {
    grid-template-columns: minmax(420px, 0.9fr) minmax(420px, 1fr);
}

.about-layout {
    grid-template-columns: minmax(480px, 1fr) minmax(360px, 0.58fr);
}

.available-platform-copy,
.about-copy {
    max-width: 780px;
}

.about-panel {
    padding: clamp(24px, 3vw, 42px);
}

.focus-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
    list-style: none;
}

.focus-list li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-family: Arial, sans-serif;
    font-size: 0.98rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
}

.about-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 34px;
}

.about-meta div {
    padding: 18px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.045);
}

.about-meta span {
    display: block;
    margin-bottom: 10px;
    font-family: "Orbitron", sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: var(--accent);
}

.about-meta strong {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    color: var(--white);
}

/* FOOTER */

.site-footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    background: #05070d;
    padding: 70px 24px 24px;
}

.footer-inner {
    max-width: 1380px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

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

.footer-brand h2 {
    font-family: "Orbitron", sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    color: var(--white);
}

.footer-brand p {
    margin-top: 12px;
    font-family: Arial, sans-serif;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-company {
    display: flex;
    gap: 80px;
}

.footer-item span {
    display: block;
    margin-bottom: 12px;
    font-family: "Orbitron", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    color: var(--accent);
}

.footer-item p {
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--white);
}

.footer-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid transparent;
    background: transparent;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.footer-social-icon {
    width: 32px;
    height: 32px;
    max-width: 32px;
    max-height: 32px;
    flex: 0 0 auto;
    display: block;
    object-fit: contain;
    vertical-align: middle;
}

.footer-link:hover,
.footer-link:focus-visible {
    border-color: transparent;
    background: transparent;
    box-shadow: 0 0 18px rgba(10, 102, 194, 0.18);
}

.footer-bottom {
    max-width: 1380px;
    margin: 50px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-family: Arial, sans-serif;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* ANIMATIONS */

@keyframes revealLine {
    from {
        opacity: 0;
        transform: translateY(var(--heading-rise));
        filter: blur(var(--heading-blur));
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes revealAccent {
    from {
        opacity: 0;
        transform: scaleX(0);
    }

    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes revealIcons {
    from {
        opacity: 0;
        transform: translateY(24px);
        filter: blur(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* RESPONSIVE */

@media (max-width: 1320px), (max-height: 840px) {
    .hero-capabilities {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: min(100%, 1200px);
        margin: clamp(28px, 4vh, 48px) clamp(24px, 4vw, 72px) 0;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

@media (max-width: 1180px) {
    .section-header,
    .platform-extension-header,
    .about-layout,
    .available-platform-layout,
    .capability-story,
    .capability-story.reverse-story,
    .rd-story,
    .rd-story.reverse-story {
        grid-template-columns: 1fr;
    }

    .reverse-story .capability-copy,
    .reverse-story .capability-visual-placeholder,
    .rd-story.reverse-story .rd-story-copy,
    .rd-story.reverse-story .story-card-grid,
    .rd-story.reverse-story .architecture-placeholder {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 1100px) {
    .hero-art img {
        right: -18vw;
        height: 100vh;
        height: 100svh;
    }

    .hero-copy {
        width: min(520px, 88vw);
    }

    .hero-capabilities {
        right: 24px;
        flex-wrap: wrap;
    }
}

@media (max-width: 900px) {
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-company {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 760px) {
    .mobile-hero-logo {
        position: relative;
        z-index: 12;
        display: flex;
        justify-content: center;
        padding: 18px 20px 0;
        pointer-events: none;
    }

    .mobile-hero-logo img {
        width: min(220px, 58vw);
        height: auto;
        max-width: min(220px, 58vw);
        max-height: min(220px, 58vw);
        opacity: 1;
        filter:
            brightness(1.14)
            contrast(1.08)
            drop-shadow(0 14px 24px rgba(0, 0, 0, 0.58))
            drop-shadow(0 0 24px rgba(245, 158, 11, 0.28));
    }

    .hero-art img {
        right: -70vw;
        opacity: 0.48;
    }

    .hero::before {
        background: rgba(5, 7, 13, 0.78);
    }

    .hero-copy {
        padding-right: 24px;
        padding-top: 24px;
    }

    .hero-heading {
        letter-spacing: 0.11em;
    }

    .hero-capabilities {
        left: 16px;
        right: 16px;
        bottom: 18px;
        justify-content: center;
        gap: 14px;
    }

    .capability {
        width: 82px;
        min-width: 82px;
        padding: 0.9rem 0.65rem 0.7rem;
    }

    .content-section {
        min-height: auto;
        padding: 80px 20px;
    }

    .section-shell {
        min-height: auto;
    }

    .section-heading {
        letter-spacing: 0.06em;
    }

    .story-card-grid,
    .available-platform-visuals,
    .about-meta {
        grid-template-columns: 1fr;
    }

    .story-card,
    .highlight-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .story-card img {
        min-height: 190px;
    }
}
