:root {
    --navy: #061a32;
    --navy-2: #0a2747;
    --navy-3: #113b62;
    --gold: #d39a28;
    --gold-light: #f5c85b;
    --cream: #f7f4ed;
    --white: #fff;
    --ink: #122033;
    --muted: #687587;
    --line: rgba(6, 26, 50, .13);
    --shadow: 0 24px 70px rgba(4, 20, 38, .14);
    --radius: 4px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}

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

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

.shell {
    width: min(1180px, calc(100% - 36px));
}

.section {
    padding: 92px 0;
}

.scroll-progress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1100;
    height: 3px;
    background: transparent;
}

    .scroll-progress span {
        display: block;
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, var(--gold), var(--gold-light));
    }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    transition: background .3s ease, box-shadow .3s ease;
}

    .site-header.scrolled {
        background: rgba(5, 22, 42, .94);
        box-shadow: 0 10px 30px rgba(0,0,0,.14);
        backdrop-filter: blur(14px);
    }

.navbar {
    min-height: 78px;
    padding: 10px 0;
}

.navbar-wordmark {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0;
    color: white !important;
}

.wordmark-symbol {
    position: relative;
    display: block;
    width: 51px;
    height: 51px;
    border: 4px solid white;
    border-right-color: transparent;
    border-radius: 50%;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    line-height: 1;
}

    .wordmark-symbol::before {
        content: "";
        position: absolute;
        top: -4px;
        left: 15px;
        width: 39px;
        height: 10px;
        background: var(--navy);
        border-top: 4px solid white;
        transform: skewX(-35deg);
        transition: background .3s ease;
    }

.scrolled .wordmark-symbol::before {
    background: #05162a;
}

.wordmark-symbol b {
    position: absolute;
    top: 12px;
    left: 9px;
    color: white;
    font-size: 27px;
    font-style: normal;
}

.wordmark-symbol i {
    position: absolute;
    top: 14px;
    left: 29px;
    color: white;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
}

.wordmark-name {
    position: relative;
    display: block;
    padding-bottom: 9px;
    color: white;
    font-family: "Oswald", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -.045em;
    line-height: .9;
}

    .wordmark-name::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 5px;
        left: 0;
        height: 1px;
        background: rgba(255,255,255,.9);
    }

    .wordmark-name small {
        position: absolute;
        bottom: -2px;
        left: 2px;
        color: white;
        font-family: "Manrope", sans-serif;
        font-size: .29rem;
        font-weight: 700;
        letter-spacing: .42em;
        line-height: 1;
    }

.navbar-nav {
    gap: 4px;
}

.nav-link {
    position: relative;
    padding: 12px 15px !important;
    color: rgba(255,255,255,.76) !important;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .03em;
}

    .nav-link::after {
        content: "";
        position: absolute;
        right: 15px;
        bottom: 6px;
        left: 15px;
        height: 2px;
        transform: scaleX(0);
        background: var(--gold);
        transition: transform .25s ease;
    }

    .nav-link:hover, .nav-link.active {
        color: #fff !important;
    }

        .nav-link:hover::after, .nav-link.active::after {
            transform: scaleX(1);
        }

.navbar-toggler {
    width: 46px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 3px;
    padding: 10px;
}

    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(211,154,40,.25);
    }

    .navbar-toggler span {
        width: 100%;
        height: 2px;
        margin: 4px 0;
        background: white;
        transition: .25s ease;
    }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .03em;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

    .button:hover {
        transform: translateY(-3px);
    }

    .button svg {
        width: 18px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
    }

.button-sm {
    min-height: 43px;
    padding-inline: 19px;
}

.button-gold {
    color: #07182c;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 14px 35px rgba(211,154,40,.22);
}

    .button-gold:hover {
        color: #07182c;
        box-shadow: 0 18px 38px rgba(211,154,40,.32);
    }

