@font-face {
    font-family: "Manrope";
    src: url("/marketing/fonts/manrope-latin-variable.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
}

@font-face {
    font-family: "Space Grotesk";
    src: url("/marketing/fonts/space-grotesk-latin-variable.woff2") format("woff2");
    font-style: normal;
    font-weight: 500 700;
    font-display: swap;
}

:root {
    --ink: #06101d;
    --ink-soft: #0b1b2d;
    --navy: #0a223d;
    --blue: #1769e0;
    --azure: #33a6ff;
    --cyan: #66e2ff;
    --mint: #71f1c2;
    --gold: #f3b44b;
    --paper: #f4f7f5;
    --paper-blue: #eaf3f7;
    --white: #ffffff;
    --text: #102033;
    --muted: #617081;
    --line-dark: rgba(149, 199, 236, 0.15);
    --line-light: rgba(12, 42, 67, 0.14);
    --header-height: 86px;
    --shell: min(1180px, calc(100vw - 48px));
    --radius: 22px;
    --font-body: "Manrope", "Segoe UI", sans-serif;
    --font-display: "Space Grotesk", "Segoe UI", sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--ink);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

html.nav-open,
body.nav-open {
    overflow: hidden;
    overscroll-behavior: none;
}

img,
canvas {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

::selection {
    background: rgba(102, 226, 255, 0.3);
    color: var(--white);
}

.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: 12px;
    left: 12px;
    transform: translateY(-180%);
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--white);
    color: var(--ink);
    font-weight: 800;
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.ambient,
.page-noise {
    position: fixed;
    z-index: -2;
    pointer-events: none;
}

.ambient {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.14;
}

.ambient-one {
    top: -300px;
    right: -240px;
    background: var(--azure);
}

.ambient-two {
    bottom: -350px;
    left: -300px;
    background: var(--blue);
}

.page-noise {
    inset: 0;
    z-index: 30;
    opacity: 0.055;
    mix-blend-mode: soft-light;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.45) 0 0.7px, transparent 0.8px),
        radial-gradient(circle at 70% 65%, rgba(255, 255, 255, 0.3) 0 0.6px, transparent 0.7px);
    background-size: 7px 7px, 11px 11px;
}

/* Header */

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid transparent;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.site-header::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    pointer-events: none;
    border-bottom: 1px solid transparent;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transition:
        background-color 250ms ease,
        border-color 250ms ease,
        box-shadow 250ms ease,
        -webkit-backdrop-filter 250ms ease,
        backdrop-filter 250ms ease;
}

.site-header.is-scrolled {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.site-header.is-scrolled::before {
    border-color: var(--line-dark);
    background: rgba(5, 15, 27, 0.82);
    box-shadow: none;
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    backdrop-filter: blur(18px) saturate(140%);
}

.header-inner {
    position: relative;
    z-index: 1;
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    min-width: 208px;
}

.brand-symbol {
    position: relative;
    width: 48px;
    height: 34px;
    flex: 0 0 48px;
    filter: drop-shadow(0 0 12px rgba(51, 166, 255, 0.16));
}

.brand-stream {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 17px;
    width: 27px;
    height: 2px;
    border-radius: 999px;
    color: var(--cyan);
    background: linear-gradient(90deg, currentColor, var(--azure));
    opacity: 0.78;
    transform-origin: 100% 50%;
    transition:
        opacity 220ms ease,
        filter 220ms ease;
}

.brand-stream::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -1px;
    width: 5px;
    height: 5px;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: var(--ink);
    transform: translateY(-50%);
}

.brand-stream-one {
    color: var(--cyan);
    transform: translateY(-1px) rotate(25deg);
}

.brand-stream-two {
    color: var(--azure);
    transform: translateY(-1px);
}

.brand-stream-three {
    color: var(--gold);
    transform: translateY(-1px) rotate(-25deg);
}

.brand-river {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 7px;
    width: 13px;
    height: 6px;
    background: linear-gradient(90deg, var(--azure), var(--cyan));
    clip-path: polygon(0 34%, 100% 0, 100% 100%, 0 66%);
}

.brand-lake {
    position: absolute;
    z-index: 3;
    top: 5px;
    right: 0;
    width: 13px;
    height: 24px;
    border: 1.5px solid rgba(102, 226, 255, 0.9);
    border-radius: 50%;
    background:
        radial-gradient(ellipse at center, rgba(102, 226, 255, 0.18), rgba(23, 105, 224, 0.04) 62%, transparent 64%);
    box-shadow:
        inset 0 0 8px rgba(102, 226, 255, 0.18),
        0 0 12px rgba(51, 166, 255, 0.18);
    transform: rotate(8deg);
    transition:
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.brand-wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 0.28em;
    color: rgba(248, 252, 255, 0.96);
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1;
    white-space: nowrap;
}

.brand-wordmark-data {
    color: rgba(177, 211, 234, 0.82);
    font-weight: 500;
    transition: color 220ms ease;
}

.brand:hover .brand-stream {
    opacity: 1;
    filter: brightness(1.12);
}

.brand:hover .brand-lake {
    border-color: var(--cyan);
    box-shadow:
        inset 0 0 10px rgba(102, 226, 255, 0.24),
        0 0 18px rgba(51, 166, 255, 0.3);
}

.brand:hover .brand-wordmark-data {
    color: var(--cyan);
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    position: relative;
    color: rgba(235, 245, 255, 0.72);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: color 180ms ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--cyan);
    transition: transform 240ms var(--ease-out);
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
}

.nav-link-quiet {
    color: rgba(235, 245, 255, 0.7);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--line-dark);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
}

.nav-toggle span:not(.sr-only) {
    position: absolute;
    width: 18px;
    height: 1.5px;
    background: currentColor;
    transition: transform 220ms ease;
}

.nav-toggle span:nth-child(2) {
    transform: translateY(-4px);
}

.nav-toggle span:nth-child(3) {
    transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Shared typography and buttons */

.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 22px;
    color: var(--cyan);
    font-size: 0.71rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow-dark {
    color: #1663aa;
}

.pulse-dot {
    position: relative;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 5px rgba(113, 241, 194, 0.09);
}

.pulse-dot::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(113, 241, 194, 0.45);
    border-radius: 50%;
    animation: pulse-ring 2.2s ease-out infinite;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    letter-spacing: -0.045em;
}

h1 {
    margin-bottom: 30px;
    font-size: clamp(3.6rem, 7.2vw, 7.1rem);
    font-weight: 600;
    line-height: 0.93;
}

h1 span,
h2 span {
    color: var(--cyan);
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    font-weight: 600;
    line-height: 0.98;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.15;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.2;
    transition:
        transform 220ms var(--ease-out),
        color 220ms ease,
        background-color 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button span {
    font-size: 1.05rem;
    transition: transform 220ms var(--ease-out);
}

.button:hover span {
    transform: translate(2px, -2px);
}

.button-primary {
    background: linear-gradient(135deg, #258af1, #35baf2);
    color: #03101e;
    box-shadow: 0 12px 36px rgba(35, 146, 238, 0.25);
}

.button-primary:hover {
    box-shadow: 0 16px 44px rgba(35, 146, 238, 0.38);
}

.button-secondary {
    border-color: var(--line-dark);
    background: rgba(255, 255, 255, 0.035);
    color: rgba(245, 250, 255, 0.88);
}

.button-secondary:hover {
    border-color: rgba(102, 226, 255, 0.45);
    background: rgba(102, 226, 255, 0.07);
}

.button-small {
    min-height: 43px;
    padding: 11px 17px;
    font-size: 0.76rem;
}

.button-large {
    min-height: 62px;
    padding: 17px 28px;
    font-size: 0.9rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--cyan);
    font-size: 0.86rem;
    font-weight: 800;
}

.text-link span {
    transition: transform 220ms var(--ease-out);
}

.text-link:hover span {
    transform: translateX(5px);
}

.text-link-dark {
    color: #0d5da7;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 42px;
    color: rgba(235, 245, 255, 0.58);
    font-size: 0.78rem;
    font-weight: 700;
    transition: color 180ms ease;
}

.back-link:hover {
    color: var(--white);
}

/* Reveal motion */

.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 850ms var(--ease-out),
        transform 850ms var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero */

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    padding: calc(var(--header-height) + 84px) 0 40px;
    background:
        radial-gradient(circle at 78% 30%, rgba(31, 121, 221, 0.2), transparent 34%),
        linear-gradient(145deg, #06101d 8%, #071a2c 58%, #06101d 100%);
}

.signal-field,
.hero-grid-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.signal-field {
    opacity: 0.66;
}

.hero-grid-lines,
.page-hero-grid,
.contact-grid,
.final-cta-grid {
    background-image:
        linear-gradient(var(--line-dark) 1px, transparent 1px),
        linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
    background-size: 76px 76px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.92), transparent 96%);
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
    align-items: center;
    gap: clamp(58px, 7vw, 112px);
}

.hero-copy {
    max-width: 720px;
}

.hero-copy h1 span {
    display: block;
    background: linear-gradient(100deg, #70e5ff 10%, #2e99f4 58%, #79f1c7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lede,
.page-hero-lede {
    max-width: 690px;
    margin-bottom: 34px;
    color: rgba(230, 241, 250, 0.68);
    font-size: clamp(1rem, 1.4vw, 1.16rem);
    line-height: 1.8;
}

.hero-note {
    margin: 17px 0 0;
    color: rgba(230, 241, 250, 0.7);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hero-system {
    position: relative;
    perspective: 1100px;
}

.system-glow {
    position: absolute;
    inset: 5% -10%;
    border-radius: 50%;
    background: rgba(36, 140, 244, 0.18);
    filter: blur(70px);
}

.system-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(121, 195, 244, 0.2);
    border-radius: 20px;
    background:
        linear-gradient(150deg, rgba(17, 48, 78, 0.87), rgba(7, 21, 36, 0.92)),
        rgba(8, 24, 42, 0.9);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    transform: rotateY(-4deg) rotateX(2deg);
    transition: transform 700ms var(--ease-out);
}

.hero-system:hover .system-panel {
    transform: rotateY(0) rotateX(0) translateY(-5px);
}

.system-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, 0.055), transparent 67%);
    transform: translateX(-120%);
    animation: panel-sheen 8s ease-in-out infinite;
}

.system-header {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 19px;
    border-bottom: 1px solid var(--line-dark);
    color: rgba(233, 244, 255, 0.72);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.system-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(113, 241, 194, 0.75);
}

