:root {
    --brand: #1d3478;
    --brand-accent: #416ed6;
    --brand-dark: #14275e;
    --navy-950: #08122e;
    --navy-900: #0e1c43;
    --navy-800: #172957;
    --blue-700: #28458f;
    --ink: #131d37;
    --steel: #647087;
    --line: #d6dbe6;
    --cloud: #eef1f7;
    --paper: #f7f6f2;
    --white: #ffffff;
    --orange: var(--brand-accent);
    --orange-dark: var(--brand);
    --shell: min(1360px, calc(100% - 64px));
    --header-height: 84px;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    overflow-x: clip;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

::selection {
    color: var(--white);
    background: var(--orange);
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 8px;
    left: 8px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--orange);
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 4px;
}

.scroll-progress {
    position: fixed;
    z-index: 200;
    inset: 0 0 auto;
    height: 3px;
    pointer-events: none;
}

.scroll-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
}

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    transition: background .3s ease, box-shadow .3s ease, transform .4s var(--ease);
}

.site-header.is-scrolled {
    background: rgba(6, 21, 34, .96);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .14);
    backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
}

.brand {
    display: inline-flex;
    gap: 11px;
    align-items: center;
}

.brand img {
    flex: 0 0 auto;
}

.brand .brand-logo {
    width: 212px;
    height: 58px;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-copy strong {
    font-family: "Arial Narrow", Impact, sans-serif;
    font-size: 1.7rem;
    letter-spacing: .07em;
}

.brand-copy span {
    margin-top: 5px;
    color: rgba(255, 255, 255, .7);
    font-size: .61rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(22px, 2.6vw, 42px);
}

.site-nav > a {
    position: relative;
    font-size: .78rem;
    font-weight: 750;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.site-nav > a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--orange);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s var(--ease);
}

.site-nav > a:hover::after,
.site-nav > a.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    display: inline-flex;
    gap: 28px;
    align-items: center;
    min-height: 46px;
    padding: 0 18px;
    color: var(--white);
    background: var(--orange);
    transition: background .2s ease, transform .2s ease;
}

.nav-cta:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    padding: 13px 10px;
    color: inherit;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .25);
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
    transition: transform .25s ease;
}

.hero {
    position: relative;
    display: flex;
    min-height: 810px;
    height: 100svh;
    max-height: 980px;
    align-items: flex-end;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-950);
}

.hero-media,
.hero-shade,
.hero-grid {
    position: absolute;
    inset: 0;
}

.hero-media {
    background-image: url("../images/hero-container-yard.png");
    background-position: center;
    background-size: cover;
    transform: scale(1.025);
    animation: hero-settle 1.4s var(--ease) both;
    will-change: transform;
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(8, 18, 46, .94) 0%, rgba(8, 18, 46, .78) 35%, rgba(8, 18, 46, .14) 67%, rgba(8, 18, 46, .18) 100%),
        linear-gradient(0deg, rgba(8, 18, 46, .67) 0%, transparent 45%);
}

.hero-grid {
    width: var(--shell);
    margin-inline: auto;
    opacity: .11;
    background-image: linear-gradient(to right, rgba(255, 255, 255, .65) 1px, transparent 1px);
    background-size: 25% 100%;
    border-right: 1px solid rgba(255, 255, 255, .65);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 72px;
    align-items: end;
    padding-top: calc(var(--header-height) + 76px);
    padding-bottom: 108px;
}

.hero-copy {
    min-width: 0;
    max-width: 850px;
}

.hero [data-reveal] {
    opacity: 1;
    transform: none;
}

.eyebrow {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 0 0 24px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 42px;
    height: 2px;
    background: currentColor;
}

.eyebrow.orange {
    color: var(--orange);
}

.hero h1,
.section h2,
.solutions-section h2,
.contact-section h2 {
    margin: 0;
    font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
    font-size: clamp(4.4rem, 7.7vw, 8.3rem);
    font-weight: 800;
    line-height: .82;
    letter-spacing: -.045em;
    text-transform: uppercase;
}

.hero h1 em,
.section h2 em,
.solutions-section h2 em,
.contact-section h2 em {
    color: var(--orange);
    font-family: Georgia, "Times New Roman", serif;
    font-size: .87em;
    font-weight: 400;
    letter-spacing: -.055em;
    text-transform: none;
}

