:root {
    --ink: #0a0e17;
    --ink-soft: #171c28;
    --paper: #f4f3ef;
    --paper-bright: #fbfaf7;
    --line: rgba(10, 14, 23, 0.13);
    --line-light: rgba(255, 255, 255, 0.14);
    --muted: #687080;
    --muted-light: #a8afbd;
    --violet: #806dff;
    --violet-bright: #a899ff;
    --cyan: #62d8ec;
    --green: #79e2af;
    --max-width: 1240px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --header-height: 76px;
    --transition: 220ms cubic-bezier(.2, .75, .3, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

button,
input,
textarea {
    font: inherit;
}

a {
    color: inherit;
}

img,
svg {
    display: block;
}

svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 2000;
    padding: 10px 16px;
    color: #fff;
    background: var(--violet);
    border-radius: 8px;
    transform: translateY(-150%);
    transition: transform var(--transition);
}

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

.section-shell,
.nav-shell,
.hero-shell,
.hero-proof,
.footer-shell {
    width: min(calc(100% - 48px), var(--max-width));
    margin-inline: auto;
}

.section-pad {
    padding: 132px 0;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: var(--header-height);
    color: #fff;
    border-bottom: 1px solid transparent;
    transition: color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled,
.site-header.is-open {
    color: var(--ink);
    background: rgba(251, 250, 247, 0.94);
    border-bottom-color: var(--line);
    box-shadow: 0 14px 45px rgba(8, 11, 18, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
    text-decoration: none;
    letter-spacing: -0.03em;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    padding: 4px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 11px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-name {
    font-size: 17px;
    font-weight: 540;
}

.brand-name strong {
    font-weight: 780;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: 70px;
}

.desktop-nav a {
    position: relative;
    color: inherit;
    font-size: 14px;
    font-weight: 540;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity var(--transition);
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.desktop-nav a:hover {
    opacity: 1;
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 10px;
}

.language-button,
.menu-button {
    color: inherit;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.language-button {
    min-width: 40px;
    padding: 10px 7px;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.08em;
}

.nav-cta {
    padding: 10px 17px;
    color: #5843bd;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(88, 67, 189, 0.12);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: transform var(--transition), background var(--transition);
}

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

.site-header.is-scrolled .nav-cta,
.site-header.is-open .nav-cta {
    color: #fff;
    background: var(--ink);
    border-color: var(--ink);
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
}

.menu-button > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1.5px;
    margin: 5px 0;
    background: currentColor;
    transition: transform var(--transition), opacity var(--transition);
}

.site-header.is-open .menu-button > span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.site-header.is-open .menu-button > span:nth-child(2) {
    opacity: 0;
}

.site-header.is-open .menu-button > span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    min-height: 930px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 19% 44%, rgba(109, 82, 255, 0.08), transparent 30%),
        radial-gradient(circle at 74% 42%, rgba(118, 86, 255, 0.09), transparent 31%),
        linear-gradient(145deg, #070a11 0%, #0c0f18 52%, #080b13 100%);
}

.hero-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(169, 153, 255, 0.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(169, 153, 255, 0.032) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.hero-glow {
    position: absolute;
    width: 460px;
    height: 460px;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
}

.hero-glow-one {
    top: 12%;
    left: -180px;
    background: var(--violet);
}

.hero-glow-two {
    right: -220px;
    bottom: 2%;
    background: #6e55ef;
}

.hero-shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(460px, 0.9fr);
    gap: 84px;
    align-items: center;
    min-height: 840px;
    padding-top: var(--header-height);
}

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

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
    color: #5b6475;
    font-size: 11px;
    font-weight: 760;
    letter-spacing: 0.14em;
    line-height: 1.2;
}

.eyebrow > span:first-child:not(.pulse-dot) {
    color: var(--violet);
}

.eyebrow.light {
    color: #aab1bf;
}

.eyebrow.light > span:first-child:not(.pulse-dot) {
    color: var(--violet-bright);
}

.pulse-dot {
    position: relative;
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(121, 226, 175, 0.09);
}

.pulse-dot::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(121, 226, 175, 0.35);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(.75); opacity: 1; }
    80%, 100% { transform: scale(1.8); opacity: 0; }
}

.hero h1,
.section-heading h2,
.signal-heading h2,
.architecture-copy h2,
.skills-heading h2,
.company-copy h2,
.contact-heading h2 {
    margin: 0;
    letter-spacing: -0.055em;
    line-height: 1.05;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(54px, 5.8vw, 88px);
    font-weight: 660;
    overflow-wrap: anywhere;
}

.hero h1 span {
    color: #9ea2b3;
    font-weight: 420;
}

.mobile-break {
    display: none;
}

.hero-lead {
    max-width: 650px;
    margin: 34px 0 0;
    color: #b3bac7;
    font-size: 18px;
    line-height: 1.8;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.button svg,
.text-link svg,
.skill-download a svg,
.skills-footnote a svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition);
}

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

