:root {
    --bg: #03070d;
    --line: rgba(255, 255, 255, .16);
    --line-soft: rgba(255, 255, 255, .09);
    --white: #f4f7fb;
    --blue: #2b6bff;
    --paper: #f3f4f6;
    --ink: #10141a;
    --muted: #9da7b4
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background: radial-gradient(circle at 70% 12%, rgba(43, 107, 255, .12), transparent 30%), linear-gradient(135deg, #02060b, #07111a 54%, #02060b)
}

a {
    color: inherit;
    text-decoration: none
}

img {
    display: block;
    max-width: 100%
}

.site-header {
    position: fixed;
    z-index: 40;
    top: 34px;
    left: 50px;
    right: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px
}

.brand img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(43, 107, 255, .4))
}

.brand span {
    font-size: 22px;
    letter-spacing: .38em;
    font-weight: 700
}

.nav {
    display: flex;
    align-items: center;
    gap: 38px
}

.nav a {
    font-size: 11px;
    letter-spacing: .18em;
    font-weight: 700;
    text-transform: uppercase;
    opacity: .88;
    position: relative
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    height: 1px;
    width: 0;
    background: var(--blue);
    transition: width .25s
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%
}

.nav-dot {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: var(--blue);
    box-shadow: 0 0 16px rgba(43, 107, 255, .95)
}

.hero {
    min-height: 665px;
    display: grid;
    grid-template-columns: 43% 57%;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    background: #02060b
}

.hero-copy {
    z-index: 3;
    padding: 152px 0 60px 50px
}

.hero h1,
.inner-hero h1,
.contact-page h1 {
    font-family: "Barlow Condensed", Inter, sans-serif;
    font-size: clamp(86px, 8vw, 150px);
    font-weight: 300;
    line-height: .9;
    letter-spacing: -.03em
}

.tagline {
    margin-top: 34px;
    font-size: 15px;
    letter-spacing: .38em;
    font-weight: 700
}

.intro {
    margin-top: 34px;
    max-width: 430px;
    font-size: 20px;
    line-height: 1.6;
    color: #c1c7d0;
    font-weight: 300
}

.scroll-cue {
    margin-top: 76px;
    display: inline-flex;
    align-items: center;
    gap: 22px;
    font-size: 12px;
    letter-spacing: .28em;
    font-weight: 700
}

.scroll-cue i {
    width: 95px;
    height: 1px;
    position: relative;
    background: rgba(255, 255, 255, .62)
}

.scroll-cue i::after {
    content: "";
    position: absolute;
    right: -3px;
    top: -2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 12px rgba(43, 107, 255, 1)
}

.hero-visual {
    position: relative;
    min-height: 665px
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 -36%;
    width: 58%;
    background: linear-gradient(90deg, #02060b 0%, rgba(2, 6, 11, .88) 48%, transparent 100%);
    pointer-events: none
}

.journey {
    min-height: 330px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-bottom: 1px solid var(--line);
    background: #03070d
}

.journey-card {
    position: relative;
    min-height: 330px;
    border-right: 1px solid var(--line-soft);
    overflow: hidden;
    background: #03070d
}

.journey-card:last-child {
    border-right: none
}

.journey-card::after {
    content: "→";
    position: absolute;
    right: -10px;
    top: 54%;
    font-size: 32px;
    font-weight: 200;
    z-index: 2
}

.journey-card:last-child::after {
    display: none
}

.journey-card img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.capability-section {
    display: grid;
    grid-template-columns: 43% 57%;
    min-height: 360px;
    border-bottom: 1px solid var(--line)
}

.capability-intro {
    padding: 68px 68px 56px;
    background: #02060b
}

.eyebrow {
    color: var(--blue);
    font-size: 12px;
    letter-spacing: .2em;
    font-weight: 700;
    text-transform: uppercase
}

.capability-intro h2 {
    margin-top: 26px;
    font-family: "Barlow Condensed", Inter, sans-serif;
    font-weight: 300;
    font-size: clamp(42px, 4vw, 66px);
    line-height: 1.05
}

.rule {
    display: block;
    width: 34px;
    height: 1px;
    margin: 28px 0;
    background: rgba(255, 255, 255, .6)
}

.capability-intro p:last-child {
    max-width: 410px;
    color: #9ca5b1;
    line-height: 1.75;
    font-size: 15px
}

.capability-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--paper);
    color: var(--ink)
}

