:root {
    --bg: #edf2f8;
    --bg-top: #f2f6fb;
    --panel: rgba(255, 255, 255, 0.74);
    --panel-strong: rgba(255, 255, 255, 0.82);

    --text: #13203b;
    --text-soft: #66758f;
    --text-faint: rgba(19, 32, 59, 0.56);
    --border: rgba(19, 32, 59, 0.10);

    --navy-1: #081120;
    --navy-2: #0f1d39;
    --navy-3: #18233d;
    --blue-deep: #253d7a;

    --lavender: #cfbfe9;
    --mint: #cfe8df;
    --yellow: #eccd66;
    --rose: #dfb5bf;
    --steel: #c7d8ee;
    --assembling: #cbe2aa;

    --shadow-soft: 0 24px 60px rgba(18, 28, 48, 0.08);
    --shadow-soft-2: 0 16px 36px rgba(18, 28, 48, 0.06);
    --shadow-deep: 0 28px 70px rgba(8, 12, 24, 0.30);

    --radius-xl: 36px;
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;

    --container: 1240px;

    --space-1: 14px;
    --space-2: 24px;
    --space-3: 40px;
    --space-4: 72px;
    --space-5: 112px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
    color: var(--text);
    text-rendering: optimizeLegibility;
    background:
        radial-gradient(circle at 0% 18%, rgba(185, 202, 239, 0.40), transparent 26%),
        radial-gradient(circle at 100% 0%, rgba(207, 194, 234, 0.30), transparent 24%),
        linear-gradient(180deg, var(--bg-top) 0%, var(--bg) 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    display: block;
    max-width: 100%;
}

.bg-orb,
.bg-grid {
    position: fixed;
    pointer-events: none;
    z-index: -2;
}

.bg-orb {
    border-radius: 999px;
    filter: blur(90px);
}

.orb-a {
    width: 320px;
    height: 320px;
    left: -80px;
    top: 180px;
    background: rgba(160, 190, 255, 0.24);
}

.orb-b {
    width: 280px;
    height: 280px;
    right: -70px;
    top: 100px;
    background: rgba(171, 145, 255, 0.18);
}

.bg-grid {
    inset: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.9) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.9) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: -3;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

.section {
    padding: var(--space-5) 0;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 0;
    backdrop-filter: blur(14px);
    background: linear-gradient(180deg, rgba(242, 246, 251, 0.82), rgba(242, 246, 251, 0.56));
    border-bottom: 1px solid rgba(19, 32, 59, 0.06);
}

.nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    min-height: 78px;
    padding: 0 6px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: -0.02em;
    justify-self: start;
    flex-shrink: 0;
}

.brand-mark {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #d9c9f1, #29428a);
    box-shadow:
        0 0 0 7px rgba(207, 191, 233, 0.18),
        0 6px 18px rgba(37, 61, 122, 0.10);
    flex-shrink: 0;
}

.brand-text {
    font-size: 15px;
    font-weight: 700;
    color: rgba(19, 32, 59, 0.94);
    flex-shrink: 0;
}