.system-status i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 12px var(--mint);
}

.system-stage {
    position: relative;
    padding: 21px;
}

.stage-label {
    display: block;
    margin-bottom: 13px;
    color: rgba(203, 224, 240, 0.68);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.signal-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.signal-pills span {
    padding: 9px 11px;
    border: 1px solid rgba(241, 180, 75, 0.16);
    border-radius: 6px;
    background: rgba(241, 180, 75, 0.045);
    color: rgba(247, 229, 197, 0.67);
    font-size: 0.66rem;
}

.signal-pills span:last-child {
    grid-column: 1 / -1;
}

.flow-rail {
    height: 34px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 20px;
    padding: 0 42px;
}

.flow-rail span {
    position: relative;
    height: 1px;
    overflow: hidden;
    background: rgba(102, 226, 255, 0.14);
}

.flow-rail span::after {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 38%;
    height: 1px;
    background: var(--cyan);
    box-shadow: 0 0 9px var(--cyan);
    animation: signal-run 2.3s linear infinite;
}

.flow-rail span:nth-child(2)::after {
    animation-delay: 550ms;
}

.flow-rail span:nth-child(3)::after {
    animation-delay: 1.1s;
}

.system-stage-core {
    min-height: 132px;
    display: flex;
    align-items: center;
    gap: 22px;
    margin-inline: 20px;
    border: 1px solid rgba(61, 168, 248, 0.23);
    border-radius: 12px;
    background: radial-gradient(circle at 18% 50%, rgba(52, 160, 247, 0.14), transparent 45%);
}

.system-stage-core .stage-label {
    position: absolute;
    top: 14px;
    left: 17px;
}

.core-orbit {
    position: relative;
    width: 78px;
    height: 78px;
    flex: 0 0 auto;
    margin-top: 14px;
    border: 1px solid rgba(102, 226, 255, 0.22);
    border-radius: 50%;
}

.core-orbit span {
    position: absolute;
    inset: 10px;
    border: 1px dashed rgba(102, 226, 255, 0.23);
    border-radius: 50%;
    animation: orbit-spin 10s linear infinite;
}

.core-orbit span:nth-child(2) {
    inset: 22px;
    border-style: solid;
    border-color: rgba(113, 241, 194, 0.36);
    animation-direction: reverse;
    animation-duration: 6s;
}

.core-orbit i {
    position: absolute;
    inset: 31px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 22px rgba(102, 226, 255, 0.85);
}

.core-copy {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 14px;
}

.core-copy strong {
    color: rgba(242, 250, 255, 0.9);
    font-family: var(--font-display);
    font-size: 0.82rem;
}

.core-copy small {
    color: rgba(211, 230, 244, 0.68);
    font-size: 0.66rem;
}

.flow-rail-out span::after {
    background: var(--mint);
    box-shadow: 0 0 9px var(--mint);
}

.output-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.output-grid div {
    min-height: 66px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(113, 241, 194, 0.13);
    border-radius: 7px;
    background: rgba(113, 241, 194, 0.035);
}

.output-grid i {
    width: 15px;
    height: 2px;
    background: var(--mint);
    box-shadow: 0 0 8px rgba(113, 241, 194, 0.5);
}

.output-grid span {
    color: rgba(221, 246, 237, 0.65);
    font-size: 0.58rem;
    line-height: 1.35;
}

.system-caption {
    display: flex;
    justify-content: space-between;
    padding: 14px 5px 0;
    color: rgba(222, 238, 250, 0.66);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-proof {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(64px, 8vh, 110px);
    border-top: 1px solid var(--line-dark);
}

.hero-proof div {
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 20px 30px;
    border-right: 1px solid var(--line-dark);
}

.hero-proof div:first-child {
    padding-left: 0;
}

.hero-proof div:last-child {
    border-right: 0;
}

.hero-proof strong {
    color: rgba(241, 249, 255, 0.88);
    font-family: var(--font-display);
    font-size: 0.85rem;
}

.hero-proof span {
    color: rgba(216, 231, 242, 0.68);
    font-size: 0.7rem;
}

/* Section systems */

.section {
    position: relative;
    padding: clamp(92px, 11vw, 156px) 0;
}

.section-light {
    background: var(--paper);
    color: var(--text);
}

.section-deep {
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 10%, rgba(36, 125, 220, 0.14), transparent 32%),
        var(--ink);
}

.split-intro,
.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.65fr);
    align-items: end;
    gap: 90px;
}

.split-intro {
    align-items: start;
}

.split-intro h2 {
    max-width: 760px;
}

.prose-large {
    padding-top: 36px;
}

.prose-large p {
    color: #536476;
    font-size: 1.04rem;
    line-height: 1.9;
}

.prose-large p:last-child {
    margin-bottom: 0;
}

.friction-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 72px;
}

.friction-card {
    position: relative;
    min-height: 282px;
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--line-light);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.72);
    transition:
        transform 320ms var(--ease-out),
        box-shadow 320ms var(--ease-out);
}

.friction-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 50px rgba(13, 42, 67, 0.1);
}

.card-index {
    display: block;
    margin-bottom: 65px;
    color: #1c6bad;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.friction-card h3 {
    margin-bottom: 13px;
    color: #102941;
    font-size: 1.32rem;
}

.friction-card p {
    max-width: 320px;
    margin-bottom: 0;
    color: #617181;
    font-size: 0.87rem;
}

.card-signal {
    position: absolute;
    top: 64px;
    right: 25px;
    width: 100px;
    height: 66px;
    opacity: 0.6;
    background:
        radial-gradient(circle at 10% 70%, #f3b44b 0 3px, transparent 4px),
        radial-gradient(circle at 55% 35%, #339ef1 0 3px, transparent 4px),
        radial-gradient(circle at 90% 72%, #55caa0 0 3px, transparent 4px),
        linear-gradient(28deg, transparent 45%, rgba(25, 106, 171, 0.28) 46% 48%, transparent 49%),
        linear-gradient(150deg, transparent 45%, rgba(25, 106, 171, 0.28) 46% 48%, transparent 49%);
}

.insight-callout {
    display: flex;
    align-items: center;
    gap: 27px;
    margin-top: 24px;
    padding: 27px 30px;
    border: 1px solid rgba(26, 96, 151, 0.18);
    border-radius: 13px;
    background: #e7f1f4;
}

.insight-mark {
    width: 42px;
    height: 42px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(31, 108, 170, 0.24);
    border-radius: 50%;
    color: #196baa;
}

.insight-callout p {
    margin: 0;
    color: #43566a;
    font-size: 0.96rem;
}

.insight-callout strong {
    color: #0f2a43;
}

.section-heading > p {
    max-width: 450px;
    margin-bottom: 21px;
    color: rgba(215, 232, 245, 0.5);
    font-size: 0.95rem;
    line-height: 1.8;
}

.capability-list {
    margin-top: 72px;
    border-top: 1px solid var(--line-dark);
}

.capability-row {
    min-height: 154px;
    display: grid;
    grid-template-columns: 72px minmax(220px, 0.85fr) minmax(280px, 1.15fr) 45px;
    align-items: center;
    gap: 25px;
    border-bottom: 1px solid var(--line-dark);
    transition:
        padding 300ms var(--ease-out),
        background-color 250ms ease;
}

.capability-row:hover {
    padding-inline: 20px;
    background: linear-gradient(90deg, rgba(40, 147, 235, 0.08), transparent 70%);
}

.capability-number {
    color: rgba(102, 226, 255, 0.55);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.capability-title {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.capability-title strong {
    color: rgba(245, 250, 255, 0.94);
    font-family: var(--font-display);
    font-size: 1.34rem;
    letter-spacing: -0.03em;
}

.capability-title small {
    color: rgba(206, 224, 238, 0.68);
    font-size: 0.7rem;
}

.capability-description {
    max-width: 520px;
    color: rgba(211, 230, 244, 0.52);
    font-size: 0.82rem;
}

.capability-arrow {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-dark);
    border-radius: 50%;
    color: var(--cyan);
    transition:
        color 200ms ease,
        background-color 200ms ease,
        transform 300ms var(--ease-out);
}

.capability-row:hover .capability-arrow {
    transform: rotate(45deg);
    background: var(--cyan);
    color: var(--ink);
}

.section-action {
    display: flex;
    justify-content: flex-end;
    margin-top: 38px;
}

.section-blueprint {
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(30, 108, 171, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(30, 108, 171, 0.08) 1px, transparent 1px),
        var(--paper-blue);
    background-size: 76px 76px;
    color: var(--text);
}

.blueprint-layout {
    display: grid;
    grid-template-columns: minmax(330px, 0.78fr) minmax(500px, 1.22fr);
    align-items: start;
    gap: 110px;
}

.blueprint-copy {
    position: sticky;
    top: calc(var(--header-height) + 45px);
}

.blueprint-copy > p:not(.eyebrow) {
    max-width: 520px;
    margin-bottom: 32px;
    color: #566879;
    line-height: 1.85;
}

.process-track {
    position: relative;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-track::before {
    content: "";
    position: absolute;
    top: 34px;
    bottom: 34px;
    left: 27px;
    width: 1px;
    background: linear-gradient(#2f9de9, #70e7c2);
}

.process-track li {
    position: relative;
    min-height: 155px;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 30px;
    padding-bottom: 34px;
}

.process-track li > span {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(28, 108, 171, 0.28);
    border-radius: 50%;
    background: var(--paper-blue);
    color: #1c6cae;
    font-size: 0.65rem;
    font-weight: 800;
}

.process-track h3 {
    margin: 4px 0 10px;
    color: #102a43;
    font-size: 1.35rem;
}

.process-track p {
    max-width: 520px;
    color: #627384;
    font-size: 0.86rem;
}

.section-outcomes {
    background:
        radial-gradient(circle at 50% 0%, rgba(45, 148, 231, 0.15), transparent 35%),
        #071320;
}

.section-heading-compact {
    grid-template-columns: 1fr;
}

.outcome-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 58px;
}

.outcome-grid article {
    min-height: 175px;
    padding: 31px;
    border: 1px solid var(--line-dark);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
}

.outcome-transition {
    display: grid;
    grid-template-columns: auto minmax(40px, 1fr) auto;
    align-items: center;
    gap: 18px;
}

.outcome-transition span {
    color: rgba(217, 232, 244, 0.68);
    font-size: 0.83rem;
    text-decoration: line-through;
}

.outcome-transition i {
    position: relative;
    height: 1px;
    overflow: hidden;
    background: rgba(102, 226, 255, 0.14);
}

.outcome-transition i::after {
    content: "";
    position: absolute;
    left: -40%;
    width: 40%;
    height: 1px;
    background: var(--cyan);
    animation: signal-run 3s linear infinite;
}

.outcome-transition strong {
    color: var(--cyan);
    font-family: var(--font-display);
    font-size: 1.14rem;
}

.outcome-grid p {
    margin: 31px 0 0;
    color: rgba(212, 230, 244, 0.5);
    font-size: 0.8rem;
}

.section-fit {
    background: #f0f4f1;
    color: var(--text);
}

.fit-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.78fr) minmax(500px, 1.22fr);
    gap: 110px;
}

.fit-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line-light);
    list-style: none;
}

.fit-list li {
    min-height: 79px;
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid var(--line-light);
    color: #3f5265;
    font-size: 0.91rem;
}

.fit-list span {
    color: #1c6cae;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.section-founder {
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 50%, rgba(41, 142, 231, 0.16), transparent 33%),
        #081522;
}

