/* Small local utility layer used by the landing markup.
   Keeping these utilities here removes the Tailwind CDN runtime from production. */
.block { display: block; }
.flex { display: flex; }
.relative { position: relative; }
.min-h-screen { min-height: 100vh; min-height: 100svh; }
.justify-center { justify-content: center; }
.w-full { width: 100%; }
.max-w-\[1440px\] { max-width: 1440px; }
.mx-auto { margin-inline: auto; }
.overflow-hidden { overflow: hidden; }
.opacity-0 { opacity: 0; }
.uppercase { text-transform: uppercase; }
.font-medium { font-weight: 500; }
.leading-tight { line-height: 1.25; }
.text-white { color: #fff; }
.text-\[\#6F6F6A\] { color: #6f6f6a; }
.text-\[\#8B8B86\] { color: #8b8b86; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.mb-1 { margin-bottom: .25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.pt-32 { padding-top: 8rem; }
.pb-20 { padding-bottom: 5rem; }
.py-32 { padding-block: 8rem; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-\[\#D9D9D4\] { border-color: #d9d9d4; }
@media (min-width: 768px) {
    .md\:mb-16 { margin-bottom: 4rem; }
    .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
}

:root {
    --paper: #F4F4F0;
    --white: #FFFFFF;
    --ink: #0A0A0A;
    --muted: #8B8B86;
    --hairline: #D9D9D4;
    --signal: #FF4D2E;
    --technical: #C7FF35;
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
    --hero-font: 'IBM Plex Sans', sans-serif;
    --hero-tracking: -0.05em;
}

[data-reveal-delay="16"] { animation-delay: 1.6s; }
[data-reveal-delay="17"] { animation-delay: 1.7s; }
[data-reveal-delay="18"] { animation-delay: 1.8s; }
[data-reveal-delay="19"] { animation-delay: 1.9s; }
[data-route-index="0"], [data-format-index="0"] { --route-index: 0; --format-index: 0; }
[data-route-index="1"], [data-format-index="1"] { --route-index: 1; --format-index: 1; }
[data-route-index="2"], [data-format-index="2"] { --route-index: 2; --format-index: 2; }
[data-gradient="hero"] { --gradient-delay:-4s; --gradient-from-x:-4%; --gradient-to-x:3%; }
[data-gradient="formats"] { --gradient-delay:-8s; --gradient-from-x:3%; --gradient-to-x:-4%; --gradient-from-y:-2%; --gradient-to-y:3%; }
[data-gradient="candidate-report"] { --gradient-delay:-2s; --gradient-from-x:-2%; --gradient-to-x:5%; }
[data-gradient="sources"] { --gradient-delay:-10s; --gradient-from-x:4%; --gradient-to-x:-3%; }
[data-gradient="evaluation"] { --gradient-delay:-6s; --gradient-from-y:3%; --gradient-to-y:-3%; }
[data-gradient="pricing"] { --gradient-delay:-12s; --gradient-from-x:5%; --gradient-to-x:-4%; }
[data-gradient="lead"] { --gradient-delay:-5s; --gradient-from-x:-5%; --gradient-to-x:4%; }

body {
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--paper);
    color: var(--ink);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    width: 100%;
}

html { scroll-padding-top: 108px; }
section[id] { scroll-margin-top: 108px; }

/* Adaptive Technical Dock — a restrained navigation layer that never
   needs to sit fully expanded over content while the page is moving. */
.site-nav {
    position: fixed;
    z-index: 80;
    top: 24px;
    left: 50%;
    width: min(1840px, calc(100% - 160px));
    transform: translateX(-50%);
    pointer-events: none;
    --nav-surface: rgba(8, 8, 8, 0.88);
    --nav-border: rgba(255, 255, 255, 0.14);
    --nav-muted: rgba(255, 255, 255, 0.57);
}

.site-nav::after {
    content: "";
    position: absolute;
    top: -24px;
    right: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--signal) 18%, var(--signal) 82%, transparent);
    opacity: 0;
    transform: scaleX(0.72);
    transform-origin: center;
    pointer-events: none;
    transition: opacity 120ms ease-out, transform 180ms var(--ease-out);
}

.site-nav__surface {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    min-height: 64px;
    color: var(--white);
    border: 1px solid var(--nav-border);
    border-radius: 3px;
    background-color: var(--nav-surface);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        radial-gradient(circle at 82% 0%, rgba(255, 77, 46, 0.12), transparent 32%);
    background-size: 28px 28px, 28px 28px, auto;
    box-shadow:
        0 18px 54px rgba(0, 0, 0, 0.2),
        inset 0 1px rgba(255, 255, 255, 0.045);
    -webkit-backdrop-filter: blur(18px) saturate(125%);
    backdrop-filter: blur(18px) saturate(125%);
    overflow: hidden;
    pointer-events: auto;
    will-change: transform, opacity;
    transition:
        transform 260ms var(--ease-out),
        opacity 180ms ease-out;
}

.site-nav__surface::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 77, 46, 0.68), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 340ms var(--ease-out);
    pointer-events: none;
}

.site-nav:hover .site-nav__surface--full::after,
.site-nav:focus-within .site-nav__surface--full::after {
    transform: scaleX(1);
}

.site-nav__surface--full {
    grid-template-columns: minmax(220px, 0.82fr) minmax(0, 2.7fr) minmax(310px, 1.08fr);
    min-height: 82px;
    padding: 10px 10px 10px 26px;
}

.site-nav__surface--compact {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(620px, 100%);
    min-height: 58px;
    padding: 7px 7px 7px 18px;
    transform: translate(-50%, -7px) scale(0.98);
    opacity: 0;
    visibility: hidden;
    grid-template-columns: auto minmax(110px, 1fr) auto auto;
}

.site-nav__brand {
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1;
    white-space: nowrap;
}

.site-nav__brand--lockup {
    position: relative;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding-right: 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.site-nav__brand-wordmark {
    position: relative;
    display: block;
    overflow: hidden;
    isolation: isolate;
    font-size: 28px;
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.05em;
    transform: translateZ(0);
}

.site-nav__brand-wordmark::after {
    content: "SCALEFOR";
    position: absolute;
    inset: 0;
    color: transparent;
    background: linear-gradient(
        104deg,
        transparent 16%,
        rgba(255, 255, 255, 0.96) 41%,
        var(--signal) 54%,
        rgba(255, 77, 46, 0.7) 62%,
        transparent 78%
    );
    background-clip: text;
    -webkit-background-clip: text;
    transform: translate3d(-132%, 0, 0);
    opacity: 0;
    will-change: transform, opacity;
    animation: siteNavWordmarkScan 3.4s var(--ease-in-out) infinite;
    pointer-events: none;
}

.site-nav__brand-wordmark--compact {
    font-size: inherit;
    line-height: inherit;
}

.site-nav__brand-service {
    color: var(--signal);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-nav__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2vw, 38px);
    padding-inline: clamp(26px, 2.6vw, 50px);
    min-width: 0;
}

.site-nav__link {
    position: relative;
    padding-block: 14px;
    color: var(--nav-muted);
    white-space: nowrap;
    transition: color 150ms ease-out;
}

.site-nav__surface--full .site-nav__link {
    padding-top: 22px;
    padding-bottom: 15px;
    font-size: 12px;
    letter-spacing: 0.1em;
}

.site-nav__surface--full .site-nav__link::before {
    content: attr(data-index);
    position: absolute;
    top: 6px;
    left: 0;
    color: rgba(255, 77, 46, 0.72);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.08em;
    opacity: 0.5;
    will-change: transform, opacity;
    animation: siteNavIndexSignal 2.8s var(--ease-in-out) infinite;
}

.site-nav__surface--full .site-nav__link:nth-child(1)::before,
.site-nav__surface--full .site-nav__link:nth-child(1)::after { animation-delay: 0ms; }
.site-nav__surface--full .site-nav__link:nth-child(2)::before,
.site-nav__surface--full .site-nav__link:nth-child(2)::after { animation-delay: 110ms; }
.site-nav__surface--full .site-nav__link:nth-child(3)::before,
.site-nav__surface--full .site-nav__link:nth-child(3)::after { animation-delay: 220ms; }
.site-nav__surface--full .site-nav__link:nth-child(4)::before,
.site-nav__surface--full .site-nav__link:nth-child(4)::after { animation-delay: 330ms; }
.site-nav__surface--full .site-nav__link:nth-child(5)::before,
.site-nav__surface--full .site-nav__link:nth-child(5)::after { animation-delay: 440ms; }
.site-nav__surface--full .site-nav__link:nth-child(6)::before,
.site-nav__surface--full .site-nav__link:nth-child(6)::after { animation-delay: 550ms; }

.site-nav__link:hover,
.site-nav__link.is-active {
    color: var(--white);
}

.site-nav__link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 2px;
    background: var(--signal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms var(--ease-out);
}

.site-nav__surface--full .site-nav__link::after {
    opacity: 0.12;
    transform: scaleX(0.12);
    will-change: transform, opacity;
    animation: siteNavLinkSignal 2.8s var(--ease-in-out) infinite;
}

.site-nav__link.is-active::after { transform: scaleX(1); }

.site-nav__surface--full .site-nav__link.is-active::after {
    opacity: 1;
    transform: scaleX(1);
    animation: none;
}

.site-nav__cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding-inline: 18px;
    color: var(--white);
    background: var(--signal);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    transition: transform 150ms ease-out, background-color 150ms ease-out;
}

.site-nav__cta::before {
    content: "";
    position: absolute;
    top: -52%;
    bottom: -52%;
    left: -32%;
    width: 25%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.64), transparent);
    transform: translate3d(-230%, 0, 0) skewX(-18deg);
    opacity: 0;
    will-change: transform, opacity;
    animation: siteNavCtaSweep 2.7s linear infinite;
    pointer-events: none;
}

.site-nav__cta-label,
.site-nav__dot {
    position: relative;
    z-index: 1;
}

.site-nav__actions {
    align-self: stretch;
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr);
    align-items: stretch;
    gap: 8px;
    min-width: 0;
}

.site-nav__candidate-link {
    align-self: center;
    padding: 12px 4px;
    color: rgba(255, 255, 255, 0.58);
    font: 600 9px/1.2 'IBM Plex Mono', monospace;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 160ms ease-out;
}

.site-nav__candidate-link:hover { color: var(--white); }

.site-nav__language {
    position: relative;
    isolation: isolate;
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(34px, 1fr));
    align-self: center;
    align-items: stretch;
    height: 46px;
    min-width: 76px;
}

.site-nav__language::before {
    content: "/";
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    color: var(--signal);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 600;
    line-height: 1;
    transform: translate(-50%, -58%);
    opacity: 0.84;
    pointer-events: none;
}

.site-nav__language::after {
    content: "";
    position: absolute;
    right: auto;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent calc(50% - 7px),
        var(--signal) calc(50% - 7px),
        var(--signal) calc(50% + 7px),
        transparent calc(50% + 7px)
    );
    transform: translateX(var(--language-position, 0%));
    transition: transform 220ms var(--ease-out);
    pointer-events: none;
}

.site-nav__language[data-active-language="en"] {
    --language-position: 100%;
}

.site-nav__language--compact {
    margin-inline: 12px 10px;
}

.site-nav__language-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding-inline: 9px;
    color: rgba(255, 255, 255, 0.46);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.12em;
    transition: color 150ms ease-out, background-color 150ms ease-out, transform 140ms var(--ease-out);
}

.site-nav__language-link + .site-nav__language-link {
    padding-left: 12px;
}

.site-nav__language-link[aria-current="page"] {
    color: var(--white);
}

.site-nav__language-link:active { transform: scale(0.96); }

.site-nav__surface--full .site-nav__actions > .site-nav__cta {
    align-self: stretch;
    width: 100%;
    min-height: 60px;
    box-shadow: -27px 0 0 -26px rgba(255, 255, 255, 0.11);
    font-size: 12px;
}

.site-nav__cta:hover { background: #FF6246; }
.site-nav__cta:active { transform: scale(0.97); }
.site-nav__dot {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--technical);
    box-shadow: 0 0 16px rgba(199, 255, 53, 0.58);
}

.site-nav__dot::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--technical);
    transform: scale(1);
    opacity: 0.72;
    will-change: transform, opacity;
    animation: siteNavDotPulse 1.8s var(--ease-out) infinite;
    pointer-events: none;
}

@keyframes siteNavWordmarkScan {
    0%, 14% { transform: translate3d(-132%, 0, 0); opacity: 0; }
    24% { opacity: 1; }
    58% { transform: translate3d(132%, 0, 0); opacity: 1; }
    68%, 100% { transform: translate3d(132%, 0, 0); opacity: 0; }
}

@keyframes siteNavIndexSignal {
    0%, 52%, 100% { transform: translate3d(0, 0, 0); opacity: 0.5; }
    66% { transform: translate3d(3px, 0, 0); opacity: 1; }
    80% { transform: translate3d(0, 0, 0); opacity: 0.64; }
}

@keyframes siteNavLinkSignal {
    0%, 50%, 100% { transform: scaleX(0.12); opacity: 0.12; }
    67% { transform: scaleX(0.72); opacity: 0.64; }
    82% { transform: scaleX(0.2); opacity: 0.2; }
}

@keyframes siteNavCtaSweep {
    0%, 16% { transform: translate3d(-230%, 0, 0) skewX(-18deg); opacity: 0; }
    25% { opacity: 0.92; }
    58% { transform: translate3d(650%, 0, 0) skewX(-18deg); opacity: 0.92; }
    68%, 100% { transform: translate3d(650%, 0, 0) skewX(-18deg); opacity: 0; }
}

@keyframes siteNavDotPulse {
    0%, 36% { transform: scale(1); opacity: 0.72; }
    76%, 100% { transform: scale(3); opacity: 0; }
}

@media (hover: hover) and (pointer: fine) {
    .site-nav__language-link:hover {
        color: var(--white);
    }

    .site-nav__surface--full .site-nav__link:hover::after {
        opacity: 1;
        transform: scaleX(1);
        animation: none;
    }

    .site-nav__surface--full .site-nav__link:hover::before {
        opacity: 1;
        transform: translate3d(3px, 0, 0);
        animation-play-state: paused;
    }

    .site-nav__brand:hover .site-nav__brand-wordmark::after {
        animation-duration: 1.55s;
    }
}

.site-nav__current {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 0;
    padding-inline: 18px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.76);
    cursor: pointer;
}

.site-nav__current-index { color: var(--signal); }
.site-nav__current-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-nav__mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.025);
    cursor: pointer;
}

.site-nav__mobile-toggle span,
.site-nav__mobile-toggle::before {
    content: "";
    display: block;
    width: 17px;
    height: 1px;
    margin-inline: auto;
    background: var(--white);
    transition: transform 220ms var(--ease-out);
}

.site-nav__mobile-toggle::before { transform: translateY(-4px); }
.site-nav__mobile-toggle span { transform: translateY(4px); }
.site-nav__mobile-toggle[aria-expanded="true"]::before { transform: translateY(1px) rotate(45deg); }
.site-nav__mobile-toggle[aria-expanded="true"] span { transform: translateY(0) rotate(-45deg); }

.site-nav__mobile-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px;
    color: var(--white);
    border: 1px solid var(--nav-border);
    border-radius: 3px;
    background-color: rgba(8, 8, 8, 0.96);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        radial-gradient(circle at 84% 10%, rgba(255, 77, 46, 0.13), transparent 36%);
    background-size: 32px 32px, 32px 32px, auto;
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.32);
    -webkit-backdrop-filter: blur(20px) saturate(125%);
    backdrop-filter: blur(20px) saturate(125%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transform-origin: top center;
    pointer-events: none;
    transition:
        opacity 170ms ease-out,
        transform 240ms var(--ease-out),
        visibility 0s linear 240ms;
}

.site-nav__mobile-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition-delay: 0s;
}

.site-nav__mobile-panel .site-nav__link {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.site-nav__mobile-panel .site-nav__link::after { bottom: -1px; }
.site-nav__mobile-panel.is-open .site-nav__link::after {
    opacity: 0.12;
    transform: scaleX(0.12);
    will-change: transform, opacity;
    animation: siteNavLinkSignal 2.8s var(--ease-in-out) infinite;
}
.site-nav__mobile-panel.is-open .site-nav__link:nth-child(1)::after { animation-delay: 0ms; }
.site-nav__mobile-panel.is-open .site-nav__link:nth-child(2)::after { animation-delay: 110ms; }
.site-nav__mobile-panel.is-open .site-nav__link:nth-child(3)::after { animation-delay: 220ms; }
.site-nav__mobile-panel.is-open .site-nav__link:nth-child(4)::after { animation-delay: 330ms; }
.site-nav__mobile-panel.is-open .site-nav__link:nth-child(5)::after { animation-delay: 440ms; }
.site-nav__mobile-panel.is-open .site-nav__link:nth-child(6)::after { animation-delay: 550ms; }
.site-nav__mobile-panel.is-open .site-nav__link.is-active::after {
    opacity: 1;
    transform: scaleX(1);
    animation: none;
}
.site-nav__mobile-cta { grid-column: 1 / -1; margin-top: 12px; }

.site-nav.is-compact .site-nav__surface--full {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-7px) scale(0.985);
    pointer-events: none;
}

.site-nav.is-compact .site-nav__surface--compact {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1);
}

.site-nav.is-expanded .site-nav__surface--full {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
}

.site-nav.is-expanded .site-nav__surface--compact {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -7px) scale(0.98);
    pointer-events: none;
}

.site-nav.is-scrolling .site-nav__surface {
    opacity: 0;
    transform: translateY(calc(-100% - 26px));
    pointer-events: none;
    transition-duration: 110ms;
}

.site-nav.is-scrolling .site-nav__surface--compact {
    transform: translate(-50%, calc(-100% - 26px)) scale(0.985);
}

.site-nav.is-scrolling::after {
    opacity: 1;
    transform: scaleX(1);
}

@media (min-width: 1280px) and (max-width: 1499px) {
    .site-nav { width: calc(100% - 96px); }
    .site-nav__surface--full {
        grid-template-columns: minmax(190px, 0.72fr) minmax(0, 2.7fr) minmax(286px, 1.04fr);
        padding-left: 22px;
    }
    .site-nav__brand-wordmark { font-size: 25px; }
    .site-nav__brand-service { font-size: 8px; }
    .site-nav__links { gap: clamp(14px, 1.45vw, 22px); padding-inline: 22px; }
    .site-nav__surface--full .site-nav__link { font-size: 10px; }
    .site-nav__surface--full > .site-nav__cta { font-size: 10px; }
}

@media (max-width: 1279px) {
    html { scroll-padding-top: 90px; }
    section[id] { scroll-margin-top: 90px; }

    .site-nav {
        top: 12px;
        width: min(760px, calc(100% - 24px));
    }

    .site-nav::after { display: none; }

    .site-nav__surface--full { display: none; }
    .site-nav__surface--compact {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        min-height: 58px;
        opacity: 1;
        visibility: visible;
        transform: none;
        grid-template-columns: auto minmax(90px, 1fr) auto auto;
    }

    .site-nav__compact-cta { display: none; }
    .site-nav__language--compact {
        height: 44px;
        min-width: 76px;
        margin: 0 7px 0 0;
    }
    .site-nav__mobile-toggle { display: block; }

    .site-nav.is-compact .site-nav__surface--compact,
    .site-nav.is-expanded .site-nav__surface--compact {
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
    }

    .site-nav.is-scrolling .site-nav__surface--compact {
        opacity: 0.16;
        transform: translateY(-7px);
        pointer-events: none;
    }
}

@media (max-width: 1499px) {
    .site-nav__candidate-link { display: none; }
    .site-nav__actions { grid-template-columns: auto minmax(0, 1fr); }
}

@media (max-width: 599px) {
    .site-nav { top: 10px; width: calc(100% - 20px); }
    .site-nav__surface--compact { padding-left: 14px; }
    .site-nav__brand { font-size: 18px; }
    .site-nav__current { gap: 7px; padding-inline: 8px; }
    .site-nav__current-index { display: none; }
    .site-nav__current-label { max-width: 34vw; font-size: 9px; }
    .site-nav__language--compact {
        min-width: 64px;
        margin-right: 6px;
    }
    .site-nav__language-link {
        padding-inline: 6px;
        font-size: 8px;
    }
    .site-nav__mobile-panel { grid-template-columns: 1fr; }
    .site-nav__mobile-panel .site-nav__link { min-height: 52px; }
}

@media (max-width: 359px) {
    .site-nav__brand { font-size: 16px; }
    .site-nav__current { padding-inline: 5px; }
    .site-nav__current-label { display: none; }
    .site-nav__language--compact { min-width: 60px; }
    .site-nav__mobile-toggle { width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
    .site-nav__surface,
    .site-nav__surface::after,
    .site-nav__language::after,
    .site-nav__language-link,
    .site-nav__link::after,
    .site-nav__mobile-panel,
    .site-nav__mobile-toggle span,
    .site-nav__mobile-toggle::before {
        transition: none !important;
    }

    .site-nav__brand-wordmark::after,
    .site-nav__cta::before,
    .site-nav__dot::after,
    .site-nav__surface--full .site-nav__link::before,
    .site-nav__surface--full .site-nav__link::after {
        animation: none !important;
    }

    .site-nav__brand-wordmark::after,
    .site-nav__cta::before,
    .site-nav__dot::after {
        display: none;
    }
}

.display-xl { font-size: clamp(42px, 9vw, 120px); font-weight: 800; line-height: 0.9; letter-spacing: -0.05em; text-transform: uppercase; }
.display-l { font-size: clamp(36px, 6vw, 84px); font-weight: 700; line-height: 0.94; letter-spacing: -0.04em; }
.text-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.noise-bg {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg");
    opacity: 0.03;
    pointer-events: none;
    z-index: 100;
}

.intro-overlay {
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 0.65s var(--ease-out) 1.75s forwards;
}

.intro-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: max-content;
}

.intro-wordmark {
    color: var(--white);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 0.86;
    letter-spacing: -0.05em;
    animation: logoChoreography 0.9s var(--ease-out) forwards;
}

.intro-service {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    margin-top: clamp(14px, 2vw, 24px);
    color: rgb(255 77 46);
    font-size: clamp(1rem, 1.4vw, 1.375rem);
    line-height: 0.95;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(12px);
    animation: introServiceReveal 0.7s var(--ease-out) 0.28s forwards;
}

.intro-service span:first-child { font-weight: 800; }
.intro-service span:last-child { font-weight: 600; }

@keyframes logoChoreography { 0% { opacity: 0; transform: scale(0.9); filter: blur(10px); } 100% { opacity: 1; transform: scale(1); filter: blur(0); } }
@keyframes introServiceReveal { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeOut { to { opacity: 0; visibility: hidden; } }

/* Hero — the motion explains the offer: noise becomes one verified signal. */
.hero-section {
    position: relative;
    isolation: isolate;
    min-height: 100svh;
    overflow: hidden;
    background: var(--paper);
}

.hero-visual-motion,
.hero-visual,
.hero-art,
.hero-scan {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-visual-motion {
    z-index: 0;
    will-change: transform;
}

.hero-visual {
    overflow: hidden;
}

.hero-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    mix-blend-mode: multiply;
    clip-path: inset(0 0 0 100%);
    transform: scale(1.035);
    transform-origin: 72% 50%;
    animation: heroArtReveal 1.4s var(--ease-in-out) 1.75s forwards;
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, var(--paper) 0%, rgba(244, 244, 240, 0.96) 34%, rgba(244, 244, 240, 0.2) 70%, rgba(244, 244, 240, 0.08) 100%),
        linear-gradient(180deg, rgba(244, 244, 240, 0.12) 0%, rgba(244, 244, 240, 0.04) 68%, var(--paper) 100%);
}

.hero-scan {
    left: 44%;
    right: 0;
    overflow: hidden;
    opacity: 0;
    animation: heroScanVisibility 2.2s ease 2.75s both;
}

