:root {
    --bg-dark: #010101;
    --bg-black: #000000;
    --bg-cream: #f1f0ea;
    --bg-gray: #6c6e6b;
    --bg-olive: #505544;
    --bg-mid: #8e9291;
    --text-dark: #010101;
    --text-light: #ffffff;
    --line-dark: rgba(255, 255, 255, 0.18);
    --line-light: rgba(1, 1, 1, 0.24);
    --accent-volt: #dff140;
    --font: "HelveticaNowDisplay", "Helvetica Now Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --gutter: clamp(20px, 2.222vw, 36px);
    --section-pad: clamp(42px, 3.333vw, 54px);
    --section-gap: clamp(28px, 2.222vw, 36px);
    --grid-gap-x: clamp(5px, 1.25vw, 21px);
    --grid-gap-y: clamp(5px, 1.389vw, 23px);
    --nav-height: 72px;
    --scale: clamp(1, calc(1 + (100vw - 1440px) * 0.000234375), 1.125);
    --type-section-heading: clamp(40px, calc(40px * var(--scale)), 45px);
    --type-card-title: clamp(32px, calc(32px * var(--scale)), 36px);
    --type-subtitle: clamp(24px, calc(24px * var(--scale)), 27px);
    --type-body-anduril: clamp(16.8px, calc(16.8px * var(--scale)), 18.9px);
    --type-cta-anduril: clamp(14px, calc(14px * var(--scale)), 15.75px);
    --type-eyebrow-anduril: clamp(12px, calc(12px * var(--scale)), 13.5px);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

@font-face {
    font-family: "HelveticaNowDisplay";
    src: local("HelveticaNowDisplay-Regular"), local("Helvetica Now Display Regular"), local("Helvetica Now Display");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "HelveticaNowDisplay";
    src:
        url("assets/fonts/HelveticaNowDisplay-Medium.woff2") format("woff2"),
        local("HelveticaNowDisplay-Medium"),
        local("Helvetica Now Display Medium");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "HelveticaNowDisplay";
    src: local("HelveticaNowDisplay-Bold"), local("Helvetica Now Display Bold");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    min-width: 320px;
    font-family: var(--font);
    font-weight: 400;
    font-size: calc(16.8px * var(--scale));
    line-height: 1.2;
    letter-spacing: -0.144px;
    color: var(--text-light);
    background: var(--bg-dark);
    overflow-x: hidden;
}

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

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

button {
    font: inherit;
    color: inherit;
}

.page-shell {
    width: 100%;
    background: var(--bg-dark);
}

main,
.footer {
    transition: filter 0.7s var(--ease), opacity 0.7s var(--ease);
}

body.nav-panel-open main,
body.nav-panel-open .footer {
    filter: blur(9px);
    opacity: 0.62;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    color: var(--text-light);
    background: var(--bg-black);
    transform: translateY(0);
    transition: transform 0.9s var(--ease);
}

.nav.is-hidden {
    transform: translateY(-100%);
}

.nav-inner {
    height: 100%;
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
    align-items: center;
    gap: 24px;
    padding: 0 var(--gutter);
}

.nav-logo,
.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
}

.brand-mark {
    display: block;
    width: 36px;
    height: 19px;
    color: currentColor;
    background: currentColor;
    mask: url("public/Untitled%20design%20%283%29.svg") center / cover no-repeat;
    -webkit-mask: url("public/Untitled%20design%20%283%29.svg") center / cover no-repeat;
}

.brand-word {
    font-size: calc(15px * var(--scale));
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.144px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 3.2vw, 58px);
}

.nav-links a,
.nav-panel-trigger,
.text-link,
.tile-link,
.page-cta,
.detail-back {
    background: transparent;
    border: 0;
    padding: 0;
    font-size: calc(14px * var(--scale));
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.144px;
    text-transform: capitalize;
}

.text-link,
.page-cta,
.detail-back {
    display: inline-block;
    margin-top: 18px;
}

.nav-links a {
    font-size: calc(15px * var(--scale));
    line-height: 1.2;
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(24px, 2.5vw, 44px);
}

.nav-panel-trigger {
    cursor: pointer;
    color: currentColor;
}