.button:hover svg,
.text-link:hover svg,
.skills-footnote a:hover svg {
    transform: translateX(3px);
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, #9d8dff 0%, #735ff0 100%);
    box-shadow: 0 14px 34px rgba(115, 95, 240, 0.28);
}

.button-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}

.button-ghost:hover {
    border-color: rgba(255, 255, 255, 0.46);
    background: rgba(255, 255, 255, 0.1);
}

.button-ghost:hover .download-icon {
    transform: translateY(2px);
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 44px;
    color: #747d8e;
    font-size: 12px;
    letter-spacing: 0.03em;
}

.hero-note-line {
    width: 28px;
    height: 1px;
    background: #4b5260;
}

.hero-visual {
    position: relative;
    min-width: 0;
    perspective: 1200px;
}

.visual-frame {
    position: relative;
    overflow: hidden;
    min-height: 550px;
    background: rgba(15, 16, 36, 0.86);
    border: 1px solid rgba(168, 153, 255, 0.13);
    border-radius: 28px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4), 0 0 50px rgba(128, 109, 255, 0.05);
    transform: rotateY(-4deg) rotateX(2deg);
    transform-origin: center;
}

.visual-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 28%);
}

.visual-topbar,
.visual-footer {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    color: #8992a4;
    font-size: 10px;
    font-weight: 680;
    letter-spacing: 0.08em;
}

.visual-topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.visual-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.visual-status > span:first-child {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(121, 226, 175, 0.65);
}

.visual-canvas {
    position: relative;
    height: 445px;
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(128, 109, 255, 0.16), transparent 31%),
        linear-gradient(rgba(168, 153, 255, 0.038) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 153, 255, 0.038) 1px, transparent 1px);
    background-size: auto, 28px 28px, 28px 28px;
}

.visual-canvas::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 32%, rgba(6, 9, 16, 0.6) 100%);
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    border: 1px solid rgba(168, 153, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -3px;
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 16px var(--cyan);
}

.orbit-one {
    width: 180px;
    height: 180px;
    animation: spin 14s linear infinite;
}

.orbit-two {
    width: 285px;
    height: 285px;
    animation: spin 22s linear infinite reverse;
}

