:root {
    --navy-950: #031126;
    --navy-900: #061a35;
    --navy-800: #0a2a52;
    --navy-700: #0d3a72;
    --blue-500: #0b7ff5;
    --cyan-400: #13c4d7;
    --green-500: #66c51c;
    --green-400: #88e135;
    --ink: #071a31;
    --slate: #52647a;
    --mist: #edf4f7;
    --white: #fff;
    --z-header: 20;
    --z-menu: 30;
    --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

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

button {
    font: inherit;
}

.shell {
    width: min(1180px, calc(100% - 48px));
    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;
    top: 12px;
    left: 12px;
    z-index: 100;
    padding: 10px 14px;
    color: var(--navy-950);
    background: var(--white);
    transform: translateY(-150%);
    transition: transform .2s;
}

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

.marketing-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: var(--z-header);
    height: 92px;
    color: var(--white);
    transition: background .3s, box-shadow .3s;
}

.marketing-header.is-scrolled {
    position: fixed;
    height: 76px;
    color: var(--ink);
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 1px 0 rgba(7, 26, 49, .1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: inherit;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    width: 47px;
    height: 47px;
    overflow: hidden;
    place-items: center;
    background: var(--white);
    border-radius: 12px;
}

.brand-mark img {
    width: 42px;
    height: 42px;
    object-fit: cover;
}

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

.brand-copy strong {
    font-family: "Epilogue", sans-serif;
    font-size: 17px;
    font-style: normal;
    letter-spacing: -.03em;
}

.brand-copy em {
    color: var(--green-400);
    font-style: normal;
}

.marketing-header.is-scrolled .brand-copy em {
    color: #4da70c;
}

.brand-copy small {
    margin-top: 6px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .72;
}

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

.marketing-nav a {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.marketing-nav a:not(.nav-login)::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    content: "";
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s var(--ease-out);
}

.marketing-nav a:hover::after,
.marketing-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-login {
    padding: 12px 18px;
    color: var(--navy-950);
    background: var(--white);
    border-radius: 999px;
    transition: color .25s, background .25s, transform .25s;
}

.marketing-header.is-scrolled .nav-login {
    color: var(--white);
    background: var(--navy-900);
}

.nav-login:hover {
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
}

.hero {
    position: relative;
    min-height: 840px;
    padding-top: 92px;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 72% 46%, rgba(14, 102, 191, .42), transparent 34%),
        linear-gradient(132deg, var(--navy-950) 0%, #061c3d 52%, #09366a 100%);
}

.hero::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background: linear-gradient(110deg, rgba(255,255,255,.025) 0 1px, transparent 1px 100%);
    background-size: 130px 100%;
    opacity: .35;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
    gap: 28px;
    align-items: center;
    min-height: 675px;
    padding-block: 76px 58px;
}

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

.hero-kicker {
    display: flex;
    gap: 11px;
    align-items: center;
    margin: 0 0 22px;
    color: #c2d8e9;
    font-size: 13px;
    font-weight: 700;
}

.hero-kicker span {
    width: 29px;
    height: 2px;
    background: var(--green-400);
}

.hero h1,
.section-intro h2,
.resources-heading h2,
.office-copy h2,
.final-cta h2 {
    margin: 0;
    font-family: "Epilogue", sans-serif;
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: .99;
    text-wrap: balance;
}

.hero h1 {
    max-width: 690px;
    font-size: clamp(3.35rem, 5.7vw, 5.65rem);
}

.hero-lead {
    max-width: 620px;
    margin: 27px 0 0;
    color: #cad9e7;
    font-size: clamp(1rem, 1.3vw, 1.16rem);
    line-height: 1.72;
    text-wrap: pretty;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 35px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 23px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .3s var(--ease-out), background .3s, color .3s;
}

.button svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    transition: transform .3s var(--ease-out);
}

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

.button:hover svg {
    transform: translateX(4px);
}