.hero-intro {
    width: 100%;
    max-width: 650px;
    margin: 34px 0 0;
    color: rgba(255, 255, 255, .8);
    font-size: clamp(1.05rem, 1.4vw, 1.3rem);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
    align-items: center;
    margin-top: 40px;
}

.button {
    display: inline-flex;
    gap: 38px;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 24px;
    font-size: .79rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 0;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, transform .25s var(--ease), box-shadow .25s ease;
}

.button-primary {
    color: var(--white);
    background: var(--orange);
    box-shadow: 0 12px 32px rgba(65, 110, 214, .24);
}

.button-primary:hover {
    background: var(--orange-dark);
    box-shadow: 0 16px 38px rgba(65, 110, 214, .34);
    transform: translateY(-3px);
}

.button[disabled] {
    cursor: wait;
    opacity: .7;
}

.text-link {
    display: inline-flex;
    gap: 20px;
    align-items: center;
    padding: 8px 0;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
    transition: color .2s ease, gap .2s ease;
}

.text-link:hover {
    gap: 26px;
    color: var(--orange);
}

.text-link.dark {
    color: var(--ink);
}

.hero-card {
    padding: 24px 0 0 24px;
    border-top: 1px solid rgba(255, 255, 255, .42);
    border-left: 2px solid var(--orange);
}