.nav-panel-trigger--company {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-trigger-sign {
    display: inline-block;
    min-width: 0.75em;
    transition: transform 0.45s var(--ease);
}

.nav-panel-trigger[aria-expanded="true"] .nav-trigger-sign {
    transform: rotate(180deg);
}

.nav-cta {
    color: currentColor !important;
}

.nav-panel {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    color: var(--text-light);
    background: var(--bg-black);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    filter: blur(7px);
    transition:
        max-height 0.9s var(--ease),
        opacity 0.55s var(--ease),
        transform 0.9s var(--ease),
        filter 0.7s var(--ease);
}

.nav-panel.is-open {
    max-height: 430px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    filter: blur(0);
}

.nav-panel-inner {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(150px, 0.44fr));
    gap: clamp(38px, 5.4vw, 92px);
    padding: 54px var(--gutter) 64px;
}

.nav-panel-label {
    display: block;
    margin-bottom: 18px;
    font-size: calc(11px * var(--scale));
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.144px;
    text-transform: uppercase;
}

.nav-panel-overview p {
    max-width: 286px;
    font-size: calc(14px * var(--scale));
    line-height: 1.18;
    letter-spacing: -0.144px;
}

.nav-panel-contact {
    display: grid;
    gap: 10px;
    margin-top: 38px;
    font-size: calc(14px * var(--scale));
    line-height: 1.05;
}

.nav-panel-contact span {
    font-size: calc(11px * var(--scale));
    text-transform: uppercase;
}

.nav-panel-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-panel-column a {
    padding: 4px 0;
    font-size: calc(17px * var(--scale));
    line-height: 1.18;
    letter-spacing: -0.144px;
}

.nav-search-form {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 84px var(--gutter) 72px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.nav-search-form input {
    width: 100%;
    color: var(--text-light);
    background: transparent;
    border: 0;
    outline: 0;
    font: inherit;
    font-size: calc(18px * var(--scale));
    line-height: 1.1;
    letter-spacing: -0.144px;
    text-transform: uppercase;
}

.nav-search-form input::placeholder {
    color: rgba(255, 255, 255, 0.72);
    opacity: 1;
}

.nav-search-form button {
    cursor: pointer;
    color: currentColor;
    background: transparent;
    border: 0;
    font-size: 30px;
    line-height: 1;
}

.nav-mobile-toggle {
    display: none;
    justify-self: end;
    width: 32px;
    height: 32px;
    background: transparent;
    border: 0;
}

.nav-mobile-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    margin: 7px auto;
    background: currentColor;
}

.hero {
    min-height: 100vh;
    height: 100vh;
    padding-top: var(--nav-height);
    position: relative;
    display: block;
    overflow: hidden;
    color: var(--text-light);
    background: var(--bg-black);
}

.hero .hero-video-bg {
    position: absolute;
    top: calc(var(--nav-height) + 2px);
    left: var(--gutter);
    width: calc(100% - (var(--gutter) * 2));
    height: calc(100% - var(--nav-height) - 2px);
    object-fit: cover;
    opacity: 1;
    filter: grayscale(0.14) contrast(1.08) brightness(1);
}

.hero-video-scrim {
    position: absolute;
    inset: calc(var(--nav-height) + 2px) var(--gutter) 0 var(--gutter);
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.14) 54%, rgba(0, 0, 0, 0.28) 100%),
        radial-gradient(circle at 50% 38%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1) 68%);
    pointer-events: none;
}

.hero-stage {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 2.5vw, 36px);
    padding: 6vh var(--gutter) 12vh;
    text-align: left;
    pointer-events: none;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.hero-stage.is-scramble-hidden {
    opacity: 0;
    transform: translateY(8px);
}

.hero .hero-scramble {
    display: inline-block;
    width: 100%;
    max-width: 11.4em;
    margin-top: 0;
    text-align: center;
    transform: none;
    font-family: "HelveticaNowDisplay", "Helvetica Now Display", var(--font);
    /* Scale with viewport so the longest line fits (~11.4em wide). */
    font-size: clamp(18px, calc((100vw - (2 * var(--gutter))) / 11.4), 72px);
    line-height: 0.88;
    font-weight: 500;
    letter-spacing: -0.052em;
    text-transform: none;
    color: var(--text-light);
    font-variant-ligatures: none;
}