.founder-panel {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: center;
    gap: 95px;
    padding: 80px;
    border: 1px solid var(--line-dark);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.025);
}

.founder-orbit {
    position: relative;
    width: 260px;
    height: 260px;
    display: grid;
    place-items: center;
}

.founder-orbit span {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(102, 226, 255, 0.18);
    border-radius: 50%;
}

.founder-orbit span:nth-child(2) {
    inset: 35px;
    border-style: dashed;
    animation: orbit-spin 14s linear infinite;
}

.founder-orbit span:nth-child(2)::after {
    content: "";
    position: absolute;
    top: -4px;
    left: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 14px var(--cyan);
}

.founder-orbit i,
.quality-mark {
    width: 120px;
    height: 120px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(102, 226, 255, 0.28);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(57, 164, 243, 0.23), rgba(8, 25, 42, 0.9));
    color: var(--cyan);
    font-family: var(--font-display);
    font-size: 3rem;
    font-style: normal;
}

.founder-panel > div:last-child {
    max-width: 640px;
}

.founder-panel h2 {
    font-size: clamp(2.6rem, 4.8vw, 4.4rem);
}

.founder-panel p:not(.eyebrow) {
    max-width: 600px;
    margin-bottom: 30px;
    color: rgba(215, 232, 245, 0.52);
    line-height: 1.85;
}

.final-cta {
    overflow: hidden;
    padding-block: clamp(110px, 13vw, 175px);
    background:
        radial-gradient(circle at 50% 25%, rgba(34, 141, 233, 0.25), transparent 36%),
        #06101d;
    text-align: center;
}

.final-cta-grid {
    position: absolute;
    inset: 0;
    opacity: 0.7;
    mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.final-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-cta-inner .eyebrow {
    justify-content: center;
}

.final-cta-inner h2 {
    max-width: 850px;
}

.final-cta-inner > p:not(.eyebrow) {
    max-width: 650px;
    margin-bottom: 34px;
    color: rgba(215, 232, 245, 0.52);
}

.final-cta-compact .final-cta-inner h2 {
    max-width: 760px;
    font-size: clamp(2.4rem, 4.8vw, 4.3rem);
}

/* Interior page hero */

.page-hero {
    position: relative;
    overflow: hidden;
    padding: calc(var(--header-height) + 120px) 0 105px;
    background:
        radial-gradient(circle at 82% 26%, rgba(39, 139, 229, 0.2), transparent 33%),
        #06111e;
}

.page-hero-grid,
.contact-grid {
    position: absolute;
    inset: 0;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(350px, 0.6fr);
    align-items: end;
    gap: 90px;
}

.page-hero h1 {
    margin-bottom: 0;
    font-size: clamp(3.7rem, 7.4vw, 7rem);
}

.error-reference {
    margin: 28px 0 0;
    color: rgba(230, 241, 250, 0.7);
    font-size: 0.75rem;
}

.error-reference code {
    color: var(--cyan);
    overflow-wrap: anywhere;
}

.page-hero-lede {
    margin-bottom: 10px;
}

.services-intro {
    max-width: 900px;
    margin-bottom: 80px;
    text-align: center;
}

.services-intro p {
    margin-bottom: 12px;
    color: #647486;
    font-size: 1.04rem;
}

.services-intro strong {
    color: #12314d;
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.6vw, 2rem);
}

.service-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.service-card-large {
    min-height: 480px;
    display: flex;
    flex-direction: column;
    padding: 40px;
    border: 1px solid var(--line-light);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.76);
    transition:
        transform 320ms var(--ease-out),
        box-shadow 320ms var(--ease-out);
}

.service-card-large:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 55px rgba(13, 42, 67, 0.11);
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 75px;
}

.service-card-top .card-index {
    margin: 0;
}

.service-tag {
    padding: 7px 10px;
    border: 1px solid rgba(21, 102, 167, 0.17);
    border-radius: 999px;
    color: #2570ae;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.service-card-large h2 {
    margin-bottom: 17px;
    color: #102a43;
    font-size: clamp(2rem, 3.5vw, 3rem);
}

.service-card-large > p {
    color: #5e7081;
    font-size: 0.9rem;
}

.service-card-large ul {
    display: grid;
    gap: 8px;
    margin: 20px 0 34px;
    padding: 0;
    color: #40566a;
    font-size: 0.78rem;
    list-style: none;
}

.service-card-large li::before {
    content: "+";
    margin-right: 10px;
    color: #2382c8;
}

.service-card-large .text-link {
    margin-top: auto;
}

.spectrum-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(500px, 1.22fr);
    gap: 100px;
}

.spectrum-map {
    display: grid;
    gap: 10px;
}

.spectrum-map div {
    min-height: 57px;
    display: grid;
    grid-template-columns: minmax(160px, 1fr) 2fr;
    align-items: center;
    gap: 22px;
    padding: 0 20px;
    border: 1px solid var(--line-dark);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.022);
}

.spectrum-map span {
    color: rgba(230, 242, 251, 0.65);
    font-size: 0.74rem;
    font-weight: 700;
}

.spectrum-map i {
    position: relative;
    height: 1px;
    overflow: hidden;
    background: rgba(102, 226, 255, 0.12);
}

.spectrum-map i::after {
    content: "";
    position: absolute;
    left: -30%;
    width: 30%;
    height: 1px;
    background: var(--cyan);
    animation: signal-run 3.4s linear infinite;
}

.spectrum-map div:nth-child(2) i::after { animation-delay: 300ms; }
.spectrum-map div:nth-child(3) i::after { animation-delay: 600ms; }
.spectrum-map div:nth-child(4) i::after { animation-delay: 900ms; }
.spectrum-map div:nth-child(5) i::after { animation-delay: 1.2s; }
.spectrum-map div:nth-child(6) i::after { animation-delay: 1.5s; }
.spectrum-map div:nth-child(7) i::after { animation-delay: 1.8s; }

/* Service details */

.service-detail-heading {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.65fr);
    align-items: end;
    gap: 90px;
}

.service-detail-heading h1 {
    margin-bottom: 0;
    font-size: clamp(3.3rem, 6.7vw, 6.5rem);
}

.service-heading-name {
    display: block;
    margin-bottom: 18px;
    color: var(--cyan);
    font-family: var(--font-body);
    font-size: clamp(0.72rem, 1vw, 0.9rem);
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.service-detail-intro p {
    color: rgba(219, 235, 247, 0.6);
    font-size: 0.95rem;
    line-height: 1.85;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.75fr) minmax(500px, 1.25fr);
    gap: 110px;
}

.detail-grid h2 {
    color: #102a43;
    font-size: clamp(2.5rem, 4.6vw, 4.2rem);
}

.detail-note {
    max-width: 430px;
    color: #627384;
}

.deliverable-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line-light);
    list-style: none;
}

.deliverable-list li {
    min-height: 72px;
    display: grid;
    grid-template-columns: 55px 1fr;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--line-light);
    color: #405469;
    font-size: 0.88rem;
}

.deliverable-list span {
    color: #1c6cae;
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.fit-signal-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.75fr) minmax(500px, 1.25fr);
    gap: 100px;
}

.fit-signal-layout h2 {
    font-size: clamp(2.5rem, 4.6vw, 4.2rem);
}

.fit-signal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.fit-signal-grid article {
    min-height: 145px;
    padding: 24px;
    border: 1px solid var(--line-dark);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.024);
}

.fit-signal-grid span {
    color: var(--cyan);
}

.fit-signal-grid p {
    margin: 25px 0 0;
    color: rgba(219, 235, 247, 0.55);
    font-size: 0.8rem;
}

/* Approach */

.approach-canvas {
    background:
        linear-gradient(90deg, rgba(24, 96, 151, 0.07) 1px, transparent 1px),
        var(--paper);
    background-size: 25% 100%;
}

.approach-steps {
    display: grid;
    gap: 100px;
}

.approach-steps > article {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 80px;
}

.approach-step-marker {
    position: relative;
    min-height: 285px;
}

.approach-step-marker span {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(20, 101, 165, 0.27);
    border-radius: 50%;
    background: var(--paper);
    color: #1d6dab;
    font-size: 0.68rem;
    font-weight: 800;
}

.approach-step-marker i {
    position: absolute;
    top: 70px;
    bottom: -100px;
    left: 34px;
    width: 1px;
    background: linear-gradient(#2b8bcf, rgba(43, 139, 207, 0.07));
}

.approach-steps article:last-child .approach-step-marker i {
    display: none;
}

.approach-steps h2 {
    color: #102a43;
    font-size: clamp(2.6rem, 4.6vw, 4.2rem);
}

.approach-steps article > div:last-child > p:not(.eyebrow) {
    max-width: 680px;
    color: #5b6e80;
    font-size: 0.98rem;
}

.approach-steps ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 35px 0 0;
    padding: 0;
    list-style: none;
}

.approach-steps li {
    min-height: 92px;
    padding: 17px;
    border: 1px solid var(--line-light);
    border-radius: 9px;
    color: #43586c;
    font-size: 0.75rem;
}

.approach-steps li::before {
    content: "+";
    display: block;
    margin-bottom: 11px;
    color: #2083c7;
}

.principles-layout {
    display: grid;
    grid-template-columns: minmax(330px, 0.85fr) minmax(500px, 1.15fr);
    gap: 100px;
}