.nav-links {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-links a {
    position: relative;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.005em;
    color: rgba(19, 32, 59, 0.66);
    transition: color 180ms ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(207, 191, 233, 0.9), rgba(37, 61, 122, 0.9));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.nav-links a:hover {
    color: rgba(19, 32, 59, 0.92);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.site-header .btn-ghost {
    justify-self: end;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.005em;
    border: 1px solid transparent;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease,
        border-color 180ms ease,
        color 180ms ease;
    white-space: nowrap;
}

.btn-primary {
    color: #fff;
    background:
        radial-gradient(circle at 82% 18%, rgba(95, 124, 255, 0.22), transparent 24%),
        linear-gradient(135deg, #18233d 0%, #0f1d39 52%, #081120 100%);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 14px 28px rgba(8, 12, 24, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow:
        0 18px 34px rgba(8, 12, 24, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-secondary,
.btn-ghost {
    color: rgba(19, 32, 59, 0.92);
    background: rgba(255, 255, 255, 0.66);
    border-color: rgba(19, 32, 59, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 8px 18px rgba(18, 28, 48, 0.04);
}

.btn-secondary:hover,
.btn-ghost:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(19, 32, 59, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.76),
        0 12px 24px rgba(18, 28, 48, 0.08);
}

/* Pills / labels */

.eyebrow,
.eyebrow-dark,
.statement-insight-label,
.contrast-label,
.contrast-label-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    min-width: 0;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.eyebrow {
    background: rgba(207, 191, 233, 0.50);
    border: 1px solid rgba(19, 32, 59, 0.08);
    color: var(--text);
}

.eyebrow-dark,
.statement-insight-label,
.contrast-label-live {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 10px;
}

.contrast-card-light .contrast-label {
    background: rgba(207, 191, 233, 0.46);
    border: 1px solid rgba(19, 32, 59, 0.08);
    color: var(--text);
}

/* Dots */

.live-dot,
.insight-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #7ef0ac;
    box-shadow: 0 0 12px rgba(126, 240, 172, 0.8);
    animation: pulseDot 1.8s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.86);
        opacity: 0.65;
    }
}

/* Shared panel systems */

.light-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.68));
    border: 1px solid rgba(19, 32, 59, 0.08);
    box-shadow:
        0 24px 60px rgba(18, 28, 48, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.dark-panel {
    background:
        radial-gradient(circle at 82% 14%, rgba(95, 124, 255, 0.24), transparent 25%),
        linear-gradient(135deg, #18233d 0%, #0f1d39 52%, #081120 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: var(--shadow-deep);
}

/* Shared typography */

.statement-panel h2,
.section-head h2,
.roles-copy h2,
.cta-panel h2,
.contrast-head h2 {
    margin: 14px 0 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.028em;
    font-weight: 700;
}

.statement-panel p,
.section-head p,
.roles-copy p,
.cta-panel p,
.contrast-head p,
.action-card p,
.role-card p,
.contrast-list li {
    font-size: 17px;
    line-height: 1.58;
    letter-spacing: -0.004em;
    font-weight: 400;
    color: var(--text-soft);
}

.signal-card h3,
.statement-insight h3,
.contrast-card h3 {
    margin: 8px 0 0;
    line-height: 1.12;
    letter-spacing: -0.018em;
    font-weight: 700;
}

/* Hero */

.hero {
    padding-top: 42px;
}

.hero-copy {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    margin: 22px auto 0;
    max-width: 700px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.hero-subtitle {
    margin: 18px auto 0;
    max-width: 700px;
    font-size: 17px;
    line-height: 1.55;
    letter-spacing: -0.004em;
    color: var(--text-soft);
    font-weight: 400;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.hero-stage {
    position: relative;
    margin-top: 52px;
    min-height: 760px;
}

.video-shell {
    width: 100%;
    border-radius: var(--radius-xl);
    padding: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.72));
    border: 1px solid rgba(19, 32, 59, 0.08);
    box-shadow:
        var(--shadow-soft),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero-video {
    width: 100%;
    height: 720px;
    object-fit: cover;
    object-position: left top;
    border-radius: 24px;
    background: #f5f7fa;
    border: 1px solid rgba(19, 32, 59, 0.06);
}

.pfi-overlay {
    position: absolute;
    top: 60px;
    right: 22px;
    width: min(360px, 30%);
}

.pfi-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pfi-label {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.82);
}

.pfi-live-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 30px;
}

.pfi-card {
    border-radius: var(--radius-lg);
    padding: 18px;
    overflow: hidden;
}

/* ===== Radar scanline (только для главной карточки) ===== */

.pfi-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -30%;
    width: 16%;
    height: 100%;
    pointer-events: none;

    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(124, 154, 255, 0.06) 28%,
            rgba(207, 191, 233, 0.18) 46%,
            rgba(255, 255, 255, 0.28) 50%,
            rgba(207, 191, 233, 0.18) 54%,
            rgba(124, 154, 255, 0.06) 72%,
            rgba(255, 255, 255, 0) 100%);

    filter: blur(2px);
    opacity: 0;

    animation: pfiScanline 5s linear infinite;
}

.pfi-card,
.signal-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 14%, rgba(95, 124, 255, 0.24), transparent 25%),
        linear-gradient(135deg, #18233d 0%, #0f1d39 52%, #081120 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: var(--shadow-deep);
}

.pfi-trend {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(236, 205, 102, 0.14);
    border: 1px solid rgba(236, 205, 102, 0.22);
    color: #f2d879;
    font-size: 13px;
    font-weight: 800;
}

.pfi-value {
    margin-top: 10px;
    font-size: 68px;
    line-height: 0.98;
    letter-spacing: -0.028em;
    font-weight: 800;
    color: white;
}

.pfi-status {
    margin: 10px 0 0;
    font-size: 15px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.84);
    font-weight: 500;
}

