﻿:root {
    color-scheme: dark;
    --bg: #070b17;
    --bg-soft: #0b1121;
    --surface: rgba(17, 25, 46, 0.68);
    --surface-strong: rgba(22, 31, 55, 0.9);
    --stroke: rgba(255, 255, 255, 0.1);
    --stroke-bright: rgba(255, 255, 255, 0.18);
    --text: #f7f8ff;
    --muted: #aab4ca;
    --primary: #9f82ff;
    --primary-deep: #6047bf;
    --cyan: #4de6d4;
    --lime: #c8f36a;
    --warning: #ffc86b;
    --success: #63e6a4;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
    --shell: min(1180px, calc(100% - 40px));
    --header-height: 84px;
}


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

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

body {
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 12% -10%, rgba(113, 80, 220, 0.14), transparent 32rem),
        radial-gradient(circle at 94% 28%, rgba(38, 197, 178, 0.08), transparent 32rem),
        var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

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

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

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

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.08;
    letter-spacing: -0.035em;
}

h1 {
    margin-bottom: 24px;
    font-size: clamp(3.35rem, 7.2vw, 6.8rem);
    font-weight: 730;
}

h2 {
    margin-bottom: 22px;
    font-size: clamp(2.25rem, 4.5vw, 4.25rem);
    font-weight: 700;
}

h3 {
    margin-bottom: 14px;
    font-size: 1.35rem;
}

em {
    background: linear-gradient(105deg, #fff 3%, var(--primary) 47%, var(--cyan) 98%);
    background-clip: text;
    color: transparent;
    font-style: normal;
    -webkit-background-clip: text;
}

::selection {
    background: var(--primary);
    color: #fff;
}

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

.section-pad {
    position: relative;
    padding-block: clamp(90px, 10vw, 150px);
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
    padding: 10px 16px;
    border-radius: 10px;
    background: #fff;
    color: #080b16;
    transform: translateY(-160%);
}

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

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

.site-noise {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    opacity: 0.025;
    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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.glass-panel {
    border: 1px solid var(--stroke);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), var(--shadow);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--cyan);
    font-size: 0.76rem;
    font-weight: 760;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 26px;
    height: 1px;
    background: currentColor;
    content: "";
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
    padding: 7px 13px;
    border: 1px solid rgba(77, 230, 212, 0.2);
    border-radius: 999px;
    background: rgba(77, 230, 212, 0.06);
    color: #c7f7ef;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pill span,
.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--cyan);
    box-shadow: 0 0 16px rgba(77, 230, 212, 0.8);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.button {
    position: relative;
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 21px;
    border: 1px solid transparent;
    border-radius: 13px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 760;
    line-height: 1;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button svg,
.text-link svg,
.service-row-arrow svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    transition: transform 180ms ease;
}

.button:hover svg,
.text-link:hover svg {
    transform: translateX(4px);
}