.orbit-three {
    width: 390px;
    height: 390px;
    animation: spin 30s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.core-node {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    display: grid;
    place-items: center;
    width: 98px;
    height: 98px;
    transform: translate(-50%, -50%);
}

.core-logo {
    z-index: 2;
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    padding: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 21px;
    box-shadow: 0 0 50px rgba(128, 109, 255, 0.38);
}

.core-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.core-halo {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(168, 153, 255, 0.3);
    border-radius: 50%;
    animation: core-pulse 3s ease-in-out infinite;
}

@keyframes core-pulse {
    50% { transform: scale(1.18); opacity: 0.35; }
}

.network-node {
    position: absolute;
    z-index: 5;
    display: grid;
    grid-template-columns: 8px 1fr;
    column-gap: 8px;
    align-items: center;
    min-width: 90px;
    padding: 10px 12px;
    color: #d7dbe4;
    background: rgba(12, 17, 28, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(10px);
}

.network-node span {
    grid-row: 1 / 3;
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(121, 226, 175, 0.6);
}

.network-node strong {
    font-size: 10px;
    letter-spacing: 0.08em;
}

.network-node small {
    color: #717b8e;
    font-size: 8px;
}

.node-a { top: 16%; left: 12%; }
.node-b { top: 19%; right: 10%; }
.node-c { right: 12%; bottom: 16%; }
.node-d { bottom: 15%; left: 10%; }

.signal-line {
    position: absolute;
    z-index: 2;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(98, 216, 236, 0.7), transparent);
    transform-origin: left;
}

.signal-one { top: 34%; left: 25%; width: 48%; transform: rotate(7deg); }
.signal-two { top: 65%; left: 23%; width: 52%; transform: rotate(-9deg); }
.signal-three { top: 49%; left: 19%; width: 64%; transform: rotate(35deg); opacity: 0.35; }

.metric-card {
    position: absolute;
    z-index: 7;
    width: 150px;
    padding: 12px 14px;
    color: #858fa1;
    background: rgba(12, 17, 28, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    font-size: 9px;
    backdrop-filter: blur(10px);
}

.metric-card strong {
    display: block;
    margin-top: 4px;
    color: #fff;
    font-size: 20px;
}

.metric-card strong small {
    color: #868fa0;
    font-size: 9px;
    font-weight: 500;
}

.metric-card svg {
    width: 100%;
    margin-top: 7px;
    color: var(--cyan);
    stroke-width: 1.4;
}

.metric-card-top { top: 8%; left: 38%; }
.metric-card-bottom { right: 5%; bottom: 5%; }

.decision-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.decision-row em {
    color: var(--green);
    font-size: 8px;
    font-style: normal;
}

.progress-track {
    display: block;
    height: 3px;
    margin-top: 9px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 99px;
}

.progress-track span {
    display: block;
    width: 76%;
    height: 100%;
    background: linear-gradient(90deg, var(--violet), var(--cyan));
}

.visual-footer {
    justify-content: flex-start;
    gap: 21px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.visual-footer > span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.visual-footer i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.visual-footer b {
    font-weight: 600;
}

.legend-violet { background: var(--violet); }
.legend-cyan { background: var(--cyan); }
.legend-green { background: var(--green); }

.hero-proof {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90px;
    color: #686f7d;
    border-top: 1px solid rgba(168, 153, 255, 0.2);
    font-size: 10px;
    font-weight: 720;
    letter-spacing: 0.11em;
}

.proof-names {
    display: flex;
    align-items: center;
    gap: clamp(24px, 4vw, 58px);
    color: #9ba2ae;
    font-size: 13px;
    letter-spacing: 0;
}

.signal-section {
    background: var(--paper-bright);
}

.signal-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.75fr;
    gap: 120px;
    align-items: end;
}

.signal-heading h2,
.section-heading h2,
.skills-heading h2,
.contact-heading h2 {
    font-size: clamp(44px, 5vw, 68px);
    font-weight: 650;
}

.signal-heading h2 span,
.section-heading h2 span,
.skills-heading h2 span,
.contact-heading h2 span {
    color: #9297a1;
    font-weight: 430;
}

.signal-copy {
    padding-bottom: 4px;
}

.signal-copy p,
.section-heading > p,
.skills-intro > p,
.contact-heading > p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.85;
}

.text-link,
.skills-footnote a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 92px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.stat-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 38px 34px;
    border-right: 1px solid var(--line);
}

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

.stat-card strong {
    font-size: 42px;
    font-weight: 610;
    letter-spacing: -0.045em;
}

.stat-card sup {
    color: var(--violet);
    font-size: 18px;
}

.stat-card span {
    color: var(--muted);
    font-size: 12px;
}

.platform-section {
    background: #ebeae5;
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 0.46fr);
    column-gap: 80px;
    align-items: end;
}

.section-heading .eyebrow {
    grid-column: 1 / -1;
}

.section-heading > p {
    padding-bottom: 5px;
}

.capability-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 18px;
    margin-top: 76px;
}

.capability-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 390px;
    padding: 38px;
    overflow: hidden;
    background: var(--paper-bright);
    border: 1px solid rgba(10, 14, 23, 0.09);
    border-radius: var(--radius-md);
    box-shadow: 0 18px 50px rgba(10, 14, 23, 0.04);
    transition: transform var(--transition), box-shadow var(--transition);
}

.capability-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(10, 14, 23, 0.09);
}

.capability-large {
    grid-row: span 2;
    min-height: 798px;
    color: #fff;
    background: var(--ink-soft);
    border-color: rgba(255, 255, 255, 0.06);
}