.hero-card p,
.hero-card span {
    display: block;
    margin: 0;
    color: rgba(255, 255, 255, .57);
    font-size: .68rem;
    font-weight: 750;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.hero-card a {
    display: block;
    margin: 10px 0 12px;
    font-size: 1.38rem;
    font-weight: 720;
    letter-spacing: -.02em;
}

.hero-index {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 30px;
    color: rgba(255, 255, 255, .48);
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .18em;
    writing-mode: vertical-rl;
}

.capability-strip {
    position: relative;
    z-index: 3;
    color: var(--white);
    background: var(--brand);
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.strip-grid > div {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    padding: 28px 26px;
    border-right: 1px solid rgba(255, 255, 255, .26);
}

.strip-grid > div:first-child {
    border-left: 1px solid rgba(255, 255, 255, .26);
}

.strip-grid span {
    grid-row: 1 / 3;
    padding-top: 2px;
    color: rgba(255, 255, 255, .58);
    font-size: .67rem;
    font-weight: 800;
}

.strip-grid strong {
    font-family: "Arial Narrow", Impact, sans-serif;
    font-size: 1.25rem;
    line-height: 1.1;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.strip-grid small {
    margin-top: 5px;
    color: rgba(255, 255, 255, .75);
    font-size: .72rem;
}

.section {
    position: relative;
    padding: 148px 0;
}

.intro-section {
    overflow: hidden;
}

.intro-section::after {
    position: absolute;
    z-index: -1;
    top: 30px;
    right: -50px;
    color: rgba(7, 24, 39, .035);
    content: "NDC";
    font-family: Impact, sans-serif;
    font-size: 29vw;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.06em;
}

.intro-grid {
    display: grid;
    grid-template-columns: 180px minmax(0, 1.45fr) minmax(280px, .72fr);
    gap: clamp(36px, 5vw, 84px);
    align-items: start;
}

.section-label {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-top: 9px;
}

.section-label span {
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    color: var(--orange);
    font-size: .66rem;
    font-weight: 800;
    border: 1px solid var(--orange);
}

.section-label p {
    margin: 0;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.section-label.light p {
    color: var(--white);
}

.intro-statement h2 {
    font-size: clamp(3.2rem, 5vw, 6rem);
    line-height: .93;
}

.intro-detail {
    padding-top: 8px;
}

.intro-detail p {
    margin: 0 0 20px;
    color: var(--steel);
    font-size: 1rem;
}

.company-facts {
    margin: 32px 0 0;
    border-top: 1px solid var(--line);
}

.company-facts > div {
    display: flex;
    gap: 18px;
    align-items: baseline;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.company-facts dt {
    color: var(--steel);
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.company-facts dd {
    margin: 0;
    font-size: .78rem;
    font-weight: 750;
    text-align: right;
}

.intro-detail .text-link {
    margin-top: 28px;
}

.services-section {
    color: var(--white);
    background:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
        var(--navy-950);
    background-size: 80px 80px;
}

.section-head {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) minmax(280px, .45fr);
    gap: clamp(36px, 5vw, 84px);
    align-items: end;
    margin-bottom: 76px;
}

.section-head h2 {
    font-size: clamp(3.6rem, 5.5vw, 6.6rem);
}

.section-head > p {
    margin: 0 0 2px;
    color: rgba(255, 255, 255, .58);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .16);
    border-left: 1px solid rgba(255, 255, 255, .16);
}

.service-card {
    position: relative;
    min-height: 380px;
    padding: 35px;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, .16);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    transition: background .35s ease, color .35s ease;
}

.service-card::before {
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: var(--orange);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .45s var(--ease);
}

.service-card:hover {
    background: var(--orange);
}

.service-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-card-top > span {
    color: rgba(255, 255, 255, .4);
    font-family: Georgia, serif;
    font-size: .75rem;
    font-style: italic;
}

.service-icon {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    color: var(--orange);
    border: 1px solid rgba(255, 255, 255, .18);
    transition: color .3s ease, border-color .3s ease, transform .4s var(--ease);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card:hover .service-icon {
    color: var(--white);
    border-color: rgba(255, 255, 255, .55);
    transform: rotate(-4deg) scale(1.04);
}

.service-card h3 {
    margin: 66px 0 15px;
    font-family: "Arial Narrow", Impact, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: .025em;
    text-transform: uppercase;
}

.service-card p {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: .9rem;
    transition: color .3s ease;
}

.service-card > a {
    position: absolute;
    right: 35px;
    bottom: 30px;
    left: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.service-card:hover p,
.service-card:hover .service-card-top > span {
    color: rgba(255, 255, 255, .88);
}

.solutions-section {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(480px, .92fr);
    min-height: 800px;
    color: var(--white);
    background: var(--navy-900);
}

.solution-image {
    min-height: 650px;
    background-image: linear-gradient(90deg, transparent 65%, rgba(9, 28, 44, .52)), url("../images/hero-container-yard.png");
    background-position: 62% center;
    background-size: auto 120%;
}

.solution-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(70px, 8vw, 130px) max(7vw, 60px);
}

.solution-panel h2 {
    font-size: clamp(3.3rem, 5vw, 6rem);
    line-height: .9;
}

.solution-panel > p:not(.eyebrow) {
    max-width: 590px;
    margin: 28px 0 35px;
    color: rgba(255, 255, 255, .62);
}

.solution-list {
    padding: 0;
    margin: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.solution-list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 17px;
    align-items: start;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.solution-list li > span {
    color: var(--orange);
    font-family: Georgia, serif;
    font-size: .7rem;
    font-style: italic;
}

.solution-list strong,
.solution-list small {
    display: block;
}

.solution-list strong {
    font-family: "Arial Narrow", Impact, sans-serif;
    font-size: 1.08rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.solution-list small {
    margin-top: 4px;
    color: rgba(255, 255, 255, .5);
    font-size: .76rem;
}

.process-section {
    background: var(--cloud);
}

.process-head {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) minmax(260px, .45fr);
    gap: clamp(36px, 5vw, 84px);
    align-items: end;
    margin-bottom: 80px;
}

.process-head h2 {
    font-size: clamp(3.6rem, 5.7vw, 6.8rem);
}

.process-head > p {
    margin: 0;
    color: var(--steel);
}

.process-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
    margin: 0;
    list-style: none;
    border-top: 2px solid var(--ink);
}

.process-list li {
    position: relative;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 10px;
    min-height: 260px;
    padding: 28px 28px 24px 0;
    border-right: 1px solid #c5ced2;
}

.process-list li:not(:first-child) {
    padding-left: 28px;
}

.process-list li:last-child {
    border-right: 0;
}

.process-list li::before {
    position: absolute;
    top: -8px;
    left: 0;
    width: 14px;
    height: 14px;
    background: var(--orange);
    content: "";
}

.process-list li:not(:first-child)::before {
    left: 28px;
}

.process-number {
    color: var(--orange);
    font-family: Georgia, serif;
    font-size: .72rem;
    font-style: italic;
}

.process-list h3 {
    margin: 0 0 16px;
    font-family: "Arial Narrow", Impact, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.process-list p {
    margin: 0;
    color: var(--steel);
    font-size: .9rem;
}

.contact-section {
    position: relative;
    padding: 138px 0;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-950);
}

.contact-section::before {
    position: absolute;
    inset: 0;
    opacity: .045;
    background-image: linear-gradient(135deg, transparent 46%, #fff 46%, #fff 47%, transparent 47%);
    background-size: 55px 55px;
    content: "";
    pointer-events: none;
}

.contact-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(520px, 1fr);
    gap: clamp(60px, 9vw, 150px);
    align-items: start;
}

.contact-copy {
    position: sticky;
    top: 130px;
}

.contact-copy h2 {
    font-size: clamp(4rem, 6.3vw, 7.4rem);
}

.contact-copy > p:not(.eyebrow) {
    max-width: 500px;
    margin: 30px 0 50px;
    color: rgba(255, 255, 255, .6);
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .17);
}

.contact-details span {
    display: block;
    margin-bottom: 7px;
    color: var(--orange);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.contact-details a,
.contact-details p {
    margin: 0;
    font-size: .9rem;
    font-weight: 650;
}

.inquiry-form {
    display: grid;
    gap: 28px;
    padding: clamp(34px, 4.2vw, 60px);
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 32px 90px rgba(0, 0, 0, .2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.inquiry-form label {
    display: grid;
    gap: 8px;
}

.inquiry-form label > span {
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    padding: 13px 2px;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-bottom: 1px solid #c9d0d4;
    border-radius: 0;
    outline: 0;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.inquiry-form select {
    cursor: pointer;
}

.inquiry-form textarea {
    min-height: 130px;
    resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 2px 0 var(--orange);
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
    color: #99a4aa;
}

.turnstile-field {
    display: grid;
    gap: 10px;
}

.turnstile-field > span {
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.cf-turnstile {
    min-height: 65px;
}

.turnstile-config-error {
    margin: 0;
    padding: 13px 16px;
    color: #b22920;
    font-size: .8rem;
    font-weight: 650;
    background: #fff0ef;
    border-left: 3px solid currentColor;
}

.form-footer {
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: space-between;
    padding-top: 5px;
}

.form-footer p {
    max-width: 270px;
    margin: 0;
    color: var(--steel);
    font-size: .7rem;
    line-height: 1.5;
}

.form-status {
    display: none;
    padding: 13px 16px;
    font-size: .82rem;
    font-weight: 650;
    border-left: 3px solid currentColor;
}

.form-status.is-visible {
    display: block;
}

.form-status.is-success {
    color: #167747;
    background: #edf8f1;
}

.form-status.is-error {
    color: #b22920;
    background: #fff0ef;
}

.form-trap {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
}

.site-footer {
    color: rgba(255, 255, 255, .65);
    background: #03101a;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 50px;
    align-items: center;
    padding-top: 56px;
    padding-bottom: 46px;
}

.footer-top > p {
    max-width: 460px;
    margin: 0;
    font-size: .83rem;
}

.back-top {
    display: inline-flex;
    gap: 18px;
    align-items: center;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.back-top span {
    color: var(--orange);
    font-size: 1rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 22px;
    padding-bottom: 22px;
    font-size: .66rem;
    letter-spacing: .06em;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom p {
    margin: 0;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s var(--ease), transform .75s var(--ease);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }

@keyframes hero-settle {
    from { opacity: .2; transform: scale(1.08); }
    to { opacity: 1; transform: scale(1.025); }
}

@media (max-width: 1120px) {
    :root {
        --shell: min(100% - 40px, 1100px);
    }

    .site-nav {
        gap: 22px;
    }

    .site-nav > a:not(.nav-cta) {
        display: none;
    }

    .intro-grid,
    .section-head,
    .process-head {
        grid-template-columns: 140px minmax(0, 1fr);
    }

    .intro-detail,
    .section-head > p,
    .process-head > p {
        grid-column: 2;
        max-width: 650px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solutions-section {
        grid-template-columns: 1fr 1fr;
    }

    .solution-panel {
        padding-inline: 50px;
    }

    .contact-grid {
        grid-template-columns: .8fr 1.2fr;
        gap: 55px;
    }
}

@media (max-width: 820px) {
    :root {
        --shell: calc(100% - 36px);
        --header-height: 74px;
    }

    .site-header {
        background: rgba(6, 21, 34, .94);
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        transform: translateY(3.5px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-3.5px) rotate(-45deg);
    }

    .site-nav {
        position: fixed;
        inset: var(--header-height) 0 auto;
        display: grid;
        gap: 0;
        padding: 14px 18px 25px;
        visibility: hidden;
        background: var(--navy-950);
        border-top: 1px solid rgba(255, 255, 255, .12);
        opacity: 0;
        transform: translateY(-12px);
        transition: opacity .25s ease, transform .25s ease, visibility .25s;
    }

    .site-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .site-nav > a:not(.nav-cta) {
        display: block;
        padding: 17px 6px;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .site-nav .nav-cta {
        justify-content: space-between;
        margin-top: 14px;
    }

    .hero {
        min-height: 760px;
        height: auto;
    }

    .hero-media {
        background-position: 58% center;
    }

    .hero-shade {
        background: linear-gradient(90deg, rgba(8, 18, 46, .92), rgba(8, 18, 46, .5)), linear-gradient(0deg, rgba(8, 18, 46, .78), transparent 60%);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 45px;
        padding-top: 180px;
        padding-bottom: 70px;
    }

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

    .hero-card {
        max-width: 320px;
    }

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

    .strip-grid > div:nth-child(2) {
        border-right: 0;
    }

    .strip-grid > div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .26);
    }

    .section {
        padding: 100px 0;
    }

    .intro-grid,
    .section-head,
    .process-head {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .intro-detail,
    .section-head > p,
    .process-head > p {
        grid-column: auto;
    }

    .section-label {
        padding-top: 0;
    }

    .intro-statement h2,
    .section-head h2,
    .process-head h2 {
        font-size: clamp(3.2rem, 10.5vw, 5.5rem);
    }

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

    .service-card {
        min-height: 360px;
        padding: 28px;
    }

    .service-card > a {
        right: 28px;
        left: 28px;
    }

    .solutions-section {
        grid-template-columns: 1fr;
    }

    .solution-image {
        min-height: 500px;
        background-position: center;
        background-size: cover;
    }

    .solution-panel {
        padding: 90px 32px;
    }

    .process-list {
        grid-template-columns: 1fr;
    }

    .process-list li,
    .process-list li:not(:first-child) {
        min-height: 0;
        padding: 30px 0;
        border-right: 0;
        border-bottom: 1px solid #c5ced2;
    }

    .process-list li:not(:first-child)::before {
        left: 0;
    }

    .contact-section {
        padding: 100px 0;
    }

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

    .contact-copy {
        position: static;
    }

    .contact-copy h2 {
        font-size: clamp(3.8rem, 12vw, 6.4rem);
    }

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

    .footer-top > p {
        grid-column: 1 / -1;
        grid-row: 2;
    }
}

@media (max-width: 560px) {
    :root {
        --shell: calc(100% - 28px);
    }

    .brand .brand-logo {
        width: 178px;
        height: auto;
    }

    .hero {
        min-height: 720px;
    }

    .hero-content {
        padding-top: 150px;
    }

    .hero h1 {
        font-size: clamp(3.35rem, 17vw, 5.4rem);
        line-height: .85;
    }

    .hero-intro {
        font-size: .98rem;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-index {
        display: none;
    }

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

    .strip-grid > div,
    .strip-grid > div:nth-child(2) {
        border-right: 1px solid rgba(255, 255, 255, .26);
        border-bottom: 1px solid rgba(255, 255, 255, .26);
    }

    .strip-grid > div:last-child {
        border-bottom: 0;
    }

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

    .service-card {
        min-height: 345px;
    }

    .solution-image {
        min-height: 390px;
    }

    .solution-panel {
        padding: 76px 20px;
    }

    .solution-panel h2 {
        font-size: 3.25rem;
    }

    .contact-details,
    .form-row {
        grid-template-columns: 1fr;
    }

    .inquiry-form {
        padding: 30px 20px;
    }

    .form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .form-footer .button {
        justify-content: space-between;
        width: 100%;
    }

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

    .footer-top > p {
        grid-column: auto;
        grid-row: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