.button-primary {
    border-color: rgba(255, 255, 255, 0.22);
    background:
        linear-gradient(135deg, rgba(159, 130, 255, 0.98), rgba(76, 210, 197, 0.9)),
        rgba(255, 255, 255, 0.08);
    box-shadow:
        0 6px 0 #46388c,
        0 14px 36px rgba(90, 67, 190, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
    color: #fff;
    transform: translateY(-2px);
}

.button-primary::before {
    position: absolute;
    inset: 1px 6px auto;
    height: 45%;
    border-radius: 11px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
    pointer-events: none;
    content: "";
}

.button-primary:hover {
    box-shadow:
        0 8px 0 #46388c,
        0 20px 45px rgba(90, 67, 190, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
}

.button-primary:active {
    box-shadow: 0 1px 0 #46388c, 0 8px 20px rgba(90, 67, 190, 0.25);
    transform: translateY(3px);
}

.button-ghost {
    border-color: var(--stroke-bright);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 30px rgba(0, 0, 0, 0.14);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.button-ghost:hover {
    border-color: rgba(77, 230, 212, 0.42);
    background: rgba(77, 230, 212, 0.08);
    transform: translateY(-2px);
}

.button-lg {
    min-height: 58px;
    padding: 16px 25px;
    border-radius: 16px;
}

.button-sm {
    min-height: 42px;
    padding: 10px 17px;
    border-radius: 12px;
    font-size: 0.82rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e7e9f4;
    font-size: 0.86rem;
    font-weight: 740;
}

.text-link-large {
    color: var(--cyan);
    font-size: 1rem;
}

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    transition: height 200ms ease, background 200ms ease, border-color 200ms ease;
}

.site-header.scrolled {
    height: 72px;
    border-bottom-color: var(--stroke);
    background: rgba(7, 11, 23, 0.82);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.header-shell {
    display: grid;
    height: 100%;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 36px;
}

.brand {
    display: block;
    width: 158px;
}

.brand img {
    width: 100%;
    height: auto;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.primary-nav a {
    position: relative;
    padding-block: 12px;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 650;
    transition: color 160ms ease;
}

.primary-nav a::after {
    position: absolute;
    right: 50%;
    bottom: 5px;
    left: 50%;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary), var(--cyan));
    content: "";
    transition: right 180ms ease, left 180ms ease;
}

.primary-nav a:hover,
.primary-nav a.active {
    color: var(--text);
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
    right: 0;
    left: 0;
}

.nav-toggle {
    display: none;
    width: 45px;
    height: 45px;
    padding: 12px;
    border: 1px solid var(--stroke);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin-block: 4px;
    border-radius: 2px;
    background: #fff;
    transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */
.hero {
    min-height: 840px;
    padding-top: calc(var(--header-height) + 100px);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
    align-items: center;
    gap: clamp(50px, 8vw, 110px);
}

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

.hero-lead,
.page-hero p,
.service-detail-hero p {
    max-width: 660px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.hero-proof {
    display: flex;
    gap: 32px;
    margin-top: 48px;
}

.hero-proof div {
    display: grid;
    gap: 1px;
}

.hero-proof strong {
    font-size: 1.12rem;
}

.hero-proof span {
    color: var(--muted);
    font-size: 0.72rem;
}

.hero-glow {
    position: absolute;
    width: 38rem;
    height: 38rem;
    border-radius: 50%;
    filter: blur(95px);
    pointer-events: none;
}

.hero-glow-one {
    top: 10%;
    right: -18rem;
    background: rgba(112, 80, 228, 0.25);
}

.hero-glow-two {
    bottom: -20rem;
    left: -14rem;
    background: rgba(31, 198, 179, 0.16);
}

.hero-stage {
    position: relative;
    z-index: 1;
    perspective: 1100px;
    transform-style: preserve-3d;
    transition: transform 120ms ease-out;
}

.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: rgba(16, 23, 43, 0.78);
    transform: rotateY(-7deg) rotateX(3deg);
    transform-style: preserve-3d;
}

.hero-card::after {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 25%, transparent 70%, rgba(77, 230, 212, 0.08));
    pointer-events: none;
    content: "";
}

.hero-card-bar {
    display: flex;
    height: 48px;
    align-items: center;
    gap: 7px;
    padding-inline: 18px;
    border-bottom: 1px solid var(--stroke);
}

.hero-card-bar > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.24);
}