.capability-panels article {
    padding: 62px 40px 42px;
    border-right: 1px solid rgba(0, 0, 0, .08)
}

.capability-panels article:last-child {
    border-right: none
}

.capability-panels span {
    display: block;
    font-family: "Barlow Condensed";
    font-size: 42px;
    font-weight: 300;
    color: var(--blue)
}

.capability-panels i {
    display: block;
    width: 34px;
    height: 1px;
    margin: 18px 0 26px;
    background: #222
}

.capability-panels h3 {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: .08em;
    font-weight: 800
}

.capability-panels p {
    margin-top: 26px;
    color: #555d67;
    line-height: 1.6;
    font-size: 14px
}

.capability-panels a {
    display: inline-block;
    margin-top: 32px;
    font-size: 28px;
    font-weight: 300
}

.vision {
    display: grid;
    grid-template-columns: 56% 44%;
    min-height: 300px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(90deg, #08111c, #182332 58%, #050a10)
}

.vision-copy {
    padding: 56px 68px
}

.vision-copy h2 {
    margin-top: 26px;
    font-family: "Barlow Condensed", Inter, sans-serif;
    font-weight: 300;
    font-size: clamp(42px, 4vw, 66px);
    line-height: 1.05
}

/*.vision h2 {
    margin-top: 28px;
    font-size: clamp(38px, 4.4vw, 68px);
    line-height: 1.15;
    font-weight: 300;
    letter-spacing: -.04em
}*/

.vision-visual {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 18% 52%, rgba(235, 240, 246, .62), transparent 34%), linear-gradient(90deg, #263343, #dce3ed 55%, #131b25 56%, #071019 100%)
}

.portal {
    position: absolute;
    inset: 0
}

.portal::before {
    content: "";
    position: absolute;
    right: 14%;
    bottom: 0;
    width: 42%;
    height: 76%;
    background: #eaf0f6;
    clip-path: polygon(0 24%, 100% 0, 100% 100%, 0 100%)
}

.portal::after {
    content: "";
    position: absolute;
    right: 42%;
    bottom: 0;
    width: 20%;
    height: 76%;
    background: linear-gradient(120deg, #1a2430, #303a46);
    clip-path: polygon(0 24%, 100% 0, 100% 100%, 0 100%)
}

.portal span {
    position: absolute;
    right: 27%;
    bottom: 24px;
    width: 8px;
    height: 38px;
    background: #10141a;
    border-radius: 4px 4px 0 0
}

.portal span::before {
    content: "";
    position: absolute;
    left: -7px;
    top: -9px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #10141a
}

.thinking-company {
    min-height: 185px;
    display: grid;
    grid-template-columns: 24% 22% 28% 26%;
    border-bottom: 1px solid var(--line);
    background: #03070d
}

.thinking-block,
.article,
.principles-mini {
    padding: 32px 44px;
    border-right: 1px solid var(--line-soft)
}

.principles-mini {
    border-right: none
}

.thinking-block p:nth-child(2),
.article p {
    margin-top: 24px;
    color: #9da7b4;
    line-height: 1.6;
    font-size: 13px
}

.thinking-block a,
.article a {
    margin-top: 30px;
    display: inline-flex;
    gap: 14px;
    font-size: 10px;
    letter-spacing: .18em;
    font-weight: 700
}

.article h3 {
    font-size: 14px;
    letter-spacing: .09em;
    line-height: 1.35
}

.visual-article {
    background: linear-gradient(90deg, rgba(3, 7, 13, .92), rgba(3, 7, 13, .75)), radial-gradient(circle at 78% 46%, rgba(255, 255, 255, .12), transparent 30%), linear-gradient(135deg, rgba(255, 255, 255, .08) 1px, transparent 1px), #03070d;
    background-size: auto, auto, 34px 34px, auto
}

.principles-mini a {
    display: flex;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid var(--line-soft);
    padding: 9px 0;
    font-size: 11px;
    letter-spacing: .15em;
    font-weight: 700
}

.contact-strip {
    min-height: 120px;
    display: grid;
    grid-template-columns: 52% 23% 25%;
    align-items: center;
    background: var(--paper);
    color: var(--ink)
}

/*.contact-strip h2 {
    padding-left: 72px;
    font-size: clamp(34px, 4vw, 68px);
    font-weight: 300;
    letter-spacing: -.04em
}*/
.contact-strip h2 {
    margin-top: 0px;
    padding-left: 72px;
    font-family: "Barlow Condensed", Inter, sans-serif;
    font-weight: 300;
    font-size: clamp(42px, 4vw, 66px);
    line-height: 1.05
}

.contact-details {
    display: grid;
    gap: 10px;
    font-size: 13px;
    color: #51565d
}

.conversation {
    border-left: 1px solid rgba(0, 0, 0, .14);
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-size: 12px;
    letter-spacing: .18em;
    font-weight: 700
}

.inner-hero {
    min-height: 620px;
    padding: 160px 50px 80px;
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    gap: 40px;
    border-bottom: 1px solid var(--line)
}

.inner-hero.no-image {
    display: block
}

.inner-hero p:not(.eyebrow) {
    margin-top: 28px;
    max-width: 620px;
    color: #c1c7d0;
    font-size: 20px;
    line-height: 1.7
}

.inner-hero img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-left: 1px solid var(--line-soft)
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--line)
}