.principle-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.principle-cards article {
    min-height: 230px;
    padding: 27px;
    border: 1px solid var(--line-dark);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.024);
}

.principle-cards span,
.belief-grid > article > span {
    color: rgba(102, 226, 255, 0.54);
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.principle-cards h3 {
    margin: 62px 0 10px;
    color: rgba(244, 250, 255, 0.9);
}

.principle-cards p {
    color: rgba(212, 230, 244, 0.72);
    font-size: 0.78rem;
}

.section-quality {
    background: #edf3f2;
    color: var(--text);
}

.quality-statement {
    display: grid;
    grid-template-columns: 170px 1fr;
    align-items: center;
    gap: 80px;
}

.quality-mark {
    width: 160px;
    height: 160px;
    border-color: rgba(24, 108, 171, 0.22);
    background: radial-gradient(circle, rgba(53, 163, 239, 0.17), rgba(234, 243, 247, 0.8));
    color: #1973b8;
}

.quality-statement h2 {
    max-width: 760px;
    color: #102a43;
}

.quality-statement ol {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 42px 0 0;
    padding: 0;
    list-style: none;
}

.quality-statement li {
    min-height: 105px;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 22px;
    border: 1px solid var(--line-light);
    border-radius: 10px;
}

.quality-statement li span {
    color: #1c6cae;
    font-size: 0.62rem;
}

.quality-statement li strong {
    color: #28425b;
    font-size: 0.9rem;
}

/* About */

.about-story-layout {
    display: grid;
    grid-template-columns: minmax(350px, 0.9fr) minmax(480px, 1.1fr);
    gap: 100px;
}

.about-story h2 {
    color: #102a43;
}

.standout-copy {
    margin-top: 38px;
    padding-left: 22px;
    border-left: 2px solid #258ad1;
    color: #173b5b !important;
    font-family: var(--font-display);
    font-size: 1.22rem !important;
    letter-spacing: -0.025em;
}

.belief-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 65px;
}

.belief-grid article {
    min-height: 310px;
    padding: 28px;
    border: 1px solid var(--line-dark);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.022);
}

.belief-grid h3 {
    margin: 95px 0 14px;
    color: rgba(245, 250, 255, 0.9);
}

.belief-grid p {
    color: rgba(212, 230, 244, 0.72);
    font-size: 0.77rem;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.65fr) minmax(520px, 1.35fr);
    gap: 100px;
}

.faq-layout h2 {
    color: #102a43;
}

.faq-list {
    border-top: 1px solid var(--line-light);
}

.faq-list details {
    border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #253d55;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    width: 34px;
    height: 34px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--line-light);
    border-radius: 50%;
    color: #1b70ae;
    transition: transform 200ms ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 660px;
    padding: 0 50px 26px 0;
    color: #627384;
    font-size: 0.88rem;
}

/* Contact */

.contact-page {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    padding: calc(var(--header-height) + 75px) 0 100px;
    background:
        radial-gradient(circle at 82% 25%, rgba(38, 143, 233, 0.2), transparent 30%),
        #06101d;
}

.contact-grid {
    mask-image: linear-gradient(to bottom, black, transparent);
}

.contact-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(360px, 0.82fr) minmax(530px, 1.18fr);
    align-items: start;
    gap: clamp(60px, 8vw, 120px);
}

.contact-copy {
    position: sticky;
    top: calc(var(--header-height) + 40px);
    padding-top: 25px;
}

.contact-copy h1 {
    font-size: clamp(4rem, 7vw, 6.8rem);
}

.call-agenda {
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid var(--line-dark);
}

.call-agenda-label {
    display: block;
    margin-bottom: 20px;
    color: rgba(220, 235, 247, 0.7);
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.call-agenda ol {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.call-agenda li {
    display: grid;
    grid-template-columns: 37px 1fr;
    gap: 14px;
    color: rgba(226, 239, 248, 0.63);
    font-size: 0.79rem;
}

.call-agenda li span {
    color: rgba(102, 226, 255, 0.55);
    font-size: 0.59rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.contact-panel {
    overflow: hidden;
    border: 1px solid rgba(121, 195, 244, 0.18);
    border-radius: 20px;
    background: rgba(11, 31, 51, 0.85);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(18px);
}

.contact-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    padding: 31px 34px;
    border-bottom: 1px solid var(--line-dark);
}

.form-kicker {
    color: rgba(102, 226, 255, 0.58);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-panel-header h2 {
    margin: 8px 0 0;
    font-size: 1.55rem;
}

.secure-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(113, 241, 194, 0.55);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.secure-note i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 10px var(--mint);
}

.contact-form {
    display: grid;
    gap: 20px;
    padding: 34px;
}

.field-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form label > span {
    color: rgba(226, 239, 248, 0.72);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.contact-form em {
    margin-left: 5px;
    color: rgba(102, 226, 255, 0.75);
    font-size: 0.6rem;
    font-style: normal;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    border: 1px solid rgba(139, 190, 226, 0.16);
    border-radius: 8px;
    outline: none;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(241, 248, 253, 0.88);
    transition:
        border-color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease;
}

.contact-form input,
.contact-form select {
    min-height: 51px;
    padding: 0 15px;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
    padding: 14px 15px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(220, 235, 247, 0.54);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: rgba(102, 226, 255, 0.52);
    background: rgba(102, 226, 255, 0.045);
    box-shadow: 0 0 0 3px rgba(102, 226, 255, 0.07);
}

.contact-form select {
    color-scheme: dark;
}

.contact-form select option,
.contact-form select optgroup {
    background-color: #f4f8fb;
    color: #102a3d;
}

.form-submit {
    width: 100%;
    margin-top: 5px;
    border: 0;
    cursor: pointer;
}

.form-submit:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.form-note {
    margin: 0;
    color: rgba(213, 230, 242, 0.7);
    font-size: 0.7rem;
    text-align: center;
}

.form-note.is-error {
    color: #ffb8b0;
}

.form-note.is-success {
    color: rgba(150, 244, 206, 0.9);
}

.form-note a {
    color: rgba(102, 226, 255, 0.66);
}

.form-safety-note {
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(139, 190, 226, 0.12);
    color: rgba(213, 230, 242, 0.58);
    font-size: 0.68rem;
    line-height: 1.65;
}

.form-safety-note a {
    color: rgba(102, 226, 255, 0.76);
    text-decoration: underline;
    text-decoration-color: rgba(102, 226, 255, 0.36);
    text-underline-offset: 0.2em;
}

.contact-form [aria-invalid="true"] {
    border-color: rgba(255, 146, 135, 0.72);
    box-shadow: 0 0 0 3px rgba(255, 111, 97, 0.1);
}

.form-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    margin: -1px !important;
    padding: 0 !important;
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

.contact-direct {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 34px;
    border-top: 1px solid var(--line-dark);
    background: rgba(255, 255, 255, 0.018);
    color: rgba(213, 230, 242, 0.7);
    font-size: 0.72rem;
}

.contact-direct a {
    color: var(--cyan);
    font-weight: 800;
}

/* Reading progress and contact fallback */

.scroll-progress {
    position: fixed;
    z-index: 150;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 3px;
    pointer-events: none;
    background: linear-gradient(90deg, var(--cyan), var(--azure) 58%, var(--gold));
    box-shadow:
        0 0 12px rgba(102, 226, 255, 0.55),
        0 1px 0 rgba(255, 255, 255, 0.1);
    transform: scaleX(var(--scroll-progress, 0));
    transform-origin: left center;
    will-change: transform;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.contact-form select:focus-visible {
    border-color: var(--cyan);
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    background: rgba(102, 226, 255, 0.07);
    box-shadow:
        0 0 0 1px rgba(102, 226, 255, 0.45),
        0 0 0 6px rgba(102, 226, 255, 0.12),
        0 12px 30px rgba(0, 0, 0, 0.18);
}

.form-fallback {
    position: relative;
    overflow: hidden;
    margin: 2px 34px 34px;
    padding: 20px 22px 20px 24px;
    border: 1px solid rgba(102, 226, 255, 0.24);
    border-radius: 10px;
    background:
        linear-gradient(120deg, rgba(102, 226, 255, 0.08), rgba(51, 166, 255, 0.025)),
        rgba(4, 18, 32, 0.52);
    color: rgba(226, 240, 250, 0.76);
    font-size: 0.76rem;
    line-height: 1.65;
}

.form-fallback::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    background: linear-gradient(var(--cyan), var(--azure));
    box-shadow: 0 0 16px rgba(102, 226, 255, 0.44);
}

.form-fallback p {
    margin-bottom: 8px;
}

.form-fallback p:last-child {
    margin-bottom: 0;
}

.form-fallback strong {
    color: rgba(247, 252, 255, 0.96);
    font-family: var(--font-display);
}

.form-fallback a {
    color: var(--cyan);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(102, 226, 255, 0.42);
    text-underline-offset: 0.22em;
}

.form-fallback a:hover {
    text-decoration-color: currentColor;
}

/* Insights library */

.page-hero-insights {
    isolation: isolate;
    background:
        radial-gradient(circle at 78% 30%, rgba(50, 155, 244, 0.25), transparent 30%),
        radial-gradient(circle at 12% 88%, rgba(113, 241, 194, 0.08), transparent 28%),
        linear-gradient(145deg, #06101d 8%, #081b2e 56%, #06101d 100%);
}

.page-hero-insights::before,
.page-hero-insights::after {
    content: "";
    position: absolute;
    z-index: 1;
    right: clamp(-140px, -8vw, -40px);
    width: clamp(360px, 48vw, 720px);
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(102, 226, 255, 0.42), transparent);
    filter: drop-shadow(0 0 8px rgba(102, 226, 255, 0.3));
    transform: rotate(-17deg);
}

.page-hero-insights::before {
    top: 39%;
}

.page-hero-insights::after {
    top: 56%;
    opacity: 0.5;
    transform: rotate(-11deg);
}

.insight-library {
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 8%, rgba(51, 166, 255, 0.08), transparent 25%),
        linear-gradient(180deg, #f7faf9 0%, var(--paper) 48%, #eef4f3 100%);
}

.insight-library-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.55fr);
    align-items: end;
    column-gap: clamp(55px, 8vw, 110px);
    margin-bottom: clamp(54px, 7vw, 88px);
}

.insight-library-intro .eyebrow {
    grid-column: 1 / -1;
}

.insight-library-intro h2 {
    max-width: 760px;
    margin-bottom: 0;
    color: #102a43;
}

.insight-library-intro h2 span {
    color: #1979bd;
}

.insight-library-intro > p:last-child {
    margin-bottom: 6px;
    color: #536779;
    font-size: 1rem;
    line-height: 1.85;
}

.insight-card-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
    grid-auto-rows: minmax(278px, auto);
    gap: 16px;
}