.hero .hero-scramble span {
    display: block;
    min-height: 0.88em;
    text-align: center;
    white-space: nowrap;
    overflow-wrap: normal;
}

.hero .hero-scramble span:nth-child(1) {
    transform: none;
}

.hero .hero-scramble span:nth-child(2) {
    transform: none;
}

.hero .hero-scramble span:nth-child(3) {
    transform: none;
}

.hero .hero-scramble span:nth-child(4) {
    transform: none;
}

.hero-system-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.6vw, 38px);
    font-size: clamp(12px, 0.92vw, 15px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.brand-mark--hero {
    width: clamp(58px, 5.8vw, 86px);
    height: clamp(30px, 3vw, 44px);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.hero-stage.is-logo-visible .brand-mark--hero {
    opacity: 1;
    transform: translateY(0);
}

.hero-grid {
    min-height: calc(96vh - var(--nav-height) - 180px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--section-gap);
    padding: var(--section-pad) var(--gutter);
}

.eyebrow,
.label,
.section-index,
.tile-meta,
.stat-label,
.page-meta,
.detail-kicker,
.footer-label {
    font-size: calc(12px * var(--scale));
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: 0.48px;
    text-transform: uppercase;
}

span.section-index {
    font-size: 35px;
}

.hero h1,
.detail-title {
    font-size: clamp(48px, 4.444vw, 72px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.hero h1 {
    max-width: 690px;
    margin-top: var(--section-gap);
}

.hero-mission {
    max-width: 620px;
    display: grid;
    gap: 18px;
}

.hero-mission p,
.section-lead,
.detail-lead {
    font-size: calc(24px * var(--scale));
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.hero-note,
.tile-text,
.comparison-text,
.metric-desc,
.article-row-text {
    font-size: calc(16.8px * var(--scale));
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -0.144px;
}

.hero-media {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background: var(--bg-mid);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
    filter: grayscale(0.45) contrast(1.08);
}

.hero-media-caption {
    position: absolute;
    left: var(--gutter);
    right: var(--gutter);
    bottom: var(--section-pad);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: calc(64px * var(--scale));
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text-light);
}

.mission-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    min-height: 180px;
    color: var(--text-dark);
    background: var(--bg-cream);
    border-top: 1px solid var(--line-light);
}

.mission-card {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px var(--gutter) 22px;
    border-right: 1px solid var(--line-light);
}

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

.mission-card strong {
    max-width: 320px;
    font-size: calc(24px * var(--scale));
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.section {
    width: 100%;
    padding: var(--section-pad) 0;
}

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

.section--gray {
    color: var(--text-light);
    background: var(--bg-gray);
}

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

.container {
    width: 100%;
    padding: 0 var(--gutter);
}

.section > .container,
.section > .grid-section {
    display: flex;
    flex-direction: column;
    gap: var(--section-gap);
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: var(--section-gap);
    margin-bottom: 0;
}

.section-header--single {
    display: block;
}

.section-title {
    max-width: 720px;
    font-size: var(--type-section-heading);
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: capitalize;
}

.section-lead {
    max-width: 560px;
    margin-top: 18px;
}

#platform {
    padding-top: var(--grid-gap-y);
    padding-bottom: 32px;
}

#platform .grid-section {
    gap: 0;
}

.grid-section {
    width: calc(100% - (var(--gutter) * 2));
    margin: 0 var(--gutter);
}

.link-grid,
.media-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: var(--grid-gap-y) var(--grid-gap-x);
}

.platform-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--grid-gap-y) var(--grid-gap-x);
}

.feature-tile,
.media-tile {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    color: var(--text-light);
    background: var(--bg-mid);
}

.platform-grid > .platform-tile {
    grid-column: auto !important;
    aspect-ratio: 1 / 1;
    min-height: 0;
}

.platform-tile .tile-media img {
    object-fit: cover;
    padding: 0;
    filter: none;
}

.feature-tile--wide,
.media-tile--wide {
    grid-column: span 3;
}

.media-explore-more {
    grid-column: span 3;
    position: relative;
    min-height: 440px;
    overflow: hidden;
    background: var(--bg-black);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--text-light);
    text-decoration: none;
    transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.media-explore-more:hover,
.media-explore-more:focus-visible {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.04);
}