.flow-grid article {
    min-height: 520px;
    border-right: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    padding: 28px;
    background: #03070d
}

.flow-grid img {
    height: 300px;
    width: calc(100% + 56px);
    object-fit: cover;
    margin: -28px -28px 28px
}

.flow-grid span,
.chapter-list span,
.principles-page span {
    color: var(--blue);
    font-size: 24px;
    font-family: "Barlow Condensed";
    letter-spacing: .08em
}

.flow-grid h3 {
    margin-top: 8px;
    font-size: 30px;
    font-weight: 300
}

.flow-grid p {
    margin-top: 16px;
    color: #9da7b4;
    line-height: 1.7
}

.chapter-list,
.principles-page,
.insight-grid {
    border-bottom: 1px solid var(--line)
}

.chapter-list article,
.principles-page article,
.insight-grid article {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 40px;
    padding: 70px 50px;
    border-bottom: 1px solid var(--line-soft)
}

.chapter-list h2,
.principles-page h2,
.insight-grid h2 {
    font-family: "Barlow Condensed";
    font-size: clamp(48px, 6vw, 96px);
    font-weight: 300;
    line-height: .95
}

.chapter-list p,
.principles-page p,
.insight-grid p {
    max-width: 760px;
    color: #9da7b4;
    line-height: 1.75;
    font-size: 18px
}

.insight-grid article {
    grid-template-columns: 1fr
}

.insight-grid a {
    margin-top: 22px;
    letter-spacing: .12em;
    font-size: 12px
}

.contact-page {
    min-height: 100vh;
    padding: 180px 50px 100px;
    background: #02060b
}

.contact-page h1 {
    margin-top: 18px
}

.contact-page p:not(.eyebrow) {
    margin-top: 32px;
    max-width: 620px;
    color: #c1c7d0;
    font-size: 21px;
    line-height: 1.7
}

.contact-actions {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px
}

.contact-actions a {
    border: 1px solid var(--line);
    padding: 18px 22px;
    font-size: 16px
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 34px 50px;
    color: #9da7b4;
    border-top: 1px solid var(--line-soft)
}

.site-footer strong {
    display: block;
    color: #fff;
    margin-bottom: 6px
}