.insight-card {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 34px;
    overflow: hidden;
    padding: clamp(27px, 3vw, 38px);
    border: 1px solid rgba(12, 55, 86, 0.15);
    border-radius: 15px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 246, 247, 0.88)),
        var(--white);
    box-shadow:
        0 16px 44px rgba(15, 49, 73, 0.055),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition:
        transform 320ms var(--ease-out),
        border-color 220ms ease,
        box-shadow 320ms var(--ease-out);
}

.insight-card::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(51, 166, 255, 0.13), transparent 68%);
    opacity: 0.65;
    transition:
        opacity 260ms ease,
        transform 520ms var(--ease-out);
}

.insight-card::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--azure), var(--cyan), transparent 78%);
    opacity: 0;
    transform: scaleX(0.35);
    transform-origin: left;
    transition:
        opacity 220ms ease,
        transform 420ms var(--ease-out);
}

.insight-card:hover {
    border-color: rgba(24, 121, 189, 0.29);
    box-shadow:
        0 26px 66px rgba(15, 49, 73, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
    transform: translateY(-5px);
}

.insight-card:hover::before {
    opacity: 1;
    transform: translate(-12px, 12px) scale(1.05);
}

.insight-card:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.insight-card-featured {
    grid-row: span 2;
    min-height: 572px;
    padding: clamp(34px, 4.5vw, 58px);
    border-color: rgba(85, 181, 237, 0.23);
    background:
        radial-gradient(circle at 82% 16%, rgba(51, 166, 255, 0.22), transparent 30%),
        radial-gradient(circle at 10% 92%, rgba(113, 241, 194, 0.09), transparent 32%),
        linear-gradient(145deg, #0a2540, #071726 72%);
    color: var(--white);
    box-shadow:
        0 30px 76px rgba(9, 34, 54, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.insight-card-featured::before {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(102, 226, 255, 0.16), transparent 66%);
}

.insight-card-meta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(12, 55, 86, 0.13);
    color: #667789;
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.insight-card-meta span:first-child {
    color: #1766a6;
}

.insight-card-featured .insight-card-meta {
    border-bottom-color: rgba(149, 199, 236, 0.15);
    color: rgba(218, 236, 249, 0.68);
}

.insight-card-featured .insight-card-meta span:first-child,
.insight-card-featured .insight-card-kicker {
    color: var(--cyan);
}

.insight-card-kicker {
    margin-bottom: 15px;
    color: #1976b6;
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.insight-card h2 {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
    color: #102a43;
    font-size: clamp(1.75rem, 2.4vw, 2.5rem);
    line-height: 1.04;
}

.insight-card-featured h2 {
    max-width: 650px;
    color: rgba(248, 252, 255, 0.97);
    font-size: clamp(2.4rem, 4.3vw, 4.3rem);
}

.insight-card p:not(.insight-card-kicker) {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    color: #5c6f81;
    font-size: 0.87rem;
    line-height: 1.78;
}

.insight-card-featured p:not(.insight-card-kicker) {
    color: rgba(218, 234, 246, 0.7);
}

.insight-card .text-link {
    position: relative;
    z-index: 1;
    width: fit-content;
}

.insight-card-featured .text-link {
    color: var(--cyan);
}

/* Insight articles */

.article-page {
    background: var(--paper);
    color: var(--text);
}

.article-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: calc(var(--header-height) + 72px) 0 clamp(76px, 9vw, 118px);
    background:
        radial-gradient(circle at 80% 24%, rgba(49, 153, 241, 0.23), transparent 31%),
        radial-gradient(circle at 14% 100%, rgba(113, 241, 194, 0.07), transparent 29%),
        linear-gradient(145deg, #06101d 8%, #081b2e 60%, #06101d 100%);
    color: var(--white);
}

.article-hero-automation {
    background:
        radial-gradient(circle at 82% 24%, rgba(113, 241, 194, 0.14), transparent 30%),
        radial-gradient(circle at 12% 94%, rgba(51, 166, 255, 0.13), transparent 27%),
        linear-gradient(145deg, #06101d 8%, #082129 60%, #06101d 100%);
}

.article-hero-microsoft {
    background:
        radial-gradient(circle at 80% 25%, rgba(60, 130, 255, 0.25), transparent 31%),
        radial-gradient(circle at 10% 96%, rgba(102, 226, 255, 0.08), transparent 30%),
        linear-gradient(145deg, #06101d 8%, #0a1c36 60%, #06101d 100%);
}

.article-hero-grid {
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.66;
    pointer-events: none;
    background-image:
        linear-gradient(var(--line-dark) 1px, transparent 1px),
        linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
    background-size: 76px 76px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.94), transparent 96%);
}

.article-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 33%;
    right: -8%;
    width: min(54vw, 760px);
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(102, 226, 255, 0.44), transparent);
    box-shadow: 0 0 15px rgba(102, 226, 255, 0.25);
    transform: rotate(-16deg);
}

.article-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1010px;
    margin-inline: auto;
}

.article-hero .back-link {
    margin-bottom: clamp(54px, 7vw, 82px);
}

.article-hero h1 {
    max-width: 980px;
    margin-bottom: 30px;
    font-size: clamp(3.3rem, 7vw, 6.8rem);
}

.article-hero h1 span {
    background: linear-gradient(100deg, var(--cyan), var(--azure) 64%, var(--mint));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.article-deck {
    max-width: 780px;
    margin-bottom: 36px;
    color: rgba(224, 238, 248, 0.72);
    font-size: clamp(1.05rem, 1.6vw, 1.24rem);
    line-height: 1.75;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 28px;
    color: rgba(206, 226, 241, 0.58);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.article-meta span::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 9px rgba(102, 226, 255, 0.72);
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.88fr);
    align-items: start;
    gap: clamp(55px, 8vw, 104px);
}

.article-aside {
    position: sticky;
    top: calc(var(--header-height) + 36px);
    padding: 26px 0 27px 24px;
    border-top: 1px solid rgba(24, 115, 178, 0.28);
    border-bottom: 1px solid rgba(12, 55, 86, 0.13);
    border-left: 2px solid #2689ca;
    color: #54697b;
}

.article-aside::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -2px;
    width: 2px;
    height: 42%;
    background: var(--cyan);
    box-shadow: 0 0 15px rgba(51, 166, 255, 0.38);
}

.article-aside .eyebrow {
    margin-bottom: 16px;
}

.article-aside > p:not(.eyebrow) {
    margin-bottom: 25px;
    font-size: 0.83rem;
    line-height: 1.8;
}

.article-aside .text-link {
    font-size: 0.75rem;
}

.article-body {
    min-width: 0;
    max-width: 810px;
    color: #43586a;
}

.article-body > p {
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.86;
}

.article-body > h2 {
    position: relative;
    margin: clamp(65px, 8vw, 92px) 0 27px;
    padding-top: 22px;
    color: #102a43;
    font-size: clamp(2.1rem, 3.7vw, 3.25rem);
    line-height: 1.04;
}

.article-body > h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 52px;
    height: 2px;
    background: linear-gradient(90deg, #2387ca, var(--cyan));
}

.article-body .article-lead + h2 {
    margin-top: 52px;
}

.article-body h3 {
    color: #173a58;
    font-size: 1.16rem;
    line-height: 1.25;
}

.article-lead {
    margin-bottom: clamp(48px, 6vw, 70px) !important;
    color: #173a58 !important;
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.2vw, 1.75rem) !important;
    font-weight: 500;
    letter-spacing: -0.027em;
    line-height: 1.56 !important;
}

.article-callout {
    position: relative;
    overflow: hidden;
    margin: clamp(48px, 6vw, 70px) 0;
    padding: clamp(29px, 4vw, 45px);
    border: 1px solid rgba(79, 174, 236, 0.23);
    border-radius: 14px;
    background:
        radial-gradient(circle at 90% 10%, rgba(51, 166, 255, 0.18), transparent 34%),
        linear-gradient(145deg, #0a2540, #071726);
    box-shadow:
        0 26px 58px rgba(15, 49, 73, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.article-callout::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan));
    box-shadow: 0 0 14px rgba(102, 226, 255, 0.42);
}

.article-callout span {
    display: block;
    margin-bottom: 13px;
    color: var(--cyan);
    font-size: 0.59rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.article-callout strong {
    display: block;
    max-width: 650px;
    color: rgba(247, 252, 255, 0.95);
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 3vw, 2.25rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.24;
}

.article-steps {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(12, 55, 86, 0.14);
    list-style: none;
}

.article-steps li {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 27px;
    padding: 29px 0;
    border-bottom: 1px solid rgba(12, 55, 86, 0.14);
}

.article-steps li > span {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(28, 119, 181, 0.25);
    border-radius: 50%;
    background: rgba(51, 166, 255, 0.055);
    color: #176fae;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.article-steps h3 {
    margin: 2px 0 8px;
}

.article-steps p {
    margin-bottom: 0;
    color: #586c7e;
    font-size: 0.88rem;
    line-height: 1.78;
}

.article-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.article-checklist li {
    position: relative;
    min-height: 92px;
    display: flex;
    align-items: center;
    padding: 20px 20px 20px 53px;
    border: 1px solid rgba(12, 55, 86, 0.13);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.58);
    color: #405669;
    font-size: 0.8rem;
    line-height: 1.55;
}

.article-checklist li::before {
    content: "";
    position: absolute;
    left: 20px;
    width: 17px;
    height: 17px;
    border: 1px solid rgba(24, 121, 189, 0.35);
    border-radius: 50%;
    background:
        radial-gradient(circle, #2387ca 0 2px, transparent 3px),
        rgba(51, 166, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(51, 166, 255, 0.04);
}

.article-warning-grid,
.article-tool-grid,
.article-paths {
    display: grid;
    gap: 11px;
}

.article-warning-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-warning-grid section,
.article-tool-grid section,
.article-paths section {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(12, 55, 86, 0.13);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.56);
}

.article-warning-grid section {
    min-height: 210px;
    padding: 23px;
}

.article-warning-grid section::after,
.article-tool-grid section::after,
.article-paths section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(51, 166, 255, 0.5));
}