.pfi-bar {
    margin-top: 18px;
    height: 12px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.pfi-bar-fill {
    position: relative;
    overflow: hidden;
    width: 72%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--lavender), var(--yellow), var(--rose));
    box-shadow: 0 0 24px rgba(236, 205, 102, 0.20);
    animation: meterPulse 2.8s ease-in-out infinite;
}

.pfi-bar-fill::after {
    content: "";
    position: absolute;
    top: 0;
    left: -35%;
    width: 24%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.10) 30%,
            rgba(255, 255, 255, 0.24) 50%,
            rgba(255, 255, 255, 0.10) 70%,
            rgba(255, 255, 255, 0) 100%);
    filter: blur(3px);
    animation: pfiBarShimmer 4.8s ease-in-out infinite;
}

@keyframes meterPulse {

    0%,
    100% {
        opacity: 0.92;
    }

    50% {
        opacity: 1;
    }
}

@keyframes pfiSweepMain {

    0%,
    68%,
    100% {
        transform: translateX(-160%) skewX(-14deg);
        opacity: 0;
    }

    8% {
        opacity: 0.20;
    }

    20% {
        transform: translateX(160%) skewX(-14deg);
        opacity: 0.34;
    }

    24% {
        opacity: 0;
    }
}

@keyframes pfiSweepSecondary {

    0%,
    76%,
    100% {
        transform: translateX(-170%) skewX(-14deg);
        opacity: 0;
    }

    7% {
        opacity: 0.10;
    }

    16% {
        transform: translateX(165%) skewX(-14deg);
        opacity: 0.18;
    }

    20% {
        opacity: 0;
    }
}

@keyframes pfiBarShimmer {

    0%,
    100% {
        left: -35%;
        opacity: 0;
    }

    10% {
        opacity: 0.55;
    }

    45% {
        left: 112%;
        opacity: 0.45;
    }

    55% {
        opacity: 0;
    }
}

@keyframes pfiScanline {
    0% {
        left: -18%;
        opacity: 0;
    }

    8% {
        opacity: 0.36;
    }

    60% {
        left: 102%;
        opacity: 0.28;
    }

    70% {
        opacity: 0;
    }

    100% {
        left: 102%;
        opacity: 0;
    }
}

.signal-stack {
    margin-top: 14px;
    display: grid;
    gap: 12px;
}

.signal-card {
    border-radius: 18px;
    padding: 16px;
    opacity: 0;
    transform: translateY(12px);
    transition: 500ms ease;
}

.signal-card.show {
    opacity: 1;
    transform: translateY(0);
}

.signal-type {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
}

.signal-card h3 {
    font-size: 18px;
    color: white;
}

.signal-card p {
    margin: 8px 0 0;
    font-size: 15px;
    line-height: 1.48;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
}

.hero-note {
    margin-top: 28px;
    text-align: center;
    font-size: 26px;
    line-height: 1.24;
    letter-spacing: -0.03em;
    color: var(--text-soft);
}

.hero-note strong {
    color: var(--text);
}

/* Statement / panels */

.statement-panel,
.roles-shell,
.cta-panel,
.contrast-shell {
    border-radius: 34px;
    padding: 44px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.68));
    border: 1px solid rgba(19, 32, 59, 0.08);
    box-shadow:
        0 24px 60px rgba(18, 28, 48, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.statement-split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.7fr);
    gap: 28px;
    align-items: center;
}

.statement-main h2 {
    margin: 14px 0 0;
}

.statement-insight {
    border-radius: 26px;
    padding: 24px;
    color: white;
    background:
        radial-gradient(circle at 82% 14%, rgba(95, 124, 255, 0.24), transparent 25%),
        linear-gradient(135deg, #18233d 0%, #0f1d39 52%, #081120 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: var(--shadow-deep);
}

.statement-insight p {
    margin: 8px 0 0;
    font-size: 15px;
    line-height: 1.48;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
}

/* Section head */

.section-head {
    margin-bottom: 28px;
}

/* Actions */

.actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.action-card {
    border-radius: 28px;
    padding: 32px;
    min-height: 220px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.68));
    border: 1px solid rgba(19, 32, 59, 0.08);
    box-shadow:
        0 24px 60px rgba(18, 28, 48, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.action-index {
    display: inline-flex;
    min-height: 36px;
    min-width: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(207, 191, 233, 0.60);
    font-size: 12px;
    font-weight: 800;
}

.action-card h3 {
    margin: 18px 0 0;
    font-size: 22px;
    line-height: 1.14;
    letter-spacing: -0.018em;
    font-weight: 700;
}

/* Roles */

.roles-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.role-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(19, 32, 59, 0.08);
}