.hero-scan::before {
    content: "";
    position: absolute;
    top: 7%;
    bottom: 8%;
    left: 0;
    width: 1px;
    background: rgba(255, 77, 46, 0.82);
    box-shadow: 0 0 24px rgba(255, 77, 46, 0.28);
    transform: translate3d(-8vw, 0, 0);
    animation: heroScanPass 2.2s var(--ease-in-out) 2.75s both;
}

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

.hero-headline {
    font-family: var(--hero-font);
    font-size: clamp(44px, 5.15vw, 84px);
    font-optical-sizing: auto;
    font-kerning: normal;
    font-weight: 800;
    line-height: 0.91;
    letter-spacing: var(--hero-tracking);
}

.hero-headline-line {
    display: block;
    width: fit-content;
    max-width: 100%;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--technical);
    box-shadow: 0 0 0 5px rgba(199, 255, 53, 0.12);
}

.hero-accent {
    position: relative;
    width: fit-content;
    max-width: 100%;
}

.hero-accent::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.04em;
    height: 0.045em;
    min-height: 3px;
    background: currentColor;
    opacity: 0.34;
    transform: scaleX(0);
    transform-origin: left center;
    animation: heroAccentDraw 1s var(--ease-out) 2.55s forwards;
}

.hero-copy {
    position: relative;
}

.hero-copy p {
    max-width: 680px;
}

.hero-copy::before {
    content: "01";
    position: absolute;
    left: -30px;
    top: 3px;
    color: var(--signal);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero-method-link {
    flex: 0 0 auto;
    white-space: nowrap;
    color: var(--signal);
    border-color: var(--signal);
    transition: color 180ms ease, border-color 180ms ease, transform 160ms var(--ease-out);
}

.hero-method-link:active { transform: scale(0.97); }

.hero-proof {
    flex: 1 1 240px;
    min-width: 0;
    color: rgba(10, 10, 10, 0.82);
    max-width: 360px;
    font-weight: 600;
    text-wrap: pretty;
}

.hero-support {
    position: relative;
    align-self: end;
    gap: 24px;
    padding: 16px 18px;
    border-left: 2px solid var(--signal);
    background: linear-gradient(90deg, rgba(244, 244, 240, 0.9), rgba(244, 244, 240, 0.68));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-visual-index {
    position: absolute;
    right: clamp(20px, 5.5vw, 80px);
    bottom: 30px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(10, 10, 10, 0.54);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: 'IBM Plex Mono', monospace;
    opacity: 0;
    transform: translateY(10px);
    animation: heroMetaReveal 600ms var(--ease-out) 3s forwards;
}

.hero-visual-index strong {
    color: var(--signal);
    font-size: 12px;
}

@keyframes heroArtReveal {
    to { opacity: 0.96; clip-path: inset(0 0 0 0); transform: scale(1); }
}

@keyframes heroScanVisibility {
    0%, 100% { opacity: 0; }
    12%, 82% { opacity: 1; }
}

@keyframes heroScanPass {
    from { transform: translate3d(-8vw, 0, 0); }
    to { transform: translate3d(58vw, 0, 0); }
}

@keyframes heroAccentDraw { to { transform: scaleX(1); } }
@keyframes heroMetaReveal { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1100px) {
    .hero-headline {
        font-size: clamp(44px, 7vw, 72px);
        line-height: 0.92;
    }

    .hero-art { opacity: 0; object-position: 64% center; }
    .hero-visual::after {
        background:
            linear-gradient(90deg, rgba(244, 244, 240, 0.98) 0%, rgba(244, 244, 240, 0.84) 52%, rgba(244, 244, 240, 0.2) 100%),
            linear-gradient(180deg, rgba(244, 244, 240, 0.14) 0%, var(--paper) 100%);
    }
    .hero-scan { left: 34%; }
    .hero-copy::before { display: none; }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 100svh;
        padding-top: 124px !important;
        padding-bottom: 60px !important;
    }

    .hero-art {
        inset: auto -42% -5% auto;
        width: 145%;
        height: 66%;
        object-position: 70% center;
        opacity: 0;
    }

    .hero-visual::after {
        background:
            linear-gradient(180deg, var(--paper) 0%, rgba(244, 244, 240, 0.96) 38%, rgba(244, 244, 240, 0.58) 70%, var(--paper) 100%),
            linear-gradient(90deg, rgba(244, 244, 240, 0.86) 0%, rgba(244, 244, 240, 0.28) 100%);
    }

    .hero-scan {
        left: 42%;
        top: 42%;
        bottom: 3%;
    }

    .hero-visual-index { display: none; }
    .hero-eyebrow { gap: 9px; }
    .hero-eyebrow::before { width: 6px; height: 6px; box-shadow: 0 0 0 4px rgba(199, 255, 53, 0.1); }
    .hero-accent::after { min-height: 2px; }

    .hero-headline {
        margin-bottom: 38px !important;
        font-size: clamp(30px, 8.7vw, 36px);
        line-height: 0.94;
        letter-spacing: var(--hero-tracking);
    }

    .hero-line-one-tail { display: block; }
    .hero-copy p { font-size: 18px; line-height: 1.38; }
    .hero-proof { flex: 0 1 auto; max-width: 330px; font-size: 13px; line-height: 1.45; }
}

@media (max-width: 1100px) and (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        padding-top: 104px !important;
        padding-bottom: 48px !important;
    }

    .hero-eyebrow { margin-bottom: 24px !important; }
    .hero-headline {
        margin-bottom: 32px !important;
        font-size: clamp(36px, 5vw, 44px);
        line-height: 0.92;
    }
    .hero-line-one-tail { display: inline; }
    .hero-copy p { font-size: 18px; line-height: 1.35; }
    .hero-proof { font-size: 13px; line-height: 1.4; }
}

/* Hero v3 — the positioning and the visual tell the same story:
   candidate flow → practitioner screening → verified shortlist. */
.hero-section {
    background:
        linear-gradient(rgba(10, 10, 10, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 10, 10, 0.035) 1px, transparent 1px),
        var(--paper);
    background-size: 72px 72px, 72px 72px, auto;
}

.hero-content {
    display: flex;
    min-height: calc(100svh - 13rem);
    flex-direction: column;
    justify-content: center;
}

.hero-positioning {
    width: min(100%, 1180px);
}

.hero-headline {
    width: min(100%, 1240px);
    max-width: none;
    text-wrap: balance;
}

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

.hero-headline-line--accent {
    color: var(--signal);
}

.hero-positioning-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    gap: clamp(36px, 6vw, 96px);
    width: min(100%, 1120px);
    align-items: end;
}

.hero-copy {
    padding-left: 26px;
    border-left: 2px solid var(--signal);
}

.hero-copy::before { display: none; }

.hero-copy p {
    max-width: 760px;
    color: rgba(10, 10, 10, 0.78);
    text-wrap: pretty;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-primary-cta,
.hero-secondary-cta {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 22px;
    border: 1px solid var(--ink);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 160ms var(--ease-out), background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.hero-primary-cta {
    background: var(--ink);
    color: var(--white);
}

.hero-primary-cta::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--technical);
    box-shadow: 0 0 0 5px rgba(199, 255, 53, 0.09);
}

.hero-secondary-cta {
    background: rgba(244, 244, 240, 0.72);
    color: var(--ink);
}

.hero-primary-cta:active,
.hero-secondary-cta:active { transform: scale(0.97); }

.hero-proof-panel {
    position: relative;
    overflow: hidden;
    padding: 24px 26px;
    border: 1px solid rgba(10, 10, 10, 0.14);
    background: rgba(244, 244, 240, 0.76);
    box-shadow: 0 18px 60px rgba(10, 10, 10, 0.07);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
}

.hero-proof-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 42%;
    height: 3px;
    background: var(--signal);
}

.hero-proof-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--signal);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.hero-proof-label::before {
    content: "";
    width: 6px;
    height: 6px;
    flex: 0 0 auto;
    background: var(--technical);
}

.hero-proof-panel p {
    margin: 0;
    color: rgba(10, 10, 10, 0.82);
    font-size: clamp(15px, 1.05vw, 17px);
    font-weight: 600;
    line-height: 1.45;
    text-wrap: pretty;
}

.hero-role-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 20px;
    padding-top: 17px;
    border-top: 1px solid rgba(10, 10, 10, 0.12);
    color: rgba(10, 10, 10, 0.48);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-role-line span:not(:last-child)::after {
    content: "/";
    margin-left: 14px;
    color: var(--signal);
}

.hero-engine {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    width: min(58vw, 920px);
    height: 100%;
    overflow: hidden;
    opacity: 0;
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.35) 18%, #000 42%, #000 100%);
    animation: heroEngineReveal 1.2s var(--ease-out) 1.8s forwards;
}

.hero-engine::before {
    content: "";
    position: absolute;
    inset: 8% -12% 6% 8%;
    border: 1px solid rgba(10, 10, 10, 0.08);
    border-radius: 50%;
    transform: rotate(-13deg);
}

.hero-engine-orbit,
.hero-engine-orbit::before,
.hero-engine-orbit::after {
    position: absolute;
    border: 1px solid rgba(10, 10, 10, 0.1);
    border-radius: 50%;
}

.hero-engine-orbit {
    top: 50%;
    right: -5%;
    width: min(49vw, 720px);
    aspect-ratio: 1;
    transform: translateY(-50%);
    animation: heroOrbit 34s linear infinite;
    will-change: transform;
}

.hero-engine-orbit::before {
    content: "";
    inset: 12%;
    border-color: rgba(255, 77, 46, 0.16);
}

.hero-engine-orbit::after {
    content: "";
    inset: 28%;
    border-color: rgba(10, 10, 10, 0.14);
}

.hero-engine-core {
    position: absolute;
    top: 50%;
    right: 13%;
    display: grid;
    width: clamp(170px, 17vw, 260px);
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgba(10, 10, 10, 0.18);
    background:
        linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
        #0a0a0a;
    background-size: 32px 32px, 32px 32px, auto;
    box-shadow: 0 34px 90px rgba(10, 10, 10, 0.18), inset 0 0 70px rgba(255, 77, 46, 0.07);
    transform: translateY(-50%) rotate(2deg);
}

.hero-engine-core::before {
    content: "";
    position: absolute;
    inset: 12%;
    border: 1px solid rgba(199, 255, 53, 0.22);
    animation: heroCorePulse 4.8s var(--ease-in-out) infinite alternate;
}

.hero-engine-core-copy {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-engine-core-copy strong {
    color: var(--technical);
    font-size: clamp(18px, 1.65vw, 26px);
    letter-spacing: -0.03em;
}

.hero-engine-core-copy::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--technical);
    box-shadow: 0 0 18px rgba(199, 255, 53, 0.64);
}

.hero-engine-scan {
    position: absolute;
    z-index: 4;
    top: 9%;
    bottom: 9%;
    right: 24%;
    width: 1px;
    background: var(--signal);
    box-shadow: 0 0 26px rgba(255, 77, 46, 0.38);
    opacity: 0;
    transform: translate3d(-210px, 0, 0);
    animation: heroEngineScan 7.2s var(--ease-in-out) 2.4s infinite;
    will-change: transform, opacity;
}

.hero-profile {
    position: absolute;
    z-index: 2;
    display: flex;
    width: clamp(150px, 14vw, 216px);
    min-height: 72px;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px 16px;
    border: 1px solid rgba(10, 10, 10, 0.14);
    background: rgba(244, 244, 240, 0.9);
    box-shadow: 0 16px 40px rgba(10, 10, 10, 0.09);
    font-family: 'IBM Plex Mono', monospace;
    will-change: transform, opacity;
}

.hero-profile span {
    color: rgba(10, 10, 10, 0.42);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-profile strong {
    color: var(--ink);
    font-size: clamp(12px, 1vw, 15px);
    line-height: 1.1;
}

.hero-profile::after {
    content: "";
    position: absolute;
    right: 13px;
    bottom: 13px;
    width: 6px;
    height: 6px;
    background: var(--signal);
}

.hero-profile--a { top: 14%; right: 8%; animation: heroProfileA 12s var(--ease-in-out) -2s infinite; }
.hero-profile--b { top: 33%; right: 39%; animation: heroProfileB 14s var(--ease-in-out) -7s infinite; }
.hero-profile--c { top: 68%; right: 5%; animation: heroProfileC 13s var(--ease-in-out) -4s infinite; }
.hero-profile--d { top: 78%; right: 37%; animation: heroProfileD 15s var(--ease-in-out) -10s infinite; }

.hero-verified-card {
    position: absolute;
    z-index: 5;
    top: 66%;
    right: 15%;
    width: clamp(175px, 16vw, 240px);
    padding: 16px 18px;
    border: 1px solid rgba(199, 255, 53, 0.42);
    background: #0a0a0a;
    color: var(--white);
    box-shadow: 0 24px 70px rgba(10, 10, 10, 0.2);
    font-family: 'IBM Plex Mono', monospace;
    animation: heroVerifiedFloat 6.4s var(--ease-in-out) infinite alternate;
    will-change: transform, opacity;
}

.hero-verified-card span {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--technical);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-verified-card span::before {
    content: "";
    width: 6px;
    height: 6px;
    background: currentColor;
}

.hero-verified-card strong { font-size: clamp(13px, 1.1vw, 16px); }

@keyframes heroEngineReveal {
    from { opacity: 0; transform: translate3d(28px, 0, 0) scale(0.985); }
    to { opacity: 0.9; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes heroOrbit {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes heroCorePulse {
    from { opacity: 0.45; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes heroEngineScan {
    0%, 18%, 100% { opacity: 0; transform: translate3d(-210px, 0, 0); }
    24% { opacity: 0.9; }
    70% { opacity: 0.9; }
    78% { opacity: 0; transform: translate3d(290px, 0, 0); }
}

@keyframes heroProfileA {
    0%, 100% { opacity: 0.34; transform: translate3d(0, 0, 0) rotate(1deg); }
    48% { opacity: 0.82; transform: translate3d(-42px, 24px, 0) rotate(-1deg); }
}

@keyframes heroProfileB {
    0%, 100% { opacity: 0.28; transform: translate3d(0, 0, 0) rotate(-2deg); }
    54% { opacity: 0.76; transform: translate3d(58px, -20px, 0) rotate(1deg); }
}

@keyframes heroProfileC {
    0%, 100% { opacity: 0.38; transform: translate3d(0, 0, 0) rotate(-1deg); }
    50% { opacity: 0.84; transform: translate3d(-54px, -28px, 0) rotate(1deg); }
}

@keyframes heroProfileD {
    0%, 100% { opacity: 0.24; transform: translate3d(0, 0, 0) rotate(2deg); }
    52% { opacity: 0.7; transform: translate3d(48px, -34px, 0) rotate(-1deg); }
}

@keyframes heroVerifiedFloat {
    from { opacity: 0.72; transform: translate3d(0, 4px, 0); }
    to { opacity: 1; transform: translate3d(0, -8px, 0); }
}

@media (hover: hover) and (pointer: fine) {
    .hero-primary-cta:hover { background: var(--signal); border-color: var(--signal); }
    .hero-secondary-cta:hover { background: var(--white); border-color: var(--signal); color: var(--signal); }
}

@media (max-width: 1199px) {
    .hero-engine { width: 62vw; opacity: 0.72; }
    .hero-positioning { width: min(100%, 980px); }
    .hero-positioning-grid { grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr); gap: 36px; }
    .hero-engine-core { right: 7%; }
    .hero-engine-orbit { right: -14%; }
    .hero-verified-card { right: 8%; }
}

@media (max-width: 900px) {
    .hero-section { background-size: 48px 48px, 48px 48px, auto; }
    .hero-content { min-height: calc(100svh - 10rem); }
    .hero-engine {
        top: auto;
        bottom: -2%;
        width: 100%;
        height: 57%;
        opacity: 0.42;
        mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.32) 18%, #000 50%, #000 100%);
    }
    .hero-positioning-grid { grid-template-columns: 1fr; gap: 26px; }
    .hero-copy { max-width: 720px; }
    .hero-proof-panel { width: min(100%, 620px); }
    .hero-engine-core { right: 14%; width: 190px; }
    .hero-engine-orbit { right: -2%; width: 430px; }
    .hero-profile--a { right: 4%; }
    .hero-profile--b { right: 54%; }
    .hero-profile--c { display: none; }
    .hero-profile--d { right: 56%; }
    .hero-verified-card { right: 18%; }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
        padding-top: 122px !important;
        padding-bottom: 76px !important;
    }
    .hero-content { min-height: auto; }
    .hero-engine { height: 48%; opacity: 0.28; }
    .hero-positioning { width: 100%; }
    .hero-eyebrow { margin-bottom: 24px !important; }
    .hero-headline { margin-bottom: 38px !important; text-wrap: pretty; }
    .hero-headline-line { width: auto; }
    .hero-copy { padding-left: 18px; }
    .hero-actions { display: grid; grid-template-columns: 1fr; margin-top: 24px; }
    .hero-primary-cta, .hero-secondary-cta { width: 100%; min-height: 50px; }
    .hero-proof-panel { padding: 22px 20px; }
    .hero-role-line { gap: 8px 10px; }
    .hero-role-line span:not(:last-child)::after { margin-left: 10px; }
    .hero-engine-core { right: -8%; width: 170px; }
    .hero-engine-orbit { right: -35%; width: 350px; }
    .hero-profile { width: 142px; min-height: 64px; padding: 12px; }
    .hero-profile--a { top: 26%; right: 34%; }
    .hero-profile--b { top: 62%; right: 42%; }
    .hero-profile--d, .hero-verified-card { display: none; }
    .hero-engine-scan { right: 28%; }
}

@media (max-width: 1100px) and (max-height: 620px) and (orientation: landscape) {
    .hero-section { min-height: 620px; padding-top: 106px !important; padding-bottom: 52px !important; }
    .hero-content { min-height: auto; }
    .hero-positioning-grid { grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr); gap: 30px; }
    .hero-headline { margin-bottom: 28px !important; }
    .hero-copy p { font-size: 16px !important; line-height: 1.38; }
    .hero-actions { margin-top: 18px; }
    .hero-primary-cta, .hero-secondary-cta { min-height: 46px; }
    .hero-proof-panel { padding: 18px 20px; }
    .hero-role-line { display: none; }
    .hero-engine { top: 0; bottom: auto; width: 56%; height: 100%; opacity: 0.55; mask-image: linear-gradient(90deg, transparent, #000 40%); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-engine,
    .hero-engine-orbit,
    .hero-engine-core::before,
    .hero-engine-scan,
    .hero-profile,
    .hero-verified-card {
        animation: none !important;
        transform: none !important;
    }
    .hero-engine { opacity: 0.62 !important; }
    .hero-engine-orbit { transform: translateY(-50%) !important; }
    .hero-engine-core { transform: translateY(-50%) rotate(2deg) !important; }
    .hero-profile { opacity: 0.62 !important; }
    .hero-engine-scan { display: none; }
}

/* Verticals band — a market map, not a decorative ticker. */
.verticals-band {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 2.22fr);
    min-height: 380px;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--ink);
    color: var(--white);
}

.verticals-band::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.35), #000 58%, rgba(0, 0, 0, 0.4));
}

.verticals-intro {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 104px clamp(28px, 4vw, 68px) 34px clamp(20px, 5.5vw, 80px);
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--ink);
}

.verticals-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.48);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.verticals-kicker::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--technical);
    box-shadow: 0 0 0 5px rgba(199, 255, 53, 0.08);
}

.verticals-title {
    margin-top: 18px;
    font-size: clamp(48px, 5vw, 76px);
    font-weight: 700;
    line-height: 0.88;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.verticals-intro-copy {
    max-width: 290px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
    text-wrap: balance;
}

.verticals-count {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.42);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.verticals-count strong {
    color: var(--signal);
    font-size: 13px;
}

.verticals-stage {
    position: relative;
    z-index: 2;
    min-width: 0;
    overflow: hidden;
}

.verticals-stage::before,
.verticals-stage::after {
    content: "";
    position: absolute;
    z-index: 4;
    top: 0;
    bottom: 46px;
    width: clamp(30px, 6vw, 110px);
    pointer-events: none;
}

.verticals-stage::before {
    left: 0;
    width: clamp(90px, 10vw, 160px);
    background: linear-gradient(90deg, var(--ink) 0%, var(--ink) 28%, transparent 100%);
}

.verticals-stage::after {
    right: 0;
    background: linear-gradient(270deg, var(--ink), transparent);
}

.verticals-track {
    position: absolute;
    inset: 0 0 46px;
    display: flex;
    width: max-content;
    will-change: transform;
    animation: verticalsMarquee 34s linear infinite;
}

.verticals-set {
    display: flex;
    flex: 0 0 auto;
}

.vertical-card {
    position: relative;
    display: flex;
    align-items: center;
    width: clamp(300px, 29vw, 450px);
    padding: 30px clamp(26px, 3vw, 48px);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    opacity: 0.24;
    transition: opacity 240ms ease, background-color 240ms ease;
}

.vertical-card-content {
    width: 100%;
    transition: transform 420ms var(--ease-out);
}

.vertical-card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.46);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vertical-card-number {
    color: rgba(255, 255, 255, 0.58);
    transition: color 200ms ease;
}

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

.vertical-card-status::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: background-color 200ms ease, box-shadow 200ms ease;
}

.vertical-card h3,
.vertical-card-title {
    font-size: clamp(46px, 5vw, 74px);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.vertical-card--commerce h3,
.vertical-card--commerce .vertical-card-title { font-size: clamp(40px, 4.2vw, 62px); }

.vertical-card-tags {
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.62);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vertical-card.is-active {
    opacity: 1;
    background: linear-gradient(90deg, rgba(255, 77, 46, 0.025), rgba(255, 255, 255, 0.025));
}

.vertical-card.is-active .vertical-card-content { transform: translate3d(0, -4px, 0); }
.vertical-card.is-active .vertical-card-number { color: var(--signal); }
.vertical-card.is-active .vertical-card-status::before {
    background: var(--technical);
    box-shadow: 0 0 0 5px rgba(199, 255, 53, 0.08), 0 0 18px rgba(199, 255, 53, 0.28);
}

.verticals-activation {
    position: absolute;
    z-index: 5;
    top: 0;
    bottom: 46px;
    left: 50%;
    width: 1px;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 0%, var(--signal) 18%, var(--signal) 82%, transparent 100%);
    box-shadow: 0 0 28px rgba(255, 77, 46, 0.22);
}