.article-warning-grid span {
    color: #2787c6;
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.article-warning-grid h3 {
    margin: 47px 0 10px;
}

.article-warning-grid p,
.article-tool-grid p,
.article-paths p {
    margin-bottom: 0;
    color: #5b6e80;
    font-size: 0.79rem;
    line-height: 1.66;
}

.stack-layers {
    display: grid;
    margin-bottom: 38px;
    border-top: 1px solid rgba(12, 55, 86, 0.14);
}

.stack-layers section {
    position: relative;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: start;
    gap: 24px;
    padding: 25px 18px 25px 0;
    border-bottom: 1px solid rgba(12, 55, 86, 0.14);
    transition:
        padding-left 260ms var(--ease-out),
        background-color 220ms ease;
}

.stack-layers section:hover {
    padding-left: 16px;
    background: linear-gradient(90deg, rgba(51, 166, 255, 0.055), transparent 72%);
}

.stack-layers section > span {
    color: #2383c2;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.stack-layers h3 {
    margin-bottom: 7px;
}

.stack-layers p {
    margin-bottom: 0;
    color: #586c7e;
    font-size: 0.87rem;
    line-height: 1.72;
}

.article-tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-tool-grid section {
    min-height: 190px;
    padding: 25px;
}

.article-tool-grid h3 {
    margin: 35px 0 9px;
}

.article-disclosure {
    margin: 0 0 23px !important;
    padding: 17px 19px;
    border-left: 2px solid #2387ca;
    background: rgba(51, 166, 255, 0.055);
    color: #5c6e7f !important;
    font-size: 0.79rem !important;
    line-height: 1.7 !important;
}

.article-paths {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-paths section {
    min-height: 315px;
    padding: 24px;
}

.scenario-label {
    display: block;
    margin-bottom: 66px;
    color: #237fbc;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.article-paths h3 {
    margin-bottom: 11px;
}

.article-source-list {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.article-source-list li {
    border: 1px solid rgba(12, 55, 86, 0.13);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.56);
}

.article-source-list a {
    position: relative;
    display: block;
    padding: 16px 48px 16px 18px;
    color: #155e95;
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1.5;
    text-decoration: underline;
    text-decoration-color: rgba(21, 94, 149, 0.22);
    text-underline-offset: 0.23em;
    overflow-wrap: anywhere;
    transition:
        color 180ms ease,
        background-color 180ms ease,
        text-decoration-color 180ms ease;
}

.article-source-list a::after {
    content: "\2197";
    position: absolute;
    top: 50%;
    right: 18px;
    color: #2387ca;
    font-size: 1rem;
    transform: translateY(-50%);
}

.article-source-list a:hover {
    background: rgba(51, 166, 255, 0.055);
    color: #0e4d7c;
    text-decoration-color: currentColor;
}

.article-closing {
    margin-top: clamp(64px, 8vw, 92px) !important;
    padding: 32px 0 0;
    border-top: 1px solid rgba(12, 55, 86, 0.17);
    color: #173a58 !important;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.55rem) !important;
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.55 !important;
}

/* Footer */

.site-footer {
    position: relative;
    z-index: 2;
    padding: 75px 0 25px;
    border-top: 1px solid var(--line-dark);
    background: #050d17;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(540px, 1.05fr);
    gap: 100px;
}

.footer-brand p {
    margin: 26px 0 0;
    color: rgba(216, 232, 244, 0.68);
    font-family: var(--font-display);
    font-size: 1.05rem;
}

.footer-positioning {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px !important;
    padding: 8px 12px;
    border: 1px solid rgba(102, 226, 255, 0.13);
    border-radius: 999px;
    background: rgba(102, 226, 255, 0.035);
    color: rgba(216, 232, 244, 0.58) !important;
    font-family: var(--font-body) !important;
    font-size: 0.65rem !important;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.footer-positioning::before {
    content: "";
    width: 6px;
    height: 6px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 10px rgba(113, 241, 194, 0.55);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-links > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-label {
    margin-bottom: 10px;
    color: rgba(102, 226, 255, 0.72);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-links a {
    color: rgba(218, 233, 245, 0.72);
    font-size: 0.76rem;
    overflow-wrap: anywhere;
    transition: color 180ms ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 70px;
    padding-top: 21px;
    border-top: 1px solid var(--line-dark);
    color: rgba(211, 228, 241, 0.62);
    font-size: 0.66rem;
    letter-spacing: 0.04em;
}

/* PWA install and offline states */

.pwa-install {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 11px;
    border: 1px solid transparent;
    border-radius: 8px;
    appearance: none;
    background: transparent;
    color: rgba(211, 228, 241, 0.64);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.2;
    text-align: left;
    cursor: pointer;
    transition:
        color 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease;
}

.pwa-install[hidden] {
    display: none !important;
}

.pwa-install:hover {
    border-color: rgba(102, 226, 255, 0.18);
    background: rgba(102, 226, 255, 0.045);
    color: rgba(241, 249, 255, 0.9);
}

.pwa-install:focus-visible,
.pwa-dialog-close:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

.pwa-dialog {
    position: fixed;
    z-index: 1000;
    top: 50%;
    left: 50%;
    width: min(560px, calc(100vw - 32px));
    max-width: none;
    max-height: min(84vh, 760px);
    max-height: min(84dvh, 760px);
    display: none;
    margin: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
    color: var(--white);
    transform: translate(-50%, -50%);
}

.pwa-dialog[open] {
    display: block;
}

.pwa-dialog::backdrop {
    background:
        radial-gradient(circle at 50% 38%, rgba(23, 105, 224, 0.16), transparent 38%),
        rgba(2, 8, 15, 0.82);
    backdrop-filter: blur(8px);
}

.pwa-dialog-panel {
    position: relative;
    isolation: isolate;
    width: 100%;
    max-height: min(84vh, 760px);
    max-height: min(84dvh, 760px);
    padding: 36px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(102, 226, 255, 0.22);
    border-radius: 20px;
    background:
        radial-gradient(circle at 92% 5%, rgba(51, 166, 255, 0.18), transparent 34%),
        linear-gradient(150deg, rgba(14, 43, 70, 0.98), rgba(5, 17, 30, 0.99));
    box-shadow:
        0 36px 100px rgba(0, 0, 0, 0.54),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
    scrollbar-color: rgba(102, 226, 255, 0.34) transparent;
    animation: pwa-dialog-enter 280ms var(--ease-out) both;
}

.pwa-dialog-panel::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 34px;
    width: 92px;
    height: 1px;
    background: linear-gradient(90deg, var(--cyan), var(--gold), transparent);
    box-shadow: 0 0 18px rgba(102, 226, 255, 0.28);
}

.pwa-dialog-panel h2 {
    max-width: calc(100% - 56px);
    margin-bottom: 16px;
    font-size: clamp(1.8rem, 6vw, 2.6rem);
    line-height: 1.05;
}

.pwa-dialog-panel p {
    color: rgba(218, 233, 245, 0.7);
}

.pwa-dialog-close {
    position: absolute;
    z-index: 2;
    top: 16px;
    right: 16px;
    min-width: 44px;
    min-height: 44px;
    display: inline-grid;
    place-items: center;
    padding: 8px 11px;
    border: 1px solid rgba(149, 199, 236, 0.18);
    border-radius: 999px;
    appearance: none;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(235, 245, 255, 0.76);
    line-height: 1;
    cursor: pointer;
    transition:
        color 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease,
        transform 180ms var(--ease-out);
}

.pwa-dialog-close:hover {
    border-color: rgba(102, 226, 255, 0.38);
    background: rgba(102, 226, 255, 0.08);
    color: var(--white);
    transform: translateY(-1px);
}

.pwa-install-steps {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding-left: 1.45rem;
    color: rgba(229, 241, 250, 0.8);
}

.pwa-install-steps li {
    padding-left: 6px;
    line-height: 1.65;
}

.pwa-install-steps li::marker {
    color: var(--gold);
    font-weight: 800;
}

.offline-page {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: clamp(24px, 6vw, 72px);
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 18%, rgba(23, 105, 224, 0.2), transparent 36%),
        radial-gradient(circle at 18% 86%, rgba(51, 166, 255, 0.1), transparent 32%),
        linear-gradient(145deg, #06101d, #071a2c 58%, #050d17);
}

.offline-page::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image:
        linear-gradient(var(--line-dark) 1px, transparent 1px),
        linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
    background-size: 76px 76px;
    mask-image: radial-gradient(circle at center, #000, transparent 78%);
    pointer-events: none;
}

.offline-panel {
    position: relative;
    width: min(100%, 650px);
    padding: clamp(30px, 6vw, 58px);
    overflow: hidden;
    border: 1px solid rgba(102, 226, 255, 0.2);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(16, 46, 75, 0.88), rgba(6, 20, 34, 0.95)),
        var(--ink-soft);
    box-shadow:
        0 38px 100px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
}

.offline-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: clamp(30px, 6vw, 58px);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--azure), var(--gold));
    box-shadow: 0 0 22px rgba(102, 226, 255, 0.35);
}

.offline-panel h1 {
    margin-bottom: 20px;
    font-size: clamp(2.6rem, 10vw, 5rem);
    line-height: 0.98;
}

.offline-panel p {
    max-width: 52ch;
    color: rgba(218, 233, 245, 0.7);
}