.hero-card-bar > span:first-child { background: #ff7a8d; }
.hero-card-bar > span:nth-child(2) { background: #ffd36e; }
.hero-card-bar > span:nth-child(3) { background: #65e1b7; }

.hero-card-bar small {
    margin-left: auto;
    color: var(--muted);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-image-wrap {
    margin: 15px;
    overflow: hidden;
    border-radius: 20px;
    background: #e9eef8;
}

.hero-image-wrap img {
    width: 100%;
    aspect-ratio: 13 / 6;
    object-fit: cover;
}

.hero-card-caption {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 6px 20px 20px;
}

.hero-card-caption div {
    display: grid;
}

.hero-card-caption strong {
    font-size: 0.85rem;
}

.hero-card-caption small {
    color: var(--muted);
    font-size: 0.7rem;
}

.mini-play {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--cyan);
    font-size: 0.65rem;
}

.float-chip {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(14, 21, 39, 0.8);
    font-size: 0.72rem;
    font-weight: 700;
    animation: float 5s ease-in-out infinite;
}

.float-chip span {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    font-size: 0.66rem;
}

.float-chip-one {
    top: 20%;
    left: -44px;
}

.float-chip-two {
    right: -38px;
    bottom: 18%;
    animation-delay: -2.2s;
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(159, 130, 255, 0.16);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-one {
    inset: -18% -12%;
    animation: orbit 24s linear infinite;
}

.orbit-two {
    inset: -8% 5%;
    border-color: rgba(77, 230, 212, 0.16);
    animation: orbit 16s linear infinite reverse;
}

.hero-orbit::before {
    position: absolute;
    top: 12%;
    left: 12%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 22px var(--primary);
    content: "";
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

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

/* Sections */
.logo-band {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-block: 1px solid rgba(77, 230, 212, 0.2);
    background:
        radial-gradient(circle at 18% 50%, rgba(159, 130, 255, 0.2), transparent 26rem),
        radial-gradient(circle at 82% 50%, rgba(77, 230, 212, 0.14), transparent 28rem),
        #080f20;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 60px rgba(2, 8, 20, 0.24);
}

.logo-band::before {
    position: absolute;
    inset: -40% -10%;
    background-image:
        linear-gradient(rgba(77, 230, 212, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(159, 130, 255, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    content: "";
    opacity: 0.75;
    pointer-events: none;
    transform: perspective(420px) rotateX(58deg) translate3d(0, 0, 0);
    animation: ai-grid-drift 12s linear infinite;
}

.ai-network {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.ai-network span {
    position: absolute;
    width: 6px;
    height: 6px;
    border: 1px solid rgba(77, 230, 212, 0.8);
    border-radius: 50%;
    background: #0b1730;
    box-shadow: 0 0 0 5px rgba(77, 230, 212, 0.06), 0 0 22px rgba(77, 230, 212, 0.75);
    animation: ai-node-pulse 2.8s ease-in-out infinite;
}

.ai-network span:first-child { top: 19%; left: 8%; }
.ai-network span:nth-child(2) { right: 24%; bottom: 18%; animation-delay: -0.8s; }
.ai-network span:nth-child(3) { top: 22%; right: 7%; animation-delay: -1.6s; }
.ai-network span:nth-child(4) { bottom: 17%; left: 34%; animation-delay: -2.2s; }

@keyframes ai-grid-drift {
    to { background-position: 42px 0, 42px 0; }
}

@keyframes ai-node-pulse {
    0%, 100% { opacity: 0.35; transform: scale(0.75); }
    50% { opacity: 1; transform: scale(1.15); }
}

.ticker-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.ticker-track {
    --ticker-duration: 28s;
    --ticker-translate: -50%;
    display: flex;
    gap: 0;
    width: max-content;
    animation: ticker-crawl var(--ticker-duration) linear infinite;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.ticker-content {
    display: flex;
    box-sizing: border-box;
    width: max-content;
    min-width: 100vw;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(25px, 3.5vw, 54px);
    padding: 16px clamp(30px, 4vw, 64px);
}

.ticker-content span {
    white-space: nowrap;
}

.ticker-content .ticker-intro {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 13px;
    border: 1px solid rgba(77, 230, 212, 0.24);
    border-radius: 999px;
    background: linear-gradient(105deg, rgba(159, 130, 255, 0.13), rgba(77, 230, 212, 0.08));
    color: #dffdfa;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 0 28px rgba(77, 230, 212, 0.08);
    font-size: 0.72rem;
    font-weight: 760;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ai-spark {
    display: inline-grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 7px;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    color: #07101f;
    box-shadow: 0 0 18px rgba(77, 230, 212, 0.42);
    font-size: 0.75rem;
    animation: ai-spark-pulse 2.4s ease-in-out infinite;
}

.ticker-content strong {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #f6f8ff;
    font-size: clamp(0.86rem, 1.25vw, 1rem);
    font-weight: 720;
    letter-spacing: 0.015em;
    white-space: nowrap;
}

.ticker-content strong::before {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border: 2px solid var(--cyan);
    border-radius: 50%;
    background: rgba(77, 230, 212, 0.14);
    box-shadow: 0 0 13px rgba(77, 230, 212, 0.65);
    content: "";
}

.ticker-content i {
    width: 28px;
    height: 1px;
    flex-shrink: 0;
    background: linear-gradient(90deg, transparent, rgba(159, 130, 255, 0.8), transparent);
    box-shadow: 0 0 10px rgba(159, 130, 255, 0.35);
    animation: ai-connector-pulse 2s ease-in-out infinite;
}

/* Two identical groups keep the strip moving right-to-left forever.
   At the end of the first group, the duplicate is already in place, so the
   animation can restart without a visible jump or pause. */
@keyframes ticker-crawl {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(var(--ticker-translate), 0, 0); }
}

@keyframes ai-spark-pulse {
    0%, 100% { filter: brightness(0.95); transform: rotate(0deg) scale(0.94); }
    50% { filter: brightness(1.2); transform: rotate(12deg) scale(1.06); }
}

@keyframes ai-connector-pulse {
    0%, 100% { opacity: 0.3; transform: scaleX(0.65); }
    50% { opacity: 1; transform: scaleX(1); }
}
.logo-band-inner {
    display: flex;
    min-height: 88px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #cbd2e3;
}

.logo-band-inner > span {
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.logo-band-inner strong {
    font-size: 0.84rem;
    font-weight: 650;
}

.logo-band-inner i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
}

.services-section,
.values-section,
.approach-section,
.service-note-section {
    background: rgba(255, 255, 255, 0.012);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: end;
    gap: 60px;
    margin-bottom: 58px;
}

.section-heading h2 {
    max-width: 770px;
    margin-bottom: 0;
}

.section-heading > p {
    max-width: 500px;
    margin: 0 0 6px;
    color: var(--muted);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    position: relative;
    min-height: 370px;
    padding: 29px;
    overflow: hidden;
    border-radius: var(--radius-md);
    transform-style: preserve-3d;
    transition: border-color 220ms ease, background 220ms ease, transform 120ms ease-out;
}

.service-card::after {
    position: absolute;
    right: -30%;
    bottom: -55%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(159, 130, 255, 0.18), transparent 68%);
    opacity: 0;
    content: "";
    transition: opacity 220ms ease;
}

.service-card-media {
    position: absolute;
    inset: 0 0 auto;
    z-index: 0;
    height: 56%;
    overflow: hidden;
    opacity: 0.2;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(#000 0%, rgba(0, 0, 0, 0.55) 58%, transparent 100%);
    mask-image: linear-gradient(#000 0%, rgba(0, 0, 0, 0.55) 58%, transparent 100%);
    transition: opacity 260ms ease, transform 360ms ease;
}

.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
    filter: saturate(0.9) contrast(1.05);
    transform: scale(1.035);
}

.service-card .service-icon,
.service-card .service-eyebrow,
.service-card h3,
.service-card p,
.service-card .text-link,
.service-card .service-index { position: relative; z-index: 1; }

.service-card .service-index { position: absolute; }

.service-card:hover {
    border-color: rgba(159, 130, 255, 0.35);
    background: linear-gradient(145deg, rgba(159, 130, 255, 0.09), rgba(77, 230, 212, 0.035));
}

.service-card:hover .service-card-media {
    opacity: 0.34;
    transform: scale(1.025);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    display: grid;
    width: 55px;
    height: 55px;
    place-items: center;
    margin-bottom: 48px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(159, 130, 255, 0.16), rgba(77, 230, 212, 0.08));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 12px 28px rgba(0, 0, 0, 0.18);
    color: var(--cyan);
}

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

.service-index {
    position: absolute;
    top: 29px;
    right: 29px;
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.service-eyebrow,
.service-row-copy small {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 0.67rem;
    font-weight: 720;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-card h3 {
    font-size: 1.45rem;
}

.service-card p {
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 0.91rem;
}

.service-card .text-link {
    position: absolute;
    bottom: 27px;
    left: 29px;
}

.story-section {
    overflow: hidden;
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(60px, 10vw, 130px);
}

.story-visual {
    position: relative;
    perspective: 1000px;
    transition: transform 120ms ease-out;
}

.story-frame {
    overflow: hidden;
    border: 1px solid var(--stroke);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow);
    transform: rotateY(5deg) rotateX(2deg);
}

.story-frame img {
    width: 100%;
    aspect-ratio: 1.08;
    object-fit: cover;
}

.story-badge {
    position: absolute;
    right: -25px;
    bottom: -28px;
    display: grid;
    min-width: 190px;
    padding: 18px 21px;
    border-radius: 17px;
    background: rgba(13, 20, 38, 0.86);
}

.story-badge strong {
    font-size: 1.2rem;
}

.story-badge span {
    color: var(--muted);
    font-size: 0.73rem;
}

.story-copy > p,
.detail-body-grid p,
.mission-grid p,
.centered-copy p,
.contact-details > p {
    color: var(--muted);
}

.check-list {
    display: grid;
    gap: 14px;
    margin: 28px 0 32px;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.94rem;
}

.check-list li span {
    display: grid;
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(77, 230, 212, 0.23);
    border-radius: 50%;
    background: rgba(77, 230, 212, 0.08);
    color: var(--cyan);
    font-size: 0.71rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-block: 1px solid var(--stroke);
}

.process-card {
    min-height: 260px;
    padding: 34px 28px;
    border-right: 1px solid var(--stroke);
}

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

.process-card > span,
.value-card > span {
    display: block;
    margin-bottom: 60px;
    color: var(--cyan);
    font-size: 0.72rem;
    font-weight: 730;
    letter-spacing: 0.12em;
}

.process-card p,
.value-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.quote-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.quote-card {
    padding: clamp(30px, 4vw, 48px);
    border-radius: var(--radius-lg);
}

.quote-mark {
    display: block;
    height: 56px;
    color: var(--primary);
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
}

.quote-card blockquote {
    margin: 20px 0 35px;
    font-size: clamp(1.35rem, 2.5vw, 2.1rem);
    font-weight: 560;
    line-height: 1.35;
    letter-spacing: -0.025em;
}

.quote-card footer {
    display: grid;
}

.quote-card footer span {
    color: var(--muted);
    font-size: 0.75rem;
}

/* Inner pages */
.compact-hero {
    min-height: 650px;
    padding-top: calc(var(--header-height) + 105px);
    overflow: hidden;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    align-items: center;
    gap: 80px;
}

.page-hero h1 {
    max-width: 900px;
    font-size: clamp(3.2rem, 6vw, 6rem);
}

.page-hero-number {
    display: grid;
    min-height: 270px;
    place-content: center;
    padding: 40px;
    border-radius: 50%;
    text-align: center;
    transform: rotate(4deg);
}

.page-hero-number strong {
    background: linear-gradient(135deg, #fff, var(--cyan));
    background-clip: text;
    color: transparent;
    font-size: 5rem;
    letter-spacing: -0.08em;
    -webkit-background-clip: text;
}

.page-hero-number span {
    max-width: 150px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 0.8rem;
}

.about-story-grid {
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
}

.mini-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 38px;
}

.mini-metrics div {
    display: grid;
    gap: 4px;
    padding-top: 18px;
    border-top: 1px solid var(--stroke);
}

.mini-metrics strong {
    font-size: 1.2rem;
}

.mini-metrics span {
    color: var(--muted);
    font-size: 0.7rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.value-card {
    min-height: 280px;
    padding: 34px;
    border-radius: var(--radius-md);
}

.value-card > span {
    margin-bottom: 52px;
}

.mission-band {
    border-block: 1px solid var(--stroke);
    background: linear-gradient(100deg, rgba(159, 130, 255, 0.09), rgba(77, 230, 212, 0.035));
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    align-items: center;
    gap: 100px;
}

.mission-grid h2 {
    margin: 0;
}

.mission-grid p {
    margin-bottom: 30px;
}

.page-hero-orbit {
    position: relative;
    display: grid;
    width: 285px;
    height: 285px;
    place-items: center;
    margin-inline: auto;
    border: 1px solid rgba(159, 130, 255, 0.25);
    border-radius: 50%;
}

.page-hero-orbit::before,
.page-hero-orbit::after {
    position: absolute;
    inset: 28px;
    border: 1px solid rgba(77, 230, 212, 0.18);
    border-radius: 50%;
    content: "";
}

.page-hero-orbit::after { inset: 62px; }

.page-hero-orbit strong {
    font-size: 4.4rem;
}

.page-hero-orbit span {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 22px var(--primary);
}

.page-hero-orbit span:first-child { top: 16px; left: 50%; }
.page-hero-orbit span:nth-child(2) { right: 30px; bottom: 45px; background: var(--cyan); box-shadow: 0 0 22px var(--cyan); }
.page-hero-orbit span:nth-child(3) { bottom: 72px; left: 22px; background: var(--lime); box-shadow: 0 0 22px var(--lime); }

.service-list {
    display: grid;
    gap: 13px;
}

.service-row {
    display: grid;
    min-height: 155px;
    grid-template-columns: 65px 75px minmax(0, 1fr) 60px;
    align-items: center;
    gap: 25px;
    padding: 24px 31px;
    border-radius: var(--radius-md);
    transition: border-color 180ms ease, background 180ms ease, transform 120ms ease-out;
}

.service-row:hover {
    border-color: rgba(77, 230, 212, 0.32);
    background: linear-gradient(100deg, rgba(159, 130, 255, 0.1), rgba(77, 230, 212, 0.04));
}

.service-row-number {
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
}

.service-row .service-icon {
    margin: 0;
}

.service-row-copy {
    display: grid;
}

.service-row-copy small {
    margin-bottom: 4px;
}

.service-row-copy strong {
    margin-bottom: 5px;
    font-size: 1.45rem;
    letter-spacing: -0.025em;
}

.service-row-copy > span {
    color: var(--muted);
    font-size: 0.85rem;
}

.service-row-arrow {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--stroke);
    border-radius: 50%;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-row:hover .service-row-arrow {
    background: var(--cyan);
    color: #071412;
    transform: rotate(-10deg);
}

.centered-copy {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
}

.centered-copy .eyebrow::before {
    display: none;
}

.centered-copy p {
    max-width: 620px;
    margin: 0 auto 32px;
}

.service-detail-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 105px);
    overflow: hidden;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.service-detail-copy {
    position: relative;
    z-index: 2;
    max-width: 940px;
}

.service-detail-hero h1 {
    font-size: clamp(3.1rem, 5.4vw, 5.7rem);
}

.back-link {
    display: block;
    margin-bottom: 36px;
    color: var(--muted);
    font-size: 0.8rem;
}

.detail-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 25px;
}

.detail-visual {
    position: relative;
    width: 100%;
    min-height: 0;
    aspect-ratio: 13 / 6;
    padding: 12px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: rgba(15, 22, 41, 0.78);
    transition: transform 120ms ease-out;
}

.detail-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    aspect-ratio: 13 / 6;
    border-radius: 22px;
    object-fit: contain;
    background: #07101f;
}

.detail-visual-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(circle at center, #000, transparent 74%);
}

.detail-body-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 110px;
}

.capability-list {
    border-top: 1px solid var(--stroke);
}

.capability-list div {
    display: grid;
    min-height: 88px;
    grid-template-columns: 70px 1fr;
    align-items: center;
    border-bottom: 1px solid var(--stroke);
}

.capability-list span {
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 720;
}

.process-grid-three {
    grid-template-columns: repeat(3, 1fr);
}

/* Contact and careers */
.contact-shortcuts {
    display: grid;
    gap: 14px;
}

.contact-shortcuts a {
    display: grid;
    gap: 3px;
    padding: 22px 24px;
    border-radius: 17px;
    transition: border-color 180ms ease, transform 180ms ease;
}

.contact-shortcuts a:hover {
    border-color: rgba(77, 230, 212, 0.32);
    transform: translateX(-4px);
}

.contact-shortcuts span {
    color: var(--muted);
    font-size: 0.72rem;
}

.contact-shortcuts strong {
    font-size: 0.9rem;
}

.form-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: clamp(55px, 9vw, 120px);
}

.contact-details {
    position: sticky;
    top: 120px;
}

.map-art {
    position: relative;
    height: 260px;
    margin-top: 45px;
    overflow: hidden;
    border-radius: var(--radius-md);
    background-color: #10182c;
    background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 34px 34px;
}

.map-road {
    position: absolute;
    width: 130%;
    height: 12px;
    border-block: 1px solid rgba(77, 230, 212, 0.2);
    background: rgba(77, 230, 212, 0.04);
    transform-origin: left center;
}

.road-one { top: 22%; left: -10%; transform: rotate(24deg); }
.road-two { top: 74%; left: -10%; transform: rotate(-15deg); }
.road-three { top: 9%; left: 58%; transform: rotate(78deg); }

.map-pin {
    position: absolute;
    top: 44%;
    left: 51%;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 7px solid rgba(159, 130, 255, 0.27);
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 36px rgba(159, 130, 255, 0.65);
    color: white;
    font-size: 0.5rem;
}

.form-card {
    padding: clamp(27px, 5vw, 54px);
    border-radius: var(--radius-lg);
    background: rgba(14, 21, 39, 0.72);
}

.form-card h2 {
    font-size: clamp(2rem, 4vw, 3.1rem);
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}

.field-grid label {
    display: grid;
    gap: 8px;
    color: #dfe4f2;
    font-size: 0.72rem;
    font-weight: 700;
}

.field-grid input,
.field-grid textarea {
    width: 100%;
    border: 1px solid var(--stroke);
    outline: 0;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 500;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field-grid input {
    height: 52px;
    padding-inline: 15px;
}

.field-grid textarea {
    min-height: 140px;
    padding: 14px 15px;
    resize: vertical;
}

.field-grid input::placeholder,
.field-grid textarea::placeholder {
    color: #707b92;
}

.field-grid input:focus,
.field-grid textarea:focus {
    border-color: rgba(77, 230, 212, 0.56);
    background: rgba(77, 230, 212, 0.035);
    box-shadow: 0 0 0 4px rgba(77, 230, 212, 0.08);
}

.field-wide {
    grid-column: 1 / -1;
}

.field-error,
.validation-summary {
    color: #ff9ca9;
    font-size: 0.72rem;
    font-weight: 600;
}

.validation-summary:empty,
.field-error:empty {
    display: none;
}

.form-alert {
    margin-bottom: 24px;
    padding: 13px 15px;
    border: 1px solid rgba(99, 230, 164, 0.25);
    border-radius: 12px;
    background: rgba(99, 230, 164, 0.08);
    color: #baf7d4;
    font-size: 0.8rem;
}

.form-alert.warning {
    border-color: rgba(255, 200, 107, 0.28);
    background: rgba(255, 200, 107, 0.08);
    color: #ffe0a9;
}

.file-field {
    position: relative;
    padding: 16px;
    border: 1px dashed rgba(159, 130, 255, 0.35);
    border-radius: 14px;
    background: rgba(159, 130, 255, 0.04);
    cursor: pointer;
}

.file-field input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.file-field strong {
    color: var(--cyan);
    font-size: 0.82rem;
}

.career-orbit {
    position: relative;
    display: grid;
    width: 300px;
    height: 300px;
    place-items: center;
    margin-inline: auto;
    border-radius: 50%;
}

.career-orbit strong {
    font-size: 2.2rem;
}

.career-orbit span {
    position: absolute;
    display: grid;
    width: 70px;
    height: 70px;
    place-items: center;
    border: 1px solid var(--stroke);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--cyan);
    font-size: 0.72rem;
}

.career-orbit span:first-child { top: -4px; left: 50%; width: auto; height: auto; border: 0; background: transparent; font-size: 2rem; }
.career-orbit span:nth-of-type(2) { right: -10px; bottom: 45px; }
.career-orbit span:nth-of-type(3) { bottom: 35px; left: 2px; color: var(--primary); }

.opening-list {
    border-top: 1px solid var(--stroke);
}

.opening-row {
    display: grid;
    min-height: 105px;
    grid-template-columns: 0.7fr 1fr 0.7fr auto;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid var(--stroke);
    transition: background 180ms ease, padding 180ms ease;
}

.opening-row:hover {
    padding-inline: 20px;
    background: linear-gradient(90deg, rgba(159, 130, 255, 0.08), transparent);
}

.opening-row > span {
    color: var(--muted);
    font-size: 0.76rem;
}

.opening-row strong {
    font-size: 1.15rem;
}

.opening-row i {
    color: var(--cyan);
    font-style: normal;
    font-size: 1.3rem;
}

.error-page {
    min-height: 75vh;
    padding-top: calc(var(--header-height) + 100px);
}

.error-page small {
    display: block;
    margin: -15px 0 30px;
    color: var(--muted);
}

/* Footer */
.site-footer {
    padding-top: 35px;
    border-top: 1px solid var(--stroke);
    background: #050811;
}

.footer-cta {
    display: flex;
    min-height: 210px;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: clamp(30px, 5vw, 58px);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 80% 20%, rgba(77, 230, 212, 0.12), transparent 40%),
        linear-gradient(120deg, rgba(159, 130, 255, 0.1), rgba(255, 255, 255, 0.025));
}

.footer-cta h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 0.75fr);
    gap: 55px;
    padding-block: 80px;
}

.footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-grid h3 {
    margin-bottom: 10px;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.footer-grid a:hover {
    color: var(--cyan);
}

.footer-brand img {
    width: 165px;
    height: auto;
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 350px;
}

.footer-bottom {
    display: flex;
    min-height: 75px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid var(--stroke);
}

.footer-bottom p {
    margin: 0;
    color: #737d91;
    font-size: 0.7rem;
}

/* Progressive motion */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
}

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

.service-grid .reveal:nth-child(2),
.values-grid .reveal:nth-child(2),
.process-grid .reveal:nth-child(2) { transition-delay: 70ms; }
.service-grid .reveal:nth-child(3),
.values-grid .reveal:nth-child(3),
.process-grid .reveal:nth-child(3) { transition-delay: 140ms; }
.service-grid .reveal:nth-child(4),
.values-grid .reveal:nth-child(4),
.process-grid .reveal:nth-child(4) { transition-delay: 210ms; }

section:not(.hero, .page-hero, .service-detail-hero) {
    content-visibility: auto;
    contain-intrinsic-size: auto 700px;
}

@media (max-width: 1050px) {
    :root { --shell: min(100% - 34px, 950px); }

    .header-shell { gap: 22px; }
    .primary-nav { gap: 20px; }
    .header-cta { display: none; }
    .header-shell { grid-template-columns: auto 1fr; }

    .hero { min-height: auto; }
    .hero-grid { grid-template-columns: 1fr 0.9fr; gap: 55px; }
    .hero-proof { gap: 20px; }
    .float-chip-one { left: -18px; }
    .float-chip-two { right: -12px; }

    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .story-grid { gap: 65px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-card:nth-child(2) { border-right: 0; }
    .process-card:nth-child(-n+2) { border-bottom: 1px solid var(--stroke); }

    .service-detail-grid { gap: 55px; }
    .detail-body-grid { gap: 70px; }
    .footer-grid { grid-template-columns: 1.4fr repeat(3, 0.8fr); gap: 30px; }
}

@media (max-width: 820px) {
    :root { --header-height: 72px; }

    .header-shell { grid-template-columns: 1fr auto; }
    .brand { width: 142px; }
    .nav-toggle { display: block; }
    .primary-nav {
        position: fixed;
        inset: var(--header-height) 14px auto;
        display: grid;
        gap: 2px;
        padding: 12px;
        border: 1px solid var(--stroke);
        border-radius: 18px;
        background: rgba(9, 14, 28, 0.97);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px) scale(0.98);
        transition: opacity 180ms ease, transform 180ms ease;
        -webkit-backdrop-filter: blur(18px);
        backdrop-filter: blur(18px);
    }

    .primary-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
    .primary-nav a { padding: 13px 15px; border-radius: 10px; }
    .primary-nav a::after { display: none; }
    .primary-nav a:hover, .primary-nav a.active { background: rgba(255,255,255,.05); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }

    .hero { padding-top: calc(var(--header-height) + 75px); }
    .hero-grid,
    .page-hero-grid,
    .story-grid,
    .mission-grid,
    .service-detail-grid,
    .detail-body-grid,
    .form-layout { grid-template-columns: 1fr; }

    .hero-copy { max-width: 700px; }
    .hero-stage { max-width: 610px; margin-inline: auto; }
    .hero-card { transform: rotateY(-3deg) rotateX(2deg); }
    .logo-band-inner { flex-wrap: wrap; justify-content: center; padding-block: 24px; }
    .logo-band-inner > span { width: 100%; text-align: center; }

    .section-heading { grid-template-columns: 1fr; gap: 24px; }
    .story-visual { max-width: 600px; margin-inline: auto; }
    .story-grid { gap: 90px; }

    .compact-hero { min-height: 730px; }
    .page-hero-number, .page-hero-orbit, .career-orbit { width: 245px; height: 245px; }
    .mission-grid { gap: 36px; }
    .service-detail-hero { min-height: auto; }
    .detail-visual { max-width: 650px; width: 100%; margin-inline: auto; }

    .form-layout { gap: 65px; }
    .contact-details { position: static; }
    .map-art { max-width: 500px; }

    .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
    .footer-grid > div:last-child { grid-column: 2 / 3; }
}

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

    .section-pad { padding-block: 78px; }
    h1 { font-size: clamp(2.8rem, 14vw, 4.7rem); }
    h2 { font-size: clamp(2rem, 10vw, 3.1rem); }

    .hero { padding-top: calc(var(--header-height) + 65px); }
    .hero-grid { gap: 75px; }
    .hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .hero-proof div { padding-top: 12px; border-top: 1px solid var(--stroke); }
    .hero-proof strong { font-size: 0.95rem; }
    .hero-proof span { font-size: 0.62rem; }
    .float-chip { display: none; }
    .hero-card { border-radius: 22px; }
    .hero-image-wrap { margin: 10px; border-radius: 14px; }
    .hero-card-caption { padding-inline: 14px; }

    .logo-band-inner strong { font-size: 0.75rem; }
    .logo-band-inner i { display: none; }

    .service-grid,
    .values-grid,
    .quote-grid,
    .process-grid,
    .process-grid-three,
    .field-grid { grid-template-columns: 1fr; }

    .service-card { min-height: 345px; }
    .process-card { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--stroke); }
    .process-card:last-child { border-bottom: 0; }
    .process-card > span { margin-bottom: 42px; }

    .story-badge { right: 10px; bottom: -35px; }
    .mini-metrics { grid-template-columns: 1fr; }
    .mini-metrics div { grid-template-columns: 100px 1fr; align-items: baseline; }

    .compact-hero { min-height: 690px; padding-top: calc(var(--header-height) + 70px); }
    .page-hero h1 { font-size: clamp(2.8rem, 13vw, 4.5rem); }

    .service-row { grid-template-columns: 45px 1fr 46px; gap: 15px; padding: 22px 18px; }
    .service-row-number { display: none; }
    .service-row .service-icon { width: 45px; height: 45px; }
    .service-row-copy > span { display: none; }
    .service-row-copy strong { font-size: 1.1rem; }
    .service-row-arrow { width: 42px; height: 42px; }

    .detail-visual { min-height: 0; padding: 6px; border-radius: 18px; }
    .detail-visual img { height: 100%; border-radius: 14px; }
    .capability-list div { grid-template-columns: 52px 1fr; }

    .opening-row { min-height: 118px; grid-template-columns: 1fr auto; gap: 4px 16px; padding-block: 20px; }
    .opening-row > span:first-child { grid-column: 1; }
    .opening-row strong { grid-column: 1; }
    .opening-row > span:nth-child(3) { grid-column: 1; }
    .opening-row i { grid-column: 2; grid-row: 1 / 4; }
    .opening-row:hover { padding-inline: 12px; }

    .form-card { border-radius: 22px; }
    .field-wide { grid-column: auto; }

    .footer-cta { display: grid; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 42px 25px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-grid > div:last-child { grid-column: auto; }
    .footer-bottom { display: grid; justify-content: start; padding-block: 22px; gap: 5px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
    .float-chip,
    .hero-orbit { animation: none !important; }
    .logo-band::before,
    .ai-network span,
    .ai-spark,
    .ticker-content i { animation: none !important; }
    .reveal { opacity: 1; transform: none; }
}

@media (hover: none), (pointer: coarse) {
    [data-tilt] { transform: none !important; }
}