.verticals-activation span {
    position: absolute;
    top: 22px;
    left: 14px;
    width: max-content;
    color: var(--signal);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.verticals-capabilities {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 0;
    left: 0;
    height: 46px;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(10, 10, 10, 0.94);
}

.verticals-capabilities-track {
    display: flex;
    align-items: center;
    width: max-content;
    height: 100%;
    color: rgba(255, 255, 255, 0.34);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    will-change: transform;
    animation: verticalsCapabilities 28s linear infinite;
}

.verticals-capabilities-track span {
    padding-right: 52px;
}

.verticals-capabilities-track b {
    padding-right: 52px;
    color: var(--signal);
    font-weight: 600;
}

@keyframes verticalsMarquee {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

@keyframes verticalsCapabilities {
    from { transform: translate3d(-50%, 0, 0); }
    to { transform: translate3d(0, 0, 0); }
}

@keyframes fadeIn { to { opacity: 1; } }

@media (hover: hover) and (pointer: fine) {
    .verticals-stage:hover .verticals-track,
    .verticals-stage:hover .verticals-capabilities-track {
        animation-play-state: paused;
    }
}

@media (max-width: 900px) {
    .verticals-band {
        display: block;
        min-height: 0;
    }

    .verticals-intro {
        min-height: 230px;
        padding: 108px 40px 34px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .verticals-intro-copy { max-width: 430px; }
    .verticals-count { margin-top: 28px; }
    .verticals-stage { height: 330px; }
    .vertical-card { width: min(58vw, 390px); }
}

@media (max-width: 767px) {
    .verticals-intro {
        min-height: 0;
        padding: 104px 20px 30px;
    }

    .verticals-title {
        margin-top: 22px;
        font-size: clamp(46px, 15vw, 62px);
    }

    .verticals-intro-copy {
        margin-top: 22px;
        font-size: 15px;
    }

    .verticals-count { padding-top: 20px; }
    .verticals-stage { height: 310px; }
    .vertical-card { width: 82vw; padding: 24px; }
    .vertical-card h3,
    .vertical-card-title { font-size: clamp(46px, 15vw, 64px); }
    .vertical-card--commerce h3,
    .vertical-card--commerce .vertical-card-title { font-size: clamp(40px, 12.6vw, 54px); }
    .verticals-activation span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .verticals-stage { overflow-x: auto; scroll-snap-type: x mandatory; }
    .verticals-track { position: relative; animation: none; }
    .verticals-set[aria-hidden="true"] { display: none; }
    .vertical-card { opacity: 1; scroll-snap-align: start; }
    .verticals-activation { display: none; }
    .verticals-capabilities-track { animation: none; }
}

/* Source intelligence rail */
.source-shell {
    position: relative;
    background: #F3F1EC;
    isolation: isolate;
}

.source-shell::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image:
        linear-gradient(rgba(10, 10, 10, 0.042) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 10, 10, 0.042) 1px, transparent 1px);
    background-size: 72px 72px, 72px 72px;
    pointer-events: none;
}

.source-atmosphere {
    display: none;
}

.source-section-label {
    position: absolute;
    top: 112px;
    left: clamp(20px, 5.5vw, 80px);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #61615D;
    font: 600 11px/1.2 "IBM Plex Mono", monospace;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.source-section-label::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--acid);
    box-shadow: 0 0 14px rgba(184, 255, 19, .7);
}

.source-watermark {
    position: absolute;
    right: clamp(18px, 5vw, 76px);
    top: 50%;
    z-index: -1;
    color: rgba(255, 77, 46, .065);
    font: 700 clamp(180px, 28vw, 430px)/.72 "IBM Plex Sans", sans-serif;
    letter-spacing: -.08em;
    transform: translate3d(0, -50%, 0);
    transition: opacity 220ms ease, filter 220ms ease;
    pointer-events: none;
    user-select: none;
}

.horizontal-rail {
    display: flex;
    flex-direction: row;
    height: 100%;
    width: max-content;
    align-items: stretch;
    will-change: transform;
}

.spectrum-item {
    width: 100vw;
    flex-shrink: 0;
    padding: 0 clamp(40px, 8vw, 128px);
    border-right: 1px solid rgba(10, 10, 10, .12);
    display: flex;
    align-items: center;
    height: 100vh;
    position: relative;
}

.source-intro {
    align-items: flex-end;
    padding-bottom: clamp(88px, 12vh, 130px);
}

.source-intro-copy {
    width: min(980px, 100%);
}

.source-intro-index,
.source-card-eyebrow,
.source-levels {
    font-family: "IBM Plex Mono", monospace;
    text-transform: uppercase;
    letter-spacing: .13em;
}

.source-intro-index {
    margin-bottom: 24px;
    color: var(--signal);
    font-size: 12px;
    font-weight: 600;
}

.source-intro h2 {
    max-width: 930px;
    font-size: clamp(58px, 6.7vw, 106px);
    font-weight: 500;
    line-height: .88;
    letter-spacing: -.065em;
}

.source-intro p {
    max-width: 760px;
    margin-top: 34px;
    color: #50504C;
    font-size: clamp(19px, 1.7vw, 27px);
    line-height: 1.35;
}

.source-card-inner {
    width: min(1120px, 100%);
    display: grid;
    grid-template-columns: minmax(140px, 230px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(46px, 6vw, 92px);
}

.source-logo-wrap {
    color: #141414;
    opacity: .58;
    transform: translate3d(0, 12px, 0) scale(.96);
    transform-origin: center;
    transition: opacity 260ms ease, transform 520ms cubic-bezier(.23, 1, .32, 1);
}

.source-logo-wrap iconify-icon {
    display: block;
    font-size: clamp(120px, 13vw, 190px);
}

.source-logo-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.source-logo-stack iconify-icon {
    font-size: clamp(76px, 8vw, 118px);
}

.source-card-copy {
    max-width: 790px;
    opacity: .72;
    transform: translate3d(0, 14px, 0);
    transition: opacity 260ms ease, transform 520ms cubic-bezier(.23, 1, .32, 1);
}

.spectrum-item.is-active .source-logo-wrap,
.spectrum-item.is-active .source-card-copy {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.source-card-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    color: #64645F;
    font-size: 11px;
    font-weight: 600;
}

.source-card-eyebrow strong {
    color: var(--signal);
    font-size: 14px;
}

.source-card-title {
    margin-bottom: 24px;
    font-size: clamp(54px, 6vw, 92px);
    line-height: .9;
    letter-spacing: -.06em;
    text-transform: uppercase;
}

.source-card-description {
    max-width: 760px;
    color: #50504C;
    font-size: clamp(18px, 1.55vw, 24px);
    line-height: 1.4;
}

.source-competencies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
}

.source-competencies span {
    border: 1px solid rgba(10, 10, 10, .24);
    padding: 9px 12px 8px;
    background: rgba(247, 245, 240, .66);
    color: #30302D;
    font: 600 10px/1 "IBM Plex Mono", monospace;
    letter-spacing: .09em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.source-levels {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 26px;
    color: #6D6D68;
    font-size: 10px;
    font-weight: 600;
}

.source-levels strong {
    color: #161616;
    font-size: 11px;
}

.source-levels i {
    width: 34px;
    height: 1px;
    background: var(--signal);
}

.source-progress-track {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 24px;
    height: 2px;
    z-index: 2;
    overflow: hidden;
    background: rgba(10, 10, 10, .12);
}

.source-progress-line {
    width: 100%;
    height: 100%;
    background: var(--signal);
    transform: scaleX(0);
    transform-origin: left center;
    will-change: transform;
}

@media (min-width: 768px) {
    .source-progress-track { left: 40px; right: 40px; bottom: 32px; }
}

@media (max-width: 1100px) {
    .spectrum-item { padding-inline: 46px; }
    .source-card-inner { grid-template-columns: 150px minmax(0, 1fr); gap: 46px; }
    .source-card-title { font-size: clamp(48px, 7vw, 72px); }
}

@media (max-width: 767px) {
    .source-section-label {
        top: 86px;
        left: 20px;
        font-size: 9px;
    }

    .source-watermark {
        right: 12px;
        top: 30%;
        font-size: clamp(128px, 46vw, 180px);
        opacity: .75;
    }

    .spectrum-item {
        height: 100svh;
        padding: 132px 20px 70px;
    }

    .source-intro {
        align-items: center;
        padding-bottom: 76px;
    }

    .source-intro h2 {
        font-size: clamp(34px, 10.5vw, 48px);
        line-height: .9;
    }

    .source-intro p {
        margin-top: 26px;
        font-size: 17px;
        line-height: 1.38;
    }

    .source-card-inner {
        grid-template-columns: 1fr;
        align-items: flex-start;
        gap: 20px;
    }

    .source-logo-wrap {
        min-height: 74px;
    }

    .source-logo-wrap iconify-icon {
        font-size: clamp(70px, 21vw, 92px);
    }

    .source-logo-stack {
        flex-direction: row;
        justify-content: flex-start;
        gap: 14px;
    }

    .source-logo-stack iconify-icon {
        font-size: 60px;
    }

    .source-card-eyebrow { margin-bottom: 13px; }
    .source-card-title {
        margin-bottom: 18px;
        font-size: clamp(38px, 11vw, 52px);
        line-height: .92;
    }
    .source-card-description { font-size: 16px; line-height: 1.38; }
    .source-competencies { margin-top: 20px; gap: 6px; }
    .source-competencies span { padding: 8px 9px 7px; font-size: 8px; }
    .source-levels { margin-top: 18px; gap: 9px; font-size: 8px; }
    .source-levels strong { font-size: 9px; letter-spacing: .08em; }
    .source-levels i { width: 18px; }
    .source-progress-track { bottom: 20px; }
}

@media (max-width: 390px) {
    .spectrum-item { padding-inline: 16px; }
    .source-card-title { font-size: clamp(34px, 10.5vw, 42px); }
    .source-card-description { font-size: 15px; }
    .source-competencies span { font-size: 7.5px; }
}

@media (max-height: 620px) and (min-width: 568px) {
    .source-section-label { display: none; }
    .spectrum-item { padding: 76px 36px 40px; }
    .source-intro { align-items: center; padding-bottom: 40px; }
    .source-intro h2 { max-width: 700px; font-size: clamp(44px, 7.2vw, 62px); }
    .source-intro p { max-width: 680px; margin-top: 18px; font-size: 15px; }
    .source-card-inner { grid-template-columns: 110px minmax(0, 1fr); gap: 34px; }
    .source-logo-wrap iconify-icon { font-size: 92px; }
    .source-logo-stack iconify-icon { font-size: 54px; }
    .source-card-eyebrow { margin-bottom: 8px; }
    .source-card-title { margin-bottom: 12px; font-size: clamp(36px, 6vw, 54px); }
    .source-card-description { max-width: 650px; font-size: 15px; line-height: 1.3; }
    .source-competencies { margin-top: 14px; }
    .source-competencies span { padding: 7px 9px 6px; font-size: 8px; }
    .source-levels { margin-top: 12px; }
}

/* Assessment System — one scroll-driven dossier, not a slideshow. */
.assessment-system {
    position: relative;
    isolation: isolate;
    overflow: clip;
    background: #f4f2ee;
    color: var(--ink);
}

.assessment-system .sticky-container {
    isolation: isolate;
    background: #090909;
    color: #F4F4F0;
}

.assessment-system .sticky-container::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        radial-gradient(circle at 78% 24%, rgba(255, 77, 46, 0.12), transparent 27%),
        radial-gradient(circle at 18% 82%, rgba(199, 255, 53, 0.055), transparent 22%);
    background-size: 72px 72px, 72px 72px, auto, auto;
    pointer-events: none;
}

.assessment-system .sticky-container::after {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 9, 9, 0.12), rgba(9, 9, 9, 0.74) 74%, #090909);
    pointer-events: none;
}

.method-desktop-sticky { position: relative; height: 420vh; }
.method-layout {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    min-width: 0;
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(380px, 0.88fr) minmax(560px, 1.12fr);
    align-items: center;
    gap: clamp(48px, 5.5vw, 92px);
}
.method-copy {
    position: relative;
    z-index: 20;
    min-width: 0;
    transform: translateZ(0);
}
.method-kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    color: #8B8B86;
    font: 600 12px/1.2 "IBM Plex Mono", monospace;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.method-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #B9FF16;
    box-shadow: 0 0 18px rgba(185, 255, 22, .5);
}
.method-title {
    max-width: 650px;
    color: #F4F4F0;
    font-size: clamp(46px, 4.4vw, 76px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.055em;
    text-transform: uppercase;
    text-wrap: balance;
}
.method-title-accent { color: rgb(255 77 46); }
.method-step {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    margin-top: clamp(38px, 6vh, 72px);
    padding: 22px 24px;
    border: 1px solid rgba(255,255,255,.14);
    background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
        rgba(12,12,12,.74);
    background-size: 36px 36px, 36px 36px, auto;
    box-shadow: 0 22px 60px rgba(0,0,0,.2);
}
.method-step-index {
    color: #FF4D2E;
    font: 600 14px/1.2 "IBM Plex Mono", monospace;
    letter-spacing: .08em;
}
.method-step-content { min-height: 134px; }
.method-step-title {
    margin-bottom: 12px;
    color: #F4F4F0;
    font-size: clamp(21px, 1.9vw, 30px);
    font-weight: 650;
    line-height: 1.05;
    letter-spacing: -.025em;
}
.method-step-body {
    max-width: 520px;
    color: #9D9D98;
    font-size: clamp(16px, 1.25vw, 19px);
    line-height: 1.45;
}
.method-progress {
    position: relative;
    height: 1px;
    margin-top: 26px;
    overflow: hidden;
    background: rgba(255,255,255,.12);
}
.method-progress-fill {
    position: absolute;
    inset: 0;
    background: #FF4D2E;
    transform: scaleX(0);
    transform-origin: left center;
    will-change: transform;
}

.method-stage-map {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(7,7,7,.48);
}

.method-stage-map span {
    position: relative;
    min-width: 0;
    padding: 13px 10px 12px;
    color: rgba(255,255,255,.34);
    font: 600 8px/1.2 "IBM Plex Mono", monospace;
    letter-spacing: .09em;
    text-align: center;
    text-transform: uppercase;
    transition: color 220ms ease, background-color 220ms ease;
}

.method-stage-map span + span { border-left: 1px solid rgba(255,255,255,.1); }

.method-stage-map span::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--signal);
    opacity: 0;
    transform: scaleX(.25);
    transition: opacity 220ms ease, transform 360ms var(--ease-out);
}

.method-stage-map span.is-active {
    color: var(--white);
    background: rgba(255,77,46,.06);
}

.method-stage-map span.is-active::before {
    opacity: 1;
    transform: scaleX(1);
}

.dossier-scene {
    position: relative;
    z-index: 1;
    width: min(100%, 780px);
    aspect-ratio: 1.16;
    justify-self: end;
    perspective: 1400px;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.13);
    background:
        linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px),
        radial-gradient(circle at 78% 26%, rgba(255,77,46,.1), transparent 30%),
        #0a0a0a;
    background-size: 48px 48px, 48px 48px, auto, auto;
    box-shadow: 0 32px 90px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.04);
}

.method-console-head,
.method-console-foot {
    position: absolute;
    z-index: 30;
    left: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: rgba(255,255,255,.42);
    font: 600 8px/1.2 "IBM Plex Mono", monospace;
    letter-spacing: .11em;
    text-transform: uppercase;
    pointer-events: none;
}

.method-console-head {
    top: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.method-console-head strong {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--signal);
    font-weight: 600;
    text-shadow: 0 1px 0 rgba(10, 10, 10, 0.28), 0 0 12px rgba(255, 77, 46, 0.18);
}

.method-console-head strong::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--technical);
    box-shadow: 0 0 12px rgba(199,255,53,.46);
}