.button-primary {
    color: var(--navy-950);
    background: var(--green-400);
}

.button-primary:hover {
    background: #9af05a;
}

.button-quiet {
    color: var(--white);
    border: 1px solid rgba(255,255,255,.34);
}

.button-quiet:hover {
    background: rgba(255,255,255,.08);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 21px;
    padding: 0;
    margin: 30px 0 0;
    color: #a9bfd2;
    font-size: 12px;
    list-style: none;
}

.hero-trust li {
    display: flex;
    gap: 7px;
    align-items: center;
}

.trust-check {
    display: grid;
    width: 17px;
    height: 17px;
    color: var(--navy-950);
    font-size: 10px;
    font-weight: 800;
    background: var(--green-400);
    border-radius: 50%;
    place-items: center;
}

.hero-aura {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: .32;
    animation: aura-drift 10s var(--ease-out) infinite alternate;
}

.hero-aura-one {
    top: 98px;
    right: -110px;
    width: 420px;
    height: 420px;
    background: #0a93f5;
}

.hero-aura-two {
    bottom: 110px;
    left: 36%;
    width: 190px;
    height: 190px;
    background: var(--cyan-400);
    filter: blur(75px);
    opacity: .15;
    animation-delay: -4s;
}

.command-stage {
    --rx: 4deg;
    --ry: -8deg;
    position: relative;
    min-height: 535px;
    perspective: 1300px;
    transform-style: preserve-3d;
}

.dashboard-3d {
    position: absolute;
    top: 73px;
    right: -46px;
    width: 645px;
    overflow: hidden;
    color: var(--ink);
    background: #f8fbfd;
    border-radius: 15px;
    box-shadow: -38px 46px 70px rgba(0, 6, 18, .35);
    transform: rotateX(var(--rx)) rotateY(var(--ry)) rotateZ(1deg);
    transform-style: preserve-3d;
    transition: transform .18s ease-out;
}

.dash-topbar {
    display: flex;
    height: 54px;
    align-items: center;
    justify-content: space-between;
    padding: 0 19px;
    color: var(--white);
    background: var(--navy-900);
}

.dash-brand,
.dash-user {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 10px;
    font-weight: 700;
}

.dash-brand img {
    width: 28px;
    height: 28px;
    object-fit: cover;
    background: white;
    border-radius: 7px;
}

.dash-user {
    color: #b9ccdf;
}

.dash-user span {
    width: 7px;
    height: 7px;
    background: var(--green-400);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(136, 225, 53, .1);
}

.dash-body {
    display: flex;
    min-height: 362px;
}

.dash-sidebar {
    display: flex;
    width: 57px;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    padding-top: 25px;
    background: #eaf1f5;
}

.dash-sidebar i {
    width: 17px;
    height: 4px;
    background: #b7c7d1;
    border-radius: 4px;
}

.dash-sidebar i.is-active {
    width: 24px;
    height: 24px;
    background: var(--navy-800);
    border-radius: 7px;
}

.dash-content {
    flex: 1;
    padding: 23px 25px 26px;
}

.dash-heading,
.widget-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dash-heading span {
    display: block;
    margin-bottom: 4px;
    color: #76879a;
    font-size: 9px;
}

.dash-heading strong {
    font-family: "Epilogue", sans-serif;
    font-size: 16px;
    letter-spacing: -.03em;
}

.dash-heading button {
    padding: 8px 11px;
    color: var(--white);
    background: var(--navy-800);
    border: 0;
    border-radius: 6px;
    font-size: 8px;
}

.dash-status-row {
    display: grid;
    grid-template-columns: 1.45fr .85fr;
    gap: 13px;
    margin-top: 18px;
}

.status-block,
.activity,
.radar-widget {
    padding: 15px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(16, 46, 73, .07);
}

.status-block span,
.status-block small {
    display: block;
    color: #7b8a9a;
    font-size: 8px;
}