.card-index {
    position: absolute;
    top: 28px;
    right: 30px;
    color: #a1a6af;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.capability-large .card-index {
    color: #666e7c;
}

.capability-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 45px;
    color: var(--violet);
    background: rgba(128, 109, 255, 0.1);
    border: 1px solid rgba(128, 109, 255, 0.18);
    border-radius: 15px;
}

.capability-large .capability-icon {
    background: rgba(128, 109, 255, 0.12);
    border-color: rgba(168, 153, 255, 0.2);
}

.capability-icon.cyan {
    color: #278da4;
    background: rgba(98, 216, 236, 0.11);
    border-color: rgba(98, 216, 236, 0.2);
}

.capability-icon.green {
    color: #24835b;
    background: rgba(121, 226, 175, 0.13);
    border-color: rgba(121, 226, 175, 0.22);
}

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

.card-kicker,
.skill-type {
    color: #777f8d;
    font-size: 10px;
    font-weight: 760;
    letter-spacing: 0.13em;
}

.capability-large .card-kicker {
    color: var(--violet-bright);
}

.capability-card h3 {
    max-width: 520px;
    margin: 12px 0 0;
    font-size: 29px;
    font-weight: 620;
    letter-spacing: -0.035em;
    line-height: 1.18;
}

.capability-large h3 {
    font-size: clamp(34px, 3.6vw, 50px);
}

.capability-card p {
    max-width: 530px;
    margin: 20px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.capability-large p {
    color: #99a2b0;
    font-size: 17px;
}

.capability-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.capability-card li {
    padding: 8px 12px;
    color: #b1b7c2;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 11px;
}

.card-art {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 330px;
}

.delivery-art {
    background:
        radial-gradient(circle at center, rgba(128, 109, 255, 0.16), transparent 33%),
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: auto, 30px 30px, 30px 30px;
}

.delivery-core {
    position: absolute;
    top: 52%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    color: #fff;
    background: linear-gradient(145deg, var(--violet), #463ab1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 22px;
    box-shadow: 0 0 70px rgba(128, 109, 255, 0.32);
    font-size: 28px;
    font-weight: 750;
    transform: translate(-50%, -50%);
}

.delivery-ring {
    position: absolute;
    top: 52%;
    left: 50%;
    border: 1px solid rgba(168, 153, 255, 0.19);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ring-a { width: 190px; height: 190px; }
.ring-b { width: 300px; height: 300px; }

.delivery-dot {
    position: absolute;
    width: 9px;
    height: 9px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 18px rgba(98, 216, 236, 0.7);
}

.dot-a { top: 31%; left: 23%; }
.dot-b { top: 30%; right: 20%; background: var(--green); }
.dot-c { right: 28%; bottom: 17%; background: var(--violet-bright); }

.mini-clouds {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 32px;
    color: #87909d;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.1em;
}

.mini-clouds i {
    flex: 1;
    height: 1px;
    margin: 0 10px;
    background: linear-gradient(90deg, var(--line), rgba(98, 216, 236, 0.5), var(--line));
}

.mini-signal {
    display: flex;
    align-items: end;
    gap: 7px;
    height: 42px;
    margin-top: auto;
    padding-top: 20px;
}

.mini-signal span {
    flex: 1;
    height: 45%;
    background: linear-gradient(to top, rgba(121, 226, 175, 0.22), rgba(121, 226, 175, 0.7));
    border-radius: 3px 3px 0 0;
}

.mini-signal span:nth-child(2) { height: 72%; }
.mini-signal span:nth-child(3) { height: 38%; }
.mini-signal span:nth-child(4) { height: 90%; }
.mini-signal span:nth-child(5) { height: 62%; }
.mini-signal span:nth-child(6) { height: 82%; }
.mini-signal span:nth-child(7) { height: 50%; }

.architecture-section {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #090d15;
}

.architecture-section::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -130px;
    width: 580px;
    height: 580px;
    background: rgba(128, 109, 255, 0.1);
    border-radius: 50%;
    filter: blur(120px);
}

.architecture-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.78fr 1.05fr;
    gap: 110px;
    align-items: center;
}

.architecture-copy h2,
.company-copy h2 {
    font-size: clamp(44px, 4.6vw, 65px);
    font-weight: 650;
}

.architecture-copy h2 span,
.company-copy h2 span {
    color: #7f8796;
    font-weight: 420;
}

.architecture-copy > p,
.company-copy > p {
    margin: 30px 0 0;
    color: #9da5b3;
    font-size: 17px;
    line-height: 1.85;
}

.architecture-points {
    margin-top: 48px;
    border-top: 1px solid var(--line-light);
}

.architecture-points > div {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 18px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--line-light);
}