.media-explore-more .tile-body {
    min-height: 440px;
}

.media-explore-more-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.media-explore-more-heading .tile-title {
    flex: 1;
    margin: 0;
}

.media-explore-more-heading .tile-arrow {
    flex-shrink: 0;
    font-size: var(--type-card-title);
    line-height: 1.15;
}

.media-explore-more:hover .tile-arrow,
.media-explore-more:focus-visible .tile-arrow {
    transform: translate(3px, -3px);
}

.link-grid > .feature-tile:not(.feature-tile--wide),
.media-grid > .media-tile:not(.media-tile--wide) {
    grid-column: span 2;
}

.feature-tile--tall {
    min-height: 640px;
}

.tile-media {
    position: absolute;
    inset: 0;
    background: var(--bg-mid);
}

.tile-media img,
.tile-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.12) brightness(1.08) contrast(1.08);
    transition: transform 0.7s var(--ease), filter 0.7s var(--ease), opacity 0.7s var(--ease);
}

.tile-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(1, 1, 1, 0.9) 100%);
    transition: background 0.45s var(--ease);
}

.section--dark .feature-tile:not(.platform-tile) .tile-media img,
.section--dark .feature-tile:not(.platform-tile) .tile-media video {
    filter: grayscale(0.08) brightness(1.32) contrast(1.22);
}

.tile-body {
    position: relative;
    z-index: 1;
    min-height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 20px 56px;
}

.platform-tile .tile-body {
    height: 100%;
    min-height: 0;
    justify-content: flex-end;
    padding: 22px 64px 22px 22px;
}

.tile-title {
    max-width: 580px;
    font-size: var(--type-card-title);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.tile-text {
    max-width: 410px;
    font-size: var(--type-body-anduril);
    line-height: 1.2;
    letter-spacing: -0.144px;
}

.platform-tile .tile-text {
    opacity: 0;
    max-height: 0;
    transform: translateY(8px);
    overflow: hidden;
    transition: opacity 0.35s var(--ease), max-height 0.35s var(--ease), transform 0.35s var(--ease);
}

.tile-footer {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1;
    display: block;
}

.platform-tile .tile-footer {
    left: auto;
    right: 22px;
    bottom: 22px;
}

.tile-arrow {
    display: inline-block;
    font-size: var(--type-subtitle);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.01em;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.platform-tile:hover .tile-media img,
.platform-tile:focus-visible .tile-media img {
    transform: scale(1.045);
    filter: grayscale(0.05) brightness(1.18) contrast(1.18);
}

.platform-tile:hover .tile-media::after,
.platform-tile:focus-visible .tile-media::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 24%, rgba(1, 1, 1, 0.92) 100%);
}

.platform-tile:hover .tile-text,
.platform-tile:focus-visible .tile-text {
    opacity: 1;
    max-height: 80px;
    transform: translateY(0);
}

.platform-tile:hover .tile-arrow,
.platform-tile:focus-visible .tile-arrow,
.anduril-news-row:hover .tile-arrow,
.anduril-news-row:focus-visible .tile-arrow {
    transform: translate(3px, -3px);
}

.tile-link::after,
.text-link::after,
.page-cta::after {
    content: " ↗";
}

.text-link--primary,
.tile-link--primary,
.page-cta--primary,
.section--cream .text-link,
.section--cream .tile-link,
.section--gray .tile-link {
    color: var(--text-dark);
}

.news-section {
    padding: 56px 0 64px;
}

.news-container {
    gap: 0 !important;
}

.news-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 1fr);
    align-items: end;
    gap: var(--section-gap);
    padding-bottom: 21px;
    border-bottom: 1px solid var(--line-light);
}

.news-heading .section-title {
    max-width: none;
    color: var(--text-dark);
    font-size: 35px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.news-heading .text-link {
    width: max-content;
    margin: 0;
    font-size: 20px;
    line-height: 1.05;
}

.anduril-news-list {
    display: grid;
}

.anduril-news-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.98fr);
    gap: var(--section-gap);
    padding: 28px 0 32px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--line-light);
}