.status-block strong {
    display: block;
    margin-top: 7px;
    color: var(--navy-900);
    font-family: "Epilogue", sans-serif;
    font-size: 18px;
}

.status-block strong.signal {
    display: flex;
    gap: 6px;
    align-items: center;
    color: #438b12;
    font-family: "Public Sans", sans-serif;
    font-size: 11px;
}

.signal i {
    width: 7px;
    height: 7px;
    background: var(--green-500);
    border-radius: 50%;
}

.status-block small {
    margin-top: 12px;
}

.mini-bars {
    display: flex;
    height: 30px;
    gap: 5px;
    align-items: end;
    margin-top: 11px;
}

.mini-bars i {
    width: 100%;
    height: 45%;
    background: #0b7ff5;
    border-radius: 2px 2px 0 0;
    animation: bar-pulse 2.6s var(--ease-out) infinite alternate;
}

.mini-bars i:nth-child(2) { height: 67%; animation-delay: -.4s; }
.mini-bars i:nth-child(3) { height: 54%; animation-delay: -.8s; }
.mini-bars i:nth-child(4) { height: 88%; animation-delay: -1.2s; }
.mini-bars i:nth-child(5) { height: 72%; animation-delay: -1.6s; }
.mini-bars i:nth-child(6) { height: 96%; animation-delay: -2s; }
.mini-bars i:nth-child(7) { height: 84%; animation-delay: -2.4s; }

.dash-lower {
    display: grid;
    grid-template-columns: 1.45fr .85fr;
    gap: 13px;
    margin-top: 13px;
}

.widget-title strong {
    font-size: 10px;
}

.widget-title span {
    color: #8292a2;
    font-size: 8px;
}

.activity-row {
    display: grid;
    grid-template-columns: 8px 1fr auto;
    gap: 8px;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid #eef2f5;
    font-size: 8px;
}

.activity-row:last-child {
    padding-bottom: 0;
    border: 0;
}

.activity-row i {
    width: 7px;
    height: 7px;
    border-radius: 2px;
}