.hero {
    position: relative;
    display: grid;
    min-height: 760px;
    padding: 128px 0 88px;
    color: white;
    background: radial-gradient(circle at 75% 45%, #173d63 0, #0a2848 25%, #061a32 61%, #041326 100%);
    overflow: hidden;
}

.hero-grid-lines, .contact-lines {
    position: absolute;
    inset: 0;
    opacity: .2;
    background-image: linear-gradient(rgba(255,255,255,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.11) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(90deg, transparent, #000 45%, #000);
}

.hero::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 240px;
    background: linear-gradient(transparent, rgba(2,12,24,.58));
    pointer-events: none;
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(211,154,40,.27);
    border-radius: 50%;
}

.orbit-one {
    top: 12%;
    right: -170px;
    width: 620px;
    aspect-ratio: 1;
    animation: slowSpin 30s linear infinite;
}

.orbit-two {
    top: 25%;
    right: 15%;
    width: 290px;
    aspect-ratio: 1;
    border-style: dashed;
    animation: slowSpin 24s linear infinite reverse;
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 44px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--gold-light);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .19em;
    text-transform: uppercase;
}

    .eyebrow::before {
        content: "";
        width: 34px;
        height: 2px;
        background: currentColor;
    }

    .eyebrow.dark {
        color: #a26e0b;
    }

.hero h1, .section-heading h2, .contact-copy h2 {
    margin: 0;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    letter-spacing: -.035em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(3.2rem, 6.3vw, 6rem);
    line-height: .98;
}

    .hero h1 span, .section-heading h2 span, .contact-copy h2 span {
        color: var(--gold);
    }

.hero-lead {
    max-width: 610px;
    margin: 28px 0 34px;
    color: rgba(255,255,255,.72);
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    line-height: 1.78;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 26px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: .83rem;
    font-weight: 700;
}

.play-icon {
    display: grid;
    place-items: center;
    width: 43px;
    aspect-ratio: 1;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    transition: border-color .25s, transform .25s;
}

    .play-icon svg {
        width: 18px;
        fill: var(--gold-light);
    }

.text-link:hover {
    color: white;
}

    .text-link:hover .play-icon {
        border-color: var(--gold);
        transform: scale(1.08);
    }

.hero-visual {
    position: relative;
    min-height: 540px;
}

.gold-disc {
    position: absolute;
    top: 6%;
    left: 8%;
    width: 84%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 28%, #ffdf7a, #d29a2c 49%, #8d5b0b 80%);
    box-shadow: 0 0 100px rgba(211,154,40,.2);
    opacity: .82;
}

    .gold-disc::after {
        content: "";
        position: absolute;
        inset: 17px;
        border: 1px solid rgba(255,255,255,.28);
        border-radius: 50%;
    }

.industry-scene {
    position: absolute;
    z-index: 2;
    inset: 2% -7% 0 0;
    display: flex;
    align-items: flex-end;
    filter: drop-shadow(0 35px 35px rgba(0,0,0,.3));
    animation: sceneFloat 6s ease-in-out infinite;
}

    .industry-scene .ground {
        fill: #041426;
    }

.floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 184px;
    padding: 14px 16px;
    color: var(--navy);
    background: rgba(255,255,255,.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    animation: cardFloat 5s ease-in-out infinite;
}

    .floating-card > span {
        display: grid;
        place-items: center;
        min-width: 48px;
        height: 45px;
        color: var(--navy);
        background: var(--gold-light);
        font-family: "Oswald";
        font-size: 1.05rem;
        font-weight: 700;
    }

    .floating-card strong, .floating-card small {
        display: block;
    }

    .floating-card strong {
        font-size: .82rem;
    }

    .floating-card small {
        color: #6d7885;
        font-size: .64rem;
        margin-top: 3px;
    }

.card-top {
    top: 14%;
    right: -2%;
}

.card-bottom {
    right: 5%;
    bottom: 6%;
    animation-delay: -2.2s;
}

.scroll-cue {
    position: absolute;
    z-index: 3;
    bottom: 25px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.6);
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

    .scroll-cue span {
        position: relative;
        width: 20px;
        height: 31px;
        border: 1px solid rgba(255,255,255,.38);
        border-radius: 15px;
    }

        .scroll-cue span::after {
            content: "";
            position: absolute;
            top: 6px;
            left: 50%;
            width: 3px;
            height: 7px;
            border-radius: 3px;
            background: var(--gold);
            transform: translateX(-50%);
            animation: mouseScroll 1.8s ease infinite;
        }

.service-ribbon {
    position: relative;
    z-index: 4;
    padding: 20px 0;
    color: var(--navy);
    background: linear-gradient(90deg, #b67c14, #f3c65b 48%, #b4770d);
    overflow: hidden;
}

.ribbon-track {
    display: flex;
    align-items: center;
    gap: 25px;
    width: max-content;
    animation: ticker 28s linear infinite;
}

    .ribbon-track span {
        font-family: "Oswald";
        font-size: .78rem;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .ribbon-track i {
        width: 6px;
        height: 6px;
        background: var(--navy);
        transform: rotate(45deg);
    }

.section-heading h2, .contact-copy h2 {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1.03;
}

.about-section {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-copy {
    max-width: 580px;
    padding-top: 10px;
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.85;
}

    .about-copy .lead-copy {
        color: var(--ink);
        font-size: 1.18rem;
        font-weight: 600;
        line-height: 1.65;
    }

.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-top: 13px;
    color: var(--navy);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

    .arrow-link span {
        color: var(--gold);
        font-size: 1.3rem;
        transition: transform .25s;
    }

    .arrow-link:hover span {
        transform: translateX(5px);
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 72px;
    border: 1px solid var(--line);
    background: white;
}

.stat {
    min-height: 155px;
    padding: 30px;
    border-right: 1px solid var(--line);
}

    .stat:last-child {
        border: 0;
    }

    .stat strong {
        display: block;
        color: var(--navy);
        font-family: "Oswald";
        font-size: 3rem;
        line-height: 1;
    }

    .stat > span {
        display: block;
        margin-top: 14px;
        color: var(--muted);
        font-size: .7rem;
        font-weight: 700;
        letter-spacing: .06em;
        text-transform: uppercase;
    }

.stat-message {
    display: flex;
    align-items: center;
    background: var(--navy);
}

    .stat-message > span {
        margin: 0;
        color: rgba(255,255,255,.7);
        font-size: .78rem;
        line-height: 1.65;
    }

    .stat-message b {
        color: var(--gold-light);
    }

.services-section {
    color: white;
    background: var(--navy);
}

.heading-row {
    display: grid;
    grid-template-columns: 1fr 310px;
    align-items: end;
    gap: 70px;
    margin-bottom: 54px;
}

    .heading-row > p {
        margin: 0 0 8px;
        color: rgba(255,255,255,.58);
        font-size: .9rem;
        line-height: 1.7;
    }

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

.service-card {
    position: relative;
    min-height: 330px;
    padding: 34px;
    border-right: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.015);
    overflow: hidden;
    transition: background .35s ease, transform .35s ease;
}

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

    .service-card:hover, .service-card.featured {
        background: #0b2847;
    }

    .service-card:hover {
        transform: translateY(-7px);
    }

        .service-card:hover::before, .service-card.featured::before {
            transform: scaleX(1);
        }

.service-number {
    color: rgba(255,255,255,.28);
    font-family: "Oswald";
    font-size: .7rem;
    letter-spacing: .15em;
}

.service-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin: 26px 0;
    color: var(--gold-light);
    border: 1px solid rgba(211,154,40,.4);
}

    .service-icon svg {
        width: 28px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.service-card h3 {
    margin: 0 0 14px;
    font-family: "Oswald";
    font-size: 1.35rem;
    text-transform: uppercase;
}

.service-card p {
    max-width: 290px;
    margin: 0;
    color: rgba(255,255,255,.55);
    font-size: .82rem;
    line-height: 1.72;
}

.card-arrow {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--gold);
    font-size: 1.3rem;
    opacity: 0;
    transform: translate(-6px, 6px);
    transition: .3s ease;
}

.service-card:hover .card-arrow {
    opacity: 1;
    transform: none;
}

.why-section {
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 100px;
    align-items: center;
}

.why-visual {
    min-height: 560px;
    padding: 36px;
    background: linear-gradient(145deg, #061a32, #103b63);
    box-shadow: var(--shadow);
}

.why-frame {
    position: relative;
    display: grid;
    place-items: center;
    height: 100%;
    min-height: 488px;
    border: 1px solid rgba(211,154,40,.35);
    overflow: hidden;
}

    .why-frame::before, .why-frame::after {
        content: "";
        position: absolute;
        width: 330px;
        aspect-ratio: 1;
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 50%;
    }

    .why-frame::after {
        width: 440px;
    }

.vertical-label {
    position: absolute;
    top: 30px;
    left: 22px;
    color: rgba(255,255,255,.4);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.compass {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 190px;
    aspect-ratio: 1;
    border: 1px solid var(--gold);
    border-radius: 50%;
    animation: slowSpin 20s linear infinite;
}

    .compass::before {
        content: "";
        position: absolute;
        inset: 16px;
        border: 1px dashed rgba(255,255,255,.3);
        border-radius: 50%;
    }

    .compass span {
        color: var(--gold-light);
        font-family: "Oswald";
        font-size: 3rem;
        font-weight: 700;
        animation: slowSpin 20s linear infinite reverse;
    }

    .compass i {
        position: absolute;
        width: 12px;
        height: 12px;
        background: var(--gold);
        transform: rotate(45deg);
    }

        .compass i:nth-of-type(1) {
            top: -6px
        }

        .compass i:nth-of-type(2) {
            right: -6px
        }

        .compass i:nth-of-type(3) {
            bottom: -6px
        }

        .compass i:nth-of-type(4) {
            left: -6px
        }

.why-frame p {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 20px;
    left: 0;
    margin: 0;
    color: rgba(255,255,255,.65);
    font-family: "Oswald";
    font-size: .75rem;
    letter-spacing: .15em;
    text-align: center;
    text-transform: uppercase;
}

.why-copy .section-heading {
    margin-bottom: 36px;
}

.benefit {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 22px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
}

    .benefit:last-child {
        border-bottom: 1px solid var(--line);
    }

    .benefit b {
        color: var(--gold);
        font-family: "Oswald";
        font-size: .82rem;
        letter-spacing: .08em;
    }

    .benefit h3 {
        margin: 0 0 8px;
        color: var(--navy);
        font-family: "Oswald";
        font-size: 1.15rem;
        text-transform: uppercase;
    }

    .benefit p {
        margin: 0;
        color: var(--muted);
        font-size: .82rem;
        line-height: 1.65;
    }

.contact-section {
    position: relative;
    padding: 85px 0;
    color: white;
    background: linear-gradient(110deg, #071b33, #0c3154);
    overflow: hidden;
}

.contact-lines {
    opacity: .13;
    mask-image: linear-gradient(90deg, transparent, black);
}

.contact-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 70px;
    align-items: center;
}

.contact-copy h2 {
    max-width: 700px;
}

.contact-copy p {
    max-width: 620px;
    margin: 22px 0 0;
    color: rgba(255,255,255,.62);
    font-size: .9rem;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    min-width: 280px;
}

.contact-domain {
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,.72);
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.2);
    font-size: .8rem;
    font-weight: 700;
}

    .contact-domain span {
        color: var(--gold);
    }

.site-footer {
    padding: 35px 0;
    color: rgba(255,255,255,.54);
    background: #031021;
}

.footer-grid {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    gap: 30px;
}

.footer-brand img {
    width: 160px;
    filter: brightness(0) invert(1);
    opacity: .9;
}

.footer-grid p {
    margin: 0;
    font-size: .7rem;
}

.footer-grid > p:nth-child(2) {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.copyright {
    text-align: right;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}

    .reveal.in-view {
        opacity: 1;
        transform: none;
    }

.reveal-delay-1 {
    transition-delay: .1s;
}

.reveal-delay-2 {
    transition-delay: .2s;
}

.reveal-delay-3 {
    transition-delay: .3s;
}

@keyframes slowSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes sceneFloat {
    50% {
        transform: translateY(-11px);
    }
}

@keyframes cardFloat {
    50% {
        transform: translateY(-8px);
    }
}

@keyframes mouseScroll {
    0% {
        opacity: 0;
        transform: translate(-50%,0);
    }

    40% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%,9px);
    }
}

@keyframes ticker {
    to {
        transform: translateX(-44%);
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        margin: 10px -18px -10px;
        padding: 12px 20px 22px;
        background: rgba(4,17,33,.98);
        border-top: 1px solid rgba(255,255,255,.1);
    }

    .navbar-nav {
        align-items: stretch !important;
    }

    .nav-link {
        padding: 13px 2px !important;
    }

        .nav-link::after {
            right: auto;
            bottom: 8px;
            left: 2px;
            width: 30px;
        }

    .navbar-nav .button {
        width: 100%;
        margin-top: 10px;
    }

    .hero {
        min-height: auto;
        padding: 126px 0 80px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        position: relative;
        z-index: 4;
    }

    .hero-visual {
        width: min(600px, 100%);
        min-height: 500px;
        margin: -20px auto 0;
    }

    .scroll-cue {
        display: none;
    }

    .about-grid, .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .stat:nth-child(2) {
        border-right: 0;
    }

    .stat:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

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

    .heading-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

        .heading-row > p {
            max-width: 520px;
        }

    .why-visual {
        width: min(560px, 100%);
        min-height: 500px;
    }

    .why-frame {
        min-height: 428px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-actions {
        min-width: 0;
        max-width: 360px;
    }

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

    .copyright {
        grid-column: 1/-1;
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .shell {
        width: min(100% - 28px, 1180px);
    }

    .section {
        padding: 72px 0;
    }

    .navbar {
        min-height: 70px;
    }

    .wordmark-symbol {
        width: 43px;
        height: 43px;
    }

        .wordmark-symbol b {
            top: 10px;
            left: 7px;
            font-size: 23px;
        }

        .wordmark-symbol i {
            top: 12px;
            left: 24px;
            font-size: 20px;
        }

        .wordmark-symbol::before {
            left: 13px;
            width: 33px;
        }

    .wordmark-name {
        font-size: 1.68rem;
    }

    .hero {
        padding-top: 110px;
    }

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

    .hero-lead {
        margin-block: 22px 28px;
        font-size: .95rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 20px;
    }

        .hero-actions .button {
            width: 100%;
        }

    .text-link {
        justify-content: center;
    }

    .hero-visual {
        min-height: 390px;
        margin-top: 0;
    }

    .industry-scene {
        inset: 0 -14% 0 -8%;
    }

    .gold-disc {
        top: 7%;
        left: 9%;
        width: 82%;
    }

    .floating-card {
        min-width: 145px;
        padding: 9px;
    }

        .floating-card > span {
            min-width: 40px;
            height: 38px;
            font-size: .9rem;
        }

        .floating-card strong {
            font-size: .7rem;
        }

        .floating-card small {
            font-size: .55rem;
        }

    .card-top {
        top: 9%;
        right: 0;
    }

    .card-bottom {
        right: 0;
        bottom: 1%;
    }

    .section-heading h2, .contact-copy h2 {
        font-size: clamp(2.2rem, 12vw, 3.15rem);
    }

    .about-grid {
        gap: 30px;
    }

    .about-copy .lead-copy {
        font-size: 1.05rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        margin-top: 50px;
    }

    .stat {
        min-height: 130px;
        padding: 22px 18px;
    }

        .stat strong {
            font-size: 2.4rem;
        }

        .stat > span {
            font-size: .6rem;
        }

    .stat-message {
        grid-column: 1/-1;
        min-height: 100px;
    }

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

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

        .service-card.featured {
            background: rgba(255,255,255,.015);
        }

        .service-card:hover {
            transform: none;
        }

    .why-grid {
        gap: 42px;
    }

    .why-visual {
        min-height: 400px;
        padding: 20px;
    }

    .why-frame {
        min-height: 358px;
    }

    .compass {
        width: 145px;
    }

    .benefit {
        gap: 12px;
    }

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

    .contact-actions {
        max-width: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .copyright {
        grid-column: auto;
    }

    .footer-grid > p {
        text-align: left;
    }
}

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

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}