.footer-contact {
    display: grid;
    gap: 8px
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s ease, transform .9s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

@media(max-width:1050px) {
    .site-header {
        position: absolute;
        flex-direction: column;
        align-items: flex-start;
        gap: 22px
    }

    .nav {
        flex-wrap: wrap;
        gap: 22px
    }

    .hero,
    .capability-section,
    .vision,
    .thinking-company,
    .contact-strip,
    .inner-hero {
        grid-template-columns: 1fr
    }

    .hero-copy {
        padding-right: 24px
    }

    .journey {
        grid-template-columns: repeat(2, 1fr)
    }

    .capability-panels {
        grid-template-columns: 1fr
    }

    .flow-grid {
        grid-template-columns: 1fr
    }

    .chapter-list article,
    .principles-page article {
        grid-template-columns: 1fr
    }

    .contact-strip {
        padding: 48px 32px;
        gap: 32px
    }

    .contact-strip h2 {
        padding-left: 0
    }

    .conversation {
        border-left: none;
        justify-content: flex-start
    }
}

@media(max-width:640px) {
    .site-header {
        left: 24px;
        right: 24px;
        top: 24px
    }

    .brand span {
        font-size: 18px;
        letter-spacing: .24em
    }

    .nav {
        gap: 14px
    }

    .nav a {
        font-size: 10px
    }

    .hero-copy {
        padding: 170px 24px 52px
    }

    .hero h1,
    .inner-hero h1,
    .contact-page h1 {
        font-size: 72px
    }

    .tagline {
        letter-spacing: .25em
    }

    .journey {
        grid-template-columns: 1fr
    }

    .journey-card {
        min-height: 390px
    }

    .capability-intro,
    .vision-copy,
    .thinking-block,
    .article,
    .principles-mini {
        padding-left: 24px;
        padding-right: 24px
    }

    .capability-panels article {
        padding: 44px 24px
    }

    .inner-hero,
    .contact-page {
        padding-left: 24px;
        padding-right: 24px
    }

    .site-footer {
        padding: 32px 24px;
        display: grid
    }
}

.thinking-hero {
    min-height: 680px;
    padding: 170px 50px 90px;
    display: flex;
    align-items: flex-end;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(90deg, rgba(2, 6, 11, .98), rgba(2, 6, 11, .70)), url("assets/hero-architecture.png") center right/cover no-repeat
}

.thinking-hero h1 {
    margin-top: 18px;
    font-family: "Barlow Condensed", Inter, sans-serif;
    font-size: clamp(86px, 8vw, 150px);
    font-weight: 300;
    line-height: .9;
    letter-spacing: -.03em
}

.thinking-hero p:not(.eyebrow) {
    margin-top: 32px;
    max-width: 680px;
    color: #c1c7d0;
    font-size: 21px;
    line-height: 1.7
}

.article-index {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--line);
    background: #03070d
}