.activity-row i.blue { background: var(--blue-500); }
.activity-row i.green { background: var(--green-500); }
.activity-row i.amber { background: #f5a928; }
.activity-row b { color: #5f7387; font-size: 7px; }

.radar-widget {
    position: relative;
    display: grid;
    min-height: 144px;
    overflow: hidden;
    place-items: center;
}

.radar-ring {
    position: absolute;
    border: 1px solid #c9e5f3;
    border-radius: 50%;
}

.ring-one { width: 90px; height: 90px; }
.ring-two { width: 55px; height: 55px; }

.radar-sweep {
    position: absolute;
    width: 78px;
    height: 78px;
    background: conic-gradient(from 0deg, rgba(11,127,245,.35), transparent 28%);
    border-radius: 50%;
    animation: radar 4s linear infinite;
}

.radar-widget span {
    z-index: 1;
    color: #718497;
    font-size: 7px;
    line-height: 1.4;
    text-align: center;
}

.radar-widget strong {
    color: var(--navy-800);
    font-size: 9px;
}

.float-chip {
    position: absolute;
    z-index: 4;
    display: flex;
    gap: 10px;
    align-items: center;
    min-width: 184px;
    padding: 12px 14px;
    color: var(--ink);
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 8px rgba(0, 8, 24, .18);
    animation: float 4.8s var(--ease-out) infinite alternate;
}

.float-chip strong,
.float-chip small {
    display: block;
}

.float-chip strong {
    font-size: 9px;
}

.float-chip small {
    margin-top: 3px;
    color: #7c8c9b;
    font-size: 7px;
}

.chip-alert {
    top: 31px;
    right: -6px;
}

.chip-document {
    bottom: 41px;
    left: -15px;
    animation-delay: -2s;
}

.chip-icon {
    display: grid;
    width: 31px;
    height: 31px;
    color: #326f09;
    background: #dbf8c5;
    border-radius: 8px;
    place-items: center;
}

.doc-lines {
    display: flex;
    width: 31px;
    height: 31px;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    padding: 6px;
    background: #dcebfa;
    border-radius: 7px;
}

.doc-lines i {
    height: 2px;
    background: var(--blue-500);
    border-radius: 2px;
}

.float-coin {
    position: absolute;
    z-index: 2;
    display: grid;
    width: 58px;
    height: 58px;
    color: var(--navy-900);
    font-family: "Epilogue", sans-serif;
    font-size: 17px;
    font-weight: 800;
    background: linear-gradient(145deg, #b7fa76, #5aad17);
    border: 5px solid rgba(255,255,255,.18);
    border-radius: 50%;
    box-shadow: 0 16px 28px rgba(0, 8, 24, .26);
    place-items: center;
    transform-style: preserve-3d;
    animation: coin-spin 10s linear infinite;
}

.coin-one { top: 76px; left: 18px; }
.coin-two {
    right: -22px;
    bottom: 90px;
    width: 45px;
    height: 45px;
    color: var(--white);
    font-size: 14px;
    background: linear-gradient(145deg, #1a9ef5, #07549e);
    animation-direction: reverse;
    animation-duration: 8s;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(99, 195, 255, .23);
    border-radius: 50%;
    transform: rotateX(65deg) rotateZ(-12deg);
}

.orbit::before {
    position: absolute;
    width: 8px;
    height: 8px;
    content: "";
    background: var(--green-400);
    border-radius: 50%;
    box-shadow: 0 0 18px var(--green-400);
}

.orbit-large {
    top: 10px;
    right: -86px;
    width: 600px;
    height: 510px;
    animation: orbit-rotate 20s linear infinite;
}

.orbit-large::before { top: 67px; left: 79px; }

.orbit-small {
    right: 65px;
    bottom: 14px;
    width: 330px;
    height: 250px;
    animation: orbit-rotate 13s linear infinite reverse;
}

.orbit-small::before { right: 31px; bottom: 36px; }

.stage-glow {
    position: absolute;
    right: 40px;
    bottom: 30px;
    width: 430px;
    height: 130px;
    background: rgba(7, 107, 214, .5);
    border-radius: 50%;
    filter: blur(45px);
    transform: rotate(-5deg);
}

.capability-track {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    overflow: hidden;
    color: var(--navy-950);
    background: var(--green-400);
}

.capability-track-inner {
    display: flex;
    width: max-content;
    align-items: center;
    animation: marquee 28s linear infinite;
}

.capability-track span {
    padding: 16px 22px;
    font-family: "Epilogue", sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.capability-track i {
    font-style: normal;
    opacity: .42;
}

.platform-section {
    padding: clamp(96px, 12vw, 170px) 0;
    background: var(--white);
}

.section-intro {
    display: grid;
    grid-template-columns: .55fr 1.2fr .75fr;
    gap: clamp(28px, 5vw, 76px);
    align-items: start;
}

.section-intro > p:first-child,
.resources-heading > p:first-child,
.office-copy > p:first-child,
.final-cta-inner > p:first-child {
    margin: 8px 0 0;
    color: #237eae;
    font-size: 13px;
    font-weight: 700;
}

.section-intro h2,
.resources-heading h2,
.office-copy h2,
.final-cta h2 {
    font-size: clamp(2.55rem, 4.8vw, 4.6rem);
}

.section-intro > div > p,
.resources-heading > p:not(:first-child),
.office-copy > p:not(:first-child) {
    max-width: 61ch;
    margin: 6px 0 24px;
    color: var(--slate);
    font-size: 15px;
    line-height: 1.8;
    text-wrap: pretty;
}

.section-intro a,
.text-link {
    display: inline-flex;
    gap: 11px;
    align-items: center;
    color: var(--navy-800);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.section-intro a span {
    color: var(--green-500);
    font-size: 20px;
}

.workflow-visual {
    position: relative;
    min-height: 660px;
    margin-top: 84px;
    overflow: hidden;
    background: var(--navy-900);
}

.workflow-backdrop {
    position: absolute;
    inset: -8%;
    overflow: hidden;
}

.workflow-backdrop::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(3, 17, 38, .24), rgba(3, 17, 38, .78));
}

.workflow-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08) translate3d(0, var(--parallax-y, 0), 0);
    transition: transform .15s linear;
}

.workflow-panel {
    position: absolute;
    top: 88px;
    right: clamp(30px, 7vw, 102px);
    width: min(460px, calc(100% - 60px));
    padding: 26px;
    color: var(--ink);
    background: rgba(255,255,255,.96);
    border-radius: 12px;
    box-shadow: 0 8px 8px rgba(0, 9, 28, .16);
}

.workflow-head span,
.workflow-head strong {
    display: block;
}

.workflow-head span {
    color: #648095;
    font-size: 11px;
}

.workflow-head strong {
    margin-top: 7px;
    font-family: "Epilogue", sans-serif;
    font-size: 23px;
    letter-spacing: -.03em;
}

.workflow-panel ol {
    padding: 0;
    margin: 25px 0 0;
    list-style: none;
}

.workflow-panel li {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    gap: 13px;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid #dce7ed;
}

.workflow-panel li > span {
    display: grid;
    width: 33px;
    height: 33px;
    color: #778a9c;
    font-size: 9px;
    background: #ebf1f5;
    border-radius: 50%;
    place-items: center;
}

.workflow-panel li.is-done > span {
    color: #346c0f;
    background: #ddf6cb;
}

.workflow-panel li.is-active > span {
    color: var(--white);
    background: var(--blue-500);
    box-shadow: 0 0 0 6px rgba(11, 127, 245, .1);
}

.workflow-panel li strong,
.workflow-panel li small {
    display: block;
}

.workflow-panel li strong {
    font-size: 12px;
}

.workflow-panel li small {
    margin-top: 4px;
    color: #748698;
    font-size: 9px;
}

.workflow-panel li b {
    color: #718597;
    font-size: 8px;
}

.workflow-panel li.is-done b { color: #4b8e1a; }
.workflow-panel li.is-active b { color: var(--blue-500); }

.workflow-caption {
    position: absolute;
    bottom: 53px;
    left: clamp(30px, 6vw, 79px);
    max-width: 400px;
    color: var(--white);
}

.workflow-caption span {
    display: block;
    margin-bottom: 12px;
    color: var(--green-400);
    font-size: 12px;
    font-weight: 700;
}

.workflow-caption strong {
    font-family: "Epilogue", sans-serif;
    font-size: clamp(1.7rem, 2.9vw, 2.75rem);
    letter-spacing: -.03em;
    line-height: 1.13;
}

.resources-section {
    padding: clamp(96px, 11vw, 155px) 0;
    background: #eff5f7;
}

.resources-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(50px, 9vw, 130px);
    align-items: start;
}

.resources-heading {
    position: sticky;
    top: 120px;
}

.resources-heading h2 {
    margin-top: 16px;
}

.resources-heading > p:not(:first-child) {
    margin-top: 25px;
}

.text-link {
    margin-top: 10px;
}

.text-link span {
    font-size: 18px;
    transition: transform .25s var(--ease-out);
}

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

.resource-list {
    border-top: 1px solid #bfd0da;
}

.resource-item {
    border-bottom: 1px solid #bfd0da;
}

.resource-item button {
    display: grid;
    width: 100%;
    grid-template-columns: 45px 1fr auto;
    gap: 17px;
    align-items: center;
    padding: 27px 0;
    color: var(--ink);
    text-align: left;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.resource-item button > span:nth-child(2) strong,
.resource-item button > span:nth-child(2) small {
    display: block;
}

.resource-item button strong {
    font-family: "Epilogue", sans-serif;
    font-size: 18px;
    letter-spacing: -.025em;
}

.resource-item button small {
    margin-top: 8px;
    color: #617487;
    font-size: 12px;
    line-height: 1.55;
}

.resource-symbol {
    display: grid;
    width: 41px;
    height: 41px;
    color: var(--navy-700);
    font-size: 20px;
    background: var(--white);
    border-radius: 10px;
    place-items: center;
}

.resource-item button > i {
    color: var(--navy-700);
    font-size: 22px;
    font-style: normal;
}

.resource-detail {
    display: none;
}

.resource-item.is-open .resource-detail {
    display: block;
}

.resource-detail p {
    margin: 0 0 15px 62px;
    color: #4f6477;
    font-size: 13px;
    line-height: 1.7;
}

.resource-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 0 0 26px 62px;
}

.resource-tags span {
    padding: 7px 10px;
    color: #31536f;
    background: #dcebf1;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 700;
}

.office-section {
    position: relative;
    min-height: 850px;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-950);
}

.office-image {
    position: absolute;
    inset: 0;
}

.office-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(3, 17, 38, .98) 0%, rgba(3, 17, 38, .86) 42%, rgba(3, 17, 38, .33) 100%),
        linear-gradient(0deg, rgba(3, 17, 38, .62), transparent 70%);
}