.method-console-foot {
    bottom: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.method-console-foot strong {
    color: var(--signal);
    font-size: 9px;
    font-weight: 600;
}

.method-console-route {
    display: flex;
    align-items: center;
    gap: 8px;
}

.method-console-route i {
    width: 20px;
    height: 1px;
    background: rgba(255,255,255,.2);
}

.method-console-route b {
    color: rgba(255,255,255,.34);
    font-weight: 600;
    transition: color 220ms ease;
}

.method-console-route b.is-active { color: var(--technical); }
.dossier-ambient {
    position: absolute;
    inset: 18% 10% 2%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,77,46,.15), transparent 66%);
    filter: none;
    opacity: .46;
}
.dossier-grid {
    position: absolute;
    inset: 4%;
    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: 44px 44px;
    mask-image: radial-gradient(circle at center, black 25%, transparent 72%);
    opacity: .7;
}
.dossier-stage {
    position: absolute;
    inset: 10% 2% 8%;
    transform-style: preserve-3d;
}
.dossier-shadow {
    position: absolute;
    left: 16%;
    right: 5%;
    bottom: 6%;
    height: 15%;
    border-radius: 50%;
    background: rgba(0,0,0,.72);
    filter: blur(22px);
    transform: rotate(-3deg);
}
.dossier-folder,
.dossier-paper,
.dossier-cv,
.dossier-report {
    position: absolute;
    left: 11%;
    top: 14%;
    width: 78%;
    height: 68%;
    border-radius: 5px;
    transform-style: preserve-3d;
    will-change: transform, opacity;
}
.dossier-folder {
    top: 25%;
    height: 58%;
    background: #232320;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 34px 70px rgba(0,0,0,.55);
}
.dossier-folder::before {
    content: "SCALEFOR / CANDIDATE FILE";
    position: absolute;
    top: -32px;
    left: 0;
    width: 44%;
    height: 34px;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-bottom: 0;
    border-radius: 5px 14px 0 0;
    background: #232320;
    color: rgba(255,255,255,.45);
    font: 600 9px/1 "IBM Plex Mono", monospace;
    letter-spacing: .1em;
}
.dossier-paper {
    overflow: hidden;
    opacity: 0;
    background: #D9D8D2;
    border: 1px solid rgba(0,0,0,.16);
    box-shadow: 0 20px 48px rgba(0,0,0,.36);
}
.dossier-paper::before,
.dossier-paper::after {
    content: "";
    position: absolute;
    left: 9%;
    right: 9%;
    height: 2px;
    background: rgba(20,20,18,.16);
    box-shadow: 0 18px 0 rgba(20,20,18,.1), 0 36px 0 rgba(20,20,18,.1), 0 54px 0 rgba(20,20,18,.1);
}
.dossier-paper::before { top: 20%; }
.dossier-paper::after { top: 58%; right: 30%; }
.dossier-paper--1 { background: #BDBDB7; }
.dossier-paper--2 { background: #ECEBE6; }
.dossier-paper--3 { background: #CFCFC9; }
.dossier-cv,
.dossier-report {
    top: 10%;
    height: 76%;
}
.dossier-cv {
    overflow: hidden;
    opacity: 0;
    padding: clamp(22px, 3vw, 42px);
    color: #10100F;
    background:
        linear-gradient(145deg, rgba(255,255,255,.72), transparent 38%),
        linear-gradient(180deg, #F7F7F3 0%, #ECECE7 100%);
    border: 1px solid rgba(0,0,0,.2);
    box-shadow: 0 30px 75px rgba(0,0,0,.52);
}
.dossier-cv::before {
    content: "";
    position: absolute;
    inset: 13px;
    z-index: 0;
    border: 1px solid rgba(20,20,18,.07);
    border-radius: 2px;
    background:
        radial-gradient(circle at 82% 16%, rgba(255,77,46,.055), transparent 24%),
        linear-gradient(115deg, transparent 48%, rgba(20,20,18,.025) 49%, transparent 50%);
    pointer-events: none;
}
.dossier-cv > * {
    position: relative;
    z-index: 1;
    opacity: 0;
    will-change: transform, opacity;
}
.dossier-cv-top {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    align-items: center;
    gap: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid #C9C9C3;
}
.dossier-avatar {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    color: #F4F4F0;
    background: #151513;
    font: 600 15px/1 "IBM Plex Mono", monospace;
}
.dossier-cv-name {
    display: block;
    margin-bottom: 7px;
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 700;
    letter-spacing: -.035em;
}
.dossier-cv-role,
.dossier-id {
    color: #73736E;
    font: 600 9px/1.4 "IBM Plex Mono", monospace;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.dossier-cv-columns {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 10%;
    margin-top: 26px;
}
.dossier-cv-label {
    display: block;
    margin-bottom: 11px;
    color: #8B8B86;
    font: 600 9px/1.3 "IBM Plex Mono", monospace;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.dossier-cv-metric {
    margin-bottom: 18px;
    font-size: clamp(16px, 1.55vw, 22px);
    font-weight: 650;
    line-height: 1.05;
}
.dossier-lines i {
    display: block;
    width: 100%;
    height: 6px;
    margin-bottom: 10px;
    border-radius: 8px;
    background: #D6D6D0;
}
.dossier-lines i:nth-child(2) { width: 84%; }
.dossier-lines i:nth-child(3) { width: 92%; }
.dossier-lines i:nth-child(4) { width: 64%; }
.dossier-folder-cover {
    position: absolute;
    left: 8%;
    top: 29%;
    width: 84%;
    height: 55%;
    z-index: 8;
    border-radius: 5px;
    background: linear-gradient(145deg, #2A2A27, #181816);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 30px 70px rgba(0,0,0,.6);
    transform-origin: 50% 100%;
    transform-style: preserve-3d;
    will-change: transform, opacity;
}
.dossier-folder-cover::after {
    content: "PRIVATE / TECHNICAL SCREENING";
    position: absolute;
    left: 8%;
    bottom: 10%;
    color: rgba(255,255,255,.42);
    font: 600 9px/1 "IBM Plex Mono", monospace;
    letter-spacing: .12em;
}
.dossier-scan-line {
    position: absolute;
    z-index: 12;
    left: 16%;
    top: 24%;
    width: 68%;
    height: 2px;
    opacity: 0;
    background: #FF4D2E;
    box-shadow: 0 0 7px #FF4D2E, 0 0 28px rgba(255,77,46,.85);
    will-change: transform, opacity;
}
.dossier-checkpoints {
    position: absolute;
    z-index: 13;
    inset: 18% 1% auto auto;
    display: grid;
    gap: 9px;
    width: 160px;
}
.dossier-checkpoint {
    padding: 10px 12px;
    color: #F4F4F0;
    background: rgba(15,15,14,.9);
    border: 1px solid rgba(185,255,22,.35);
    opacity: 0;
    transform: translateX(12px);
    font: 600 9px/1 "IBM Plex Mono", monospace;
    letter-spacing: .09em;
    text-transform: uppercase;
    will-change: transform, opacity;
}
.dossier-checkpoint::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 8px;
    border-radius: 50%;
    background: #B9FF16;
}
.dossier-report {
    z-index: 15;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: clamp(22px, 3vw, 42px);
    color: #F4F4F0;
    background: #151513;
    border: 1px solid rgba(185,255,22,.5);
    box-shadow: 0 34px 90px rgba(0,0,0,.68);
    opacity: 0;
}
.dossier-report-head,
.dossier-report-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #8B8B86;
    font: 600 9px/1.2 "IBM Plex Mono", monospace;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.dossier-report-status { color: #B9FF16; }
.dossier-report-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-block: 1px solid rgba(255,255,255,.13);
    margin-block: 22px;
}
.dossier-report-score {
    color: #FF4D2E;
    font-size: clamp(54px, 7vw, 100px);
    font-weight: 700;
    line-height: .85;
    letter-spacing: -.07em;
}
.dossier-report h3 {
    max-width: 420px;
    margin-top: 18px;
    font-size: clamp(22px, 2.3vw, 34px);
    font-weight: 650;
    line-height: 1;
    letter-spacing: -.035em;
}

@media (max-width: 1100px) {
    .method-desktop-sticky { height: 400svh !important; }
    .method-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
        padding-top: 92px;
        padding-bottom: 24px;
    }
    .method-copy { width: min(90vw, 760px); }
    .method-title { max-width: 760px; font-size: clamp(38px, 6.2vw, 66px); }
    .method-step { margin-top: 24px; }
    .method-step-content { min-height: 92px; }
    .dossier-scene {
        width: min(82vw, 650px);
        height: min(48svh, 520px);
        aspect-ratio: auto;
        justify-self: center;
    }
}

@media (max-width: 1100px) and (min-width: 700px) and (max-height: 600px) {
    .assessment-system .sticky-container { align-items: flex-start; }
    .method-layout {
        grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
        align-items: center;
        gap: 28px;
        min-height: 100svh;
        padding: 96px 40px 12px;
    }
    .method-copy { width: 100%; }
    .method-kicker { display: none; }
    .method-title {
        max-width: 360px;
        font-size: 30px;
        line-height: 1.1;
    }
    .method-step {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 10px;
        margin-top: 10px;
        padding: 11px 13px;
    }
    .method-step-index { font-size: 10px; }
    .method-step-content { min-height: 66px; }
    .method-step-title { margin-bottom: 5px; font-size: 16px; }
    .method-step-body { font-size: 11.5px; line-height: 1.28; }
    .method-progress { margin-top: 5px; }
    .method-stage-map { display: none; }
    .dossier-scene {
        width: 100%;
        height: 244px;
        justify-self: end;
    }
    .method-console-head { top: 10px; left: 12px; right: 12px; padding-bottom: 9px; }
    .method-console-foot { bottom: 10px; left: 12px; right: 12px; padding-top: 9px; }
    .method-console-route { display: none; }
    .dossier-stage { inset: 1% 0 0; }
    .dossier-cv,
    .dossier-report { padding: 14px; }
    .dossier-cv-top {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 9px;
        padding-bottom: 8px;
    }
    .dossier-avatar { width: 38px; height: 38px; font-size: 9px; }
    .dossier-cv-name { margin-bottom: 3px; font-size: 14px; }
    .dossier-cv-role { font-size: 6px; }
    .dossier-id { display: none; }
    .dossier-cv-columns { gap: 7%; margin-top: 9px; }
    .dossier-cv-label { margin-bottom: 2px; font-size: 6px; }
    .dossier-cv-metric { margin-bottom: 5px; font-size: 12px; }
    .dossier-lines i { height: 3px; margin-bottom: 5px; }
    .dossier-report-main { margin-block: 9px; }
    .dossier-report-score { font-size: 40px; }
    .dossier-report h3 { margin-top: 7px; font-size: 15px; }
}

@media (max-width: 767px) {
    .method-desktop-sticky { height: 380svh !important; }
    .method-layout {
        gap: 12px;
        padding: 94px 18px 14px;
    }
    .method-copy { width: 100%; }
    .method-kicker { margin-bottom: 13px; font-size: 10px; }
    .method-title {
        max-width: 96%;
        font-size: clamp(30px, 9vw, 42px);
        line-height: 1.1;
        letter-spacing: -.045em;
    }
    .method-step {
        grid-template-columns: 52px 1fr;
        gap: 10px;
        margin-top: 18px;
        padding: 15px 14px;
    }
    .method-step-index { font-size: 11px; }
    .method-step-content { min-height: 86px; }
    .method-step-title { margin-bottom: 7px; font-size: 18px; }
    .method-step-body { font-size: 14px; line-height: 1.35; }
    .method-progress { margin-top: 12px; }
    .method-stage-map { margin-top: 9px; }
    .method-stage-map span { padding: 10px 4px 9px; font-size: 7px; letter-spacing: .06em; }
    .dossier-scene {
        width: min(100%, 520px);
        height: min(40svh, 334px);
    }
    .method-console-head { top: 10px; left: 12px; right: 12px; padding-bottom: 9px; font-size: 7px; }
    .method-console-foot { bottom: 9px; left: 12px; right: 12px; padding-top: 9px; font-size: 7px; }
    .method-console-route { display: none; }
    .dossier-stage { inset: 7% 0 5%; }
    .dossier-folder,
    .dossier-paper,
    .dossier-cv,
    .dossier-report { left: 9%; width: 82%; }
    .dossier-cv { padding: 20px; }
    .dossier-cv-top { grid-template-columns: 44px 1fr; gap: 12px; padding-bottom: 12px; }
    .dossier-avatar { width: 44px; height: 44px; font-size: 11px; }
    .dossier-id { display: none; }
    .dossier-cv-columns { margin-top: 16px; }
    .dossier-cv-label { margin-bottom: 6px; font-size: 7px; }
    .dossier-cv-metric { margin-bottom: 10px; font-size: 13px; }
    .dossier-lines i { height: 4px; margin-bottom: 7px; }
    .dossier-checkpoints { right: 0; top: 14%; width: 124px; gap: 5px; }
    .dossier-checkpoint { padding: 7px 8px; font-size: 7px; }
    .dossier-report {
        top: 20%;
        height: 68%;
        padding: 20px;
    }
    .dossier-report-main { margin-block: 14px; }
    .dossier-report-score { font-size: 54px; }
    .dossier-report h3 { margin-top: 12px; font-size: 20px; }
}

@media (max-width: 559px) and (max-height: 720px) {
    .assessment-system .sticky-container { align-items: flex-start; }
    .method-layout { gap: 8px; padding: 84px 16px 10px; }
    .method-kicker { display: none; }
    .method-title { font-size: 28px; line-height: 1.1; }
    .method-step {
        grid-template-columns: 42px minmax(0, 1fr);
        margin-top: 10px;
        padding: 10px 12px;
    }
    .method-step-content { min-height: 62px; }
    .method-step-title { margin-bottom: 4px; font-size: 15px; }
    .method-step-body { font-size: 11.5px; line-height: 1.26; }
    .method-progress { margin-top: 4px; }
    .method-stage-map { display: none; }
    .dossier-scene { height: min(33svh, 220px); }
    .dossier-cv,
    .dossier-report { padding: 13px; }
    .dossier-cv-top {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 8px;
        padding-bottom: 7px;
    }
    .dossier-avatar { width: 36px; height: 36px; font-size: 8px; }
    .dossier-cv-name { margin-bottom: 2px; font-size: 13px; }
    .dossier-cv-role { font-size: 6px; }
    .dossier-cv-columns { gap: 6%; margin-top: 7px; }
    .dossier-cv-label { margin-bottom: 1px; font-size: 6px; }
    .dossier-cv-metric { margin-bottom: 3px; font-size: 11px; }
    .dossier-lines i { height: 3px; margin-bottom: 4px; }
    .dossier-report-main { margin-block: 7px; }
    .dossier-report-score { font-size: 36px; }
    .dossier-report h3 { margin-top: 5px; font-size: 14px; }
}

@media (min-width: 560px) and (max-width: 767px) and (max-height: 600px) {
    .assessment-system .sticky-container { align-items: flex-start; }
    .method-layout {
        grid-template-columns: minmax(220px, .82fr) minmax(280px, 1.18fr);
        align-items: center;
        gap: 18px;
        min-height: 100svh;
        padding: 90px 20px 10px;
    }
    .method-copy { width: 100%; }
    .method-kicker { display: none; }
    .method-title { max-width: 280px; font-size: 27px; line-height: 1.1; }
    .method-step {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 8px;
        margin-top: 8px;
        padding: 9px 11px;
    }
    .method-step-content { min-height: 60px; }
    .method-step-title { margin-bottom: 4px; font-size: 15px; }
    .method-step-body { font-size: 10.5px; line-height: 1.24; }
    .method-progress { margin-top: 4px; }
    .method-stage-map { display: none; }
    .dossier-scene { width: 100%; height: 230px; justify-self: end; }
    .method-console-head { top: 9px; left: 10px; right: 10px; padding-bottom: 8px; }
    .method-console-foot { bottom: 9px; left: 10px; right: 10px; padding-top: 8px; }
    .method-console-route { display: none; }
    .dossier-stage { inset: 1% 0 0; }
    .dossier-cv,
    .dossier-report { padding: 13px; }
    .dossier-cv-top {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 8px;
        padding-bottom: 7px;
    }
    .dossier-avatar { width: 36px; height: 36px; font-size: 8px; }
    .dossier-cv-name { margin-bottom: 2px; font-size: 13px; }
    .dossier-cv-role { font-size: 6px; }
    .dossier-id { display: none; }
    .dossier-cv-columns { gap: 6%; margin-top: 7px; }
    .dossier-cv-label { margin-bottom: 1px; font-size: 6px; }
    .dossier-cv-metric { margin-bottom: 3px; font-size: 11px; }
    .dossier-lines i { height: 3px; margin-bottom: 4px; }
    .dossier-report-main { margin-block: 7px; }
    .dossier-report-score { font-size: 36px; }
    .dossier-report h3 { margin-top: 5px; font-size: 14px; }
}

/* Post-Source Motion States */
.motion-ready .role-card,
.motion-ready .eval-level .level-number,
.motion-ready .eval-level h3,
.motion-ready .eval-level p,
.motion-ready .eval-level li,
.motion-ready .format-card,
.motion-ready .process-node,
.motion-ready .form-group {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), clip-path 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .format-card {
    clip-path: inset(0 0 100% 0);
    transform: translateY(40px) rotateX(4deg);
}

.motion-ready .role-card {
    transition-delay: calc(var(--i, 0) * 45ms);
}

.motion-ready .process-node {
    transition-delay: calc(var(--i, 0) * 70ms);
}

.in-view .role-card,
.eval-level.in-view .level-number,
.eval-level.in-view h3,
.eval-level.in-view p,
.eval-level.in-view li,
.in-view.format-card,
.in-view .format-card,
.in-view .process-node,
.in-view .form-group {
    opacity: 1;
    transform: translateY(0) rotateX(0);
    clip-path: inset(0 0 0 0);
}

.eval-level.in-view li:nth-child(1) { transition-delay: 100ms; }
.eval-level.in-view li:nth-child(2) { transition-delay: 180ms; }
.eval-level.in-view li:nth-child(3) { transition-delay: 260ms; }
.eval-level.in-view li:nth-child(4) { transition-delay: 340ms; }
.eval-level.in-view li:nth-child(5) { transition-delay: 420ms; }
.eval-level.in-view li:nth-child(6) { transition-delay: 500ms; }
.eval-level.in-view li:nth-child(7) { transition-delay: 580ms; }

/* Professional evaluation — one responsibility matrix instead of four oversized screens. */
.evaluation-matrix {
    position: relative;
    isolation: isolate;
    overflow: clip;
    background: #f3f1ec;
}

.evaluation-matrix::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    background-image:
        linear-gradient(rgba(10, 10, 10, 0.042) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 10, 10, 0.042) 1px, transparent 1px),
        radial-gradient(circle at 82% 18%, rgba(255, 77, 46, 0.12), transparent 28%),
        radial-gradient(circle at 12% 88%, rgba(199, 255, 53, 0.055), transparent 22%);
    background-size: 72px 72px, 72px 72px, auto, auto;
    pointer-events: none;
}

.evaluation-matrix-atmosphere {
    display: none;
}

.evaluation-matrix::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(180deg, rgba(243, 241, 236, 0.32), rgba(243, 241, 236, 0.04) 42%, rgba(243, 241, 236, 0.34));
    pointer-events: none;
}

.evaluation-matrix-sticky {
    position: relative;
    padding-bottom: clamp(92px, 8vw, 128px);
}

.evaluation-matrix-inner {
    position: relative;
    width: 100%;
}

.evaluation-matrix-heading-wrap {
    position: relative;
    width: 100%;
    padding-top: clamp(92px, 8vw, 128px);
}

.evaluation-matrix-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: clamp(36px, 6vw, 96px);
    align-items: end;
    margin-bottom: clamp(46px, 5vw, 72px);
}

.evaluation-matrix-kicker {
    display: block;
    margin-bottom: 18px;
    color: var(--signal);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.evaluation-matrix-title {
    max-width: 900px;
    font-size: clamp(48px, 4.8vw, 74px);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.evaluation-matrix-title span { color: var(--signal); }

.evaluation-matrix-lead {
    max-width: 600px;
    color: #6f6f6b;
    font-size: clamp(18px, 1.45vw, 23px);
    line-height: 1.42;
}

.evaluation-matrix-shell {
    position: relative;
    padding: clamp(30px, 3vw, 46px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 10, 10, 0.985);
    box-shadow: 0 42px 110px rgba(10, 10, 10, 0.2);
    color: var(--white);
}

.evaluation-matrix-shell::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 28%;
    height: 3px;
    background: var(--signal);
}

.evaluation-progress {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 34px;
    padding-top: 19px;
}

.evaluation-progress-track,
.evaluation-progress-fill {
    position: absolute;
    top: 4px;
    left: 0;
    width: 100%;
    height: 1px;
    transform-origin: left center;
}

.evaluation-progress-track { background: rgba(255, 255, 255, 0.14); }

.evaluation-progress-fill {
    background: var(--signal);
    transform: scaleX(0);
    will-change: transform;
}

.evaluation-progress-node {
    position: relative;
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.34);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 220ms ease;
}

.evaluation-progress-node::before {
    content: "";
    position: absolute;
    top: -19px;
    left: 0;
    width: 9px;
    height: 9px;
    border: 2px solid #0a0a0a;
    background: rgba(255, 255, 255, 0.28);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: transform 240ms var(--ease-out), background-color 220ms ease, box-shadow 220ms ease;
}

.evaluation-progress-node.is-passed,
.evaluation-progress-node.is-active { color: rgba(255, 255, 255, 0.78); }

.evaluation-progress-node.is-passed::before { background: var(--signal); }

.evaluation-progress-node.is-active::before {
    background: var(--technical);
    box-shadow: 0 0 0 1px var(--technical), 0 0 22px rgba(199, 255, 53, 0.42);
    transform: scale(1.28);
}

.evaluation-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.evaluation-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 500px;
    flex-direction: column;
    padding: clamp(24px, 2vw, 32px);
    overflow: hidden;
    background: #101010;
    opacity: 0.5;
    transform: translate3d(0, 14px, 0) scale(0.985);
    transform-origin: 50% 100%;
    transition: transform 420ms var(--ease-out), opacity 320ms ease, background-color 320ms ease;
    will-change: transform, opacity;
}

.evaluation-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--signal);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 420ms var(--ease-out);
}

.evaluation-card.is-passed {
    opacity: 0.72;
    transform: translate3d(0, 0, 0) scale(0.992);
}

.evaluation-card.is-active {
    z-index: 2;
    background: #151515;
    opacity: 1;
    transform: translate3d(0, -10px, 0) scale(1);
}

.evaluation-card.is-active::before { transform: scaleX(1); }

.evaluation-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 34px;
}

.evaluation-card-number {
    color: var(--signal);
    font-size: clamp(46px, 4vw, 66px);
    font-weight: 700;
    line-height: 0.82;
    letter-spacing: -0.06em;
}

.evaluation-card-scope {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.36);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-align: right;
    text-transform: uppercase;
}

.evaluation-card-scope::before {
    content: "";
    width: 6px;
    height: 6px;
    background: currentColor;
}

.evaluation-card.is-active .evaluation-card-scope { color: var(--technical); }

.evaluation-card h3 {
    min-height: 2.05em;
    margin-bottom: 18px;
    font-size: clamp(25px, 2vw, 33px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.evaluation-card-summary {
    min-height: 4.2em;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 14px;
    line-height: 1.42;
}

.evaluation-card-list {
    display: grid;
    gap: 11px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    line-height: 1.36;
}

.evaluation-card-list li {
    position: relative;
    padding-left: 16px;
}

.evaluation-card-list li::before {
    content: "+";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--technical);
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 600;
}

.evaluation-card-foot {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.36);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.evaluation-card-foot strong {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-align: right;
}

.evaluation-card.is-active .evaluation-card-foot strong { color: var(--technical); }

@media (min-width: 1560px) and (min-height: 820px) and (prefers-reduced-motion: no-preference) {
    .evaluation-matrix { min-height: calc(190svh + clamp(260px, 22vw, 350px)); }

    .evaluation-matrix-sticky {
        position: sticky;
        top: 0;
        display: flex;
        box-sizing: border-box;
        height: 100svh;
        align-items: center;
        padding: clamp(118px, 11.5vh, 132px) 0 clamp(18px, 2.4vh, 30px);
    }

    .evaluation-matrix-heading {
        margin-bottom: clamp(38px, 4vw, 58px);
    }

    .evaluation-matrix-title { font-size: clamp(46px, 4.15vw, 64px); }
    .evaluation-matrix-shell { padding: 28px 34px 30px; }
    .evaluation-progress { margin-bottom: 26px; }
    .evaluation-card {
        min-height: min(49svh, 480px);
        padding: 25px 27px;
    }
    .evaluation-card-head { margin-bottom: 24px; }
    .evaluation-card-number { font-size: clamp(48px, 3.5vw, 58px); }
    .evaluation-card h3 { margin-bottom: 14px; font-size: clamp(25px, 1.72vw, 29px); }
    .evaluation-card-summary { margin-bottom: 20px; font-size: 13px; }
    .evaluation-card-list { gap: 8px; margin-bottom: 24px; font-size: 12px; }
    .evaluation-card-foot { padding-top: 14px; }
}

@media (max-width: 1559px) {
    .evaluation-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .evaluation-card { min-height: 480px; opacity: 0.72; }
    .evaluation-progress { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 1023px) {
    .evaluation-matrix-heading { grid-template-columns: 1fr; }
    .evaluation-matrix-lead { max-width: 760px; }
}

@media (max-width: 699px) {
    .evaluation-matrix-heading-wrap { padding-top: 88px; }
    .evaluation-matrix-sticky { padding-bottom: 88px; }
    .evaluation-matrix-title { font-size: clamp(38px, 11vw, 52px); }
    .evaluation-matrix-heading { gap: 28px; margin-bottom: 46px; }
    .evaluation-matrix-lead { font-size: 18px; }
    .evaluation-matrix-shell { padding: 22px 20px 20px; }
    .evaluation-progress { margin-bottom: 28px; }
    .evaluation-progress-node { font-size: 0; }
    .evaluation-progress-node::after {
        content: attr(data-short-label);
        font-size: 7px;
    }
    .evaluation-card-grid { grid-template-columns: 1fr; }
    .evaluation-card { min-height: auto; padding: 26px 22px; opacity: 0.78; }
    .evaluation-card h3 { min-height: 0; font-size: 30px; }
    .evaluation-card-summary { min-height: 0; }
}

@media (max-width: 1023px) and (max-height: 600px) {
    .evaluation-matrix-heading-wrap { padding-top: 72px; }
    .evaluation-matrix-sticky { padding-bottom: 72px; }
    .evaluation-matrix-heading { gap: 20px; margin-bottom: 34px; }
    .evaluation-matrix-title { font-size: clamp(36px, 7vw, 48px); }
    .evaluation-card { min-height: 430px; }
}

@media (prefers-reduced-motion: reduce) {
    .evaluation-matrix { min-height: auto; }
    .evaluation-matrix-sticky { position: relative; min-height: auto; }
    .evaluation-matrix-atmosphere,
    .evaluation-card {
        transform: none !important;
    }
    .evaluation-card { opacity: 1 !important; }
    .evaluation-progress-fill { transform: scaleX(1) !important; }
}

/* Team architecture — the same controlled-system language as the process journey. */
.team-architecture {
    position: relative;
    isolation: isolate;
    overflow: clip;
    scroll-margin-top: 90px;
    background: #090909;
    color: var(--white);
    --team-card-title-size: clamp(26px, 1.9vw, 30px);
    --team-card-body-size: clamp(14px, 0.96vw, 16px);
    --team-role-size: clamp(14px, 0.94vw, 15px);
    --team-meta-size: 9px;
}

.team-architecture::before {
    content: "";
    position: absolute;
    z-index: -3;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
}

.team-architecture::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 9, 9, 0.18), rgba(9, 9, 9, 0.72) 74%, #090909);
    pointer-events: none;
}

.team-topology-bg {
    position: absolute;
    z-index: -2;
    left: 50%;
    bottom: -120px;
    width: min(1641px, 100%);
    height: auto;
    opacity: 0.5;
    transform: translate3d(-50%, 0, 0);
    transform-origin: center bottom;
    pointer-events: none;
    will-change: transform;
}

.team-architecture-sticky {
    position: relative;
    padding-block: clamp(96px, 8vw, 132px);
}

.team-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: clamp(36px, 6vw, 96px);
    align-items: end;
    margin-bottom: clamp(44px, 5vw, 68px);
}

.team-kicker {
    display: block;
    margin-bottom: 18px;
    color: var(--signal);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.team-title {
    max-width: 880px;
    font-size: clamp(48px, 4.8vw, 74px);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.team-title span { color: var(--signal); }

.team-intro p {
    max-width: 610px;
    color: rgba(255, 255, 255, 0.56);
    font-size: clamp(18px, 1.45vw, 23px);
    line-height: 1.42;
}

.team-system-shell {
    position: relative;
    padding: clamp(28px, 3vw, 44px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(14, 14, 14, 0.94);
    box-shadow: 0 42px 110px rgba(0, 0, 0, 0.42);
}

.team-system-shell::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 3px;
    background: var(--signal);
}

.team-watermark {
    position: absolute;
    z-index: 0;
    top: -42px;
    right: 24px;
    color: rgba(255, 255, 255, 0.035);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: clamp(170px, 16vw, 260px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.08em;
    pointer-events: none;
    user-select: none;
}

.team-signal-beam {
    position: absolute;
    z-index: 0;
    top: 0;
    left: -1px;
    width: 1px;
    height: 100%;
    background: rgba(255, 77, 46, 0.5);
    opacity: 0.78;
    pointer-events: none;
    will-change: transform;
}

.team-signal-beam::before,
.team-signal-beam::after {
    content: "";
    position: absolute;
    left: -3px;
    width: 7px;
    height: 7px;
    border: 1px solid var(--signal);
    background: #101010;
}

.team-signal-beam::before { top: 18%; }
.team-signal-beam::after { bottom: 14%; }

.team-status {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.team-status-current {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--technical);
}

.team-status-current::before {
    content: "";
    width: 7px;
    height: 7px;
    background: currentColor;
    box-shadow: 0 0 18px rgba(199, 255, 53, 0.44);
}

.team-route-progress {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 30px;
    padding-top: 18px;
}

.team-route-track,
.team-route-fill {
    position: absolute;
    top: 4px;
    left: 0;
    width: 100%;
    height: 1px;
    transform-origin: left center;
}

.team-route-track { background: rgba(255, 255, 255, 0.14); }

.team-route-fill {
    background: var(--signal);
    transform: scaleX(0);
    will-change: transform;
}

.team-route-node {
    position: relative;
    color: rgba(255, 255, 255, 0.28);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 200ms ease;
}

.team-route-node::before {
    content: "";
    position: absolute;
    top: -18px;
    left: 0;
    width: 8px;
    height: 8px;
    border: 2px solid #0e0e0e;
    background: rgba(255, 255, 255, 0.28);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
    transition: transform 220ms var(--ease-out), background-color 200ms ease, box-shadow 200ms ease;
}

.team-route-node.is-passed,
.team-route-node.is-active { color: rgba(255, 255, 255, 0.72); }
.team-route-node.is-passed::before { background: var(--signal); }
.team-route-node.is-active::before {
    background: var(--technical);
    box-shadow: 0 0 0 1px var(--technical), 0 0 20px rgba(199, 255, 53, 0.4);
    transform: scale(1.3);
}

.team-level-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.team-level-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 300px;
    flex-direction: column;
    padding: clamp(24px, 2.2vw, 34px);
    overflow: hidden;
    background: #101010;
    opacity: 0.48;
    transform: translate3d(0, 12px, 0) scale(0.992);
    transform-origin: 50% 100%;
    transition: transform 360ms var(--ease-out), opacity 240ms ease, background-color 240ms ease;
}

.team-level-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--signal);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 360ms var(--ease-out);
}

.team-level-card.is-passed {
    opacity: 0.74;
    transform: translate3d(0, 0, 0) scale(0.996);
}

.team-level-card.is-active {
    z-index: 3;
    background: #171717;
    opacity: 1;
    transform: translate3d(0, -7px, 0) scale(1);
}

.team-level-card.is-active::before { transform: scaleX(1); }

.team-level-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.team-level-number {
    color: var(--signal);
    font-size: clamp(38px, 3vw, 52px);
    font-weight: 700;
    line-height: 0.86;
    letter-spacing: -0.06em;
}

.team-level-state {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 7px;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.team-level-state::before {
    content: "";
    width: 6px;
    height: 6px;
    background: currentColor;
}

.team-level-card.is-active .team-level-state { color: var(--technical); }

.team-level-card h3 {
    margin-bottom: 12px;
    font-size: var(--team-card-title-size);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.team-level-summary {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.62);
    font-size: var(--team-card-body-size);
    line-height: 1.45;
}

.team-role-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-top: auto;
    background: rgba(255, 255, 255, 0.1);
}

.team-role-tag {
    min-width: 0;
    padding: 14px 15px;
    background: #121212;
    color: rgba(255, 255, 255, 0.78);
    font-size: var(--team-role-size);
    font-weight: 600;
    line-height: 1.32;
    transition: color 180ms ease, background-color 180ms ease;
}