.article-index a {
    min-height: 330px;
    padding: 44px 40px;
    border-right: 1px solid var(--line-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background .25s ease
}

.article-index a:last-child {
    border-right: none
}

.article-index a:hover {
    background: rgba(43, 107, 255, .06)
}

.article-index span {
    color: var(--blue);
    font-family: "Barlow Condensed", Inter, sans-serif;
    font-size: 42px;
    font-weight: 300
}

.article-index h2 {
    margin-top: 46px;
    font-family: "Barlow Condensed", Inter, sans-serif;
    font-size: clamp(36px, 3.7vw, 64px);
    line-height: .95;
    font-weight: 300;
    letter-spacing: -.02em
}

.article-index p {
    margin-top: 24px;
    max-width: 420px;
    color: #9da7b4;
    line-height: 1.65
}

.article-section {
    display: grid;
    grid-template-columns: 34% 66%;
    border-bottom: 1px solid var(--line);
    background: radial-gradient(circle at 10% 10%, rgba(43, 107, 255, .09), transparent 25%), #03070d
}

.article-rail {
    position: sticky;
    top: 0;
    align-self: start;
    min-height: 100vh;
    padding: 120px 50px 60px;
    border-right: 1px solid var(--line-soft);
    background: rgba(2, 6, 11, .55)
}

.article-rail h2 {
    margin-top: 20px;
    font-family: "Barlow Condensed", Inter, sans-serif;
    font-size: clamp(42px, 4vw, 76px);
    line-height: .95;
    font-weight: 300
}

.article-rail p:not(.eyebrow) {
    margin-top: 24px;
    color: #9da7b4;
    line-height: 1.65
}

.article-rail a {
    display: inline-block;
    margin-top: 42px;
    font-size: 11px;
    letter-spacing: .18em;
    font-weight: 700;
    text-transform: uppercase
}

.article-body {
    padding: 110px min(8vw, 110px);
    max-width: 1080px
}

.article-body h1 {
    font-family: "Barlow Condensed", Inter, sans-serif;
    font-size: clamp(56px, 6vw, 104px);
    line-height: .94;
    font-weight: 300;
    letter-spacing: -.025em;
    margin-bottom: 34px
}

.article-body h2 {
    color: #c1c7d0;
    font-size: 24px;
    line-height: 1.55;
    font-weight: 400;
    margin: -12px 0 44px
}

.article-body h3 {
    margin-top: 68px;
    margin-bottom: 22px;
    font-family: "Barlow Condensed", Inter, sans-serif;
    font-size: clamp(34px, 3.5vw, 58px);
    line-height: 1.05;
    font-weight: 300;
    letter-spacing: -.015em
}

.article-body h4 {
    margin-top: 34px;
    margin-bottom: 14px;
    color: #fff;
    font-size: 17px;
    letter-spacing: .08em;
    text-transform: uppercase
}

.article-body p {
    margin-top: 20px;
    color: #c1c7d0;
    font-size: 18px;
    line-height: 1.82
}

.article-body em {
    color: #fff
}

.article-body pre {
    margin: 34px 0;
    padding: 26px;
    overflow-x: auto;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(43, 107, 255, .08), rgba(255, 255, 255, .025)), #050b13;
    color: #dbe7ff;
    font-size: 14px;
    line-height: 1.65
}

.article-body code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace
}

@media(max-width:1050px) {

    .article-index,
    .article-section {
        grid-template-columns: 1fr
    }

    .article-rail {
        position: relative;
        min-height: auto;
        padding: 70px 32px;
        border-right: none;
        border-bottom: 1px solid var(--line-soft)
    }

    .article-body {
        padding: 70px 32px
    }
}

@media(max-width:640px) {
    .thinking-hero {
        padding: 170px 24px 70px
    }

    .article-index a {
        padding: 36px 24px
    }
}

.editorial-note {
    padding: 90px 50px;
    border-bottom: 1px solid var(--line);
    background: radial-gradient(circle at 80% 20%, rgba(43, 107, 255, .10), transparent 28%), #03070d
}

.editorial-note h2 {
    margin-top: 20px;
    max-width: 1100px;
    font-family: "Barlow Condensed";
    font-size: clamp(56px, 6vw, 110px);
    line-height: .94;
    font-weight: 300
}

.editorial-note p:not(.eyebrow) {
    margin-top: 30px;
    max-width: 800px;
    color: #c1c7d0;
    font-size: 21px;
    line-height: 1.7
}

.company-hero {
    min-height: 720px;
    display: grid;
    grid-template-columns: 48% 52%;
    border-bottom: 1px solid var(--line);
    background: #02060b;
    overflow: hidden
}

.company-hero-copy {
    padding: 170px 50px 80px;
    align-self: center;
    z-index: 2
}

.company-hero-copy h1 {
    margin-top: 18px;
    font-family: "Barlow Condensed", Inter, sans-serif;
    font-size: clamp(68px, 7vw, 132px);
    font-weight: 300;
    line-height: .92;
    letter-spacing: -.03em
}

.company-hero-copy p:not(.eyebrow) {
    margin-top: 32px;
    max-width: 620px;
    color: #c1c7d0;
    font-size: 21px;
    line-height: 1.7
}