.architecture-points > div > span {
    color: var(--violet-bright);
    font-size: 10px;
    font-weight: 700;
}

.architecture-points p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0;
}

.architecture-points strong {
    font-size: 14px;
    font-weight: 650;
}

.architecture-points small {
    color: #757e8d;
    font-size: 11px;
}

.architecture-map {
    position: relative;
    min-height: 650px;
    padding: 38px;
    overflow: hidden;
    background:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        rgba(255, 255, 255, 0.025);
    background-size: 32px 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 26px;
}

.architecture-map::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(128, 109, 255, 0.14), transparent 40%);
}

.map-label {
    position: relative;
    z-index: 3;
    color: #687184;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.13em;
    text-align: center;
}

.map-source-row,
.map-output-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.map-source-row {
    margin-top: 22px;
}

.map-source-row span {
    padding: 14px 6px;
    color: #9aa3b2;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    font-size: 9px;
    font-weight: 730;
    letter-spacing: 0.08em;
    text-align: center;
}

.map-engine {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 245px;
    height: 185px;
    background: rgba(14, 19, 31, 0.9);
    border: 1px solid rgba(168, 153, 255, 0.32);
    border-radius: 24px;
    box-shadow: 0 0 80px rgba(128, 109, 255, 0.17);
    transform: translate(-50%, -50%);
}

.map-engine-logo {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 6px;
    overflow: hidden;
    background: #fff;
    border-radius: 14px;
}

.map-engine-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.map-engine > span {
    margin-top: 14px;
    color: var(--violet-bright);
    font-size: 9px;
    font-weight: 760;
    letter-spacing: 0.14em;
}

.map-engine strong {
    margin-top: 5px;
    font-size: 13px;
    font-weight: 600;
}

.engine-pulse {
    position: absolute;
    inset: -16px;
    border: 1px solid rgba(128, 109, 255, 0.12);
    border-radius: 30px;
}

.map-stream {
    position: absolute;
    top: 120px;
    bottom: 120px;
    z-index: 2;
    width: 1px;
    background: linear-gradient(to bottom, rgba(98, 216, 236, 0), rgba(98, 216, 236, 0.5), rgba(128, 109, 255, 0.5), rgba(98, 216, 236, 0));
}

.stream-one { left: 28%; }
.stream-two { left: 50%; }
.stream-three { left: 72%; }

.map-output-grid {
    position: absolute;
    right: 38px;
    bottom: 56px;
    left: 38px;
}

.map-output-grid > div {
    padding: 13px 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 9px;
    text-align: center;
}

.map-output-grid span {
    display: block;
    color: #c8ced8;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.08em;
}

.map-output-grid small {
    color: #687184;
    font-size: 8px;
}

.map-label-bottom {
    position: absolute;
    right: 0;
    bottom: 25px;
    left: 0;
}

.skills-section {
    background: var(--paper-bright);
}

.skills-heading {
    display: grid;
    grid-template-columns: 1fr 0.65fr;
    gap: 100px;
    align-items: end;
}

.skills-intro {
    padding-bottom: 4px;
}

.audit-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 23px;
    padding: 8px 11px;
    color: #267550;
    background: rgba(121, 226, 175, 0.12);
    border: 1px solid rgba(71, 166, 117, 0.22);
    border-radius: 999px;
    font-size: 9px;
    font-weight: 780;
    letter-spacing: 0.08em;
}

.audit-badge svg {
    width: 15px;
    height: 15px;
}

.skill-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 72px;
}

.skill-card {
    display: flex;
    flex-direction: column;
    min-height: 500px;
    padding: 30px;
    background: #f0efe9;
    border: 1px solid rgba(10, 14, 23, 0.09);
    border-radius: var(--radius-md);
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.skill-card:hover {
    background: #f6f5f0;
    box-shadow: 0 28px 70px rgba(10, 14, 23, 0.08);
    transform: translateY(-7px);
}

.skill-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 52px;
}