.team-role-tag strong {
    display: block;
    margin-bottom: 6px;
    color: var(--technical);
    font-family: 'IBM Plex Mono', monospace;
    font-size: var(--team-meta-size);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.team-role-tag--wide { grid-column: 1 / -1; }

.team-role-clusters {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: auto;
    background: rgba(255, 255, 255, 0.1);
}

.team-role-cluster {
    min-width: 0;
    padding: 17px;
    background: #121212;
}

.team-role-cluster strong {
    display: block;
    min-height: 2.5em;
    margin-bottom: 12px;
    color: var(--technical);
    font-family: 'IBM Plex Mono', monospace;
    font-size: var(--team-meta-size);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.team-role-cluster span {
    display: block;
    padding-block: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.76);
    font-size: var(--team-role-size);
    line-height: 1.32;
}

@media (hover: hover) and (pointer: fine) {
    .team-level-card:hover .team-role-tag,
    .team-level-card:hover .team-role-cluster { background-color: #151515; }
    .team-role-tag:hover,
    .team-role-cluster span:hover { color: var(--white); }
}

@media (min-width: 1560px) and (min-height: 900px) and (prefers-reduced-motion: no-preference) {
    .team-architecture { min-height: 205svh; }
    .team-architecture-sticky {
        position: sticky;
        top: 0;
        display: flex;
        min-height: 100svh;
        align-items: center;
        padding-block: 96px 44px;
    }
    .team-intro { margin-bottom: clamp(24px, 2.6vh, 34px); }
    .team-title { font-size: clamp(46px, 4vw, 62px); }
    .team-system-shell { padding: 24px 30px 26px; }
    .team-status { margin-bottom: 18px; }
    .team-route-progress { margin-bottom: 22px; }
    .team-level-card { min-height: 320px; padding: 24px 26px; }
    .team-level-card-head { margin-bottom: 14px; }
    .team-level-number { font-size: 46px; }
    .team-level-card h3 { font-size: 27px; }
    .team-level-summary { margin-bottom: 20px; font-size: 14px; }
    .team-role-tag { padding: 12px 14px; font-size: 14px; }
    .team-role-tag strong { font-size: 9px; }
    .team-role-cluster { padding: 14px; }
    .team-role-cluster strong { margin-bottom: 9px; font-size: 9px; }
    .team-role-cluster span { padding-block: 7px; font-size: 13px; }
}

@media (max-width: 1023px) {
    .team-intro { grid-template-columns: 1fr; }
    .team-intro p { max-width: 760px; }
    .team-level-grid { grid-template-columns: 1fr; }
    .team-level-card { min-height: auto; padding: 28px; opacity: 0.68; }
    .team-topology-bg { width: 1280px; max-width: none; opacity: 0.44; }
}

@media (max-width: 699px) {
    .team-architecture-sticky { padding-block: 88px; }
    .team-intro { gap: 28px; margin-bottom: 44px; }
    .team-title { font-size: clamp(38px, 11vw, 52px); }
    .team-intro p { font-size: 18px; }
    .team-system-shell { padding: 22px 20px 20px; }
    .team-status { align-items: flex-start; font-size: 7px; }
    .team-status > span:first-child { max-width: 180px; line-height: 1.45; }
    .team-route-progress { margin-bottom: 28px; }
    .team-route-node { font-size: 0; }
    .team-route-node::after { content: attr(data-short-label); font-size: 7px; }
    .team-level-grid { grid-template-columns: 1fr; }
    .team-level-card { min-height: auto; padding: 26px 22px; opacity: 0.76; }
    .team-level-card h3 { font-size: 30px; }
    .team-level-summary { font-size: 16px; }
    .team-role-tag { padding: 16px; font-size: 16px; }
    .team-role-tag strong { font-size: 10px; }
    .team-role-clusters { grid-template-columns: 1fr; }
    .team-role-cluster { padding: 16px; }
    .team-role-cluster strong { min-height: 0; font-size: 10px; }
    .team-role-cluster span { padding-block: 9px; font-size: 15px; }
    .team-watermark { top: 8px; right: 12px; font-size: 130px; }
    .team-signal-beam { width: 1px; }
    .team-topology-bg { width: 1080px; opacity: 0.34; }
}

@media (max-width: 1023px) and (max-height: 600px) {
    .team-architecture-sticky { padding-block: 112px 72px; }
    .team-intro { gap: 20px; margin-bottom: 34px; }
    .team-title { font-size: clamp(36px, 7vw, 48px); }
}

@media (prefers-reduced-motion: reduce) {
    .team-architecture { min-height: auto; }
    .team-architecture-sticky { position: relative; min-height: auto; }
    .team-level-card,
    .team-signal-beam,
    .team-topology-bg { transform: none !important; }
    .team-topology-bg { left: 50%; transform: translate3d(-50%, 0, 0) !important; }
    .team-level-card { opacity: 1 !important; }
    .team-route-fill { transform: scaleX(1) !important; }
}

/* Shared light-section signal field — one brand atmosphere, composited without repaint-heavy background animation. */
.light-gradient-host {
    position: relative;
    isolation: isolate;
}

.light-gradient-field {
    position: absolute;
    z-index: -1;
    inset: -24% -18%;
    opacity: 0;
    background:
        radial-gradient(circle at 72% 22%, rgba(255, 77, 46, 0.15), transparent 30%),
        radial-gradient(circle at 22% 78%, rgba(199, 255, 53, 0.07), transparent 24%);
    transform: translate3d(var(--gradient-from-x, -3%), var(--gradient-from-y, 2%), 0) scale(1.02);
    transform-origin: center;
    transition: opacity 900ms var(--ease-out);
    pointer-events: none;
    will-change: transform, opacity;
}

.light-gradient-host.in-view > .light-gradient-field {
    opacity: 0.78;
    animation: light-gradient-drift 15s var(--ease-in-out) var(--gradient-delay, 0s) infinite alternate;
}

.hero-section > .light-gradient-field {
    z-index: 1;
    opacity: 0;
    mix-blend-mode: multiply;
}

@keyframes light-gradient-drift {
    from {
        transform: translate3d(var(--gradient-from-x, -3%), var(--gradient-from-y, 2%), 0) scale(1.02);
        opacity: 0.58;
    }
    to {
        transform: translate3d(var(--gradient-to-x, 4%), var(--gradient-to-y, -2%), 0) scale(1.08);
        opacity: 0.84;
    }
}

/* Source rail: a continuous moving signal field replaces the hard static gradient seam. */
#spectrum-section .source-shell > .light-gradient-field {
    inset: 10% -42% -38%;
    opacity: 0.76;
    background:
        radial-gradient(ellipse at 72% 28%, rgba(255, 77, 46, 0.17), transparent 32%),
        radial-gradient(ellipse at 26% 72%, rgba(199, 255, 53, 0.065), transparent 26%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 18%, #000 38%, #000 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, transparent 18%, #000 38%, #000 90%, transparent 100%);
    animation: source-gradient-roam 19s var(--ease-in-out) -7s infinite alternate;
}

@keyframes source-gradient-roam {
    0% { transform: translate3d(-10%, -2%, 0) scale(1.04); opacity: 0.62; }
    50% { transform: translate3d(9%, 6%, 0) scale(1.1); opacity: 0.82; }
    100% { transform: translate3d(-2%, 12%, 0) scale(1.06); opacity: 0.7; }
}

@media (max-width: 767px) {
    .light-gradient-field {
        inset: -12% -58%;
        background:
            radial-gradient(circle at 68% 20%, rgba(255, 77, 46, 0.13), transparent 29%),
            radial-gradient(circle at 24% 80%, rgba(199, 255, 53, 0.055), transparent 22%);
    }

    #spectrum-section .source-shell > .light-gradient-field {
        inset: 8% -92% -32%;
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 16%, #000 36%, #000 93%, transparent 100%);
        mask-image: linear-gradient(to bottom, transparent 0%, transparent 16%, #000 36%, #000 93%, transparent 100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .light-gradient-host > .light-gradient-field {
        opacity: 0.68 !important;
        animation: none !important;
        transform: none !important;
    }
}

.audience-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--paper);
}

.audience-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(10, 10, 10, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 10, 10, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.audience-section::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 8%;
    left: 50%;
    width: min(720px, 70vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 77, 46, 0.07) 0%, rgba(255, 77, 46, 0.025) 38%, transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
}

.formats-heading {
    position: relative;
    z-index: 2;
}

.formats-heading h2 {
    max-width: 1180px;
    text-transform: uppercase;
}

.formats-heading h2 span { color: var(--signal); }

.formats-stage {
    position: relative;
    padding-top: 132px;
    perspective: 1200px;
}

.formats-routing {
    position: absolute;
    z-index: 1;
    inset: 0 0 auto;
    height: 132px;
    pointer-events: none;
}

.formats-routing-core {
    position: absolute;
    top: 0;
    left: 50%;
    width: 226px;
    height: 40px;
    margin-left: -113px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--white);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.formats-routing-core::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--technical);
    box-shadow: 0 0 16px rgba(199, 255, 53, 0.72);
}

.formats-routing-line {
    position: absolute;
    display: block;
    background: var(--signal);
    transform-origin: top left;
}

.formats-routing-line--trunk {
    top: 40px;
    left: calc(50% - 1px);
    width: 2px;
    height: 44px;
}

.formats-routing-line--bus {
    top: 82px;
    left: 16.666%;
    width: 66.668%;
    height: 2px;
}

.formats-routing-line--branch {
    top: 82px;
    left: calc((100% / 6) + (100% / 3) * var(--route-index));
    width: 2px;
    height: 50px;
    margin-left: -1px;
}

.formats-routing-node {
    position: absolute;
    top: 78px;
    left: calc((100% / 6) + (100% / 3) * var(--route-index));
    width: 10px;
    height: 10px;
    margin-left: -5px;
    border: 2px solid var(--paper);
    border-radius: 50%;
    background: var(--signal);
    box-shadow: 0 0 0 1px var(--signal);
}

.audience-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 1.4vw, 22px);
}

.audience-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 360px;
    padding: clamp(30px, 2.5vw, 42px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: clamp(42px, 5vw, 72px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background:
        linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        radial-gradient(circle at 92% 6%, rgba(255, 77, 46, 0.16), transparent 32%),
        #0a0a0a;
    background-size: 48px 48px, 48px 48px, auto, auto;
    box-shadow: 0 30px 68px rgba(10, 10, 10, 0.16);
    color: var(--white);
    transform-origin: 50% 100%;
    will-change: transform, opacity;
}

.audience-card::before {
    content: "";
    position: absolute;
    z-index: 4;
    top: 0;
    left: 0;
    width: 34%;
    height: 3px;
    background: var(--signal);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 720ms var(--ease-out) calc(360ms + var(--format-index) * 70ms);
    pointer-events: none;
}

.audience-card::after {
    content: "";
    position: absolute;
    z-index: 3;
    inset: -22% 0 auto;
    height: 22%;
    opacity: 0;
    background: linear-gradient(180deg, transparent, rgba(199, 255, 53, 0.09), rgba(255, 77, 46, 0.2), transparent);
    transform: translate3d(0, -160%, 0);
    pointer-events: none;
    will-change: transform, opacity;
}

.audience-card-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 22px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
}

.audience-card-body {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 18px;
    transition: transform 180ms var(--ease-out);
}

.audience-card-index {
    color: var(--signal);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.audience-card-state {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--technical);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.audience-card-state::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--technical);
    box-shadow: 0 0 14px rgba(199, 255, 53, 0.54);
}

.audience-card h3 {
    max-width: 340px;
    font-size: clamp(27px, 2.25vw, 38px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.045em;
}

.audience-card-for {
    color: var(--technical);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.audience-card-copy {
    max-width: 390px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 17px;
    line-height: 1.48;
}

.audience-card-foot {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
}

.audience-card-foot span {
    color: rgba(255, 255, 255, 0.34);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.audience-card-foot strong {
    max-width: 210px;
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.06em;
    text-align: right;
}

.motion-ready #formats .audience-card-head,
.motion-ready #formats .audience-card-body,
.motion-ready #formats .audience-card-foot {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    transition: opacity 520ms ease, transform 720ms var(--ease-out);
}

.motion-ready #formats .formats-heading,
.motion-ready #formats .formats-routing-core,
.motion-ready #formats .audience-card {
    opacity: 0;
    transform: translateY(32px) rotateX(4deg) scale(0.985);
    transition-property: opacity, transform;
    transition-duration: 650ms;
    transition-timing-function: var(--ease-out);
}

.motion-ready #formats .formats-heading {
    transform: translateY(24px);
}

.motion-ready #formats .formats-routing-core {
    transform: translateY(16px) scale(0.97);
    transition-delay: 160ms;
}

.motion-ready #formats .formats-routing-line--trunk,
.motion-ready #formats .formats-routing-line--branch {
    transform: scaleY(0);
    transition: transform 700ms var(--ease-in-out);
}

.motion-ready #formats .formats-routing-line--trunk { transition-delay: 300ms; }

.motion-ready #formats .formats-routing-line--bus {
    transform: scaleX(0);
    transition: transform 700ms var(--ease-in-out) 480ms;
}

.motion-ready #formats .formats-routing-line--branch {
    transition-delay: calc(720ms + var(--route-index) * 80ms);
}

.motion-ready #formats .formats-routing-node {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 220ms ease calc(760ms + var(--route-index) * 80ms), transform 220ms var(--ease-out) calc(760ms + var(--route-index) * 80ms);
}

.motion-ready #formats .audience-card {
    transition-delay: calc(380ms + var(--format-index) * 70ms);
}

#formats.in-view .formats-heading,
#formats.in-view .formats-routing-core,
#formats.in-view .audience-card {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
}

#formats.in-view .formats-routing-line--trunk,
#formats.in-view .formats-routing-line--branch {
    transform: scaleY(1);
}

#formats.in-view .formats-routing-line--bus { transform: scaleX(1); }

#formats.in-view .formats-routing-node {
    opacity: 1;
    transform: scale(1);
}

#formats.in-view .audience-card::before { transform: scaleX(1); }

#formats.in-view .audience-card::after {
    animation: audience-card-scan 1700ms var(--ease-in-out) calc(680ms + var(--format-index) * 140ms) 1 both;
}

#formats.in-view .audience-card-head,
#formats.in-view .audience-card-body,
#formats.in-view .audience-card-foot {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

#formats.in-view .audience-card-head { transition-delay: calc(520ms + var(--format-index) * 70ms); }
#formats.in-view .audience-card-body { transition-delay: calc(600ms + var(--format-index) * 70ms); }
#formats.in-view .audience-card-foot { transition-delay: calc(680ms + var(--format-index) * 70ms); }

@keyframes audience-card-scan {
    0% { opacity: 0; transform: translate3d(0, -160%, 0); }
    14% { opacity: 1; }
    78% { opacity: 0.66; }
    100% { opacity: 0; transform: translate3d(0, 720%, 0); }
}

@media (hover: hover) and (pointer: fine) {
    .audience-card:hover .audience-card-body { transform: translate3d(0, -5px, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .audience-card::before { transform: scaleX(1) !important; }
    .audience-card::after { display: none; }
    .audience-card,
    .audience-card-head,
    .audience-card-body,
    .audience-card-foot {
        opacity: 1 !important;
        transform: none !important;
        transition-duration: 0.01ms !important;
    }
}

.candidate-report-section {
    position: relative;
    isolation: isolate;
    overflow: clip;
    background: #f3f1ec;
}

.candidate-report-section::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    background-image:
        linear-gradient(rgba(10, 10, 10, 0.042) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 10, 10, 0.042) 1px, transparent 1px),
        radial-gradient(circle at 82% 16%, rgba(255, 77, 46, 0.12), transparent 28%),
        radial-gradient(circle at 14% 86%, rgba(199, 255, 53, 0.055), transparent 22%);
    background-size: 72px 72px, 72px 72px, auto, auto;
    pointer-events: none;
}

.candidate-report-sticky {
    position: relative;
    z-index: 1;
}

.candidate-report-atmosphere-motion {
    display: none;
}

.candidate-report-atmosphere {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.035);
    transition: opacity 900ms ease, transform 1200ms var(--ease-out);
}

#candidate-report.in-view .candidate-report-atmosphere {
    opacity: 0.72;
    transform: scale(1);
}

.candidate-report-section::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgba(244, 244, 240, 0.2), rgba(244, 244, 240, 0.02) 58%, rgba(244, 244, 240, 0.16));
    pointer-events: none;
}

.candidate-report-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(380px, 0.82fr) minmax(620px, 1.18fr);
    gap: clamp(52px, 5vw, 80px);
    align-items: center;
}

.candidate-report-motion-index {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.candidate-report-motion-index span {
    position: relative;
    padding-top: 10px;
    transition: color 220ms ease;
}

.candidate-report-motion-index span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0.18);
    transform-origin: left center;
    transition: transform 360ms var(--ease-out), background-color 220ms ease;
}

.candidate-report-motion-index span.is-active {
    color: var(--signal);
}

.candidate-report-motion-index span.is-active::before {
    background: var(--signal);
    transform: scaleX(1);
}

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

.candidate-report-kicker {
    color: var(--signal);
}

.candidate-report-title {
    max-width: 720px;
    font-size: clamp(46px, 4.4vw, 66px);
    font-weight: 700;
    line-height: 0.94;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.candidate-report-title span {
    color: var(--signal);
}

.candidate-report-copy > p {
    max-width: 610px;
    color: #6f6f6b;
    font-size: clamp(18px, 1.45vw, 23px);
    line-height: 1.42;
}

.candidate-report-principles {
    display: grid;
    gap: 24px;
    margin-top: 48px;
}

.candidate-report-principle {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
}

.candidate-report-principle::before {
    content: "//";
    color: var(--signal);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.08em;
}

.candidate-report-principle strong,
.candidate-report-principle span {
    display: block;
}

.candidate-report-principle strong {
    margin-bottom: 4px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.candidate-report-principle span {
    color: #777772;
    font-size: 15px;
    line-height: 1.4;
}

.candidate-report-privacy {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 42px;
    color: #6f6f6b;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.candidate-report-privacy iconify-icon {
    color: var(--signal);
    font-size: 16px;
}

.candidate-report-frame {
    position: relative;
    z-index: 2;
    padding: 0 24px 28px 0;
    perspective: 1400px;
    transform-style: preserve-3d;
    will-change: transform, opacity;
}

.candidate-report-paper {
    position: absolute;
    pointer-events: none;
    will-change: transform, opacity;
}

.candidate-report-paper--back {
    z-index: -2;
    top: -34px;
    right: 0;
    width: 70%;
    height: 48%;
    border: 1px solid rgba(10, 10, 10, 0.08);
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 30px 70px rgba(10, 10, 10, 0.07);
    transform: translate3d(16px, 12px, 0);
}

.candidate-report-paper--signal {
    z-index: -1;
    right: 0;
    bottom: 0;
    width: 52%;
    height: 20%;
    background: var(--technical);
    transform: translate3d(0, 0, 0);
}

.candidate-report-verified {
    position: absolute;
    z-index: 4;
    top: -18px;
    left: 34px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 16px;
    background: var(--technical);
    color: var(--ink);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.candidate-report-verified::after {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--ink);
}

.candidate-report-card {
    position: relative;
    overflow: hidden;
    padding: clamp(30px, 3.4vw, 50px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background-color: rgba(10, 10, 10, 0.985);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        radial-gradient(circle at 88% 8%, rgba(255, 77, 46, 0.13), transparent 34%),
        radial-gradient(circle at 8% 94%, rgba(199, 255, 53, 0.045), transparent 28%);
    background-size: 42px 42px, 42px 42px, auto, auto;
    color: var(--white);
    box-shadow: 0 44px 100px rgba(10, 10, 10, 0.22);
    transform-origin: 50% 100%;
    transform-style: preserve-3d;
    will-change: transform, opacity;
}

.candidate-report-progress-line {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 38%;
    height: 3px;
    background: var(--signal);
    transform: scaleX(0);
    transform-origin: left center;
    will-change: transform;
}

.candidate-report-scan {
    position: absolute;
    z-index: 5;
    top: -18%;
    left: 0;
    width: 100%;
    height: 18%;
    border-bottom: 1px solid rgba(199, 255, 53, 0.72);
    background: linear-gradient(to bottom, transparent, rgba(199, 255, 53, 0.035) 42%, rgba(199, 255, 53, 0.16));
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity;
}

.candidate-report-scan::after {
    content: "VERIFICATION / ACTIVE";
    position: absolute;
    right: 16px;
    bottom: 8px;
    color: var(--technical);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.candidate-report-head,
.candidate-report-summary,
.candidate-report-meta,
.candidate-report-decision,
.candidate-report-columns,
.candidate-report-foot {
    position: relative;
    z-index: 2;
    will-change: transform, opacity;
}

.candidate-report-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 22px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.58);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.candidate-report-id { color: rgba(255, 255, 255, 0.38); }

.candidate-report-summary {
    padding: clamp(34px, 4vw, 54px) 0 26px;
}

.candidate-report-summary h3 {
    margin-bottom: 16px;
    font-size: clamp(38px, 4.2vw, 62px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.candidate-report-summary p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    line-height: 1.4;
    text-transform: uppercase;
}

.candidate-report-summary p span {
    color: var(--technical);
}

.candidate-report-summary p b {
    color: rgba(255, 255, 255, 0.54);
    font-weight: 500;
}

.candidate-report-summary p::before {
    content: "";
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--technical);
    box-shadow: 0 0 18px rgba(199, 255, 53, 0.5);
}

.candidate-report-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.candidate-report-meta-item {
    padding: 18px 20px;
}

.candidate-report-meta-item + .candidate-report-meta-item {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.candidate-report-meta-item span,
.candidate-report-meta-item strong {
    display: block;
}

.candidate-report-meta-item span {
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.38);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.candidate-report-meta-item strong {
    font-size: 14px;
    font-weight: 600;
}

.candidate-report-decision {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: flex-end;
    padding: 28px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
}

.candidate-report-decision span {
    color: rgba(255, 255, 255, 0.38);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.candidate-report-recommendation {
    max-width: 390px;
    color: var(--signal);
    font-size: clamp(18px, 1.65vw, 24px);
    font-weight: 700;
    line-height: 1.05;
    text-align: right;
    text-transform: uppercase;
}

.candidate-report-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.candidate-report-column {
    min-width: 0;
    padding: 28px 0;
}

.candidate-report-column + .candidate-report-column {
    padding-left: 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.candidate-report-label {
    display: block;
    margin-bottom: 16px;
    color: var(--technical);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.candidate-report-list {
    display: grid;
    gap: 12px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.4;
}

.candidate-report-list li {
    position: relative;
    padding-left: 17px;
}

.candidate-report-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    content: "+";
    width: auto;
    height: auto;
    color: var(--technical);
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 600;
    line-height: 1.4;
}

.candidate-report-foot {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.38);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.candidate-report-foot span:last-child { text-align: right; }

@media (min-width: 1280px) and (min-height: 760px) and (prefers-reduced-motion: no-preference) {
    .candidate-report-section {
        min-height: 190svh;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .candidate-report-sticky {
        position: sticky;
        top: 0;
        display: flex;
        min-height: 100svh;
        align-items: center;
        padding-block: clamp(46px, 5vh, 64px);
    }

    .candidate-report-layout {
        width: 100%;
    }
}

/* Pricing intelligence — a light contract desk with a live calculation core. */
.pricing-intelligence {
    position: relative;
    isolation: isolate;
    overflow: clip;
    background: #f4f2ee;
}

.pricing-intelligence::before {
    content: "";
    position: absolute;
    z-index: -3;
    inset: 0;
    background-image:
        linear-gradient(rgba(10, 10, 10, 0.042) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 10, 10, 0.042) 1px, transparent 1px),
        radial-gradient(circle at 82% 18%, rgba(255, 77, 46, 0.12), transparent 28%),
        radial-gradient(circle at 12% 88%, rgba(199, 255, 53, 0.055), transparent 22%);
    background-size: 72px 72px, 72px 72px, auto, auto;
}

.pricing-intelligence::after {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    border-block: 1px solid rgba(10, 10, 10, 0.1);
    background: linear-gradient(180deg, rgba(244, 242, 238, 0.02), rgba(244, 242, 238, 0.12));
    pointer-events: none;
}

.pricing-atmosphere {
    position: absolute;
    z-index: -1;
    top: clamp(160px, 18vw, 290px);
    right: clamp(-150px, -7vw, -70px);
    width: clamp(360px, 38vw, 640px);
    aspect-ratio: 1;
    border: 1px solid rgba(10, 10, 10, 0.08);
    border-radius: 50%;
    opacity: 0;
    transform: translate3d(48px, 24px, 0) rotate(-8deg);
    transition: opacity 700ms var(--ease-out), transform 900ms var(--ease-out);
    pointer-events: none;
}

.pricing-atmosphere::before,
.pricing-atmosphere::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(10, 10, 10, 0.07);
    border-radius: inherit;
}

.pricing-atmosphere::before { inset: 14%; }
.pricing-atmosphere::after { inset: 34%; background: rgba(255, 255, 255, 0.24); }

#pricing.in-view .pricing-atmosphere {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg);
}

.pricing-shell {
    width: min(100%, 1440px);
    margin-inline: auto;
}

.pricing-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: clamp(40px, 8vw, 128px);
    align-items: end;
    margin-bottom: clamp(54px, 7vw, 104px);
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition: opacity 650ms var(--ease-out), transform 750ms var(--ease-out);
}

#pricing.in-view .pricing-heading { opacity: 1; transform: translate3d(0, 0, 0); }

.pricing-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
    color: #676762;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pricing-kicker::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--signal);
    box-shadow: 0 0 0 7px rgba(255, 77, 46, 0.1);
}

.pricing-title {
    max-width: 900px;
    font-size: clamp(48px, 6.2vw, 96px);
    font-weight: 800;
    line-height: 0.94;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.pricing-title-line { display: block; }

.pricing-title-line + .pricing-title-line { margin-top: 0.16em; }

.pricing-title-accent { color: var(--signal); }

@media (max-width: 1279px) {
    .pricing-title-tail {
        display: block;
        margin-top: 0.2em;
    }
}

.pricing-lead {
    max-width: 490px;
    padding-top: 22px;
    border-top: 1px solid rgba(10, 10, 10, 0.28);
    color: #62625e;
    font-size: clamp(17px, 1.25vw, 20px);
    line-height: 1.55;
}

.pricing-layout {
    display: grid;
    grid-template-columns: minmax(360px, 0.76fr) minmax(0, 1.24fr);
    gap: clamp(20px, 3vw, 48px);
    align-items: start;
}

.pricing-console-wrap,
.pricing-contracts {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition: opacity 650ms var(--ease-out), transform 760ms var(--ease-out);
}

.pricing-contracts { transition-delay: 70ms; }
#pricing.in-view .pricing-console-wrap,
#pricing.in-view .pricing-contracts { opacity: 1; transform: translate3d(0, 0, 0); }

.pricing-console-wrap {
    position: sticky;
    top: 112px;
}

.pricing-console {
    position: relative;
    overflow: hidden;
    min-height: 590px;
    padding: clamp(28px, 3vw, 46px);
    background: #0b0b0b;
    color: var(--white);
    box-shadow: 0 34px 80px rgba(22, 19, 15, 0.18);
}

.pricing-console::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, #000, transparent 82%);
    pointer-events: none;
}

.pricing-console::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 42%;
    height: 5px;
    background: var(--signal);
}

.pricing-console-head,
.pricing-control,
.pricing-result,
.pricing-console-foot {
    position: relative;
    z-index: 1;
}

.pricing-console-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pricing-console-head span:first-child { color: rgba(255, 255, 255, 0.52); }

.pricing-live {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--technical);
}