.company-hero-visual {
    position: relative;
    min-height: 720px
}

.company-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right
}

.company-hero-visual:before {
    content: "";
    position: absolute;
    inset: 0 auto 0 -34%;
    width: 58%;
    background: linear-gradient(90deg, #02060b 0%, rgba(2, 6, 11, .9) 48%, transparent 100%)
}

.company-manifesto {
    padding: 110px 50px;
    border-bottom: 1px solid var(--line);
    background: radial-gradient(circle at 80% 20%, rgba(43, 107, 255, .10), transparent 28%), #03070d
}

.company-manifesto h2 {
    margin-top: 22px;
    max-width: 1180px;
    font-family: "Barlow Condensed", Inter, sans-serif;
    font-size: clamp(58px, 7vw, 122px);
    line-height: .95;
    font-weight: 300;
    letter-spacing: -.035em
}

.company-manifesto p:not(.eyebrow) {
    margin-top: 34px;
    max-width: 820px;
    color: #c1c7d0;
    font-size: 21px;
    line-height: 1.75
}

.company-mission-grid {
    display: grid;
    grid-template-columns: 34% 34% 32%;
    min-height: 520px;
    border-bottom: 1px solid var(--line)
}

.company-mission-grid>div:first-child,
.company-mission-grid>p,
.mission-flow {
    padding: 70px 50px;
    border-right: 1px solid var(--line-soft)
}

.company-mission-grid h2,
.section-title h2,
.why-section h2,
.culture-section h2 {
    margin-top: 20px;
    font-family: "Barlow Condensed", Inter, sans-serif;
    font-size: clamp(48px, 5vw, 86px);
    line-height: .98;
    font-weight: 300;
    letter-spacing: -.025em
}

.company-mission-grid>p {
    color: #c1c7d0;
    font-size: 19px;
    line-height: 1.75
}

.mission-flow {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px
}

.mission-flow span {
    font-size: 22px;
    letter-spacing: .08em;
    text-transform: uppercase
}

.mission-flow i {
    width: 1px;
    height: 30px;
    background: linear-gradient(var(--blue), transparent);
    margin-left: 12px
}

.company-building,
.why-section {
    padding: 90px 50px;
    border-bottom: 1px solid var(--line)
}

.company-cards {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line)
}

.company-cards article {
    min-height: 360px;
    padding: 42px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012))
}

.company-cards span,
.principles-rich span {
    color: var(--blue);
    font-family: "Barlow Condensed", Inter, sans-serif;
    font-size: 42px;
    font-weight: 300
}

.company-cards h3 {
    margin-top: 58px;
    font-family: "Barlow Condensed", Inter, sans-serif;
    font-size: 46px;
    line-height: 1;
    font-weight: 300
}

.company-cards p {
    margin-top: 22px;
    color: #9da7b4;
    line-height: 1.7
}

.why-section {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 56px
}

.why-list {
    border-top: 1px solid var(--line)
}

.why-list article {
    padding: 28px 0;
    border-bottom: 1px solid var(--line-soft)
}

.why-list strong {
    display: block;
    color: #fff;
    font-size: 18px;
    letter-spacing: .08em;
    text-transform: uppercase
}

.why-list p {
    margin-top: 12px;
    color: #9da7b4;
    line-height: 1.7
}

.culture-section {
    min-height: 500px;
    padding: 110px 50px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(90deg, rgba(2, 6, 11, .98), rgba(2, 6, 11, .68)), url("assets/outcomes.png") center right/contain no-repeat
}

.culture-section p:not(.eyebrow) {
    margin-top: 34px;
    max-width: 820px;
    color: #c1c7d0;
    font-size: 21px;
    line-height: 1.75
}

.principles-rich {
    border-bottom: 1px solid var(--line);
    padding-top: 70px
}

.principles-rich>.eyebrow {
    display: block;
    padding: 0 50px 28px
}

.principles-rich article {
    display: grid;
    grid-template-columns: 140px 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 44px 50px;
    border-top: 1px solid var(--line-soft)
}