.office-image img {
    width: 100%;
    height: 115%;
    object-fit: cover;
    object-position: center;
    transform: translateY(var(--office-y, -6%)) scale(1.04);
}

.office-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: clamp(60px, 12vw, 170px);
    align-items: center;
    min-height: 850px;
    padding-block: 110px;
}

.office-copy > p:first-child {
    color: var(--green-400);
}

.office-copy > p:not(:first-child) {
    margin-top: 28px;
    color: #bfcedb;
}

.office-points {
    border-top: 1px solid rgba(255,255,255,.3);
}

.office-points > div {
    display: grid;
    grid-template-columns: 37px 1fr;
    column-gap: 15px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,.3);
}

.office-points span {
    grid-row: span 2;
    color: var(--green-400);
    font-family: "Epilogue", sans-serif;
    font-size: 11px;
}

.office-points strong {
    font-family: "Epilogue", sans-serif;
    font-size: 18px;
}

.office-points p {
    margin: 8px 0 0;
    color: #b8c8d5;
    font-size: 12px;
    line-height: 1.6;
}

.final-cta {
    position: relative;
    padding: clamp(100px, 13vw, 180px) 0;
    overflow: hidden;
    color: var(--white);
    background: #0b5fad;
}

.final-cta::before {
    position: absolute;
    inset: 0;
    content: "";
    background: radial-gradient(circle at 75% 30%, rgba(40, 191, 240, .5), transparent 34%);
}