@keyframes pwa-dialog-enter {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 680px) {
    .pwa-dialog {
        width: calc(100vw - 20px);
        max-height: 92vh;
        max-height: 92dvh;
    }

    .pwa-dialog-panel {
        max-height: 92vh;
        max-height: 92dvh;
        padding: 30px 22px 24px;
        border-radius: 16px;
    }

    .pwa-dialog-panel::before {
        left: 22px;
    }

    .pwa-dialog-panel h2 {
        max-width: calc(100% - 58px);
    }

    .pwa-dialog-close {
        top: 10px;
        right: 10px;
    }

    .pwa-install-steps {
        gap: 10px;
        margin-top: 20px;
    }

    .offline-page {
        padding: 14px;
    }

    .offline-page::before {
        background-size: 48px 48px;
    }

    .offline-panel {
        padding: 34px 24px;
        border-radius: 18px;
    }

    .offline-panel::before {
        left: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pwa-install,
    .pwa-dialog-close {
        transition: none;
    }

    .pwa-dialog-panel {
        animation: none;
    }

    .pwa-dialog-close:hover {
        transform: none;
    }
}

/* Keyframes */

@keyframes pulse-ring {
    0% { transform: scale(0.6); opacity: 0.8; }
    70%, 100% { transform: scale(1.6); opacity: 0; }
}

@keyframes signal-run {
    to { left: 120%; }
}

@keyframes orbit-spin {
    to { transform: rotate(360deg); }
}

@keyframes panel-sheen {
    0%, 52% { transform: translateX(-120%); }
    75%, 100% { transform: translateX(120%); }
}

/* Responsive */

@media (max-width: 1000px) {
    .insight-library-intro,
    .insight-card-grid,
    .article-layout {
        grid-template-columns: 1fr;
    }

    .insight-library-intro {
        align-items: start;
        row-gap: 25px;
    }

    .insight-library-intro > p:last-child {
        max-width: 720px;
    }

    .insight-card-grid {
        grid-auto-rows: auto;
    }

    .insight-card-featured {
        grid-row: auto;
        min-height: 470px;
    }

    .insight-card:not(.insight-card-featured) {
        min-height: 285px;
    }

    .article-layout {
        gap: 58px;
    }

    .article-aside,
    .article-body {
        width: 100%;
        max-width: 850px;
        margin-inline: auto;
    }

    .article-aside {
        position: relative;
        top: auto;
        padding: 25px 28px;
        border: 1px solid rgba(12, 55, 86, 0.14);
        border-left: 2px solid #2689ca;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.46);
    }

    .article-warning-grid,
    .article-paths {
        grid-template-columns: 1fr;
    }

    .article-warning-grid section,
    .article-paths section {
        min-height: 0;
    }

    .article-warning-grid h3,
    .scenario-label {
        margin-top: 28px;
        margin-bottom: 10px;
    }
}

@media (max-width: 680px) {
    .scroll-progress {
        height: 2px;
    }

    .form-fallback {
        margin: 0 22px 28px;
        padding: 18px 18px 18px 21px;
    }

    .page-hero-insights::before,
    .page-hero-insights::after,
    .article-hero::after {
        opacity: 0.3;
    }

    .insight-library-intro {
        margin-bottom: 44px;
    }

    .insight-card {
        min-height: 0 !important;
        gap: 28px;
        padding: 25px;
    }

    .insight-card-featured {
        min-height: 430px !important;
        padding: 30px 25px;
    }

    .insight-card-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .insight-card-featured h2,
    .insight-card h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .article-hero {
        padding: calc(var(--header-height) + 50px) 0 70px;
    }

    .article-hero-grid {
        background-size: 48px 48px;
    }

    .article-hero .back-link {
        margin-bottom: 48px;
    }

    .article-hero h1 {
        font-size: clamp(2.8rem, 13vw, 4.2rem);
    }

    .article-deck {
        font-size: 1rem;
        line-height: 1.68;
    }

    .article-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .article-layout {
        gap: 48px;
    }

    .article-aside {
        padding: 23px 21px;
    }

    .article-body > h2 {
        margin-top: 62px;
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    .article-lead {
        font-size: 1.22rem !important;
        line-height: 1.55 !important;
    }

    .article-callout {
        margin-block: 44px;
        padding: 27px 23px;
    }

    .article-steps li {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 17px;
        padding-block: 25px;
    }

    .article-steps li > span {
        width: 42px;
        height: 42px;
    }

    .article-checklist,
    .article-tool-grid {
        grid-template-columns: 1fr;
    }

    .article-checklist li {
        min-height: 78px;
    }

    .article-tool-grid section {
        min-height: 0;
    }

    .stack-layers section {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 16px;
        padding-right: 0;
    }

    .article-paths section,
    .article-warning-grid section,
    .article-tool-grid section {
        padding: 22px;
    }

    .article-source-list a {
        padding-left: 16px;
    }

    .footer-positioning {
        align-items: flex-start;
        border-radius: 12px;
        line-height: 1.55;
    }

    .footer-positioning::before {
        margin-top: 0.42em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-progress {
        will-change: auto;
    }

    .insight-card:hover,
    .insight-card:hover::before,
    .insight-card:hover::after {
        transform: none;
    }

    .stack-layers section:hover {
        padding-left: 0;
    }
}

@media (max-width: 1080px) {
    :root {
        --shell: min(1180px, calc(100vw - 36px));
    }

    .primary-nav {
        gap: 21px;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    .hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
        gap: 50px;
    }

    .hero-copy h1 {
        font-size: clamp(3.3rem, 6.4vw, 6rem);
    }

    .split-intro,
    .section-heading,
    .blueprint-layout,
    .fit-layout,
    .spectrum-layout,
    .detail-grid,
    .fit-signal-layout,
    .principles-layout,
    .about-story-layout,
    .faq-layout,
    .contact-layout {
        gap: 60px;
    }

    .belief-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1000px) {
    :root {
        --header-height: 76px;
    }

    .brand {
        gap: 10px;
        min-width: 180px;
    }

    .brand-symbol {
        width: 42px;
        height: 30px;
        flex-basis: 42px;
        margin-right: -6px;
        transform: scale(0.875);
        transform-origin: left center;
    }

    .brand-wordmark {
        font-size: 1.28rem;
    }

    .enhanced .nav-toggle {
        position: relative;
        z-index: 102;
        display: grid;
    }

    .enhanced .primary-nav {
        position: fixed;
        z-index: 101;
        inset: 0;
        height: 100vh;
        height: 100dvh;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding:
            calc(var(--header-height) + 28px + env(safe-area-inset-top, 0px))
            calc(9vw + env(safe-area-inset-right, 0px))
            calc(45px + env(safe-area-inset-bottom, 0px))
            calc(9vw + env(safe-area-inset-left, 0px));
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        visibility: hidden;
        opacity: 0;
        background:
            radial-gradient(circle at 80% 20%, rgba(42, 145, 232, 0.22), transparent 34%),
            rgba(5, 15, 26, 0.98);
        transform: translateY(-16px);
        transition:
            visibility 0s linear 300ms,
            opacity 300ms ease,
            transform 300ms var(--ease-out);
    }

    .enhanced .primary-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0s;
    }

    .enhanced .primary-nav .nav-link {
        padding: 16px 0;
        border-bottom: 1px solid var(--line-dark);
        color: rgba(240, 248, 255, 0.8);
        font-family: var(--font-display);
        font-size: clamp(1.5rem, 5vw, 2.4rem);
    }

    .enhanced .primary-nav .nav-link::after {
        display: none;
    }

    .enhanced .primary-nav .button {
        margin-top: 28px;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 70px);
    }

    .hero-layout,
    .page-hero-inner,
    .service-detail-heading,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero-system {
        width: min(100%, 580px);
        margin: 0 auto;
    }

    .hero-proof {
        grid-template-columns: 1fr;
    }

    .hero-proof div {
        min-height: 72px;
        padding-inline: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line-dark);
    }

    .hero-proof div:last-child {
        border-bottom: 0;
    }

    .split-intro,
    .section-heading,
    .blueprint-layout,
    .fit-layout,
    .spectrum-layout,
    .detail-grid,
    .fit-signal-layout,
    .principles-layout,
    .about-story-layout,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .prose-large {
        padding-top: 0;
    }

    .friction-grid,
    .service-card-grid {
        grid-template-columns: 1fr;
    }

    .friction-card {
        min-height: 245px;
    }

    .blueprint-copy,
    .contact-copy {
        position: static;
    }

    .fit-signal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .founder-panel {
        grid-template-columns: 220px 1fr;
        gap: 55px;
        padding: 55px;
    }

    .founder-orbit {
        width: 210px;
        height: 210px;
    }

    .approach-steps > article {
        grid-template-columns: 110px 1fr;
        gap: 45px;
    }

    .approach-steps ul {
        grid-template-columns: 1fr;
    }

    .quality-statement {
        grid-template-columns: 135px 1fr;
        gap: 45px;
    }

    .quality-mark {
        width: 130px;
        height: 130px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 55px;
    }
}