.principles-rich h2 {
    font-family: "Barlow Condensed", Inter, sans-serif;
    font-size: clamp(44px, 5vw, 86px);
    line-height: .95;
    font-weight: 300
}

.principles-rich p {
    color: #9da7b4;
    font-size: 18px;
    line-height: 1.7
}

.company-closing {
    padding: 120px 50px;
    background: var(--paper);
    color: var(--ink)
}

.company-closing h2 {
    margin-top: 22px;
    font-family: "Barlow Condensed", Inter, sans-serif;
    font-size: clamp(72px, 9vw, 150px);
    line-height: .9;
    font-weight: 300;
    letter-spacing: -.035em
}

.company-closing p {
    margin-top: 28px;
    font-size: 22px;
    color: #4b5563
}

.company-closing a {
    margin-top: 42px;
    display: inline-flex;
    gap: 24px;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, .18);
    padding: 18px 24px;
    font-size: 12px;
    letter-spacing: .18em;
    font-weight: 700
}

@media(max-width:1050px) {

    .company-hero,
    .company-mission-grid,
    .company-cards,
    .why-section,
    .principles-rich article {
        grid-template-columns: 1fr
    }

    .company-hero-copy {
        padding: 170px 32px 70px
    }

    .company-hero-visual {
        min-height: 460px
    }

    .company-mission-grid>div:first-child,
    .company-mission-grid>p,
    .mission-flow {
        border-right: none;
        border-bottom: 1px solid var(--line-soft);
        padding: 56px 32px
    }

    .company-manifesto,
    .company-building,
    .why-section,
    .culture-section,
    .company-closing {
        padding-left: 32px;
        padding-right: 32px
    }

    .principles-rich>.eyebrow,
    .principles-rich article {
        padding-left: 32px;
        padding-right: 32px
    }
}

/* Rich corporate narrative pages */
.rich-hero {
	min-height: 720px;
	display: grid;
	grid-template-columns: 48% 52%;
	border-bottom: 1px solid var(--line);
	background: #02060b;
	overflow: hidden
}

.rich-hero-copy {
	padding: 170px 50px 80px;
	align-self: center;
	z-index: 2
}

.rich-hero-copy h1 {
	margin-top: 18px;
	font-family: "Barlow Condensed", Inter, sans-serif;
	font-size: clamp(72px, 7vw, 138px);
	font-weight: 300;
	line-height: .9;
	letter-spacing: -.03em
}

.rich-hero-copy p:not(.eyebrow) {
	margin-top: 32px;
	max-width: 660px;
	color: #c1c7d0;
	font-size: 21px;
	line-height: 1.7
}

.rich-hero-visual {
	position: relative;
	min-height: 720px
}

.rich-hero-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center right
}

.rich-hero-visual:before {
	content: "";
	position: absolute;
	inset: 0 auto 0 -34%;
	width: 58%;
	background: linear-gradient(90deg, #02060b 0%, rgba(2, 6, 11, .9) 48%, transparent 100%)
}

.hero-metrics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-top: 48px;
	max-width: 680px
}

.hero-metrics span {
	border: 1px solid var(--line);
	padding: 18px;
	color: #9da7b4
}

.hero-metrics strong {
	display: block;
	color: #fff;
	font-family: "Barlow Condensed";
	font-size: 48px;
	font-weight: 300;
	line-height: .9
}

.narrative-split,
.delivery-system,
.why-section {
	display: grid;
	grid-template-columns: 42% 58%;
	gap: 56px;
	padding: 90px 50px;
	border-bottom: 1px solid var(--line)
}

.narrative-split h2,
.delivery-system h2,
.why-section h2,
.section-title h2,
.culture-section h2 {
	margin-top: 20px;
	font-family: "Barlow Condensed", Inter, sans-serif;
	font-size: clamp(48px, 5vw, 90px);
	line-height: .96;
	font-weight: 300;
	letter-spacing: -.025em
}

.narrative-split>p {
	color: #c1c7d0;
	font-size: 21px;
	line-height: 1.75
}