.skill-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
}

.skill-icon svg {
    width: 27px;
    height: 27px;
}

.skill-icon.violet {
    color: #6550ea;
    background: rgba(128, 109, 255, 0.14);
}

.skill-icon.cyan {
    color: #218ca1;
    background: rgba(98, 216, 236, 0.16);
}

.skill-icon.green {
    color: #227a53;
    background: rgba(121, 226, 175, 0.17);
}

.skill-version {
    padding: 6px 8px;
    color: #7c8492;
    background: rgba(10, 14, 23, 0.04);
    border-radius: 6px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 9px;
}

.skill-card h3 {
    margin: 11px 0 0;
    font-size: 25px;
    font-weight: 640;
    letter-spacing: -0.035em;
    line-height: 1.2;
}

.skill-card > p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.skill-card > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.skill-card > ul li {
    padding: 6px 9px;
    color: #5e6674;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 10px;
}

.skill-download {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.skill-download > span {
    color: #858c98;
    font-size: 10px;
}

.skill-download a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    color: #fff;
    background: var(--ink);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: transform var(--transition), background var(--transition);
}

.skill-download a:hover {
    background: #333a48;
    transform: translateY(-2px);
}

.skill-download a:hover svg {
    transform: translateY(2px);
}

.skill-download a svg {
    width: 15px;
    height: 15px;
}

.skills-footnote {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 24px;
    color: #828995;
    border-top: 1px solid var(--line);
    font-size: 10px;
}

.skills-footnote a {
    margin: 0;
    color: var(--ink);
}

.customers-section {
    background: #ebeae5;
}

.customer-layout {
    display: grid;
    grid-template-columns: 0.82fr 1fr;
    gap: 110px;
    align-items: start;
}

.customer-quote blockquote {
    margin: 0;
    font-size: clamp(32px, 3.5vw, 47px);
    font-weight: 560;
    letter-spacing: -0.045em;
    line-height: 1.25;
}

.customer-quote > p {
    margin: 30px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.customer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.customer-grid > div {
    min-height: 150px;
    padding: 30px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.customer-grid strong {
    display: block;
    font-size: 20px;
    font-weight: 620;
    letter-spacing: -0.025em;
}

.customer-grid span {
    display: block;
    margin-top: 8px;
    color: #7b8390;
    font-size: 11px;
}

.company-section {
    padding-bottom: 36px;
    background: var(--paper-bright);
}

.company-card {
    position: relative;
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    min-height: 620px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 78% 45%, rgba(98, 216, 236, 0.16), transparent 26%),
        radial-gradient(circle at 65% 65%, rgba(128, 109, 255, 0.22), transparent 31%),
        #0b0f18;
    border-radius: var(--radius-lg);
}

.company-copy {
    position: relative;
    z-index: 3;
    padding: 76px;
}

.company-locations {
    display: flex;
    gap: 28px;
    margin-top: 44px;
}

.company-locations span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a7aebb;
    font-size: 11px;
}

.company-locations i {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
}

.company-locations b {
    font-weight: 560;
}

.company-mark {
    position: relative;
    display: grid;
    place-items: center;
}

.company-mark::before,
.company-mark::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
}

.company-mark::before {
    width: 430px;
    height: 430px;
}

.company-mark::after {
    width: 290px;
    height: 290px;
}