@media (max-width: 680px) {
    :root {
        --shell: min(1180px, calc(100vw - 28px));
    }

    .section {
        padding-block: 84px;
    }

    h1,
    .page-hero h1,
    .service-detail-heading h1,
    .contact-copy h1 {
        font-size: clamp(3rem, 14vw, 4.5rem);
    }

    h2,
    .founder-panel h2,
    .approach-steps h2,
    .detail-grid h2,
    .fit-signal-layout h2 {
        font-size: clamp(2.25rem, 11vw, 3.6rem);
    }

    .button-row {
        align-items: stretch;
        flex-direction: column;
    }

    .button-row .button {
        width: 100%;
    }

    .hero-layout {
        gap: 60px;
    }

    .system-panel {
        transform: none;
    }

    .system-stage-core {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 52px;
    }

    .core-copy {
        margin-top: 0;
    }

    .output-grid {
        grid-template-columns: 1fr;
    }

    .output-grid div {
        min-height: 48px;
    }

    .hero-grid-lines,
    .page-hero-grid,
    .contact-grid,
    .final-cta-grid {
        background-size: 48px 48px;
    }

    .friction-grid {
        margin-top: 50px;
    }

    .insight-callout {
        align-items: flex-start;
        padding: 22px;
    }

    .capability-row {
        min-height: 0;
        grid-template-columns: 42px 1fr 40px;
        gap: 14px;
        padding-block: 30px;
    }

    .capability-description {
        grid-column: 2 / -1;
    }

    .capability-arrow {
        grid-column: 3;
        grid-row: 1;
    }

    .outcome-grid,
    .principle-cards,
    .fit-signal-grid,
    .quality-statement ol {
        grid-template-columns: 1fr;
    }

    .outcome-transition {
        gap: 11px;
    }

    .founder-panel {
        grid-template-columns: 1fr;
        padding: 34px 24px;
    }

    .founder-orbit {
        width: 190px;
        height: 190px;
        margin-inline: auto;
    }

    .page-hero {
        padding: calc(var(--header-height) + 80px) 0 75px;
    }

    .service-card-large {
        min-height: 450px;
        padding: 27px;
    }

    .service-card-top {
        margin-bottom: 55px;
    }

    .spectrum-map div {
        grid-template-columns: 1fr;
        gap: 8px;
        padding-block: 12px;
    }

    .approach-steps {
        gap: 70px;
    }

    .approach-steps > article {
        grid-template-columns: 58px 1fr;
        gap: 22px;
    }

    .approach-step-marker span {
        width: 56px;
        height: 56px;
    }

    .approach-step-marker i {
        top: 56px;
        left: 27px;
    }

    .quality-statement {
        grid-template-columns: 1fr;
    }

    .quality-mark {
        width: 105px;
        height: 105px;
    }

    .belief-grid {
        grid-template-columns: 1fr;
    }

    .belief-grid article {
        min-height: 255px;
    }

    .belief-grid h3 {
        margin-top: 65px;
    }

    .contact-page {
        padding-top: calc(var(--header-height) + 45px);
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    .contact-panel-header,
    .contact-form,
    .contact-direct {
        padding-inline: 22px;
    }

    .contact-panel-header {
        flex-direction: column;
    }

    .contact-direct {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 45px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .reveal-ready [data-reveal] {
        opacity: 1;
        transform: none;
    }

    .signal-field {
        display: none;
    }
}

/* Brand v2: navy, silver, steel blue, and cobalt */

:root {
    --brand-night: #020b1b;
    --brand-navy: #07152a;
    --brand-navy-raised: #0b1f3c;
    --brand-cobalt: #2257bf;
    --brand-cobalt-bright: #356bd0;
    --brand-steel: #6f89b2;
    --brand-silver: #bcc6d4;
    --brand-silver-bright: #e8ecf2;
    --status-green: #4fc28b;
    --ink: var(--brand-night);
    --ink-soft: var(--brand-navy);
    --navy: var(--brand-navy-raised);
    --blue: var(--brand-cobalt);
    --azure: var(--brand-cobalt-bright);
    --cyan: var(--brand-steel);
    --mint: #7895c1;
    --gold: var(--brand-silver-bright);
    --paper: #f4f6f9;
    --paper-blue: #edf1f6;
    --text: #0e1c2f;
    --muted: #627187;
    --line-dark: rgba(184, 198, 218, 0.18);
    --line-light: rgba(22, 48, 82, 0.14);
}

body {
    background: var(--brand-night);
}

::selection {
    background: rgba(53, 107, 208, 0.42);
    color: var(--white);
}

:focus-visible {
    outline-color: var(--brand-silver-bright);
}

.ambient-one {
    background: var(--brand-steel);
}

.ambient-two {
    background: var(--brand-cobalt);
}

.site-header.is-scrolled {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.site-header.is-scrolled::before {
    border-color: rgba(184, 198, 218, 0.17);
    background: rgba(2, 11, 27, 0.9);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.18);
}

.brand {
    width: auto;
    min-width: 0;
    gap: 0;
}

.brand-lockup {
    display: block;
    max-width: none;
    object-fit: contain;
    filter:
        brightness(1.05)
        drop-shadow(0 8px 20px rgba(34, 87, 191, 0.18));
    transition:
        filter 220ms ease,
        transform 220ms var(--ease-out);
}

.brand-lockup-wide {
    width: clamp(182px, 15vw, 220px);
    height: auto;
}

.brand-lockup-mark {
    display: none;
    width: 48px;
    height: 48px;
}

.brand:hover .brand-lockup {
    filter:
        brightness(1.13)
        drop-shadow(0 10px 24px rgba(53, 107, 208, 0.28));
    transform: translateY(-1px);
}

.site-footer .brand-lockup-wide {
    width: clamp(206px, 18vw, 250px);
}

.nav-link::after {
    background: var(--brand-cobalt-bright);
    box-shadow: 0 0 12px rgba(53, 107, 208, 0.38);
}

@media (max-width: 1000px) {
    .enhanced .primary-nav {
        background:
            radial-gradient(circle at 80% 18%, rgba(53, 107, 208, 0.2), transparent 36%),
            rgba(2, 11, 27, 0.985);
    }
}

.button-primary {
    background: linear-gradient(135deg, var(--brand-cobalt), var(--brand-cobalt-bright));
    color: var(--white);
    box-shadow:
        0 14px 38px rgba(34, 87, 191, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.button-primary:hover {
    background: linear-gradient(135deg, #2a62ca, #4779d1);
    box-shadow:
        0 18px 46px rgba(34, 87, 191, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-secondary:hover {
    border-color: rgba(188, 198, 212, 0.48);
    background: rgba(111, 137, 178, 0.1);
}

.eyebrow {
    color: #9aadd0;
}

.eyebrow-dark,
.text-link-dark {
    color: #315fae;
}

.pulse-dot {
    background: var(--brand-cobalt-bright);
    box-shadow: 0 0 0 5px rgba(53, 107, 208, 0.11);
}

.pulse-dot::after {
    border-color: rgba(111, 137, 178, 0.55);
}

.hero,
.page-hero,
.contact-page,
.article-hero,
.final-cta {
    background:
        radial-gradient(circle at 78% 27%, rgba(53, 107, 208, 0.2), transparent 36%),
        radial-gradient(circle at 14% 95%, rgba(111, 137, 178, 0.09), transparent 31%),
        linear-gradient(145deg, var(--brand-night) 8%, var(--brand-navy) 60%, var(--brand-night) 100%);
}

.hero-brand-watermark {
    position: absolute;
    z-index: 1;
    top: clamp(115px, 15vh, 180px);
    right: clamp(-74px, -2vw, -18px);
    width: clamp(340px, 38vw, 590px);
    max-width: none;
    opacity: 0.075;
    pointer-events: none;
    filter:
        saturate(0.78)
        contrast(1.06)
        drop-shadow(0 28px 70px rgba(34, 87, 191, 0.22));
    transform: rotate(-5deg);
    user-select: none;
}

.hero-copy h1 span,
.article-hero h1 span {
    background: linear-gradient(100deg, var(--brand-silver-bright) 4%, #aebbd0 45%, var(--brand-cobalt-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.system-glow {
    background: rgba(34, 87, 191, 0.21);
}

.system-panel {
    border-color: rgba(143, 165, 199, 0.24);
    background:
        linear-gradient(150deg, rgba(18, 43, 78, 0.92), rgba(3, 14, 33, 0.96)),
        var(--brand-navy);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(232, 236, 242, 0.07);
}

.system-panel::after {
    background: linear-gradient(115deg, transparent 25%, rgba(188, 198, 212, 0.08), transparent 67%);
}

.signal-pills span {
    border-color: rgba(143, 165, 199, 0.2);
    background: rgba(111, 137, 178, 0.07);
    color: rgba(220, 227, 237, 0.72);
}

.core-orbit span:nth-child(2) {
    border-color: rgba(143, 165, 199, 0.4);
}

.flow-rail-out span::after,
.output-grid i {
    background: var(--brand-steel);
    box-shadow: 0 0 9px rgba(111, 137, 178, 0.66);
}

.output-grid div {
    border-color: rgba(143, 165, 199, 0.18);
    background: rgba(111, 137, 178, 0.055);
}

.system-status,
.secure-note {
    color: rgba(79, 194, 139, 0.78);
}

.system-status i,
.secure-note i {
    background: var(--status-green);
    box-shadow: 0 0 12px rgba(79, 194, 139, 0.76);
}

.friction-card::before {
    background:
        radial-gradient(circle at 10% 70%, #8e9fb9 0 3px, transparent 4px),
        radial-gradient(circle at 55% 35%, #356bd0 0 3px, transparent 4px),
        radial-gradient(circle at 90% 72%, #5878aa 0 3px, transparent 4px),
        linear-gradient(28deg, transparent 45%, rgba(34, 87, 140, 0.28) 46% 48%, transparent 49%),
        linear-gradient(150deg, transparent 45%, rgba(34, 87, 140, 0.28) 46% 48%, transparent 49%);
}

.process-track::before {
    background: linear-gradient(var(--brand-cobalt-bright), var(--brand-steel));
}

.insight-card-featured {
    background:
        radial-gradient(circle at 82% 16%, rgba(53, 107, 208, 0.23), transparent 32%),
        radial-gradient(circle at 10% 92%, rgba(111, 137, 178, 0.1), transparent 34%),
        linear-gradient(145deg, #0a1c38, #040f22 72%);
}

.article-hero-automation,
.article-hero-microsoft {
    background:
        radial-gradient(circle at 82% 24%, rgba(53, 107, 208, 0.22), transparent 31%),
        radial-gradient(circle at 12% 94%, rgba(111, 137, 178, 0.1), transparent 29%),
        linear-gradient(145deg, var(--brand-night) 8%, #0a1b36 60%, var(--brand-night) 100%);
}

.footer-positioning::before {
    background: var(--brand-steel);
    box-shadow: 0 0 10px rgba(111, 137, 178, 0.52);
}

.scroll-progress {
    background: linear-gradient(90deg, var(--brand-cobalt), var(--brand-steel) 58%, var(--brand-silver));
    box-shadow:
        0 0 12px rgba(53, 107, 208, 0.48),
        0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: rgba(143, 165, 199, 0.62);
    background: rgba(111, 137, 178, 0.06);
    box-shadow: 0 0 0 3px rgba(53, 107, 208, 0.11);
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.contact-form select:focus-visible {
    outline-color: var(--brand-silver-bright);
}

.site-footer {
    background:
        radial-gradient(circle at 15% 20%, rgba(53, 107, 208, 0.08), transparent 27%),
        var(--brand-night);
}

.pwa-dialog-panel::before,
.offline-panel::before {
    background: linear-gradient(90deg, var(--brand-cobalt), var(--brand-steel), var(--brand-silver));
    box-shadow: 0 0 18px rgba(53, 107, 208, 0.3);
}

.pwa-install-steps li::marker {
    color: var(--brand-silver-bright);
}

@media (max-width: 1000px) {
    .brand {
        min-width: 0;
    }

    .hero-brand-watermark {
        top: 96px;
        right: -15%;
        width: min(58vw, 500px);
        opacity: 0.06;
    }
}

@media (max-width: 680px) {
    .brand-lockup-wide {
        width: clamp(168px, 52vw, 206px);
    }

    .site-footer .brand-lockup-wide {
        width: min(230px, 76vw);
    }

    .hero-brand-watermark {
        top: 86px;
        right: -28%;
        width: min(82vw, 370px);
        opacity: 0.05;
    }
}

@media (max-width: 360px) {
    .header-inner {
        gap: 12px;
    }

    .site-header .brand-lockup-wide {
        display: none;
    }

    .site-header .brand-lockup-mark {
        display: block;
    }

    .site-header .brand {
        width: 48px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .brand-lockup,
    .brand:hover .brand-lockup {
        transition: none;
        transform: none;
    }
}