.intelligence-layers {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-bottom: 1px solid var(--line)
}

.intelligence-layers article {
	min-height: 560px;
	padding: 28px;
	border-right: 1px solid var(--line-soft);
	border-bottom: 1px solid var(--line-soft);
	background: #03070d
}

.intelligence-layers img {
	height: 300px;
	width: calc(100% + 56px);
	object-fit: cover;
	margin: -28px -28px 32px
}

.intelligence-layers span,
.model-grid span,
.company-cards span,
.principles-rich span,
.platform-model-grid span,
.platform-company-cards span,
.capability-deep-grid span {
	color: var(--blue);
	font-family: "Barlow Condensed";
	font-size: 42px;
	font-weight: 300
}

.intelligence-layers h3,
.model-grid h3,
.platform-model-grid h3,
.platform-company-cards h3,
.company-cards h3 {
	margin-top: 18px;
	font-family: "Barlow Condensed";
	font-size: 48px;
	line-height: 1;
	font-weight: 300
}

.intelligence-layers p,
.model-grid p,
.platform-model-grid p,
.platform-company-cards p,
.company-cards p {
	margin-top: 20px;
	color: #9da7b4;
	line-height: 1.7
}

.architecture-operating-model,
.company-building {
	padding: 90px 50px;
	border-bottom: 1px solid var(--line)
}

.platform-model-grid,
.platform-company-cards {
	margin-top: 64px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line)
}

.platform-model-grid article,
.platform-company-cards article {
	min-height: 330px;
	padding: 38px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: linear-gradient(135deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012))
}

.closing-band {
	padding: 110px 50px;
	border-bottom: 1px solid var(--line)
}

.closing-band h2 {
	margin-top: 20px;
	max-width: 1100px;
	font-family: "Barlow Condensed";
	font-size: clamp(60px, 7vw, 120px);
	line-height: .92;
	font-weight: 300
}

.closing-band a {
	display: inline-flex;
	gap: 22px;
	margin-top: 42px;
	padding: 18px 24px;
	border: 1px solid var(--line);
	font-size: 12px;
	letter-spacing: .18em;
	font-weight: 700;
	text-transform: uppercase
}

.closing-band.light {
	background: var(--paper);
	color: var(--ink)
}

.closing-band.light a {
	border-color: rgba(0, 0, 0, .18)
}


.capability-deep-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border-bottom: 1px solid var(--line)
}

.capability-deep-grid article {
	padding: 70px 50px;
	border-right: 1px solid var(--line-soft);
	border-bottom: 1px solid var(--line-soft)
}

.capability-deep-grid h2 {
	margin-top: 24px;
	font-family: "Barlow Condensed";
	font-size: clamp(48px, 5vw, 86px);
	line-height: .95;
	font-weight: 300
}

.capability-deep-grid p {
	margin-top: 24px;
	color: #c1c7d0;
	font-size: 18px;
	line-height: 1.7
}

.capability-deep-grid ul {
	margin-top: 28px;
	display: grid;
	gap: 12px;
	color: #9da7b4;
	list-style: none
}

.capability-deep-grid li:before {
	content: "— ";
	color: var(--blue)
}

.delivery-steps {
	display: grid;
	gap: 0;
	border-top: 1px solid var(--line)
}

.delivery-steps article {
	padding: 26px 0;
	border-bottom: 1px solid var(--line-soft)
}

.delivery-steps strong {
	display: block;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: .1em
}

.delivery-steps p {
	margin-top: 10px;
	color: #9da7b4;
	line-height: 1.7
}

.capability-orbit {
	align-self: center;
	min-height: 720px;
	margin-right: 50px;
	position: relative;
	background: radial-gradient(circle at 50% 50%, rgba(43, 107, 255, .18), transparent 36%)
}

.capability-orbit span {
	position: absolute;
	border: 1px solid var(--line);
	background: rgba(3, 7, 13, .72);
	padding: 14px 18px;
	font-size: 12px;
	letter-spacing: .16em;
	text-transform: uppercase
}