.pricing-live::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 16px currentColor;
}

.pricing-control { padding-block: 42px 38px; }

.pricing-control-top {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.pricing-control-label,
.pricing-result-label,
.pricing-formula-label {
    color: rgba(255, 255, 255, 0.48);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pricing-salary {
    font-size: clamp(42px, 4.4vw, 68px);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.055em;
    white-space: nowrap;
}

.pricing-range {
    width: 100%;
    height: 24px;
    margin: 0;
    padding: 0;
    appearance: none;
    background: transparent;
    cursor: pointer;
}

.pricing-range::-webkit-slider-runnable-track {
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
}

.pricing-range::-moz-range-track {
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
}

.pricing-range::-webkit-slider-thumb {
    width: 22px;
    height: 22px;
    margin-top: -9.5px;
    appearance: none;
    border: 5px solid #0b0b0b;
    border-radius: 50%;
    background: var(--technical);
    box-shadow: 0 0 0 1px var(--technical), 0 0 22px rgba(199, 255, 53, 0.38);
}

.pricing-range::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border: 4px solid #0b0b0b;
    border-radius: 50%;
    background: var(--technical);
    box-shadow: 0 0 0 1px var(--technical), 0 0 22px rgba(199, 255, 53, 0.38);
}

.pricing-range:focus-visible { outline: 2px solid var(--technical); outline-offset: 8px; }

.pricing-range-limits {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.32);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
}

.pricing-formula {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 34px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.pricing-formula-item {
    min-width: 0;
    padding: 16px 12px;
    background: #111;
}

.pricing-formula-item strong {
    display: block;
    margin-top: 6px;
    color: var(--white);
    font-size: 15px;
    line-height: 1.1;
}

.pricing-formula-item:last-child strong { color: var(--technical); }

.pricing-result {
    padding: 34px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-result-value {
    margin-top: 12px;
    color: var(--signal);
    font-size: clamp(52px, 5vw, 78px);
    font-weight: 700;
    line-height: 0.88;
    letter-spacing: -0.06em;
    white-space: nowrap;
}

.pricing-ledger {
    display: grid;
    gap: 7px;
    margin-top: 28px;
}

.pricing-ledger-line {
    height: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.pricing-ledger-fill {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--technical);
    transform: scaleX(0.18);
    transform-origin: left;
    transition: transform 220ms var(--ease-out);
}

.pricing-ledger-line:nth-child(2) .pricing-ledger-fill { opacity: 0.56; }
.pricing-ledger-line:nth-child(3) .pricing-ledger-fill { opacity: 0.28; }

.pricing-console-foot {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-top: 26px;
    color: rgba(255, 255, 255, 0.42);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-console-foot span:last-child { max-width: 235px; text-align: right; }

.pricing-baseline {
    position: relative;
    margin-bottom: 24px;
    padding: clamp(28px, 3vw, 42px);
    border: 1px solid rgba(10, 10, 10, 0.18);
    background: rgba(255, 255, 255, 0.66);
    backdrop-filter: blur(16px);
}

.pricing-baseline::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 34%;
    height: 4px;
    background: var(--signal);
}

.pricing-baseline-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.pricing-baseline h3 {
    max-width: 470px;
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.pricing-baseline-code {
    color: #797974;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-baseline-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(10, 10, 10, 0.12);
    border-left: 1px solid rgba(10, 10, 10, 0.12);
}

.pricing-baseline-list li {
    position: relative;
    min-height: 66px;
    padding: 19px 18px 17px 48px;
    border-right: 1px solid rgba(10, 10, 10, 0.12);
    border-bottom: 1px solid rgba(10, 10, 10, 0.12);
    color: #555550;
    font-size: 13px;
    line-height: 1.35;
}

.pricing-baseline-list li::before {
    content: "+";
    position: absolute;
    top: 18px;
    left: 18px;
    color: var(--signal);
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
}

.pricing-models-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0 18px;
}

.pricing-models-head strong {
    font-size: 18px;
    font-weight: 700;
}

.pricing-models-head span {
    color: #777772;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (max-width: 1279px) {
    .candidate-report-layout {
        grid-template-columns: 1fr;
        gap: 88px;
    }

    .candidate-report-copy { max-width: 820px; }

    .candidate-report-principles {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }

    .candidate-report-frame {
        width: min(100%, 900px);
        margin-left: auto;
    }
}

@media (max-width: 1179px) {
    .formats-stage { padding-top: 0; }
    .formats-routing { display: none; }
    .audience-grid { grid-template-columns: 1fr; }
    .audience-card {
        min-height: 250px;
        gap: 34px;
    }
    .motion-ready #formats .audience-card {
        transform: translateY(28px) scale(0.99);
        transition-delay: calc(280ms + var(--format-index) * 80ms);
    }
    #formats.in-view .audience-card { transform: translateY(0) scale(1); }
}

@media (max-width: 1023px) {
    .candidate-report-layout {
        grid-template-columns: 1fr;
        gap: 88px;
    }
    .candidate-report-copy { max-width: 820px; }
    .candidate-report-principles {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }
    .candidate-report-frame {
        width: min(100%, 900px);
        margin-left: auto;
    }
}

@media (max-width: 767px) {
    .source-shell::before,
    .evaluation-matrix::before,
    .candidate-report-section::before {
        background-size: 48px 48px, 48px 48px, auto, auto;
    }

    #formats { padding-top: 88px !important; padding-bottom: 88px !important; }
    #formats .formats-heading h2 { margin-bottom: 48px; }
    .formats-title-break { display: none; }
    #candidate-report { padding-top: 88px !important; padding-bottom: 88px !important; }
    .audience-grid { gap: 14px; }
    .audience-card { min-height: 360px; padding: 28px; background-size: 36px 36px, 36px 36px, auto, auto; }
    .audience-card-head { align-items: flex-start; flex-direction: column; gap: 10px; padding-bottom: 18px; }
    .audience-card h3 { font-size: 29px; }
    .audience-card-foot { align-items: flex-start; flex-direction: column; gap: 9px; padding-top: 18px; }
    .audience-card-foot strong { max-width: none; text-align: left; }
    .candidate-report-layout { gap: 64px; }
    .candidate-report-title {
        font-size: clamp(40px, 12vw, 54px);
        line-height: 0.95;
    }
    .candidate-report-copy > p {
        font-size: 18px;
    }
    .candidate-report-principles {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 36px;
    }
    .candidate-report-privacy {
        align-items: flex-start;
        margin-top: 32px;
        line-height: 1.45;
    }
    .candidate-report-frame {
        width: 100%;
        padding: 0 10px 16px 0;
    }
    .candidate-report-paper--back {
        top: -22px;
        width: 76%;
        transform: translate3d(8px, 8px, 0);
    }
    .candidate-report-paper--signal { width: 64%; }
    .candidate-report-motion-index {
        justify-content: flex-start;
        margin-bottom: 22px;
        overflow: hidden;
        gap: 14px;
        white-space: nowrap;
    }
    .candidate-report-motion-index span { font-size: 8px; }
    .candidate-report-verified {
        top: -16px;
        left: 18px;
        padding: 8px 12px;
    }
    .candidate-report-card { padding: 26px 22px 24px; }
    .candidate-report-head {
        flex-direction: column;
        gap: 8px;
    }
    .candidate-report-summary { padding: 36px 0 24px; }
    .candidate-report-summary h3 { font-size: clamp(34px, 10.5vw, 44px); }
    .candidate-report-meta-item { padding: 14px 10px; }
    .candidate-report-meta-item strong { font-size: 12px; }
    .candidate-report-decision {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
    .candidate-report-recommendation { max-width: none; text-align: left; }
    .candidate-report-columns {
        grid-template-columns: 1fr;
    }
    .candidate-report-column + .candidate-report-column {
        padding-top: 24px;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        border-left: 0;
    }
    .candidate-report-foot {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .candidate-report-foot span:last-child { text-align: left; }
    #candidate-report.in-view .candidate-report-atmosphere { opacity: 0.48; }
    .pricing-baseline-list { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .candidate-report-atmosphere,
    .candidate-report-copy,
    .candidate-report-frame,
    .candidate-report-card,
    .candidate-report-head,
    .candidate-report-summary,
    .candidate-report-meta,
    .candidate-report-decision,
    .candidate-report-columns,
    .candidate-report-foot,
    .candidate-report-list li,
    .candidate-report-verified {
        opacity: 1 !important;
        transform: none !important;
    }

    .candidate-report-scan { display: none; }
    .candidate-report-progress-line { transform: scaleX(1) !important; }
    .candidate-report-paper--back { transform: translate3d(16px, 12px, 0) !important; }
    .candidate-report-paper--signal { transform: none !important; }
    .candidate-report-motion-index span:last-child { color: var(--signal); }
}

.pricing-card {
    position: relative;
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) auto;
    gap: clamp(18px, 2vw, 30px);
    align-items: start;
    min-height: 170px;
    padding: clamp(26px, 3vw, 40px);
    overflow: hidden;
    border: 1px solid rgba(10, 10, 10, 0.18);
    background: rgba(255, 255, 255, 0.64);
    cursor: pointer;
    touch-action: manipulation;
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    transition:
        opacity 500ms var(--ease-out),
        transform 220ms var(--ease-out),
        background-color 180ms ease,
        border-color 180ms ease,
        box-shadow 220ms var(--ease-out),
        color 180ms ease;
}

#pricing.in-view .pricing-card { opacity: 1; transform: translate3d(0, 0, 0); }
#pricing.in-view .pricing-card:nth-of-type(1) { transition-delay: 130ms; }
#pricing.in-view .pricing-card:nth-of-type(2) { transition-delay: 190ms; }
#pricing.in-view .pricing-card:nth-of-type(3) { transition-delay: 250ms; }
#pricing.pricing-motion-complete .pricing-card { transition-delay: 0ms !important; }

.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--signal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms var(--ease-out);
}

.pricing-card::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -115px;
    width: 240px;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 180ms ease, transform 220ms var(--ease-out);
    pointer-events: none;
}

.pricing-card.active {
    z-index: 1;
    border-color: #0a0a0a;
    background-color: #090909;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        radial-gradient(circle at 82% 18%, rgba(255, 77, 46, 0.13), transparent 30%),
        radial-gradient(circle at 12% 88%, rgba(199, 255, 53, 0.055), transparent 24%),
        linear-gradient(180deg, rgba(9, 9, 9, 0.04), rgba(9, 9, 9, 0.68));
    background-size: 48px 48px, 48px 48px, auto, auto, auto;
    color: var(--white);
    box-shadow: 0 26px 58px rgba(31, 27, 20, 0.2);
}

.pricing-card.active::before { transform: scaleX(1); }
.pricing-card.active::after { opacity: 1; transform: scale(1); }

.pricing-plan-index {
    color: #81817c;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.pricing-card.active .pricing-plan-index { color: var(--signal); }

.pricing-plan-title {
    margin-bottom: 12px;
    font-size: clamp(23px, 2vw, 30px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.035em;
}

.pricing-plan-copy {
    max-width: 590px;
    margin-bottom: 24px;
    color: #6d6d68;
    font-size: 14px;
    line-height: 1.55;
}

.pricing-card.active .pricing-plan-copy { color: rgba(255, 255, 255, 0.55); }

.pricing-plan-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
    color: #666661;
    font-size: 12px;
    line-height: 1.4;
}

.pricing-plan-list li {
    position: relative;
    padding-left: 18px;
}

.pricing-plan-list li::before {
    content: "/";
    position: absolute;
    left: 0;
    color: var(--signal);
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 600;
}

.pricing-card.active .pricing-plan-list { color: rgba(255, 255, 255, 0.64); }

.pricing-rate {
    position: relative;
    z-index: 1;
    padding-right: 52px;
    text-align: right;
}

.pricing-rate strong {
    display: block;
    color: var(--ink);
    font-size: clamp(38px, 3.5vw, 54px);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.pricing-rate span {
    display: block;
    margin-top: 10px;
    color: #777772;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-card.active .pricing-rate strong { color: var(--technical); }
.pricing-card.active .pricing-rate span { color: rgba(255, 255, 255, 0.4); }

.pricing-check {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--technical);
    border-radius: 999px;
    opacity: 0;
    transform: scale(0.94) rotate(-6deg);
    transition: opacity 160ms ease, transform 220ms var(--ease-out);
    position: absolute;
    top: 24px;
    right: 24px;
}

.pricing-card.active .pricing-check {
    opacity: 1;
    transform: scale(1) rotate(0);
}

.pricing-card:active { transform: scale(0.985); transition-delay: 0ms !important; }

.pricing-card:focus { outline: none; }
.pricing-card:focus-visible {
    outline: 2px solid var(--signal);
    outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
    .pricing-card:not(.active):hover {
        transform: translate3d(0, -3px, 0);
        border-color: rgba(10, 10, 10, 0.45);
    }
}

.pricing-intelligence.is-keyboard-selecting .pricing-card,
.pricing-intelligence.is-keyboard-selecting .pricing-card::before,
.pricing-intelligence.is-keyboard-selecting .pricing-card::after,
.pricing-intelligence.is-keyboard-selecting .pricing-check,
.pricing-intelligence.is-keyboard-selecting .pricing-ledger-fill {
    transition-duration: 0ms !important;
    transition-delay: 0ms !important;
}

@media (max-width: 1199px) {
    .pricing-heading { grid-template-columns: 1fr; gap: 34px; }
    .pricing-lead { max-width: 760px; }
    .pricing-layout { grid-template-columns: 1fr; }
    .pricing-console-wrap { position: relative; top: auto; }
    .pricing-console { min-height: auto; }
    .pricing-contracts { display: block; }
    .pricing-card { grid-template-columns: 48px minmax(0, 1fr); min-height: 100%; }
    .pricing-card + .pricing-card { margin-top: 18px; }
    .pricing-rate { grid-column: 2; text-align: left; }
    .pricing-check { top: 20px; right: 20px; }
}

@media (max-width: 767px) {
    .pricing-intelligence::before { background-size: 48px 48px, 48px 48px, auto, auto; }
    .pricing-heading { margin-bottom: 48px; }
    .pricing-title { font-size: clamp(39px, 12.2vw, 62px); }
    .pricing-lead { font-size: 17px; }
    .pricing-console { padding: 26px 22px; }
    .pricing-console-head { align-items: flex-start; flex-direction: column; }
    .pricing-control { padding-block: 32px 30px; }
    .pricing-control-top { align-items: flex-start; flex-direction: column; gap: 12px; }
    .pricing-formula { grid-template-columns: 1fr; }
    .pricing-result-value { font-size: clamp(48px, 16vw, 66px); }
    .pricing-console-foot { flex-direction: column; }
    .pricing-console-foot span:last-child { max-width: none; text-align: left; }
    .pricing-contracts { display: block; }
    .pricing-models-head { align-items: flex-start; flex-direction: column; gap: 8px; }
    .pricing-baseline { padding: 26px 20px; }
    .pricing-baseline-head { align-items: flex-start; flex-direction: column; gap: 12px; }
    .pricing-baseline-list { grid-template-columns: 1fr; }
    .pricing-card { grid-template-columns: 38px minmax(0, 1fr); margin-top: 14px; padding: 26px 20px; }
    .pricing-card.active { background-size: 36px 36px, 36px 36px, auto, auto, auto; }
    .pricing-plan-list { grid-template-columns: 1fr; }
    .pricing-rate { grid-column: 2; }
    .pricing-check { top: 18px; right: 18px; width: 32px; height: 32px; flex-basis: 32px; }
}

@media (max-width: 359px) {
    .pricing-title { font-size: 36px; }
    .pricing-console { padding-inline: 18px; }
    .pricing-salary { font-size: 40px; }
    .pricing-result-value { font-size: 46px; }
    .pricing-card { grid-template-columns: 1fr; }
    .pricing-plan-index { padding-right: 46px; }
    .pricing-rate { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .pricing-atmosphere,
    .pricing-heading,
    .pricing-console-wrap,
    .pricing-contracts,
    .pricing-card {
        opacity: 1 !important;
        transform: none !important;
    }

    .pricing-card,
    .pricing-card::before,
    .pricing-card::after,
    .pricing-check,
    .pricing-ledger-fill { transition-duration: 0ms !important; transition-delay: 0ms !important; }
}

/* Process journey — eight controlled decisions instead of a generic list. */
.process-journey {
    position: relative;
    isolation: isolate;
    overflow: clip;
    background: #090909;
    color: var(--white);
}

.process-journey::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        radial-gradient(circle at 78% 24%, rgba(255, 77, 46, 0.12), transparent 27%),
        radial-gradient(circle at 18% 82%, rgba(199, 255, 53, 0.055), transparent 22%);
    background-size: 72px 72px, 72px 72px, auto, auto;
    pointer-events: none;
}

.process-journey::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 9, 9, 0.12), rgba(9, 9, 9, 0.74) 74%, #090909);
    pointer-events: none;
}

.process-journey-sticky {
    position: relative;
    padding-block: clamp(96px, 8vw, 132px);
}

.process-journey-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: clamp(36px, 6vw, 96px);
    align-items: end;
    margin-bottom: clamp(44px, 5vw, 68px);
}