.anduril-news-copy {
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.anduril-news-copy time,
.anduril-news-row time {
    font-size: 13px;
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: 0.48px;
    text-transform: uppercase;
}

.anduril-news-copy h3 {
    max-width: 80%;
    margin-top: 12px;
    font-size: 25px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.anduril-news-copy p {
    max-width: 380px;
    margin-top: auto;
    font-size: var(--type-body-anduril);
    line-height: 1.2;
    letter-spacing: -0.144px;
}

.anduril-news-copy .text-link {
    margin-top: 48px;
    font-size: var(--type-cta-anduril);
    line-height: 1.05;
}

.video-illustrative-tag {
    position: absolute;
    right: clamp(10px, 1.1vw, 14px);
    bottom: clamp(10px, 1.1vw, 14px);
    z-index: 4;
    font-family: "HelveticaNowDisplay", "Helvetica Now Display", Helvetica, Arial, sans-serif;
    font-size: clamp(9px, 0.72vw, 11px);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.5);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    user-select: none;
}

.hero .video-illustrative-tag {
    right: calc(var(--gutter) + clamp(10px, 1.1vw, 14px));
    bottom: clamp(10px, 1.1vw, 14px);
    z-index: 3;
}

.anduril-news-media {
    position: relative;
    height: clamp(322px, 26.389vw, 380px);
    overflow: hidden;
    background: var(--bg-mid);
}

.anduril-news-media .video-illustrative-tag {
    color: rgba(1, 1, 1, 0.42);
    text-shadow: none;
}

.anduril-news-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.1) contrast(1.08);
}

.anduril-news-row {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--line-light);
}

.anduril-news-row > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.anduril-news-row h3 {
    margin-top: 12px;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.anduril-news-row .text-link {
    margin-top: 48px;
    font-size: var(--type-cta-anduril);
    line-height: 1.05;
}

.anduril-news-row--with-media {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 419px;
    grid-template-areas:
        "copy media";
    column-gap: var(--section-gap);
    row-gap: 0;
    align-items: start;
}

.anduril-news-row--with-media time {
    grid-area: copy;
    align-self: start;
}

.anduril-news-row--with-media > div {
    grid-area: copy;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
}

.anduril-news-row--with-media h3 {
    margin: 0;
}

.anduril-news-row--with-media .text-link {
    margin-top: 0;
}

.anduril-news-row-media {
    grid-area: media;
    justify-self: end;
    width: 419px;
    height: 242px;
    margin: 0;
    overflow: hidden;
    background: var(--bg-mid);
}

.anduril-news-row-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid currentColor;
}

.metric-tile {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px 20px;
    border-right: 1px solid currentColor;
}

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

.metric-number {
    font-size: calc(40px * var(--scale));
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.approach-header {
    display: grid;
    grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr);
    gap: var(--section-gap);
    align-items: start;
}

.approach-header .section-title {
    max-width: 820px;
    font-size: clamp(42px, 4.2vw, 68px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.035em;
    text-transform: none;
}

.approach-statement {
    max-width: 820px;
    font-size: clamp(28px, 2.7vw, 44px);
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.approach-header .section-lead {
    max-width: 760px;
    margin-top: 22px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--grid-gap-y) var(--grid-gap-x);
    border: 0;
}

.approach-card {
    position: relative;
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 48px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #0c0e0a;
    cursor: crosshair;
    transition: box-shadow 0.35s var(--ease);
}

.approach-card:hover,
.approach-card:focus-within {
    box-shadow: inset 0 0 0 1px rgba(223, 241, 64, 0.45);
}

.approach-card-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    opacity: 0.45;
    transition: opacity 0.45s var(--ease);
}

.approach-card:hover .approach-card-video,
.approach-card:focus-within .approach-card-video {
    opacity: 1;
}

.approach-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 14, 10, 0) 38%, rgba(12, 14, 10, 0.78) 100%);
    z-index: 1;
    pointer-events: none;
}

.approach-card > .approach-number,
.approach-card > .approach-card-body {
    position: relative;
    z-index: 2;
}

.approach-card .video-illustrative-tag {
    z-index: 3;
}

.approach-card-body {
    flex-shrink: 0;
}

.approach-number {
    font-size: calc(15px * var(--scale));
    line-height: 1.05;
    letter-spacing: -0.144px;
}

.approach-card h3 {
    margin-bottom: 10px;
    font-size: var(--type-card-title);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.approach-card p {
    max-width: 440px;
    font-size: var(--type-body-anduril);
    line-height: 1.2;
    letter-spacing: -0.144px;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line-light);
}