.role-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 5px;
    opacity: 0.92;
}

.role-engineering {
    background: rgba(207, 232, 223, 0.55);
}

.role-engineering::before {
    background: #bfe2d6;
}

.role-procurement {
    background: rgba(236, 205, 102, 0.28);
}

.role-procurement::before {
    background: #e5c75f;
}

.role-manufacturing {
    background: rgba(199, 216, 238, 0.55);
}

.role-manufacturing::before {
    background: #b9cdea;
}

.role-assembling {
    background: rgba(203, 226, 170, 0.52);
}

.role-assembling::before {
    background: #b9d88e;
}

.role-card h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.14;
    letter-spacing: -0.016em;
    font-weight: 700;
}

/* Contrast */

.contrast-head {
    max-width: 860px;
    margin-bottom: 28px;
}

.contrast-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
}

.contrast-card {
    border-radius: 28px;
    padding: 30px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.contrast-card-light {
    background: rgba(245, 248, 252, 0.95);
    border: 1px solid rgba(19, 32, 59, 0.08);
}

.contrast-card-dark {
    justify-content: flex-start;
    padding-top: 24px;
    color: white;
    background:
        radial-gradient(circle at 82% 14%, rgba(95, 124, 255, 0.24), transparent 25%),
        linear-gradient(135deg, #18233d 0%, #0f1d39 52%, #081120 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: var(--shadow-deep);
}

.contrast-card h3 {
    margin-top: 14px;
}

.contrast-card-light h3 {
    max-width: 12ch;
    font-size: 30px;
}

.contrast-card-dark h3 {
    max-width: 16ch;
    font-size: 24px;
    line-height: 1.12;
    letter-spacing: -0.016em;
    color: white;
}

.contrast-list {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.contrast-card-dark .contrast-list {
    margin-top: 10px;
}

.contrast-list li {
    position: relative;
    padding-left: 18px;
}

.contrast-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(37, 61, 122, 0.55);
}

.contrast-list-dark li {
    color: rgba(255, 255, 255, 0.78);
}

.contrast-list-dark li::before {
    background: currentColor;
}

/* CTA */

.cta-panel {
    text-align: center;
}

.cta-panel h2,
.cta-panel p {
    margin-left: auto;
    margin-right: auto;
}

.cta-panel .btn {
    margin-top: 24px;
}

/* Reveal */

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: 700ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */

@media (max-width: 1200px) {
    .pfi-overlay {
        width: min(420px, 40%);
    }
}

@media (max-width: 1100px) {

    .statement-split,
    .actions-grid,
    .roles-grid,
    .contrast-grid {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        min-height: auto;
    }

    .hero-video {
        height: 560px;
    }

    .pfi-overlay {
        position: static;
        width: 100%;
        margin-top: 18px;
    }

    .hero-note {
        font-size: 24px;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(var(--container), calc(100% - 28px));
    }

    .site-header {
        padding-top: 0;
    }

    .nav {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 12px;
        min-height: 56px;
    }

    .nav-links {
        display: none;
    }

    .brand-text {
        font-size: 14px;
    }

    .section {
        padding: 84px 0;
    }

    .btn {
        min-height: 46px;
        font-size: 13px;
    }

    .hero h1 {
        font-size: 28px;
        max-width: 280px;
        line-height: 1.08;
        letter-spacing: -0.02em;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-actions .btn {
        width: auto;
        min-width: 240px;
        padding: 0 20px;
    }

    .hero-video {
        height: 340px;
    }

    .hero-note {
        font-size: 20px;
    }

    .statement-panel,
    .roles-shell,
    .cta-panel,
    .contrast-shell,
    .action-card,
    .contrast-card,
    .statement-insight {
        padding: 26px;
    }

    .pfi-value {
        font-size: 64px;
    }

    .signal-card h3,
    .action-card h3,
    .role-card h3,
    .contrast-card h3,
    .statement-insight h3 {
        font-size: 20px;
    }

    .site-header .btn-ghost {
        justify-self: end;
        width: auto;
        min-height: 42px;
        padding: 0 16px;
        font-size: 13px;
        white-space: nowrap;
    }
}

.site-footer {
    padding: 8px 0 30px;
}

.footer-bar {
    min-height: 72px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 0 6px;
    border-top: 1px solid rgba(19, 32, 59, 0.08);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.footer-nav a,
.footer-link,
.footer-meta p,
.footer-meta a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -0.003em;
    color: rgba(19, 32, 59, 0.58);
    transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-link:hover,
.footer-meta a:hover {
    color: rgba(19, 32, 59, 0.92);
}

.footer-right {
    display: flex;
    justify-content: flex-end;
}

.footer-meta {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-meta p {
    margin: 0;
    font-weight: 500;
}

@media (max-width: 900px) {
    .footer-bar {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px 20px;
    }

    .footer-right {
        justify-content: center;
    }

    .footer-meta {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.legal-page {
    padding-top: 72px;
}

.legal-shell {
    border-radius: 34px;
    padding: 44px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.68));
    border: 1px solid rgba(19, 32, 59, 0.08);
    box-shadow:
        0 24px 60px rgba(18, 28, 48, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.legal-head {
    margin-top: 18px;
    max-width: 760px;
}

.legal-head h1 {
    margin: 0;
    font-size: clamp(34px, 4.8vw, 54px);
    line-height: 1.04;
    letter-spacing: -0.028em;
    font-weight: 700;
}

.legal-head p {
    margin: 16px 0 0;
    font-size: 16px;
    line-height: 1.62;
    color: var(--text-soft);
    font-weight: 400;
}

.legal-card {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.legal-block {
    border-radius: 24px;
    padding: 28px;
    background: rgba(245, 248, 252, 0.95);
    border: 1px solid rgba(19, 32, 59, 0.08);
}

.legal-block h2 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.legal-block p {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.62;
    color: var(--text-soft);
    font-weight: 400;
}

.legal-block a {
    color: var(--text-soft);
}

.legal-block a:hover {
    color: var(--text);
}

@media (max-width: 980px) {
    .legal-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .legal-shell {
        padding: 26px;
    }

    .legal-head h1 {
        font-size: 34px;
    }

    .legal-head p,
    .legal-block p {
        font-size: 16px;
    }

    .legal-block {
        padding: 22px;
    }
}

.policy-content {
    margin-top: 36px;
    display: grid;
    gap: 28px;
}

.policy-section {
    padding-top: 6px;
    border-top: 1px solid rgba(19, 32, 59, 0.08);
}

.policy-section:first-child {
    border-top: none;
    padding-top: 0;
}

.policy-section h2 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.18;
    letter-spacing: -0.016em;
    font-weight: 700;
}

.policy-section h3 {
    margin: 18px 0 10px;
    font-size: 17px;
    line-height: 1.24;
    font-weight: 700;
    color: var(--text);
}

.policy-section p,
.policy-section li {
    font-size: 16px;
    line-height: 1.62;
    color: var(--text-soft);
    font-weight: 400;
}

.policy-section p {
    margin: 0 0 12px;
}

.policy-section ul {
    margin: 0 0 12px 0;
    padding-left: 22px;
}

.policy-section a {
    color: var(--text-soft);
}

.policy-section a:hover {
    color: var(--text);
}

.pricing-shell {
    border-radius: 34px;
    padding: 44px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.68));
    border: 1px solid rgba(19, 32, 59, 0.08);
    box-shadow:
        0 24px 60px rgba(18, 28, 48, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.pricing-head {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.pricing-head h2 {
    margin: 14px 0 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.028em;
    font-weight: 700;
}

.pricing-head p {
    margin: 16px auto 0;
    max-width: 760px;
    font-size: 17px;
    line-height: 1.58;
    letter-spacing: -0.004em;
    font-weight: 400;
    color: var(--text-soft);
}

.billing-toggle {
    margin: 28px auto 0;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(245, 248, 252, 0.95);
    border: 1px solid rgba(19, 32, 59, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 10px 24px rgba(18, 28, 48, 0.05);
}

.billing-btn {
    border: 0;
    background: transparent;
    color: rgba(19, 32, 59, 0.66);
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.005em;
    cursor: pointer;
    transition: 180ms ease;
}

.billing-btn.is-active {
    color: #fff;
    background:
        radial-gradient(circle at 82% 18%, rgba(95, 124, 255, 0.22), transparent 24%),
        linear-gradient(135deg, #18233d 0%, #0f1d39 52%, #081120 100%);
    box-shadow:
        0 10px 22px rgba(8, 12, 24, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.billing-save {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(19, 32, 59, 0.06);
    border: 1px solid rgba(19, 32, 59, 0.08);
    color: rgba(19, 32, 59, 0.48);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: 180ms ease;
}

.billing-save.is-active {
    background: rgba(207, 191, 233, 0.46);
    border: 1px solid rgba(19, 32, 59, 0.08);
    color: var(--text);
}

.pricing-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 520px;
    height: 100%;
    border-radius: 28px;
    padding: 30px 28px 26px;
    background: rgba(245, 248, 252, 0.95);
    border: 1px solid rgba(19, 32, 59, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 14px 28px rgba(18, 28, 48, 0.05);
}

.pricing-card-featured {
    background:
        radial-gradient(circle at 82% 14%, rgba(95, 124, 255, 0.24), transparent 25%),
        linear-gradient(135deg, #18233d 0%, #0f1d39 52%, #081120 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: var(--shadow-deep);
    transform: translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(236, 205, 102, 0.16);
    border: 1px solid rgba(236, 205, 102, 0.22);
    color: #f2d879;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.pricing-card-top {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 140px;
    align-items: flex-start;
}

.pricing-card-featured .pricing-card-top {
    padding-right: 0;
}

.pricing-plan {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(207, 191, 233, 0.46);
    border: 1px solid rgba(19, 32, 59, 0.08);
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    width: fit-content;
}

.pricing-card-featured .pricing-plan {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.84);
}

.pricing-copy {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-soft);
    font-weight: 400;
    max-width: 26ch;
}

.pricing-card-featured .pricing-copy {
    color: rgba(255, 255, 255, 0.72);
    max-width: 26ch;
}

.pricing-price,
.pricing-price-enterprise {
    display: flex;
    align-items: flex-end;
    margin-top: 8px;
    min-height: 64px;
}

.price-row {
    display: none;
    align-items: flex-end;
    gap: 8px;
}

.price-row.is-visible {
    display: flex;
}

.price-row strong {
    font-size: 46px;
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--text);
}

.price-row span {
    font-size: 14px;
    line-height: 1.35;
    color: var(--text-soft);
    font-weight: 500;
    margin-bottom: 6px;
}

.pricing-card-featured .price-row strong {
    color: #fff;
}

.pricing-card-featured .price-row span {
    color: rgba(255, 255, 255, 0.72);
}

.pricing-price-enterprise .price-row strong {
    font-size: 30px;
    line-height: 1.02;
}

.pricing-price-enterprise .price-row span {
    margin-bottom: 4px;
}

.pricing-features {
    margin: 14px 0 32px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
    flex-grow: 0;
}

.pricing-features li {
    position: relative;
    padding-left: 18px;
    font-size: 16px;
    line-height: 1.48;
    color: var(--text-soft);
    font-weight: 400;
}

.pricing-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(37, 61, 122, 0.55);
}

.pricing-card-featured .pricing-features li {
    color: rgba(255, 255, 255, 0.78);
}

.pricing-card-featured .pricing-features li::before {
    background: currentColor;
}

.pricing-btn {
    margin-top: auto;
    width: 220px;
    min-height: 46px;
    justify-content: center;
    align-self: center;
    flex-shrink: 0;
}

.pricing-note {
    margin-top: 22px;
    text-align: center;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-soft);
}

.pricing-note a {
    color: var(--text);
}

.pricing-note a:hover {
    color: var(--blue-deep);
}

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        min-height: 0;
        padding: 26px;
    }

    .pricing-card-featured {
        transform: none;
    }

    .pricing-card-featured .pricing-card-top {
        padding-right: 0;
    }

    .pricing-btn {
        margin-top: 18px;
        width: 100%;
        align-self: stretch;
    }

    .pricing-note {
        text-align: center;
    }
}

@media (max-width: 760px) {
    .pricing-shell {
        padding: 26px;
    }

    .billing-toggle {
        flex-wrap: wrap;
        justify-content: center;
    }

    .pricing-card {
        min-height: 0;
        padding: 28px 24px 24px;
        border-radius: 26px;
    }

    .pricing-card-top {
        min-height: 0;
        gap: 10px;
    }

    .pricing-card-featured .pricing-card-top {
        padding-right: 0;
    }

    .pricing-price,
    .pricing-price-enterprise {
        margin-top: 4px;
        min-height: 54;
    }

    .pricing-features {
        margin-top: 14px;
        gap: 10px;
    }

    .pricing-btn {
        margin-top: 18px;
        width: 100%;
        min-height: 46px;
        align-self: stretch;
    }

    .price-row strong {
        font-size: 40px;
    }

    .price-row span {
        margin-bottom: 4px;
    }

    .pricing-note {
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {

    .pfi-card::after,
    .pfi-bar-fill::after {
        animation: none;
        opacity: 0;
    }

    .pfi-bar-fill {
        animation: none;
    }
}