.process-journey-kicker {
    display: block;
    margin-bottom: 18px;
    color: var(--signal);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.process-journey-title {
    max-width: 900px;
    font-size: clamp(48px, 4.8vw, 74px);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.process-journey-title span { color: var(--signal); }

.process-journey-lead {
    max-width: 610px;
    color: rgba(255, 255, 255, 0.56);
    font-size: clamp(18px, 1.45vw, 23px);
    line-height: 1.42;
}

.process-journey-shell {
    position: relative;
    padding: clamp(28px, 3vw, 44px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(14, 14, 14, 0.94);
    box-shadow: 0 42px 110px rgba(0, 0, 0, 0.42);
}

.process-journey-shell::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 3px;
    background: var(--signal);
}

.process-watermark {
    position: absolute;
    z-index: 0;
    top: -42px;
    right: 24px;
    color: rgba(255, 255, 255, 0.035);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: clamp(170px, 16vw, 260px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.08em;
    pointer-events: none;
    user-select: none;
}

.process-signal-beam {
    position: absolute;
    z-index: 0;
    top: 10%;
    left: -180px;
    width: 260px;
    height: 80%;
    border-radius: 50%;
    background: rgba(255, 77, 46, 0.16);
    filter: blur(72px);
    opacity: 0.7;
    pointer-events: none;
    will-change: transform;
}

.process-status {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.process-status-current {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--technical);
}

.process-status-current::before {
    content: "";
    width: 7px;
    height: 7px;
    background: currentColor;
    box-shadow: 0 0 18px rgba(199, 255, 53, 0.44);
}

.process-route-progress {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    margin-bottom: 30px;
    padding-top: 18px;
}

.process-route-track,
.process-route-fill {
    position: absolute;
    top: 4px;
    left: 0;
    width: 100%;
    height: 1px;
    transform-origin: left center;
}

.process-route-track { background: rgba(255, 255, 255, 0.14); }

.process-route-fill {
    background: var(--signal);
    transform: scaleX(0);
    will-change: transform;
}

.process-route-node {
    position: relative;
    color: rgba(255, 255, 255, 0.28);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 200ms ease;
}

.process-route-node::before {
    content: "";
    position: absolute;
    top: -18px;
    left: 0;
    width: 8px;
    height: 8px;
    border: 2px solid #0e0e0e;
    background: rgba(255, 255, 255, 0.28);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
    transition: transform 220ms var(--ease-out), background-color 200ms ease, box-shadow 200ms ease;
}

.process-route-node.is-passed,
.process-route-node.is-active { color: rgba(255, 255, 255, 0.72); }

.process-route-node.is-passed::before { background: var(--signal); }

.process-route-node.is-active::before {
    background: var(--technical);
    box-shadow: 0 0 0 1px var(--technical), 0 0 20px rgba(199, 255, 53, 0.4);
    transform: scale(1.3);
}

.process-step-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.process-step-grid::after {
    content: "";
    position: absolute;
    top: 25%;
    right: -15px;
    width: 15px;
    height: 50%;
    border: 1px solid rgba(255, 77, 46, 0.36);
    border-left: 0;
    pointer-events: none;
}

.process-step {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 220px;
    flex-direction: column;
    padding: clamp(22px, 1.8vw, 30px);
    overflow: hidden;
    background: #101010;
    opacity: 0.48;
    transform: translate3d(0, 12px, 0) scale(0.988);
    transform-origin: 50% 100%;
    transition: transform 360ms var(--ease-out), opacity 240ms ease, background-color 240ms ease;
}

.process-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--signal);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 360ms var(--ease-out);
}

.process-step.is-passed {
    opacity: 0.74;
    transform: translate3d(0, 0, 0) scale(0.995);
}

.process-step.is-active {
    z-index: 3;
    background: #171717;
    opacity: 1;
    transform: translate3d(0, -7px, 0) scale(1);
}

.process-step.is-active::before { transform: scaleX(1); }

.process-step-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.process-step-number {
    color: var(--signal);
    font-size: clamp(38px, 3vw, 52px);
    font-weight: 700;
    line-height: 0.86;
    letter-spacing: -0.06em;
}

.process-step-state {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 7px;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.process-step-state::before {
    content: "";
    width: 6px;
    height: 6px;
    background: currentColor;
}

.process-step.is-active .process-step-state { color: var(--technical); }

.process-step h3 {
    margin-bottom: 12px;
    font-size: clamp(20px, 1.55vw, 26px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.process-step p {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 13px;
    line-height: 1.42;
}

.process-step-foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.32);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 7px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.process-step-foot strong {
    color: rgba(255, 255, 255, 0.66);
    font-weight: 600;
    text-align: right;
}

.process-step.is-active .process-step-foot strong { color: var(--technical); }

@media (min-width: 1560px) and (min-height: 820px) and (prefers-reduced-motion: no-preference) {
    .process-journey { min-height: 215svh; }
    .process-journey-sticky {
        position: sticky;
        top: 0;
        display: flex;
        min-height: 100svh;
        align-items: center;
        padding-block: clamp(34px, 4vh, 46px);
    }
    .process-journey-heading { margin-bottom: clamp(24px, 2.6vh, 34px); }
    .process-journey-title { font-size: clamp(46px, 4vw, 62px); }
    .process-journey-shell { padding: 24px 30px 26px; }
    .process-status { margin-bottom: 18px; }
    .process-route-progress { margin-bottom: 22px; }
    .process-step { min-height: 190px; padding: 20px 22px; }
    .process-step-head { margin-bottom: 17px; }
    .process-step-number { font-size: 42px; }
    .process-step h3 { margin-bottom: 9px; font-size: 21px; }
    .process-step p { margin-bottom: 16px; font-size: 12px; }
    .process-step-foot { padding-top: 10px; }
}

@media (min-width: 1200px) {
    .process-step:nth-child(5) { grid-row: 2; grid-column: 4; }
    .process-step:nth-child(6) { grid-row: 2; grid-column: 3; }
    .process-step:nth-child(7) { grid-row: 2; grid-column: 2; }
    .process-step:nth-child(8) { grid-row: 2; grid-column: 1; }
}

@media (max-width: 1199px) {
    .process-step-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .process-step-grid::after { display: none; }
    .process-route-node { font-size: 0; }
    .process-route-node::after {
        content: attr(data-short-label);
        font-size: 7px;
    }
}

@media (max-width: 1023px) {
    .process-journey-heading { grid-template-columns: 1fr; }
    .process-journey-lead { max-width: 760px; }
}

@media (max-width: 699px) {
    .process-journey-sticky { padding-block: 88px; }
    .process-journey-heading { gap: 28px; margin-bottom: 44px; }
    .process-journey-title { font-size: clamp(38px, 11vw, 52px); }
    .process-journey-lead { font-size: 18px; }
    .process-journey-shell { padding: 22px 20px 20px; }
    .process-status { align-items: flex-start; font-size: 7px; }
    .process-status > span:first-child { max-width: 160px; line-height: 1.45; }
    .process-route-progress { margin-bottom: 28px; }
    .process-step-grid { grid-template-columns: 1fr; }
    .process-step { min-height: auto; padding: 26px 22px; opacity: 0.76; }
    .process-step h3 { font-size: 29px; }
    .process-step p { font-size: 15px; }
    .process-watermark { top: 8px; right: 12px; font-size: 130px; }
    .process-signal-beam { width: 180px; }
}

@media (max-width: 1023px) and (max-height: 600px) {
    .process-journey-sticky { padding-block: 72px; }
    .process-journey-heading { gap: 20px; margin-bottom: 34px; }
    .process-journey-title { font-size: clamp(36px, 7vw, 48px); }
    .process-step { min-height: 210px; }
}

@media (prefers-reduced-motion: reduce) {
    .process-journey { min-height: auto; }
    .process-journey-sticky { position: relative; min-height: auto; }
    .process-step,
    .process-signal-beam { transform: none !important; }
    .process-step { opacity: 1 !important; }
    .process-route-fill { transform: scaleX(1) !important; }
}

@media (max-width: 767px) {
    .display-xl {
        font-size: clamp(32px, 10.8vw, 42px);
        line-height: 0.93;
    }

    .display-l {
        font-size: clamp(32px, 9.4vw, 44px);
        line-height: 0.97;
    }

    #roles,
    #formats,
    #process-rail,
    #pricing,
    #confidentiality,
    #lead-form {
        padding-top: 88px !important;
        padding-bottom: 88px !important;
    }

    #roles h2 { margin-bottom: 0; }

    .intro-eval {
        padding-top: 88px !important;
        padding-bottom: 64px !important;
    }

    .eval-level {
        min-height: 100svh !important;
        padding-top: 88px !important;
        padding-bottom: 88px !important;
    }

    .eval-level .grid { gap: 32px; }
    .eval-level .level-number { font-size: 64px; margin-bottom: 20px; }
    .eval-level h3 { margin-bottom: 0; }
    .eval-level p { font-size: 20px; line-height: 1.3; }
    .eval-level li { font-size: 17px; line-height: 1.4; }
    .eval-level .space-y-8 { row-gap: 24px; }

    .format-card { padding: 28px !important; }
    .format-card h3 { font-size: 26px; }

    .process-grid { gap: 56px; }
    .process-node p { font-size: 17px; line-height: 1.45; }

    #confidentiality .grid { gap: 64px; }
    #confidentiality p { font-size: 19px; }

}

@media (max-width: 359px) {
    .container-px { padding-left: 14px; padding-right: 14px; }
}

.redaction-bar {
    position: absolute;
    background: var(--ink);
    height: 1.2em;
    z-index: 1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.in-view .redaction-bar { transform: scaleX(1); }

/* PRINCIPLES / CONFIDENTIALITY */
.principles-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block: clamp(112px, 10vw, 176px);
    padding-inline: clamp(20px, 5.5vw, 80px);
    background: #090909;
    color: #f6f6f2;
}

.principles-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        radial-gradient(circle at 78% 18%, rgba(255, 77, 46, 0.12), transparent 27%),
        radial-gradient(circle at 18% 76%, rgba(199, 255, 53, 0.055), transparent 22%);
    background-size: 72px 72px, 72px 72px, auto, auto;
}

.principles-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    border-block: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(9, 9, 9, 0.06), rgba(9, 9, 9, 0.44) 72%, #090909);
    box-shadow: inset 0 1px 0 rgba(255, 77, 46, 0.18);
}

.principles-shell {
    width: min(100%, 1440px);
    margin-inline: auto;
}

.principles-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    gap: clamp(42px, 5vw, 80px);
    align-items: end;
    margin-bottom: clamp(64px, 7vw, 112px);
}

.principles-header > * { min-width: 0; }

.principles-header > :first-child {
    grid-column: 1 / -1;
}

.principles-kicker,
.principles-status,
.principles-card-index,
.principles-faq-count,
.principles-faq-label {
    font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.principles-kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: clamp(26px, 3vw, 44px);
    color: #8b8b86;
}

.principles-kicker::before {
    content: "";
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--acid);
    box-shadow: 0 0 0 7px rgba(183, 255, 42, 0.08), 0 0 22px rgba(183, 255, 42, 0.28);
}

.principles-title {
    max-width: 1280px;
    font-family: "IBM Plex Sans", Arial, sans-serif;
    font-size: clamp(56px, 6.2vw, 100px);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.065em;
    text-transform: uppercase;
}

.principles-title span {
    display: block;
    margin-top: 0.13em;
    color: var(--signal);
}

.principles-intro {
    grid-column: 2;
    align-self: end;
    max-width: 520px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.principles-intro p {
    color: rgba(246, 246, 242, 0.64);
    font-size: clamp(18px, 1.45vw, 23px);
    line-height: 1.48;
}

.principles-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 38px;
    color: rgba(246, 246, 242, 0.48);
}

.principles-status strong {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--acid);
    font: inherit;
}

.principles-status strong::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.principles-matrix {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(10, 10, 10, 0.68);
    box-shadow: 0 40px 110px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 77, 46, 0.08);
}

.principles-card {
    position: relative;
    min-height: 310px;
    padding: clamp(30px, 3vw, 46px);
    overflow: hidden;
}

.principles-card + .principles-card {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.principles-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 77, 46, 0.12), transparent 45%);
    opacity: 0;
    transition: opacity 220ms ease;
}

.principles-card-index {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 72px;
    color: var(--signal);
}

.principles-card-index::after {
    content: "";
    width: 32px;
    height: 1px;
    background: rgba(255, 255, 255, 0.32);
}

.principles-card h3 {
    max-width: 320px;
    margin-bottom: 22px;
    font-family: "IBM Plex Sans", Arial, sans-serif;
    font-size: clamp(28px, 2.35vw, 40px);
    font-weight: 650;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.principles-card p {
    max-width: 390px;
    color: rgba(246, 246, 242, 0.58);
    font-size: 17px;
    line-height: 1.5;
}

.principles-faq {
    margin-top: clamp(84px, 9vw, 144px);
}

.principles-faq-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.principles-faq-label {
    color: rgba(246, 246, 242, 0.48);
}

.principles-faq-head h3 {
    margin-top: 12px;
    font-family: "IBM Plex Sans", Arial, sans-serif;
    font-size: clamp(34px, 4vw, 64px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.principles-faq-count {
    flex: 0 0 auto;
    padding-bottom: 7px;
    color: var(--signal);
}

.principles-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.principles-faq-summary {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 44px;
    gap: 22px;
    align-items: center;
    min-height: 116px;
    padding: 25px 0;
    cursor: pointer;
    list-style: none;
    transition: color 180ms ease, background-color 180ms ease;
}

.principles-faq-summary::-webkit-details-marker { display: none; }

.principles-faq-summary:focus-visible {
    outline: 2px solid var(--acid);
    outline-offset: 6px;
}

.principles-faq-number {
    color: var(--signal);
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
}

.principles-faq-question {
    font-family: "IBM Plex Sans", Arial, sans-serif;
    font-size: clamp(22px, 2vw, 31px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.principles-faq-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    color: var(--acid);
    transition: transform 220ms cubic-bezier(0.23, 1, 0.32, 1), border-color 180ms ease;
}

.principles-faq-icon iconify-icon { font-size: 20px; }

.principles-faq-item[open] .principles-faq-icon {
    transform: rotate(45deg);
    border-color: rgba(183, 255, 42, 0.7);
}

.principles-faq-answer {
    max-width: 820px;
    margin: -2px 66px 0 74px;
    padding: 0 0 34px;
    color: rgba(246, 246, 242, 0.6);
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.58;
    animation: principles-answer-in 260ms cubic-bezier(0.23, 1, 0.32, 1) both;
}

@keyframes principles-answer-in {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.principles-header > *,
.principles-card,
.principles-faq-head,
.principles-faq-item {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 700ms ease, transform 900ms cubic-bezier(0.23, 1, 0.32, 1);
}

.principles-section.in-view .principles-header > *,
.principles-section.in-view .principles-card,
.principles-section.in-view .principles-faq-head,
.principles-section.in-view .principles-faq-item {
    opacity: 1;
    transform: translateY(0);
}

.principles-section.in-view .principles-header > :nth-child(2) { transition-delay: 90ms; }
.principles-section.in-view .principles-card:nth-child(1) { transition-delay: 120ms; }
.principles-section.in-view .principles-card:nth-child(2) { transition-delay: 180ms; }
.principles-section.in-view .principles-card:nth-child(3) { transition-delay: 240ms; }
.principles-section.in-view .principles-faq-head { transition-delay: 120ms; }
.principles-section.in-view .principles-faq-item:nth-child(2) { transition-delay: 50ms; }
.principles-section.in-view .principles-faq-item:nth-child(3) { transition-delay: 90ms; }
.principles-section.in-view .principles-faq-item:nth-child(4) { transition-delay: 130ms; }
.principles-section.in-view .principles-faq-item:nth-child(5) { transition-delay: 170ms; }

@media (hover: hover) and (pointer: fine) {
    .principles-card:hover::after { opacity: 1; }
    .principles-faq-summary:hover { color: var(--acid); }
}

@media (max-width: 1023px) {
    .principles-header {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .principles-header > :first-child,
    .principles-intro { grid-column: 1; }
    .principles-intro { max-width: 760px; }
    .principles-matrix { grid-template-columns: 1fr; }
    .principles-card { min-height: auto; }
    .principles-card + .principles-card {
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        border-left: 0;
    }
    .principles-card-index { margin-bottom: 44px; }
}

@media (max-width: 767px) {
    .principles-section {
        padding: 92px 20px !important;
    }

    .principles-section::before { background-size: 48px 48px, 48px 48px, auto, auto; }

    .principles-header { gap: 38px; margin-bottom: 56px; }
    .principles-title {
        font-size: clamp(42px, 12vw, 58px);
        line-height: 0.94;
        letter-spacing: -0.055em;
    }
    .principles-intro { padding-top: 20px; }
    .principles-intro p { font-size: 18px !important; line-height: 1.5; }
    .principles-status { align-items: flex-start; font-size: 9px; }
    .principles-status > span { max-width: 150px; }
    .principles-card { padding: 28px 24px; }
    .principles-card-index { margin-bottom: 38px; }
    .principles-card h3 { font-size: 29px; }
    .principles-card p { font-size: 16px !important; }
    .principles-faq { margin-top: 76px; }
    .principles-faq-head { align-items: flex-end; }
    .principles-faq-head h3 { font-size: 38px; }
    .principles-faq-summary {
        grid-template-columns: 36px minmax(0, 1fr) 38px;
        gap: 12px;
        min-height: 96px;
        padding: 22px 0;
    }
    .principles-faq-question { font-size: 20px; line-height: 1.2; }
    .principles-faq-icon { width: 36px; height: 36px; }
    .principles-faq-answer {
        margin: -2px 42px 0 48px;
        padding-bottom: 28px;
        font-size: 16px !important;
    }
}

@media (max-width: 359px) {
    .principles-section { padding-inline: 14px !important; }
    .principles-title { font-size: 38px; }
    .principles-status { gap: 12px; }
    .principles-card { padding-inline: 20px; }
    .principles-faq-summary { grid-template-columns: 30px minmax(0, 1fr) 34px; gap: 9px; }
    .principles-faq-question { font-size: 18px; }
    .principles-faq-icon { width: 32px; height: 32px; }
    .principles-faq-answer { margin-left: 39px; margin-right: 34px; }
}

@media (prefers-reduced-motion: reduce) {
    .principles-header > *,
    .principles-card,
    .principles-faq-head,
    .principles-faq-item,
    .principles-faq-answer {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .motion-ready * {
        opacity: 1 !important;
        transform: none !important;
        clip-path: none !important;
    }
    #spectrum-section .sticky-container {
        position: relative !important;
        display: block !important;
        height: auto !important;
        overflow: visible !important;
    }
    #spectrum-rail {
        display: block !important;
        width: 100% !important;
        transform: none !important;
        overflow: visible !important;
    }
    #spectrum-rail .spectrum-item {
        width: 100% !important;
        min-height: 100svh;
        height: auto !important;
    }
    .source-watermark { display: none !important; }
    #spectrum-section { height: auto !important; }
    .method-desktop-sticky { height: auto !important; }
    #method .sticky-container { position: relative !important; min-height: 100svh; }
    .motion-ready #method .dossier-cv,
    .motion-ready #method .dossier-folder-cover,
    .motion-ready #method .dossier-scan-line,
    .motion-ready #method .dossier-checkpoint { opacity: 0 !important; }
    .motion-ready #method .dossier-report { opacity: 1 !important; }
    #role-tree .team-main-connector,
    #role-tree .team-branch-grid::before,
    #role-tree .team-branch::before { transform: none !important; }
    .candidate-report-scan { display: none !important; }
    .candidate-report-atmosphere-motion { transform: none !important; }
    #candidate-report .candidate-report-atmosphere { opacity: 0.58 !important; }
}

@keyframes revealUp { from { transform: translateY(110%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.reveal-up { animation: revealUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards; opacity: 0; }

.container-px { padding-left: 20px; padding-right: 20px; }
@media (min-width: 768px) { .container-px { padding-left: 40px; padding-right: 40px; } }
@media (min-width: 1024px) { .container-px { padding-left: 80px; padding-right: 80px; } }

/* Lead form — a final client-brief scene in the same visual language as the site. */
.lead-section {
    position: relative;
    isolation: isolate;
    overflow: clip;
    padding-block: clamp(112px, 10vw, 176px);
    background: #f4f2ee;
    color: var(--ink);
}

.lead-section::before {
    content: "";
    position: absolute;
    z-index: -3;
    inset: 0;
    background-image:
        linear-gradient(rgba(10, 10, 10, 0.042) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 10, 10, 0.042) 1px, transparent 1px),
        radial-gradient(circle at 82% 18%, rgba(255, 77, 46, 0.12), transparent 28%),
        radial-gradient(circle at 12% 88%, rgba(199, 255, 53, 0.055), transparent 22%);
    background-size: 72px 72px, 72px 72px, auto, auto;
}

.lead-section::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    border-block: 1px solid rgba(10, 10, 10, 0.11);
    background: linear-gradient(180deg, rgba(244, 242, 238, 0.02), rgba(244, 242, 238, 0.12));
    pointer-events: none;
}

.lead-atmosphere-motion {
    position: absolute;
    z-index: -2;
    inset: -8% -6%;
    pointer-events: none;
    will-change: transform;
}

.lead-atmosphere-motion img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
    opacity: 0.72;
    filter: contrast(1.04) saturate(0.92);
}

.lead-signal-line {
    position: absolute;
    z-index: 0;
    top: 0;
    left: -24%;
    width: 24%;
    height: 2px;
    background: var(--signal);
    box-shadow: 0 0 28px rgba(255, 77, 46, 0.36);
    will-change: transform;
}

.lead-shell {
    position: relative;
    z-index: 1;
    width: min(100%, 1440px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(340px, 0.78fr) minmax(580px, 1.22fr);
    gap: clamp(56px, 7vw, 112px);
    align-items: start;
}

.lead-copy {
    position: sticky;
    top: 128px;
    min-width: 0;
}

.lead-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    color: rgba(10, 10, 10, 0.5);
    font-family: 'IBM Plex Mono', monospace;
    font-size: var(--type-label);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lead-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--technical);
    box-shadow: 0 0 0 6px rgba(199, 255, 53, 0.08), 0 0 20px rgba(199, 255, 53, 0.26);
}

.lead-title {
    max-width: 610px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: var(--type-section);
    font-weight: 700;
    line-height: 0.93;
    letter-spacing: -0.052em;
    text-transform: uppercase;
}

.lead-title span {
    display: block;
    color: var(--signal);
}

.lead-copy > p {
    max-width: 570px;
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid rgba(10, 10, 10, 0.17);
    color: rgba(10, 10, 10, 0.66);
    font-size: var(--type-lead);
    line-height: 1.45;
}

.lead-brief-steps {
    display: grid;
    gap: 13px;
    margin-top: 42px;
    color: rgba(10, 10, 10, 0.46);
    font-family: 'IBM Plex Mono', monospace;
    font-size: var(--type-micro);
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.lead-brief-step {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 14px;
    align-items: center;
}

.lead-brief-step strong {
    color: var(--signal);
    font-weight: 600;
}

.lead-brief-step span {
    padding-block: 10px;
    border-bottom: 1px solid rgba(10, 10, 10, 0.11);
}

.lead-panel {
    position: relative;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background-color: #090909;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        radial-gradient(circle at 82% 18%, rgba(255, 77, 46, 0.13), transparent 30%),
        radial-gradient(circle at 12% 88%, rgba(199, 255, 53, 0.055), transparent 24%),
        linear-gradient(180deg, rgba(9, 9, 9, 0.04), rgba(9, 9, 9, 0.68));
    background-size: 48px 48px, 48px 48px, auto, auto, auto;
    box-shadow: 0 42px 110px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 77, 46, 0.12);
}

.lead-panel::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 34%;
    height: 3px;
    background: var(--signal);
}

.lead-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px clamp(24px, 3vw, 42px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.38);
    font-family: 'IBM Plex Mono', monospace;
    font-size: var(--type-micro);
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.lead-panel-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--technical);
}

.lead-panel-status::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 14px rgba(199, 255, 53, 0.55);
}

.lead-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding: 1px;
    background: rgba(255, 255, 255, 0.11);
}

.lead-form-group {
    position: relative;
    min-width: 0;
    min-height: 144px;
    padding: 26px clamp(22px, 2.2vw, 34px) 24px;
    background: rgba(10, 10, 10, 0.56);
    transition: background-color 180ms ease, box-shadow 180ms ease;
}

.lead-form-group--wide { grid-column: 1 / -1; }
.lead-form-group--comment { min-height: 210px; }
.lead-form-group[hidden] { display: none !important; }

.lead-form-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 17px;
    color: rgba(255, 255, 255, 0.44);
    font-family: 'IBM Plex Mono', monospace;
    font-size: var(--type-label);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.lead-form-label::after {
    content: "Required";
    color: rgba(255, 77, 46, 0.76);
    font-size: var(--type-micro);
    letter-spacing: 0.08em;
}

html[lang="ru"] .lead-form-label::after { content: "Обязательно"; }

.lead-form-control-wrap {
    position: relative;
}

.lead-form-control-wrap iconify-icon {
    position: absolute;
    top: 50%;
    right: 0;
    color: rgba(255, 255, 255, 0.44);
    font-size: 19px;
    pointer-events: none;
    transform: translateY(-50%);
    transition: color 180ms ease, transform 200ms var(--ease-out);
}

.form-input {
    width: 100%;
    min-height: 48px;
    padding: 8px 34px 10px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 0;
    outline: none;
    background: transparent;
    color: var(--white);
    font: 500 var(--type-body) / 1.35 'IBM Plex Sans', sans-serif;
    transition: border-color 180ms ease, color 180ms ease;
}

textarea.form-input {
    min-height: 118px;
    padding-right: 0;
    resize: vertical;
}

select.form-input {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.form-input::placeholder { color: rgba(255, 255, 255, 0.28); }
.form-input:invalid:not(:placeholder-shown) { border-color: rgba(255, 77, 46, 0.7); }

.lead-form-group:focus-within {
    background: rgba(19, 19, 19, 0.86);
    box-shadow: inset 0 0 0 1px rgba(255, 77, 46, 0.5);
}

.lead-form-group:focus-within .form-input { border-color: var(--signal); }
.lead-form-group:focus-within .lead-form-control-wrap iconify-icon {
    color: var(--signal);
    transform: translateY(-50%) rotate(180deg);
}

.form-input:focus-visible {
    outline: 2px solid rgba(255, 77, 46, 0.78);
    outline-offset: 5px;
}

.lead-messenger-grid {
    display: grid;
    grid-template-columns: minmax(128px, 0.42fr) minmax(0, 0.58fr);
    gap: 18px;
}

.lead-submit-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 30px clamp(24px, 3vw, 42px);
    background: rgba(9, 9, 9, 0.64);
}

.lead-consent-row {
    grid-column: 1 / -1;
    padding: 22px clamp(24px, 3vw, 42px);
    background: rgba(9, 9, 9, 0.72);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lead-consent-label {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.55;
    cursor: pointer;
}

.lead-consent-label input {
    appearance: none;
    width: 22px;
    height: 22px;
    margin: 1px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.035);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: border-color 160ms ease, background-color 160ms ease, transform 140ms var(--ease-out);
}