.comparison-col {
    border-right: 1px solid var(--line-light);
}

.comparison-col:last-child {
    border-right: 0;
}

.comparison-head,
.comparison-row {
    padding: 18px 0;
    border-bottom: 1px solid var(--line-light);
}

.comparison-row {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 24px;
    padding-right: 28px;
}

.comparison-value {
    font-size: calc(32px * var(--scale));
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--grid-gap-x);
}

/* Home #team: five profiles — 3 columns; row 1 full; row 2 Jay under Ronjon, Anastasiya under Yasaman, third column empty */
.team-grid--5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-tile--anastasiya .tile-media img {
    object-position: 58% 20%;
}

.team-tile {
    position: relative;
    min-height: 390px;
    display: grid;
    grid-template-rows: 1fr auto;
    color: var(--text-light);
    background: var(--bg-black);
    overflow: hidden;
}

.team-tile .tile-media {
    position: relative;
    inset: auto;
    aspect-ratio: 4 / 3;
}

.team-tile .tile-body {
    min-height: auto;
    padding: 16px 0 34px;
    color: var(--text-dark);
    background: var(--bg-cream);
}

.team-tile .tile-title {
    font-size: calc(32px * var(--scale));
    font-weight: 700;
}

.team-tile .tile-text,
.team-signals {
    display: none;
}

.team-tile .tile-footer {
    display: block;
    left: 0;
    right: auto;
    bottom: 0;
    color: var(--text-dark);
}

.media-tile {
    min-height: 430px;
}

.footer {
    color: var(--text-light);
    background: var(--bg-black);
}

.footer-inner {
    min-height: 430px;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(460px, 1fr);
    gap: 48px;
    padding: var(--section-pad) var(--gutter);
}

.footer-slogan {
    max-width: 520px;
    margin-top: 180px;
    font-size: calc(18px * var(--scale));
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: -0.176px;
}

.footer-copy {
    margin-top: 110px;
    font-size: calc(12px * var(--scale));
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: 0.48px;
    text-transform: capitalize;
}

.brand-word--large {
    font-size: calc(15px * var(--scale));
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.144px;
}

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

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-label {
    margin-bottom: 32px;
    color: var(--text-light);
}

.footer a {
    font-size: calc(18px * var(--scale));
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: -0.176px;
    text-transform: none;
}

.fade-in,
.mission-reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-in.visible,
.mission-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 {
    transition-delay: 0.06s;
}

.fade-in-delay-2 {
    transition-delay: 0.12s;
}

.fade-in-delay-3 {
    transition-delay: 0.18s;
}

.fade-in-delay-4 {
    transition-delay: 0.24s;
}

.detail-main {
    padding-top: var(--nav-height);
    color: var(--text-dark);
    background: var(--bg-cream);
}

.detail-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 720px;
}

.detail-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--section-gap);
    padding: var(--section-pad) var(--gutter);
}

.detail-title {
    max-width: 760px;
    margin-top: var(--section-gap);
}

.detail-lead {
    max-width: 620px;
}

.detail-hero-media {
    min-height: 100%;
    background: var(--bg-mid);
}

.detail-hero-media img,
.detail-hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.18) contrast(1.04);
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}

.detail-meta-item {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px var(--gutter);
    border-right: 1px solid var(--line-light);
}

.detail-meta-item:last-child {
    border-right: 0;
}