.final-cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.final-cta-inner > p:first-child {
    color: #c8eeff;
}

.final-cta h2 {
    margin-top: 20px;
}

.cta-actions {
    justify-content: center;
}

.button-light {
    color: var(--navy-950);
    background: var(--white);
}

.button-outline-light {
    color: var(--white);
    border: 1px solid rgba(255,255,255,.5);
}

.button-outline-light:hover {
    color: var(--navy-950);
    background: var(--white);
}

.cta-sphere {
    position: absolute;
    border-radius: 50%;
    animation: sphere-drift 9s var(--ease-out) infinite alternate;
}

.sphere-one {
    top: -120px;
    left: -90px;
    width: 330px;
    height: 330px;
    background: radial-gradient(circle at 33% 27%, #b7ff7a, #53a717 50%, #17681e 100%);
    box-shadow: inset -32px -38px 70px rgba(0,0,0,.25), 0 35px 70px rgba(0,30,70,.2);
}

.sphere-two {
    right: -80px;
    bottom: -130px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle at 35% 25%, #7beaff, #0b7ff5 50%, #073a85 100%);
    box-shadow: inset -30px -35px 65px rgba(0,0,0,.26), 0 35px 70px rgba(0,30,70,.24);
    animation-delay: -4s;
}

.marketing-footer {
    padding: 72px 0 26px;
    color: #bdccd9;
    background: var(--navy-950);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .6fr .8fr;
    gap: 70px;
}

.brand-footer {
    color: var(--white);
}

.footer-brand p {
    max-width: 360px;
    margin: 24px 0 0;
    color: #8fa4b6;
    font-size: 13px;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 13px;
    font-size: 12px;
}

.footer-links strong {
    margin-bottom: 7px;
    color: var(--white);
    font-size: 13px;
}

.footer-links a {
    color: #9db0c0;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--green-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: #71889c;
    font-size: 10px;
}

@keyframes aura-drift {
    to { transform: translate3d(-40px, 25px, 0) scale(1.12); }
}

@keyframes float {
    to { transform: translate3d(0, -15px, 22px); }
}

@keyframes coin-spin {
    from { transform: rotateY(0) rotateX(10deg); }
    to { transform: rotateY(360deg) rotateX(10deg); }
}

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

@keyframes bar-pulse {
    to { transform: scaleY(.65); transform-origin: bottom; opacity: .7; }
}

@keyframes orbit-rotate {
    to { transform: rotateX(65deg) rotateZ(348deg); }
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

@keyframes sphere-drift {
    to { transform: translate3d(38px, 30px, 0) rotate(12deg); }
}

@media (max-width: 1120px) {
    .hero-grid {
        grid-template-columns: .9fr 1.1fr;
    }

    .dashboard-3d {
        right: -160px;
    }

    .chip-alert {
        right: -50px;
    }

    .coin-two {
        right: -20px;
    }
}

@media (max-width: 900px) {
    .shell {
        width: min(100% - 32px, 720px);
    }

    .marketing-header,
    .marketing-header.is-scrolled {
        height: 72px;
    }

    .nav-toggle {
        position: relative;
        z-index: calc(var(--z-menu) + 1);
        display: grid;
        width: 44px;
        height: 44px;
        padding: 12px;
        background: transparent;
        border: 0;
        place-items: center;
    }

    .nav-toggle span:not(.sr-only) {
        position: absolute;
        width: 21px;
        height: 2px;
        background: currentColor;
        transition: transform .3s var(--ease-out);
    }

    .nav-toggle span:first-child {
        transform: translateY(-4px);
    }

    .nav-toggle span:nth-child(2) {
        transform: translateY(4px);
    }

    .nav-toggle[aria-expanded="true"] span:first-child {
        transform: rotate(45deg);
    }

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

    .marketing-nav {
        position: fixed;
        inset: 0;
        z-index: var(--z-menu);
        display: flex;
        flex-direction: column;
        gap: 26px;
        align-items: flex-start;
        justify-content: center;
        padding: 50px 10vw;
        color: var(--white);
        background: var(--navy-950);
        clip-path: circle(0 at calc(100% - 38px) 37px);
        pointer-events: none;
        transition: clip-path .65s var(--ease-out);
    }

    .marketing-nav.is-open {
        clip-path: circle(150% at calc(100% - 38px) 37px);
        pointer-events: auto;
    }

    .marketing-nav a {
        font-family: "Epilogue", sans-serif;
        font-size: clamp(1.7rem, 7vw, 3rem);
        letter-spacing: -.03em;
    }

    .marketing-nav .nav-login {
        padding: 13px 18px;
        color: var(--navy-950);
        background: var(--green-400);
        font-family: "Public Sans", sans-serif;
        font-size: 14px;
    }

    .hero {
        min-height: 1180px;
        padding-top: 72px;
    }

    .hero-grid {
        display: block;
        min-height: auto;
        padding-top: 80px;
    }

    .hero-copy {
        max-width: 690px;
    }

    .hero h1 {
        max-width: 620px;
    }

    .command-stage {
        min-height: 515px;
        margin-top: 45px;
        transform: scale(.89);
        transform-origin: left top;
    }

    .dashboard-3d {
        right: auto;
        left: 5%;
    }

    .chip-alert {
        right: -10px;
    }

    .coin-one {
        left: -4px;
    }

    .section-intro,
    .resources-grid,
    .office-content {
        grid-template-columns: 1fr;
    }

    .section-intro {
        gap: 26px;
    }

    .section-intro > p:first-child {
        margin-bottom: -7px;
    }

    .section-intro > div {
        max-width: 610px;
    }

    .workflow-visual {
        min-height: 760px;
    }

    .workflow-panel {
        top: 62px;
        right: 30px;
    }

    .workflow-caption {
        bottom: 48px;
    }

    .resources-heading {
        position: static;
    }

    .office-content {
        gap: 55px;
        align-content: center;
    }

    .office-points {
        max-width: 600px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr .8fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .shell {
        width: calc(100% - 34px);
    }

    .brand-copy small {
        display: none;
    }

    .hero {
        min-height: 1030px;
    }

    .hero-grid {
        padding-top: 58px;
    }

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

    .hero-actions,
    .cta-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

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

    .command-stage {
        min-height: 420px;
        margin-top: 32px;
        transform: scale(.61);
        transform-origin: left top;
        width: 157%;
    }

    .dashboard-3d {
        top: 65px;
        left: -28px;
    }

    .chip-alert {
        top: 23px;
        right: 3%;
    }

    .chip-document {
        bottom: 18px;
        left: 5px;
    }

    .coin-one {
        left: -16px;
    }

    .coin-two {
        right: 1%;
    }

    .capability-track span {
        padding: 14px 18px;
        font-size: 12px;
    }

    .platform-section,
    .resources-section {
        padding-block: 86px;
    }

    .section-intro h2,
    .resources-heading h2,
    .office-copy h2,
    .final-cta h2 {
        font-size: clamp(2.35rem, 11vw, 3.35rem);
    }

    .workflow-visual {
        min-height: 710px;
        margin-top: 55px;
    }

    .workflow-backdrop {
        inset: 0;
    }

    .workflow-backdrop img {
        object-position: 35% center;
    }

    .workflow-panel {
        top: 34px;
        right: 17px;
        width: calc(100% - 34px);
        padding: 20px;
    }

    .workflow-panel li {
        grid-template-columns: 34px 1fr;
    }

    .workflow-panel li b {
        display: none;
    }

    .workflow-caption {
        right: 23px;
        bottom: 35px;
        left: 23px;
    }

    .resource-item button {
        grid-template-columns: 39px 1fr auto;
        gap: 12px;
    }

    .resource-item button strong {
        font-size: 15px;
    }

    .resource-detail p {
        margin-left: 51px;
    }

    .resource-tags {
        padding-left: 51px;
    }

    .office-section,
    .office-content {
        min-height: 900px;
    }

    .office-image img {
        object-position: 44% center;
    }

    .office-image::after {
        background: linear-gradient(90deg, rgba(3,17,38,.96), rgba(3,17,38,.72));
    }

    .office-content {
        padding-block: 82px;
    }

    .sphere-one {
        top: -90px;
        left: -130px;
        width: 250px;
        height: 250px;
    }

    .sphere-two {
        right: -130px;
        bottom: -100px;
        width: 230px;
        height: 230px;
    }

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

    .footer-brand {
        grid-column: auto;
    }

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

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

    .dashboard-3d {
        transform: rotateX(3deg) rotateY(-5deg);
    }

    .workflow-backdrop img,
    .office-image img {
        transform: none;
    }
}