.lead-consent-label input::after {
    content: "";
    width: 9px;
    height: 5px;
    border-left: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    opacity: 0;
    transform: rotate(-45deg) scale(0.72);
    transition: opacity 140ms ease, transform 160ms var(--ease-out);
}

.lead-consent-label input:checked { border-color: var(--technical); background: var(--technical); }
.lead-consent-label input:checked::after { opacity: 1; transform: rotate(-45deg) scale(1); }
.lead-consent-label input:active { transform: scale(0.94); }
.lead-consent-label input:focus-visible { outline: 2px solid var(--signal); outline-offset: 4px; }
.lead-consent-label a,
.lead-consent-button {
    color: var(--white);
    text-decoration: underline;
    text-decoration-color: rgba(255, 77, 46, 0.7);
    text-underline-offset: 4px;
}

.lead-consent-button { padding: 0; border: 0; background: transparent; font: inherit; cursor: pointer; }

.lead-submit-note {
    max-width: 450px;
    color: rgba(255, 255, 255, 0.44);
    font-size: var(--type-card-body);
    line-height: 1.45;
}

.lead-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 64px;
    padding: 18px 28px;
    border: 1px solid var(--signal);
    background: var(--signal);
    color: var(--white);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    transition: transform 150ms var(--ease-out), background-color 180ms ease, color 180ms ease;
}

.lead-submit-button iconify-icon { font-size: 20px; }
.lead-submit-button:active { transform: scale(0.97); }
.lead-submit-button:focus-visible { outline: 2px solid var(--technical); outline-offset: 5px; }

.lead-form-state {
    grid-column: 1 / -1;
    display: none;
    padding: 16px clamp(24px, 3vw, 42px);
    border-top: 1px solid rgba(199, 255, 53, 0.32);
    background: rgba(199, 255, 53, 0.06);
    color: var(--technical);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.5;
    text-transform: uppercase;
}

.lead-form-state.is-visible { display: block; }

.motion-ready .lead-copy > *,
.motion-ready .lead-panel {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition: opacity 700ms ease, transform 900ms var(--ease-out);
}

.lead-section.in-view .lead-copy > *,
.lead-section.in-view .lead-panel {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.lead-section.in-view .lead-copy > :nth-child(2) { transition-delay: 70ms; }
.lead-section.in-view .lead-copy > :nth-child(3) { transition-delay: 120ms; }
.lead-section.in-view .lead-copy > :nth-child(4) { transition-delay: 170ms; }
.lead-section.in-view .lead-panel { transition-delay: 110ms; }

@media (hover: hover) and (pointer: fine) {
    .lead-submit-button:hover { background: var(--white); color: var(--ink); }
    .lead-form-group:hover { background: rgba(18, 18, 18, 0.74); }
}

@media (max-width: 1099px) {
    .lead-shell { grid-template-columns: 1fr; }
    .lead-copy { position: relative; top: auto; max-width: 820px; }
    .lead-brief-steps { max-width: 610px; }
    .lead-panel { width: 100%; }
}

@media (max-width: 767px) {
    .lead-section { padding-block: 92px; }
    .lead-atmosphere-motion { inset: -2% -44%; }
    .lead-copy > p { margin-top: 26px; padding-top: 22px; }
    .lead-brief-steps { margin-top: 32px; }
    .lead-panel-head { align-items: flex-start; padding: 20px; }
    .lead-panel-head > span:first-child { max-width: 128px; }
    .lead-form { grid-template-columns: 1fr; }
    .lead-form-group,
    .lead-form-group--wide,
    .lead-consent-row,
    .lead-submit-row,
    .lead-form-state { grid-column: 1; }
    .lead-form-group { min-height: 132px; padding: 24px 20px 22px; }
    .lead-form-group--comment { min-height: 196px; }
    .lead-form-label { align-items: flex-start; gap: 10px; }
    .lead-form-label::after { font-size: 8px; }
    .lead-messenger-grid { grid-template-columns: 1fr; gap: 14px; }
    .lead-submit-row { grid-template-columns: 1fr; padding: 24px 20px; }
    .lead-submit-button { width: 100%; }
}

@media (max-width: 359px) {
    .lead-panel-head { flex-direction: column; }
    .lead-form-label::after { content: "Req."; }
    html[lang="ru"] .lead-form-label::after { content: "Обяз."; }
}

@media (max-width: 1100px) and (max-height: 620px) and (orientation: landscape) {
    .lead-section { padding-block: 82px; }
    .lead-shell { grid-template-columns: minmax(260px, 0.7fr) minmax(500px, 1.3fr); gap: 38px; }
    .lead-copy { position: sticky; top: 82px; }
    .lead-copy > p { margin-top: 22px; padding-top: 18px; }
    .lead-brief-steps { margin-top: 24px; }
    .lead-form-group { min-height: 118px; padding-block: 20px; }
    .lead-form-group--comment { min-height: 168px; }
    .lead-panel-head { padding-block: 18px; }
    .lead-submit-row { padding-block: 20px; }
}

@media (prefers-reduced-motion: reduce) {
    .lead-atmosphere-motion,
    .lead-signal-line { transform: none !important; }
    .motion-ready .lead-copy > *,
    .motion-ready .lead-panel { opacity: 1 !important; transform: none !important; }
}

/* Final brand title — no repeated navigation, only identity and direct contact. */
.site-footer {
    position: relative;
    isolation: isolate;
    overflow: clip;
    min-height: clamp(430px, 42vw, 600px);
    padding: clamp(62px, 6vw, 92px) clamp(20px, 5.55vw, 80px) 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: #090909;
    color: var(--white);
}

.site-footer::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        radial-gradient(circle at 78% 24%, rgba(255, 77, 46, 0.12), transparent 27%),
        radial-gradient(circle at 18% 82%, rgba(199, 255, 53, 0.055), transparent 22%);
    background-size: 72px 72px, 72px 72px, auto, auto;
    pointer-events: none;
}

.site-footer::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 9, 9, 0.12), rgba(9, 9, 9, 0.74) 74%, #090909);
    pointer-events: none;
}

.site-footer-media {
    position: absolute;
    z-index: -2;
    inset: -7% -4%;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
}

.site-footer-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.92;
}

.site-footer-signal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--signal);
    box-shadow: 0 0 24px rgba(255, 77, 46, 0.34);
    transform-origin: left center;
}

.site-footer-inner {
    width: min(100%, 1440px);
    min-height: clamp(330px, 31vw, 440px);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
}

.site-footer-top,
.site-footer-context,
.site-footer-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
}

.site-footer-eyebrow,
.site-footer-bottom {
    font-family: 'IBM Plex Mono', monospace;
    font-size: var(--type-label);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.52);
}

.site-footer-eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--technical);
    box-shadow: 0 0 16px rgba(199, 255, 53, 0.56);
}

.site-footer-wordmark-clip {
    margin-top: clamp(42px, 5vw, 72px);
    overflow: hidden;
}

.site-footer-wordmark {
    display: flex;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: clamp(60px, 13vw, 202px);
    font-weight: 700;
    line-height: 0.78;
    letter-spacing: -0.072em;
    white-space: nowrap;
    text-transform: uppercase;
    transform-origin: 50% 70%;
    will-change: transform;
}

.site-footer-wordmark-letter {
    display: inline-block;
    min-width: 0;
    will-change: transform, opacity;
}

.site-footer-context {
    margin-top: clamp(48px, 5vw, 76px);
    padding-top: clamp(24px, 2.4vw, 36px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer-statement {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: var(--type-lead);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.015em;
    text-transform: uppercase;
}

.site-footer-statement strong {
    color: var(--signal);
    font-weight: 600;
}

.site-footer-telegram {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 48px;
    color: var(--white);
    font-family: 'IBM Plex Mono', monospace;
    font-size: var(--type-label);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: transform 150ms var(--ease-out), color 180ms ease;
}

.site-footer-telegram iconify-icon { color: var(--signal); font-size: 20px; }
.site-footer-telegram:active { transform: scale(0.97); }
.site-footer-telegram:focus-visible { outline: 2px solid var(--technical); outline-offset: 5px; }

.site-footer-bottom {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.38);
}

.site-footer-copyright {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 11px;
    line-height: 1.6;
    letter-spacing: 0.04em;
    text-transform: none;
}

.site-footer-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px 36px;
}

.site-footer-meta a,
.site-footer-cookie-settings {
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.48);
    font: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    cursor: pointer;
    transition: color 160ms ease;
}
.site-footer-meta a:focus-visible,
.site-footer-cookie-settings:focus-visible { outline: 2px solid var(--technical); outline-offset: 5px; }

/* Legal surfaces share the technical material of the landing page. */
.legal-modal[hidden],
.cookie-consent[hidden] { display: none !important; }

.legal-modal {
    position: fixed;
    z-index: 500;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.76);
    -webkit-backdrop-filter: blur(18px) saturate(110%);
    backdrop-filter: blur(18px) saturate(110%);
}

.legal-modal-card {
    position: relative;
    width: min(860px, 100%);
    max-height: min(780px, calc(100svh - 40px));
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background-color: #090909;
    background-image: linear-gradient(rgba(255,255,255,.028) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.028) 1px,transparent 1px),radial-gradient(circle at 84% 8%,rgba(255,77,46,.16),transparent 34%);
    background-size: 44px 44px, 44px 44px, auto;
    color: var(--white);
    box-shadow: 0 48px 140px rgba(0, 0, 0, 0.6);
}

.legal-modal-head { position: sticky; z-index: 2; top: 0; display: flex; justify-content: space-between; gap: 24px; align-items: center; padding: 22px clamp(22px,4vw,42px); border-bottom: 1px solid rgba(255,255,255,.12); background: rgba(9,9,9,.94); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); }
.legal-modal-head span { color: var(--signal); font: 600 var(--type-micro)/1.3 'IBM Plex Mono',monospace; letter-spacing: .12em; text-transform: uppercase; }
.legal-modal-close { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.04); color: var(--white); font-size: 24px; cursor: pointer; transition: transform 140ms var(--ease-out),background-color 160ms ease; }
.legal-modal-close:active { transform: scale(.94); }
.legal-modal-close:focus-visible { outline: 2px solid var(--technical); outline-offset: 4px; }
.legal-modal-content { padding: clamp(30px,5vw,58px); }
.legal-modal-content h2 { max-width: 700px; margin-bottom: 28px; font-size: clamp(34px,5vw,64px); font-weight: 700; line-height: .98; letter-spacing: -.045em; text-transform: uppercase; }
.legal-modal-content h3 { margin: 28px 0 10px; color: var(--technical); font-size: 18px; }
.legal-modal-content p,
.legal-modal-content li { color: rgba(255,255,255,.68); font-size: 16px; line-height: 1.65; }
.legal-modal-content ul { margin: 12px 0 0 20px; list-style: square; }
.legal-modal-content a { color: var(--signal); text-decoration: underline; text-underline-offset: 4px; }

.cookie-consent { position: fixed; z-index: 450; right: clamp(14px,3vw,42px); bottom: clamp(14px,3vw,38px); width: min(620px,calc(100% - 28px)); border: 1px solid rgba(255,255,255,.2); background-color: rgba(9,9,9,.96); background-image: linear-gradient(rgba(255,255,255,.028) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.028) 1px,transparent 1px),radial-gradient(circle at 88% 12%,rgba(255,77,46,.17),transparent 38%); background-size: 38px 38px,38px 38px,auto; color: var(--white); box-shadow: 0 30px 100px rgba(0,0,0,.48); }
.cookie-consent::before { content: ""; position: absolute; top: -1px; left: -1px; width: 32%; height: 3px; background: var(--signal); }
.cookie-consent-inner { padding: 26px clamp(22px,3vw,34px); }
.cookie-consent-kicker { color: var(--technical); font: 600 var(--type-micro)/1.3 'IBM Plex Mono',monospace; letter-spacing: .12em; text-transform: uppercase; }
.cookie-consent h2 { margin-top: 13px; font-size: clamp(24px,3vw,34px); font-weight: 700; letter-spacing: -.035em; }
.cookie-consent p { margin-top: 12px; color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.55; }
.cookie-consent p a { color: var(--white); text-decoration: underline; text-decoration-color: var(--signal); text-underline-offset: 4px; }
.cookie-consent-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.cookie-consent-button { min-height: 50px; padding: 12px 18px; border: 1px solid rgba(255,255,255,.2); background: transparent; color: var(--white); font: 600 10px/1.2 'IBM Plex Mono',monospace; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: transform 140ms var(--ease-out),background-color 160ms ease,color 160ms ease; }
.cookie-consent-button--accept { border-color: var(--signal); background: var(--signal); }
.cookie-consent-button:active { transform: scale(.97); }
.cookie-consent-button:focus-visible { outline: 2px solid var(--technical); outline-offset: 4px; }

.motion-ready .site-footer-signal { transform: scaleX(0); transition: transform 1000ms var(--ease-out); }
.motion-ready .site-footer-wordmark-letter {
    opacity: 0.12;
    transform: translate3d(0, 112%, 0);
    transition: opacity 560ms ease, transform 920ms var(--ease-out);
}
.motion-ready .site-footer-context > *,
.motion-ready .site-footer-bottom,
.motion-ready .site-footer-top { opacity: 0; transform: translate3d(0, 18px, 0); transition: opacity 600ms ease, transform 760ms var(--ease-out); }

.site-footer.in-view .site-footer-signal { transform: scaleX(1); }
.site-footer.in-view .site-footer-wordmark-letter { opacity: 1; transform: translate3d(0, 0, 0); }
.site-footer.in-view .site-footer-wordmark-letter:nth-child(1) { transition-delay: 100ms; }
.site-footer.in-view .site-footer-wordmark-letter:nth-child(2) { transition-delay: 145ms; }
.site-footer.in-view .site-footer-wordmark-letter:nth-child(3) { transition-delay: 190ms; }
.site-footer.in-view .site-footer-wordmark-letter:nth-child(4) { transition-delay: 235ms; }
.site-footer.in-view .site-footer-wordmark-letter:nth-child(5) { transition-delay: 280ms; }
.site-footer.in-view .site-footer-wordmark-letter:nth-child(6) { transition-delay: 325ms; }
.site-footer.in-view .site-footer-wordmark-letter:nth-child(7) { transition-delay: 370ms; }
.site-footer.in-view .site-footer-wordmark-letter:nth-child(8) { transition-delay: 415ms; }
.site-footer.in-view .site-footer-wordmark {
    animation: footer-wordmark-breathe 6.8s cubic-bezier(0.45, 0, 0.55, 1) 1.45s infinite;
}
.site-footer.in-view .site-footer-wordmark-letter {
    animation: footer-wordmark-signal 8s cubic-bezier(0.45, 0, 0.55, 1) 1.55s infinite;
}
.site-footer.in-view .site-footer-wordmark-letter:nth-child(2) { animation-delay: 1.64s; }
.site-footer.in-view .site-footer-wordmark-letter:nth-child(3) { animation-delay: 1.73s; }
.site-footer.in-view .site-footer-wordmark-letter:nth-child(4) { animation-delay: 1.82s; }
.site-footer.in-view .site-footer-wordmark-letter:nth-child(5) { animation-delay: 1.91s; }
.site-footer.in-view .site-footer-wordmark-letter:nth-child(6) { animation-delay: 2s; }
.site-footer.in-view .site-footer-wordmark-letter:nth-child(7) { animation-delay: 2.09s; }
.site-footer.in-view .site-footer-wordmark-letter:nth-child(8) { animation-delay: 2.18s; }

@keyframes footer-wordmark-breathe {
    0%, 100% { transform: scale3d(1, 1, 1); }
    50% { transform: scale3d(1, 1.012, 1); }
}

@keyframes footer-wordmark-signal {
    0%, 72%, 100% { color: var(--white); }
    82% { color: rgba(255, 214, 205, 0.98); }
    90% { color: var(--white); }
}
.site-footer.in-view .site-footer-top,
.site-footer.in-view .site-footer-context > *,
.site-footer.in-view .site-footer-bottom { opacity: 1; transform: translate3d(0, 0, 0); }
.site-footer.in-view .site-footer-top { transition-delay: 80ms; }
.site-footer.in-view .site-footer-context > :nth-child(1) { transition-delay: 180ms; }
.site-footer.in-view .site-footer-context > :nth-child(2) { transition-delay: 240ms; }
.site-footer.in-view .site-footer-bottom { transition-delay: 300ms; }

@media (hover: hover) and (pointer: fine) {
    .site-footer-telegram:hover { color: var(--technical); }
    .site-footer-meta a:hover,
    .site-footer-cookie-settings:hover { color: var(--white); }
    .legal-modal-close:hover { background: rgba(255,77,46,.18); }
    .cookie-consent-button:not(.cookie-consent-button--accept):hover { background: rgba(255,255,255,.08); }
    .cookie-consent-button--accept:hover { background: #ff6246; }
}

@media (max-width: 767px) {
    .site-footer {
        min-height: 470px;
        padding-top: 58px;
        padding-bottom: 22px;
    }
    .site-footer-media { inset: -2% -72%; }
    .site-footer-top { align-items: flex-start; }
    .site-footer-wordmark-clip { margin-top: 44px; }
    .site-footer-bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
    .site-footer-copyright { max-width: 100%; font-size: 12px; line-height: 1.6; }
    .site-footer-meta { max-width: none; justify-content: flex-start; text-align: left; gap: 10px 22px; }
    .cookie-consent-actions { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
    .site-footer-wordmark { font-size: clamp(54px, 16.6vw, 68px); }
    .site-footer-eyebrow { max-width: 150px; }
    .site-footer-bottom { gap: 18px; }
}

@media (max-width: 1100px) and (max-height: 620px) and (orientation: landscape) {
    .site-footer { min-height: 410px; padding-top: 52px; }
    .site-footer-wordmark-clip { margin-top: 36px; }
}

@media (prefers-reduced-motion: reduce) {
    .site-footer-media,
    .site-footer-signal,
    .site-footer.in-view .site-footer-wordmark,
    .motion-ready .site-footer-wordmark-letter,
    .motion-ready .site-footer-bottom,
    .motion-ready .site-footer-top { opacity: 1 !important; transform: none !important; transition-duration: 1ms !important; animation: none !important; }
    .site-footer.in-view .site-footer-wordmark-letter { animation: none !important; }
}

.sticky-container { position: sticky; top: 0; height: 100vh; width: 100%; overflow: hidden; display: flex; align-items: center; }

/* SCALEFOR TYPOGRAPHY SYSTEM
   Three semantic sizes across the landing: display, title and body.
   Mono labels remain a compact interface layer, not reading copy. */
:root {
    --type-display: clamp(44px, 4.6vw, 72px);
    --type-title: clamp(24px, 1.9vw, 30px);
    --type-body: clamp(16px, 1.08vw, 18px);
    --type-hero: var(--type-display);
    --type-section: var(--type-display);
    --type-feature: var(--type-title);
    --type-card-title: var(--type-title);
    --type-lead: var(--type-body);
    --type-card-body: var(--type-body);
    --type-caption: var(--type-body);
    --type-label: 11px;
    --type-micro: 9px;
    --shadow-heading: 0 1px 0 rgba(255, 255, 255, 0.18), 0 14px 34px rgba(10, 10, 10, 0.14);
    --shadow-card-light: 0 20px 54px rgba(10, 10, 10, 0.11), 0 2px 7px rgba(10, 10, 10, 0.06);
    --shadow-card-dark: 0 26px 66px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

/* Primary display level */
.hero-headline,
.display-l,
.verticals-title,
.method-title,
.candidate-report-title,
.source-intro h2,
.team-title,
.evaluation-matrix-title,
.process-journey-title,
.pricing-title,
.principles-title,
.lead-title {
    font-family: "IBM Plex Sans", Arial, sans-serif !important;
    font-size: var(--type-display) !important;
    font-weight: 700;
    line-height: 0.94;
    letter-spacing: -0.052em;
    text-shadow: var(--shadow-heading);
}

/* Reading copy — one size for leads, card copy and supporting text */
.hero-copy p,
.verticals-intro-copy,
.audience-card-copy,
.method-step-body,
.candidate-report-copy > p,
.source-intro p,
.source-card-description,
.team-intro p,
.team-level-summary,
.evaluation-matrix-lead,
.evaluation-card-summary,
.evaluation-card-list,
.process-journey-lead,
.process-step p,
.pricing-lead,
.pricing-plan-copy,
.pricing-plan-list,
.principles-intro p,
.principles-card p,
.principles-faq-answer,
.lead-copy > p {
    font-family: "IBM Plex Sans", Arial, sans-serif !important;
    font-size: var(--type-body) !important;
    line-height: 1.5;
}

/* Card and feature title level */
.principles-faq-head h3,
.pricing-baseline-head h3,
.source-card-title,
.audience-card h3,
.method-step-title,
.team-branch h3,
.team-level-card h3,
.evaluation-card h3,
.process-step h3,
.pricing-plan-title,
.principles-card h3,
.principles-faq-question {
    font-family: "IBM Plex Sans", Arial, sans-serif !important;
    font-size: var(--type-title) !important;
    font-weight: 650;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.hero-proof { font-size: var(--type-body) !important; }

/* Section labels. Microcopy inside animated mockups is intentionally untouched. */
.text-label,
.verticals-kicker,
.source-section-label,
.method-kicker,
.candidate-report-kicker,
.evaluation-matrix-kicker,
.process-journey-kicker,
.pricing-kicker,
.principles-kicker,
.principles-faq-label,
.principles-faq-count {
    font-size: var(--type-label) !important;
    line-height: 1.35;
}

@media (min-width: 901px) {
    .verticals-band {
        grid-template-columns: minmax(500px, 0.9fr) minmax(0, 2.1fr);
    }
}

@media (max-width: 767px) {
    :root {
        --type-display: clamp(34px, 9.8vw, 44px);
        --type-title: clamp(23px, 6vw, 27px);
        --type-body: 16px;
        --type-label: 10px;
    }

    .hero-headline,
    .display-l,
    .verticals-title,
    .method-title,
    .candidate-report-title,
    .source-intro h2,
    .evaluation-matrix-title,
    .process-journey-title,
    .pricing-title,
    .principles-title {
        line-height: 0.95;
        letter-spacing: -0.047em;
    }

}

@media (max-width: 359px) {
    :root {
        --type-display: clamp(31px, 9.8vw, 36px);
        --type-title: 22px;
        --type-body: 15px;
    }
}

@media (max-width: 1100px) and (max-height: 620px) and (orientation: landscape) {
    :root {
        --type-display: clamp(34px, 5.6vw, 48px);
        --type-title: clamp(21px, 2.9vw, 27px);
        --type-body: 15px;
    }
}

/* Depth system: restrained separation without glossy UI effects. */
.site-nav__brand-wordmark,
.site-footer-wordmark {
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.07), 0 18px 42px rgba(0, 0, 0, 0.48);
}

.vertical-card,
.audience-card,
.candidate-report-card,
.spectrum-item,
.pricing-card,
.lead-panel {
    box-shadow: var(--shadow-card-light);
}

.team-level-card,
.evaluation-card,
.process-step,
.principles-matrix,
.principles-faq {
    box-shadow: var(--shadow-card-dark);
}

/* Method title needs its own Cyrillic-safe rhythm after the global type system. */
#method .method-title {
    line-height: 1.05;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

@media (max-width: 767px) {
    #method .method-title {
        line-height: 1.08;
        letter-spacing: -0.038em;
    }
}


/* Secure public intake forms */
.intake-security-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
.intake-turnstile {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    overflow: hidden;
}
.intake-turnstile iframe {
    max-width: 100%;
}
.is-submitting {
    cursor: progress;
}
.is-submitting button[type="submit"] {
    cursor: progress;
    opacity: 0.68;
}
.lead-form-state[data-status="success"],
.form-state[data-status="success"] {
    color: #aaff19;
}
.lead-form-state[data-status="error"],
.form-state[data-status="error"] {
    color: rgb(255 77 46);
}