.detail-meta-item strong {
    max-width: 320px;
    font-size: calc(24px * var(--scale));
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.detail-section {
    padding: var(--section-pad) var(--gutter);
}

.detail-two-col {
    display: grid;
    grid-template-columns: 220px minmax(0, 760px);
    gap: var(--section-gap);
}

.detail-copy {
    display: grid;
    gap: 18px;
}

.detail-copy p,
.detail-copy li {
    font-size: calc(24px * var(--scale));
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.detail-copy ul {
    display: grid;
    gap: 14px;
    list-style: none;
}

.detail-copy li {
    padding-top: 14px;
    border-top: 1px solid var(--line-light);
}

.overview-body .detail-main {
    color: var(--text-light);
    background: var(--bg-black);
}

.overview-body .detail-hero {
    min-height: calc(100vh - var(--nav-height));
    background: var(--bg-black);
    border-bottom: 1px solid var(--line-dark);
}

.overview-body .detail-hero-copy {
    min-height: calc(100vh - var(--nav-height));
}

.overview-body .detail-back,
.overview-body .detail-kicker,
.overview-body .page-meta,
.overview-body .section-index {
    color: rgba(255, 255, 255, 0.64);
}

.overview-body .detail-title {
    max-width: 820px;
    color: var(--text-light);
    font-size: clamp(56px, 5vw, 88px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.overview-body .detail-lead {
    color: rgba(255, 255, 255, 0.82);
}

.overview-body .detail-meta-grid {
    color: var(--text-light);
    background: var(--bg-gray);
    border-color: rgba(255, 255, 255, 0.22);
}

.overview-body .detail-meta-item {
    border-color: rgba(255, 255, 255, 0.22);
}

.overview-body .detail-meta-item strong {
    color: var(--text-light);
}

.overview-body .detail-section {
    color: var(--text-light);
    background: var(--bg-black);
    border-bottom: 1px solid var(--line-dark);
}

.overview-body .detail-section:nth-of-type(even) {
    background: var(--bg-gray);
}

.overview-body .detail-copy p,
.overview-body .detail-copy li {
    color: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.22);
}

.overview-body .detail-copy strong {
    color: var(--text-light);
    font-weight: 400;
}

.overview-promo {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background:
        radial-gradient(circle at 74% 22%, rgba(223, 241, 64, 0.08), transparent 18%),
        linear-gradient(135deg, #11140f 0%, #3e4338 100%);
}

.overview-promo::before,
.overview-promo::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.overview-promo::before {
    inset: 42px;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.overview-promo::after {
    left: 42px;
    right: 42px;
    bottom: 42px;
    height: 1px;
    background: rgba(255, 255, 255, 0.28);
}

.overview-promo-inner {
    position: absolute;
    inset: 42px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 28px;
    padding: 22px;
}

.overview-promo-label,
.overview-promo-meta {
    font-size: calc(12px * var(--scale));
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

.overview-promo-title {
    align-self: center;
    max-width: 560px;
    color: var(--text-light);
    font-size: clamp(32px, 3vw, 54px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.overview-promo-visual {
    position: absolute;
    inset: 20% 8% 18% 24%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.9;
}

.overview-promo-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: grayscale(0.08) contrast(1.04) brightness(0.88);
}

.overview-promo .overview-promo-inner {
    z-index: 2;
}

.overview-promo:has(.overview-promo-video)::before {
    z-index: 1;
}

.overview-promo:has(.overview-promo-video)::after {
    z-index: 1;
}

.overview-promo:has(.overview-promo-video) .overview-promo-inner::before {
    content: "";
    position: absolute;
    inset: auto -22px -22px -22px;
    height: 44%;
    z-index: -1;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.76) 100%);
}

.overview-promo-visual::before {
    content: "";
    position: absolute;
    inset: 18%;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.035);
}

.overview-promo--mission {
    background: linear-gradient(135deg, #010101 0%, #505544 100%);
}

.overview-promo--science {
    background: linear-gradient(135deg, #010101 0%, #26332f 52%, #8e9291 100%);
}

.overview-promo--ai {
    background: linear-gradient(135deg, #010101 0%, #182119 48%, #6c6e6b 100%);
}

.overview-promo--vaccines {
    background: linear-gradient(135deg, #010101 0%, #1c2835 50%, #8e9291 100%);
}

.overview-promo--team {
    background: linear-gradient(135deg, #010101 0%, #2a2f2b 48%, #505544 100%);
}

.overview-promo--milestones {
    background: linear-gradient(135deg, #010101 0%, #1f262b 45%, #6c6e6b 100%);
}

.overview-promo--roadmap {
    background: linear-gradient(135deg, #010101 0%, #24291f 48%, #505544 100%);
}

.overview-promo--community {
    background: linear-gradient(135deg, #010101 0%, #1a1a13 45%, #6c6e6b 100%);
}

.overview-promo--faq {
    background: linear-gradient(135deg, #010101 0%, #20211d 48%, #8e9291 100%);
}

@media (max-width: 980px) {
    .nav-inner {
        grid-template-columns: 1fr auto auto;
    }

    .nav-actions {
        gap: 16px;
    }

    .nav-mobile-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        left: 0;
        right: 0;
        top: var(--nav-height);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 20px var(--gutter) 28px;
        color: var(--text-light);
        background: var(--bg-black);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        padding: 12px 0;
    }

    .nav-panel.is-open {
        max-height: calc(100vh - var(--nav-height));
        overflow-y: auto;
    }

    .nav-panel-inner {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 34px var(--gutter) 44px;
    }

    .nav-search-form {
        padding: 48px var(--gutter) 42px;
    }

    .hero-grid,
    .detail-hero,
    .footer-inner,
    .comparison {
        grid-template-columns: 1fr;
    }

    .approach-header,
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: auto;
    }

    .hero-media {
        min-height: 58vh;
    }

    .hero-media-caption {
        font-size: 32px;
    }

    .mission-strip,
    .metric-grid,
    .team-grid,
    .detail-meta-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .anduril-news-feature {
        grid-template-columns: 1fr;
    }

    .anduril-news-copy {
        min-height: 260px;
    }

    .feature-tile--wide,
    .media-tile--wide,
    .link-grid > .feature-tile:not(.feature-tile--wide),
    .media-grid > .media-tile:not(.media-tile--wide),
    .media-explore-more {
        grid-column: span 1;
        grid-row: auto;
    }

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

@media (max-width: 900px) {
    .hero .hero-scramble {
        max-width: 100%;
    }

    .hero .hero-scramble span {
        white-space: normal;
        text-wrap: balance;
        overflow-wrap: break-word;
    }
}

@media (max-width: 640px) {
    :root {
        --nav-height: 64px;
    }

    .hero {
        min-height: 100vh;
        height: 100vh;
    }

    .hero-stage {
        min-height: calc(100vh - var(--nav-height));
        padding: 7vh var(--gutter) 20vh;
    }

    .hero .hero-scramble {
        font-size: clamp(17px, calc((100vw - (2 * var(--gutter))) / 11.4), 56px);
        line-height: 0.9;
    }

    .hero-system-line {
        gap: 10px;
        font-size: 14px;
    }

    .brand-mark--hero {
        align-self: center;
        width: 58px;
        height: 30px;
    }

    .hero h1:not(.hero-scramble),
    .section-title,
    .detail-title {
        font-size: 32px;
        line-height: 1.15;
    }

    .hero-mission p,
    .section-lead,
    .detail-lead,
    .detail-copy p,
    .detail-copy li {
        font-size: 20px;
    }

    .mission-strip,
    .metric-grid,
    .team-grid,
    .link-grid,
    .media-grid,
    .detail-meta-grid,
    .footer-links {
        grid-template-columns: 1fr;
    }

    .feature-tile,
    .media-tile {
        min-height: 360px;
    }

    .platform-grid {
        grid-template-columns: 1fr;
    }

    .platform-grid > .platform-tile {
        min-height: 0;
    }

    .news-heading,
    .anduril-news-feature,
    .anduril-news-row {
        grid-template-columns: 1fr;
    }

    .anduril-news-feature {
        padding: 24px 0;
    }

    .anduril-news-copy {
        min-height: auto;
    }

    .anduril-news-copy p,
    .anduril-news-copy .text-link {
        margin-top: 22px;
    }

    .anduril-news-media {
        height: 260px;
    }

    .anduril-news-row {
        gap: 12px;
        align-items: start;
    }

    /* 16:9 locks card height; long copy gets clipped on narrow single-column layout */
    .approach-card {
        aspect-ratio: auto;
        height: auto;
        min-height: clamp(200px, 52vw, 300px);
        gap: clamp(16px, 4vw, 28px);
        padding: clamp(18px, 4vw, 22px);
    }

    .approach-card p {
        max-width: none;
        line-height: 1.35;
    }

    .anduril-news-row--with-media {
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "media";
    }

    .anduril-news-row-media {
        width: 100%;
        max-width: 419px;
        height: auto;
        aspect-ratio: 559 / 322;
    }

    .anduril-news-row .tile-arrow {
        justify-self: start;
    }

    .team-tile {
        min-height: 330px;
    }

    .detail-two-col {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
    }
}