.company-mark-letter {
    position: relative;
    z-index: 2;
    font-size: clamp(180px, 24vw, 340px);
    font-weight: 770;
    letter-spacing: -0.12em;
    line-height: 1;
    background: linear-gradient(145deg, #c9c1ff 0%, #7964ef 44%, #51bdd7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 26px 50px rgba(77, 65, 175, 0.22));
    transform: translateX(-3%);
}

.company-mark-orbit {
    position: absolute;
    z-index: 1;
    width: 520px;
    height: 180px;
    border: 1px solid rgba(98, 216, 236, 0.2);
    border-radius: 50%;
    transform: rotate(-18deg);
}

.company-particle {
    position: absolute;
    z-index: 4;
    width: 11px;
    height: 11px;
    border-radius: 3px;
    transform: rotate(45deg);
}

.particle-a { top: 22%; right: 22%; background: var(--cyan); }
.particle-b { right: 11%; bottom: 29%; width: 7px; height: 7px; background: var(--green); }
.particle-c { bottom: 18%; left: 24%; background: var(--violet-bright); }

.contact-section {
    background: var(--paper-bright);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 0.72fr;
    gap: 130px;
}

.contact-heading > p {
    max-width: 540px;
    margin-top: 30px;
}

.contact-heading > a {
    display: inline-block;
    margin-top: 35px;
    font-size: 14px;
    font-weight: 700;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

.contact-form {
    padding: 36px;
    background: #eeede8;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.contact-form label {
    display: block;
    margin-bottom: 20px;
}

.contact-form label > span {
    display: block;
    margin-bottom: 8px;
    color: #596170;
    font-size: 10px;
    font-weight: 730;
    letter-spacing: 0.04em;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-bottom: 1px solid #b7bbc1;
    border-radius: 0;
    outline: none;
    resize: vertical;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom-color: var(--violet);
    box-shadow: 0 1px 0 var(--violet);
}

.button-dark {
    color: #fff;
    background: var(--ink);
}

.form-status {
    min-height: 22px;
    margin: 14px 0 0;
    color: #5d6572;
    font-size: 13px;
    transition: color 0.2s;
}

.form-status-success {
    color: var(--violet-bright);
}

.form-status-error {
    color: #ef4444;
}

.contact-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-form button {
    overflow: hidden;
}

.contact-form button svg {
    transition: transform 0.2s ease;
}

.contact-form button.sending svg {
    animation: arrow-slide 1s ease-in-out infinite;
}

@keyframes arrow-slide {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    40% {
        transform: translateX(20px);
        opacity: 0;
    }
    41% {
        transform: translateX(-10px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.site-footer {
    color: #fff;
    background: #080b12;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 40px;
    align-items: center;
    min-height: 170px;
}

.footer-top > p {
    color: #777f8d;
    font-size: 12px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #9ba2af;
    font-size: 12px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    color: #5f6774;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 10px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms cubic-bezier(.2, .75, .3, 1), transform 700ms cubic-bezier(.2, .75, .3, 1);
}

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

.stat-row .reveal:nth-child(2),
.skill-grid .reveal:nth-child(2) {
    transition-delay: 90ms;
}

.stat-row .reveal:nth-child(3),
.skill-grid .reveal:nth-child(3) {
    transition-delay: 180ms;
}

.stat-row .reveal:nth-child(4) {
    transition-delay: 270ms;
}

@media (max-width: 1100px) {
    .desktop-nav {
        gap: 22px;
        margin-left: 20px;
    }

    .hero-shell {
        grid-template-columns: 1fr 0.82fr;
        gap: 40px;
    }

    .visual-frame {
        min-height: 510px;
    }

    .architecture-layout,
    .customer-layout {
        gap: 65px;
    }

    .company-copy {
        padding: 58px;
    }

    .contact-layout {
        gap: 75px;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 68px;
    }

    .section-pad {
        padding: 96px 0;
    }

    .desktop-nav,
    .nav-cta {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .mobile-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        max-height: 0;
        padding: 0 24px;
        overflow: hidden;
        color: var(--ink);
        background: rgba(251, 250, 247, 0.98);
        opacity: 0;
        visibility: hidden;
        transition: max-height 350ms ease, padding 350ms ease, opacity var(--transition), visibility var(--transition);
    }

    .site-header.is-open .mobile-nav {
        max-height: calc(100vh - var(--header-height));
        padding-top: 24px;
        padding-bottom: 34px;
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav a {
        padding: 16px 0;
        border-bottom: 1px solid var(--line);
        font-size: 20px;
        font-weight: 580;
        text-decoration: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-shell {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 155px;
        padding-bottom: 155px;
    }

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

    .hero-visual {
        max-width: 640px;
        margin-inline: auto;
    }

    .visual-frame {
        transform: none;
    }

    .hero-proof {
        min-height: 76px;
    }

    .proof-names span:nth-child(n+4) {
        display: none;
    }

    .signal-grid,
    .section-heading,
    .skills-heading,
    .architecture-layout,
    .customer-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .section-heading > p {
        max-width: 650px;
    }

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

    .capability-large {
        grid-row: auto;
        min-height: 700px;
    }

    .architecture-copy {
        max-width: 650px;
    }

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

    .skill-card {
        min-height: 390px;
    }

    .company-card {
        grid-template-columns: 1fr;
    }

    .company-mark {
        min-height: 420px;
    }

    .company-mark-letter {
        font-size: 280px;
    }

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

    .footer-links {
        grid-column: 1 / -1;
        padding-bottom: 30px;
    }
}

@media (max-width: 640px) {
    .section-shell,
    .nav-shell,
    .hero-shell,
    .hero-proof,
    .footer-shell {
        width: min(calc(100% - 32px), var(--max-width));
    }

    .section-pad {
        padding: 78px 0;
    }

    .brand-name {
        font-size: 15px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
    }

    .hero-shell {
        padding-top: 130px;
        padding-bottom: 135px;
    }

    .hero h1 {
        font-size: clamp(40px, 11.4vw, 48px);
        line-height: 1.05;
    }

    .mobile-break {
        display: block;
    }

    .hero-lead {
        font-size: 16px;
        line-height: 1.75;
    }

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

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

    .hero-note {
        margin-top: 32px;
    }

    .visual-frame {
        min-height: 460px;
        border-radius: 20px;
    }

    .visual-canvas {
        height: 368px;
    }

    .orbit-one { width: 130px; height: 130px; }
    .orbit-two { width: 215px; height: 215px; }
    .orbit-three { width: 300px; height: 300px; }

    .network-node {
        min-width: 74px;
        padding: 8px;
    }

    .node-a { left: 4%; }
    .node-b { right: 4%; }
    .node-c { right: 4%; }
    .node-d { left: 4%; }

    .metric-card {
        display: none;
    }

    .visual-footer {
        gap: 13px;
        padding-inline: 14px;
    }

    .hero-proof {
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        min-height: 93px;
    }

    .proof-names {
        gap: 22px;
    }

    .proof-names span:nth-child(n+3) {
        display: none;
    }

    .signal-heading h2,
    .section-heading h2,
    .skills-heading h2,
    .contact-heading h2,
    .architecture-copy h2,
    .company-copy h2 {
        font-size: clamp(38px, 11.5vw, 52px);
    }

    .signal-copy p,
    .section-heading > p,
    .skills-intro > p,
    .contact-heading > p,
    .architecture-copy > p,
    .company-copy > p {
        font-size: 15px;
    }

    .stat-row {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 60px;
    }

    .stat-card {
        padding: 26px 20px;
    }

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

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

    .stat-card strong {
        font-size: 34px;
    }

    .capability-grid,
    .skill-grid {
        margin-top: 52px;
    }

    .capability-card {
        min-height: 390px;
        padding: 28px;
    }

    .capability-large {
        min-height: 670px;
    }

    .capability-card h3 {
        font-size: 26px;
    }

    .capability-large h3 {
        font-size: 36px;
    }

    .capability-icon {
        margin-bottom: 34px;
    }

    .card-art {
        height: 300px;
    }

    .architecture-points p {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .architecture-map {
        min-height: 535px;
        padding: 24px 18px;
    }

    .map-source-row {
        gap: 5px;
    }

    .map-source-row span {
        padding: 10px 3px;
        font-size: 8px;
    }

    .map-engine {
        width: 205px;
        height: 160px;
    }

    .map-output-grid {
        right: 18px;
        bottom: 52px;
        left: 18px;
        gap: 5px;
    }

    .map-output-grid > div {
        padding: 10px 2px;
    }

    .skill-card {
        min-height: 470px;
        padding: 26px;
    }

    .skills-footnote {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

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

    .customer-grid > div {
        min-height: 120px;
    }

    .company-card {
        min-height: auto;
        border-radius: 24px;
    }

    .company-copy {
        padding: 46px 28px 10px;
    }

    .company-locations {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .company-mark {
        min-height: 340px;
    }

    .company-mark-letter {
        font-size: 220px;
    }

    .company-mark::before {
        width: 300px;
        height: 300px;
    }

    .company-mark::after {
        width: 210px;
        height: 210px;
    }

    .company-mark-orbit {
        width: 350px;
        height: 120px;
    }

    .contact-form {
        padding: 26px 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-top {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
        padding: 45px 0 30px;
    }

    .footer-top > p {
        margin: 0;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 18px 24px;
        padding: 0;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        min-height: 88px;
    }
}

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

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

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