:root {
    --font-sans: "Sora", sans-serif;
    --font-serif: "Instrument Serif", serif;
    --fs-body: 1rem;
    --fs-h2: clamp(1.65rem, 3vw, 2.6rem);
    --fs-hero: clamp(2.8rem, 7vw, 6rem);
    --fs-page-hero: clamp(2.1rem, 5.2vw, 4rem);
    --lh-body: 1.65;
    --lh-tight: 1.18;
    --section-space: clamp(3.2rem, 6.6vw, 5.2rem);
    --dur-micro: 140ms;
    --dur-fast: 220ms;
    --dur-med: 360ms;
    --dur-slow: 620ms;
    --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --bg: #f4f6f2;
    --bg-soft: #edf1ea;
    --surface: #ffffff;
    --ink: #0f141a;
    --ink-soft: #394553;
    --line: rgba(12, 19, 28, 0.12);
    --accent: #0a84ff;
    --accent-strong: #0056b5;
    --accent-warm: #ff8a36;
    --accent-soft: #e8f3ff;
    --accent-warm-soft: #fff1e4;
    --accent-ink-soft: #e9eef5;
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --shadow-soft: 0 18px 40px rgba(18, 30, 44, 0.12);
    --shadow-strong: 0 24px 52px rgba(18, 30, 44, 0.2);
}

* {
    box-sizing: border-box;
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.btn:focus-visible {
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.16);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: var(--fs-body);
    background: linear-gradient(180deg, #f8fbff 0%, #f7f8fa 100%);
    color: var(--ink);
    line-height: var(--lh-body);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    width: min(1180px, 92vw);
    margin-inline: auto;
}

.site-header .container {
    width: min(1360px, 95vw);
}

.ambient-shape {
    position: fixed;
    z-index: -1;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.4;
    pointer-events: none;
}

.ambient-shape-a {
    width: 440px;
    height: 440px;
    top: -160px;
    left: -100px;
    background: radial-gradient(circle at 30% 30%, rgba(10, 132, 255, 0.34), transparent 70%);
    will-change: transform;
}

.ambient-shape-b {
    width: 420px;
    height: 420px;
    right: -140px;
    top: 240px;
    background: radial-gradient(circle at 40% 40%, rgba(255, 138, 54, 0.26), transparent 70%);
    will-change: transform;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 120;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: color-mix(in srgb, var(--bg), transparent 20%);
    border-bottom: 1px solid rgba(12, 19, 28, 0.08);
    transition:
        background var(--dur-fast) var(--ease-standard),
        border-color var(--dur-fast) var(--ease-standard),
        box-shadow var(--dur-fast) var(--ease-standard),
        backdrop-filter var(--dur-med) var(--ease-standard),
        -webkit-backdrop-filter var(--dur-med) var(--ease-standard);
    overflow: visible;
}

.site-header.is-scrolled {
    background: color-mix(in srgb, var(--bg), #ffffff 24%);
    border-bottom-color: rgba(12, 19, 28, 0.14);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6), 0 8px 24px rgba(12, 19, 28, 0.09);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.top-note {
    margin: 0;
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-wrap: balance;
    text-transform: uppercase;
    color: rgba(236, 243, 250, 0.96);
    padding: 0.6rem 1rem;
    background: linear-gradient(90deg, #0f141a, #163251 55%, #0f141a);
}

.nav-wrap {
    min-height: 88px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: clamp(2.4rem, 6vw, 8rem);
    position: relative;
    overflow: visible;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    min-width: 0;
    overflow: visible;
    transform-origin: left center;
    animation: none;
}

.brand img {
    width: auto;
    height: 56px;
    max-width: none;
    object-fit: contain;
    will-change: auto;
    animation: none;
    transition: none;
    filter: none;
}

.brand:hover img {
    transform: none;
    filter: none;
}

.nav-links {
    margin-left: 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(1.15rem, 1.7vw, 2rem);
}

.nav-links a {
    font-size: 0.95rem;
    white-space: nowrap;
    color: #324251;
    position: relative;
    transition: color var(--dur-micro) var(--ease-standard);
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--ink);
    border-radius: 1px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--dur-fast) var(--ease-spring);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
    transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a.is-active {
    color: var(--ink);
}

.nav-links a.btn::after {
    display: none;
}

.nav-toggle {
    display: none;
    margin-left: auto;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    padding: 0;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    margin: 6px auto;
    transition: transform var(--dur-fast) var(--ease-standard), opacity var(--dur-fast) var(--ease-standard);
}

main {
    padding-bottom: 3.5rem;
}

.hero-copy h1,
.page-hero h1,
.section-head h2,
.final-cta h2,
.article-body h2,
.panel h3,
.service-card h3,
.case-card h3 {
    letter-spacing: -0.01em;
}

.hero {
    display: grid;
    grid-template-columns: 1.07fr 0.93fr;
    gap: clamp(2.2rem, 5.5vw, 4.6rem);
    align-items: start;
    padding: clamp(3.4rem, 8.6vw, 7rem) 0 4.1rem;
}

.eyebrow {
    margin: 0 0 0.9rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #305273;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.eyebrow::before {
    content: "";
    width: 18px;
    height: 2px;
    border-radius: 1px;
    background: linear-gradient(90deg, var(--accent), var(--accent-warm));
    flex-shrink: 0;
}

.hero-copy h1 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: var(--fs-hero);
    font-weight: 400;
    line-height: 0.94;
    text-wrap: balance;
}

.hero-sub {
    margin: 1.1rem 0 0;
    max-width: 52ch;
    color: var(--ink-soft);
    font-size: clamp(1.02rem, 1.6vw, 1.2rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.8rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.93rem;
    font-weight: 600;
    min-height: 48px;
    padding: 0.9rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition:
        transform var(--dur-fast) var(--ease-spring),
        box-shadow var(--dur-med) var(--ease-standard),
        border-color var(--dur-fast) var(--ease-standard),
        background var(--dur-fast) var(--ease-standard);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn i {
    transition: transform var(--dur-fast) var(--ease-spring);
}

.btn:hover i {
    transform: translateX(3px);
}

.btn-primary {
    color: #f7fbff;
    background: linear-gradient(120deg, #0f141a, #273240);
    box-shadow: 0 12px 24px rgba(15, 20, 26, 0.24);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(15, 20, 26, 0.26);
}

.btn-ghost {
    border-color: var(--line);
    background: color-mix(in srgb, var(--surface), transparent 10%);
    color: var(--ink);
}

.btn-ghost:hover {
    border-color: rgba(12, 19, 28, 0.24);
    background: var(--surface);
    box-shadow: 0 4px 12px rgba(18, 30, 44, 0.06);
}

.btn-compact {
    font-size: 0.87rem;
    min-height: 44px;
    padding: 0.68rem 1.08rem;
    color: #f7fbff;
    background: linear-gradient(120deg, var(--accent), var(--accent-strong));
    box-shadow: 0 8px 18px rgba(10, 132, 255, 0.24);
}

.nav-links .btn-compact {
    margin-left: clamp(1.2rem, 2.4vw, 2.2rem);
    position: relative;
}

.nav-links .btn-compact::before {
    content: "";
    position: absolute;
    left: calc(clamp(1.2rem, 2.4vw, 2.2rem) * -0.52);
    top: 50%;
    width: 1px;
    height: 22px;
    border-radius: 999px;
    background: rgba(12, 19, 28, 0.12);
    transform: translateY(-50%);
}

.hero-meta {
    list-style: none;
    margin: 1.6rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.hero-meta li {
    font-size: 0.86rem;
    color: #253445;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.5rem 0.85rem;
    background: color-mix(in srgb, var(--surface), transparent 8%);
}

.hero-meta strong {
    color: var(--ink);
    margin-right: 0.3rem;
}

.hero-personas {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.persona-card {
    border-radius: 28px;
    border: 1px solid rgba(12, 19, 28, 0.08);
    box-shadow: var(--shadow-soft);
    padding: 1.3rem;
}

.persona-card-blue {
    background: linear-gradient(180deg, rgba(10, 132, 255, 0.14), rgba(255, 255, 255, 0.94));
}

.persona-card-warm {
    background: linear-gradient(180deg, rgba(255, 145, 77, 0.18), rgba(255, 255, 255, 0.94));
}

.persona-label {
    margin: 0;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #305273;
}

.persona-card h2 {
    margin: 0.55rem 0 0;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1;
    letter-spacing: -0.03em;
}

.persona-card p:last-of-type {
    margin: 0.58rem 0 0;
    color: var(--ink-soft);
    font-size: 0.94rem;
}

.persona-card .text-link {
    margin-top: 0.9rem;
}

.hero-visual {
    position: relative;
    display: grid;
    align-content: start;
    gap: 0.8rem;
    background: linear-gradient(160deg, rgba(10, 132, 255, 0.22), rgba(15, 20, 26, 0.03));
    border: 1px solid rgba(10, 132, 255, 0.26);
    border-radius: var(--radius-xl);
    padding: 1rem;
    box-shadow: var(--shadow-strong);
    will-change: transform;
}

.hero-visual img {
    border-radius: calc(var(--radius-xl) - 10px);
    min-height: clamp(360px, 46vw, 520px);
    object-fit: cover;
}

.proof-badge {
    margin: 0;
    position: static;
    z-index: auto;
    color: #edf3f8;
    background: rgba(15, 20, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-align: center;
    padding: 0.48rem 0.75rem;
}

.hero-artifact,
.work-artifact {
    position: relative;
    border-radius: calc(var(--radius-xl) - 6px);
    border: 1px solid rgba(12, 19, 28, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 246, 251, 0.96));
    box-shadow: 0 18px 34px rgba(17, 28, 40, 0.12);
    overflow: hidden;
}

.work-artifact {
    border-radius: 22px;
    align-self: start;
}

.work-artifact-dark {
    background: linear-gradient(150deg, #0f141a, #18222d 65%, #223446);
    border-color: rgba(255, 255, 255, 0.12);
    color: #eef4f9;
}

.proof-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.78rem 0.95rem;
    border-bottom: 1px solid rgba(12, 19, 28, 0.08);
    background: rgba(255, 255, 255, 0.82);
}

.work-artifact-dark .proof-toolbar,
.flagship-board .proof-toolbar {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.proof-toolbar-left {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 0;
}

.proof-toolbar p,
.proof-toolbar span {
    margin: 0;
}

.proof-toolbar p {
    font-size: 0.82rem;
    font-weight: 600;
    color: #2b3d50;
}

.proof-toolbar span {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #637789;
}

.work-artifact-dark .proof-toolbar p,
.flagship-board .proof-toolbar p,
.work-artifact-dark .proof-toolbar span,
.flagship-board .proof-toolbar span {
    color: rgba(239, 245, 251, 0.8);
}

.proof-dots {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
}

.proof-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(12, 19, 28, 0.16);
}

.work-artifact-dark .proof-dots span,
.flagship-board .proof-dots span {
    background: rgba(255, 255, 255, 0.22);
}

.proof-canvas {
    display: grid;
    gap: 0.95rem;
    padding: 1rem;
}

.proof-canvas-split {
    grid-template-columns: minmax(0, 1.08fr) minmax(210px, 0.92fr);
}

.proof-browser {
    border-radius: 22px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(12, 19, 28, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.proof-browser-dark {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.proof-mini-label {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #496986;
}

.proof-browser h3 {
    margin: 0.52rem 0 0;
    font-size: clamp(1.2rem, 2.1vw, 1.7rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
}

.proof-browser-dark .proof-mini-label,
.proof-browser-dark h3,
.work-artifact-dark .proof-mini-label,
.work-artifact-dark h3,
.flagship-board .proof-mini-label,
.flagship-board h3 {
    color: #eef4f9;
}

.proof-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.9rem;
}

.proof-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0.38rem 0.68rem;
    border-radius: 999px;
    border: 1px solid rgba(12, 19, 28, 0.08);
    background: rgba(245, 249, 253, 0.96);
    font-size: 0.76rem;
    color: #26415a;
}

.proof-browser-dark .proof-pills span,
.work-artifact-dark .proof-pills span,
.flagship-board .proof-pills span {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(239, 245, 251, 0.86);
}

.proof-lines {
    display: grid;
    gap: 0.55rem;
    margin-top: 1rem;
}

.proof-lines span {
    display: block;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(44, 74, 101, 0.18), rgba(44, 74, 101, 0.08));
}

.proof-lines span:nth-child(1) {
    width: 84%;
}

.proof-lines span:nth-child(2) {
    width: 100%;
}

.proof-lines span:nth-child(3) {
    width: 72%;
}

.proof-lines span:nth-child(4) {
    width: 91%;
}

.proof-browser-dark .proof-lines span,
.work-artifact-dark .proof-lines span,
.flagship-board .proof-lines span {
    background: linear-gradient(90deg, rgba(239, 245, 251, 0.18), rgba(239, 245, 251, 0.06));
}

.proof-stack-grid {
    display: grid;
    gap: 0.75rem;
}

.proof-kpi {
    border-radius: 18px;
    padding: 0.88rem 0.92rem;
    background: rgba(12, 19, 28, 0.04);
    border: 1px solid rgba(12, 19, 28, 0.08);
}

.proof-kpi-dark {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.proof-kpi strong,
.proof-kpi span {
    display: block;
}

.proof-kpi strong {
    font-size: clamp(1.25rem, 2.3vw, 1.85rem);
    line-height: 1;
}

.proof-kpi span {
    margin-top: 0.32rem;
    font-size: 0.8rem;
    color: #4c6174;
}

.proof-kpi-dark strong,
.proof-kpi-dark span,
.work-artifact-dark .proof-kpi strong,
.work-artifact-dark .proof-kpi span,
.flagship-board .proof-kpi strong,
.flagship-board .proof-kpi span {
    color: rgba(239, 245, 251, 0.88);
}

.proof-ledger {
    margin-top: 0.4rem;
    margin-bottom: 1.8rem;
}

.proof-ledger-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 1.2rem;
    align-items: end;
    margin-bottom: 1.15rem;
}

.proof-ledger-head h2 {
    margin: 0.28rem 0 0;
    font-size: clamp(1.55rem, 3.2vw, 2.4rem);
    line-height: 1;
    max-width: 12ch;
}

.proof-ledger-copy {
    margin: 0;
    color: #5c6d7d;
    max-width: 40ch;
}

.proof-ledger-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.proof-ledger-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
    padding: 1.1rem;
}

.proof-ledger-card::before,
.proof-summary-card::before,
.client-ledger-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-warm));
}

.proof-ledger-card:nth-child(1),
.client-ledger-card:nth-child(1),
.proof-summary-card:nth-child(1) {
    background: linear-gradient(160deg, rgba(232, 243, 255, 0.96), rgba(255, 255, 255, 0.94));
}

.proof-ledger-card:nth-child(2),
.client-ledger-card:nth-child(2),
.proof-summary-card:nth-child(2) {
    background: linear-gradient(160deg, rgba(255, 244, 234, 0.96), rgba(255, 255, 255, 0.94));
}

.proof-ledger-card:nth-child(3),
.client-ledger-card:nth-child(3),
.proof-summary-card:nth-child(3) {
    background: linear-gradient(160deg, rgba(235, 241, 248, 0.96), rgba(255, 255, 255, 0.94));
}

.proof-ledger-label {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4f6984;
    font-weight: 700;
}

.proof-ledger-card h3 {
    margin: 0.45rem 0 0;
    font-size: 1.08rem;
    line-height: 1.28;
}

.proof-ledger-card p {
    margin: 0.48rem 0 0;
    color: var(--ink-soft);
    font-size: 0.86rem;
}

.proof-ledger-card strong {
    display: block;
    margin-top: 0.78rem;
    font-size: 1rem;
    color: #163f6e;
}

.proof-ledger-card .text-link,
.client-ledger-card .text-link {
    display: inline-block;
    margin-top: 0.72rem;
    color: #1c4467;
    font-size: 0.87rem;
    font-weight: 600;
}

.proof-ledger-card-accent {
    background: linear-gradient(145deg, rgba(15, 20, 26, 0.96), rgba(31, 44, 58, 0.92));
    border-color: rgba(255, 255, 255, 0.08);
    color: #edf3f8;
}

.proof-ledger-card-accent p,
.proof-ledger-card-accent strong,
.proof-ledger-card-accent .text-link {
    color: rgba(237, 243, 248, 0.88);
}

.section {
    padding-top: var(--section-space);
}

.section-band {
    margin-top: 0.35rem;
    padding: clamp(1.45rem, 3.4vw, 2.2rem);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(12, 19, 28, 0.08);
    box-shadow: var(--shadow-soft);
}

.section-band-blue {
    background: linear-gradient(145deg, rgba(232, 243, 255, 0.96), rgba(255, 255, 255, 0.94));
}

.section-band-blue-soft {
    background: linear-gradient(145deg, rgba(242, 248, 255, 0.96), rgba(255, 255, 255, 0.94));
}

.section-band-warm {
    background: linear-gradient(145deg, rgba(255, 243, 232, 0.96), rgba(255, 255, 255, 0.94));
}

.section + .section {
    padding-top: calc(var(--section-space) * 0.58);
}

.hero + .section,
.page-hero + .section {
    padding-top: calc(var(--section-space) * 0.46);
}

.section-head h2 {
    margin: 0;
    font-size: var(--fs-h2);
    font-weight: 700;
    line-height: var(--lh-tight);
    max-width: 16ch;
    text-wrap: balance;
}

.flagship-shell {
    margin-top: 1.65rem;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.15rem;
    padding: clamp(1.2rem, 3vw, 1.75rem);
    border: 1px solid rgba(12, 19, 28, 0.1);
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(233, 240, 247, 0.85));
    box-shadow: var(--shadow-soft);
}

.flagship-kicker {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3d5f80;
}

.flagship-story h3 {
    margin: 0.7rem 0 0;
    font-size: clamp(1.7rem, 3.2vw, 2.65rem);
    line-height: 1.02;
    font-family: var(--font-serif);
    font-weight: 400;
    max-width: 14ch;
}

.flagship-lead {
    margin: 1rem 0 0;
    max-width: 56ch;
    color: var(--ink-soft);
}

.flagship-metrics {
    margin-top: 1.3rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.flagship-metric-card {
    border-radius: 20px;
    padding: 0.95rem 1rem;
    background: rgba(15, 20, 26, 0.04);
    border: 1px solid rgba(12, 19, 28, 0.08);
}

.flagship-metric-value {
    display: block;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1;
    font-weight: 700;
    color: var(--ink);
}

.flagship-metric-label {
    display: block;
    margin-top: 0.38rem;
    font-size: 0.82rem;
    color: #57697b;
}

.flagship-notes {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.flagship-artifact-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.flagship-artifact {
    border-radius: 18px;
    padding: 0.95rem 1rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(12, 19, 28, 0.08);
}

.flagship-artifact h4 {
    margin: 0.48rem 0 0;
    font-size: 0.98rem;
    line-height: 1.25;
}

.flagship-artifact p:last-child {
    margin: 0.42rem 0 0;
    color: var(--ink-soft);
}

.flagship-note {
    border-radius: 18px;
    padding: 0.95rem 1rem;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(12, 19, 28, 0.08);
}

.flagship-note-label {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #3a5d80;
}

.flagship-note p:last-child {
    margin: 0.48rem 0 0;
    color: var(--ink-soft);
}

.flagship-board {
    border-radius: 28px;
    padding: 1.15rem;
    background:
        radial-gradient(circle at top right, rgba(255, 138, 54, 0.2), transparent 30%),
        linear-gradient(150deg, #0f141a, #18222d 64%, #223446);
    color: #eef4f9;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 52px rgba(15, 20, 26, 0.22);
}

.flagship-board-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.flagship-board-head p,
.flagship-board-head span {
    margin: 0;
}

.flagship-board-head p {
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.flagship-board-head span {
    font-size: 0.72rem;
    color: rgba(239, 245, 251, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.flagship-score-row {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.flagship-score {
    border-radius: 20px;
    padding: 0.95rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.flagship-score span,
.flagship-score small {
    display: block;
}

.flagship-score span {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(239, 245, 251, 0.66);
}

.flagship-score strong {
    display: block;
    margin-top: 0.35rem;
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
}

.flagship-score small {
    margin-top: 0.35rem;
    color: rgba(239, 245, 251, 0.8);
}

.flagship-stage-grid {
    margin-top: 0.9rem;
    display: grid;
    gap: 0.7rem;
}

.flagship-stage-card {
    border-radius: 18px;
    padding: 0.9rem 1rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.22rem 0.9rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.flagship-stage-card span {
    grid-row: 1 / span 2;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
}

.flagship-stage-card strong {
    font-size: 0.95rem;
}

.flagship-stage-card p {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(239, 245, 251, 0.72);
}

.flagship-stage-card.is-current {
    background: linear-gradient(120deg, rgba(10, 132, 255, 0.22), rgba(255, 138, 54, 0.12));
    border-color: rgba(10, 132, 255, 0.34);
}

.flagship-chart {
    margin-top: 1rem;
    display: grid;
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.flagship-chart-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 0.8rem;
    align-items: end;
}

.flagship-chart-row span {
    font-size: 0.78rem;
    color: rgba(239, 245, 251, 0.72);
}

.flagship-bars {
    height: 78px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: end;
    gap: 0.45rem;
}

.flagship-bars i {
    display: block;
    border-radius: 999px 999px 10px 10px;
    background: linear-gradient(180deg, rgba(10, 132, 255, 0.96), rgba(10, 132, 255, 0.28));
}

.flagship-bars-reverse i {
    background: linear-gradient(180deg, rgba(255, 138, 54, 0.9), rgba(255, 138, 54, 0.24));
}

.flagship-board-caption {
    margin: 0.8rem 0 0;
    font-size: 0.76rem;
    color: rgba(239, 245, 251, 0.62);
}

.service-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.05rem;
}

.service-card {
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    padding: 1.15rem;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-soft);
    transition:
        transform var(--dur-med) var(--ease-out-expo),
        border-color var(--dur-med) var(--ease-standard),
        box-shadow var(--dur-med) var(--ease-out-expo);
}

.service-card:nth-child(1),
.problem-card:nth-child(1),
.offer-card:nth-child(1),
.proof-stat:nth-child(1) {
    background: linear-gradient(155deg, rgba(232, 243, 255, 0.94), rgba(255, 255, 255, 0.92));
}

.service-card:nth-child(2),
.problem-card:nth-child(2),
.offer-card:nth-child(2),
.proof-stat:nth-child(2) {
    background: linear-gradient(155deg, rgba(255, 244, 234, 0.94), rgba(255, 255, 255, 0.92));
}

.service-card:nth-child(3),
.problem-card:nth-child(3),
.offer-card:nth-child(3),
.proof-stat:nth-child(3) {
    background: linear-gradient(155deg, rgba(235, 241, 248, 0.94), rgba(255, 255, 255, 0.92));
}

.service-card i {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(10, 132, 255, 0.2), rgba(255, 138, 54, 0.24));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #163757;
    transition: transform var(--dur-med) var(--ease-spring);
}

.service-card:hover i {
    transform: translateY(-2px) scale(1.06);
}

.service-card h3 {
    margin: 0.88rem 0 0.45rem;
    font-size: 1.04rem;
    line-height: 1.35;
}

.service-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.service-card:hover {
    transform: translateY(-3px) scale(1.008);
    border-color: rgba(10, 132, 255, 0.32);
    box-shadow:
        0 18px 40px rgba(20, 34, 48, 0.14),
        0 0 0 1px rgba(10, 132, 255, 0.08);
}

.case-grid {
    margin-top: 1.6rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.05rem;
}

.case-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
    transition:
        transform var(--dur-med) var(--ease-out-expo),
        border-color var(--dur-med) var(--ease-standard),
        box-shadow var(--dur-med) var(--ease-out-expo);
}

.case-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.case-artifact {
    min-height: 220px;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(252, 253, 255, 0.96), rgba(240, 246, 251, 0.96));
    border-bottom: 1px solid rgba(12, 19, 28, 0.08);
}

.case-artifact h4 {
    margin: 0.52rem 0 0;
    font-size: 1.02rem;
    line-height: 1.18;
}

.case-artifact .proof-lines {
    margin-top: 0.9rem;
}

.case-artifact-dark {
    background: linear-gradient(150deg, #0f141a, #18222d 65%, #223446);
    color: #eef4f9;
    border-color: rgba(255, 255, 255, 0.1);
}

.case-artifact-dark h4,
.case-artifact-dark .proof-mini-label {
    color: #eef4f9;
}

.case-body {
    padding: 1.05rem 1.05rem 1.15rem;
}

.case-tag {
    margin: 0;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2a5276;
    font-weight: 600;
}

.case-card h3 {
    margin: 0.45rem 0 0;
    font-size: 1rem;
    line-height: 1.38;
}

.case-metric {
    margin: 0.7rem 0 0;
    font-size: 0.86rem;
    font-weight: 600;
    color: #1b4a74;
}

.case-card:hover {
    transform: translateY(-3px) scale(1.008);
    border-color: rgba(10, 132, 255, 0.2);
    box-shadow:
        0 18px 40px rgba(20, 34, 48, 0.14),
        0 0 0 1px rgba(10, 132, 255, 0.06);
}

.case-note {
    margin: 0.8rem 0 0;
    font-size: 0.8rem;
    color: #536578;
}

.framework-shell {
    margin-top: 0.5rem;
    border-radius: var(--radius-xl);
    padding: clamp(1.3rem, 3vw, 2.2rem);
    background:
        radial-gradient(circle at right top, rgba(255, 138, 54, 0.18), transparent 22%),
        linear-gradient(155deg, #0f141a, #1e2a37);
    color: #edf3f8;
    border: 1px solid rgba(255, 255, 255, 0.14);
    position: relative;
    overflow: hidden;
}

.framework-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 1.35rem;
    align-items: end;
}

.framework-intro {
    margin: 0;
    color: rgba(241, 246, 251, 0.76);
}

.framework-layout {
    margin-top: 1.4rem;
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.framework-rail {
    display: grid;
    gap: 0.75rem;
}

.framework-step {
    width: 100%;
    text-align: left;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #edf3f8;
    padding: 0.95rem 1rem;
    cursor: pointer;
    transition:
        transform var(--dur-fast) var(--ease-spring),
        border-color var(--dur-fast) var(--ease-standard),
        background var(--dur-fast) var(--ease-standard),
        box-shadow var(--dur-med) var(--ease-standard);
}

.framework-step:hover {
    transform: translateY(-1px);
    border-color: rgba(10, 132, 255, 0.28);
}

.framework-step.is-active,
.framework-step[aria-selected="true"] {
    background: linear-gradient(130deg, rgba(10, 132, 255, 0.2), rgba(255, 138, 54, 0.08));
    border-color: rgba(10, 132, 255, 0.34);
    box-shadow: 0 12px 28px rgba(5, 15, 25, 0.18);
}

.framework-step-index,
.framework-step-days,
.framework-step strong,
.framework-step small {
    display: block;
}

.framework-step-index {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    font-weight: 700;
}

.framework-step-days {
    margin-top: 0.8rem;
    font-size: 0.72rem;
    color: rgba(241, 246, 251, 0.66);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.framework-step strong {
    margin-top: 0.34rem;
    font-size: 1rem;
}

.framework-step small {
    margin-top: 0.22rem;
    color: rgba(241, 246, 251, 0.75);
    font-size: 0.82rem;
}

.framework-panel {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    padding: clamp(1rem, 2.4vw, 1.4rem);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: opacity var(--dur-fast) var(--ease-standard), transform var(--dur-fast) var(--ease-standard);
}

.framework-panel.is-swapping {
    opacity: 0.82;
    transform: translateY(3px);
}

.framework-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.framework-panel-days {
    margin: 0;
    font-size: 0.76rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(241, 246, 251, 0.66);
}

.framework-panel-badge {
    border-radius: 999px;
    padding: 0.32rem 0.65rem;
    font-size: 0.72rem;
    color: #ebf4fd;
    background: rgba(10, 132, 255, 0.18);
    border: 1px solid rgba(10, 132, 255, 0.24);
}

.framework-panel h3 {
    margin: 0.7rem 0 0;
    font-size: clamp(1.5rem, 3vw, 2.35rem);
    line-height: 1.04;
    font-family: var(--font-serif);
    font-weight: 400;
    max-width: 14ch;
}

.framework-panel-copy {
    margin: 0.9rem 0 0;
    color: rgba(241, 246, 251, 0.8);
    max-width: 58ch;
}

.framework-stat-grid {
    margin-top: 1.15rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.framework-stat-card {
    border-radius: 18px;
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.framework-stat-card strong {
    display: block;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    line-height: 1;
}

.framework-stat-card p {
    margin: 0.35rem 0 0;
    color: rgba(241, 246, 251, 0.74);
    font-size: 0.82rem;
}

.framework-output-block,
.framework-rule-block {
    margin-top: 1rem;
}

.framework-mini-label {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a9c7e3;
}

.framework-output-chips {
    margin-top: 0.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.framework-output-chips span {
    border-radius: 999px;
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
    color: #ebf4fd;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.framework-rule-copy {
    margin: 0.55rem 0 0;
    font-size: 1rem;
    color: rgba(241, 246, 251, 0.86);
}

.framework-panel-cta {
    margin-top: 1.15rem;
    align-self: flex-start;
}

.process-block {
    margin-top: 0.5rem;
    border-radius: var(--radius-xl);
    padding: clamp(1.3rem, 3vw, 2.2rem);
    background: linear-gradient(155deg, #0f141a, #1e2a37);
    color: #edf3f8;
    border: 1px solid rgba(255, 255, 255, 0.14);
    position: relative;
    overflow: hidden;
}

.process-block::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -100px;
    bottom: -110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 132, 255, 0.3), transparent 70%);
}

.section-head-dark .eyebrow {
    color: #a8c4e2;
}

.section-head-dark h2 {
    color: #f3f7fb;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.3rem;
    position: relative;
    z-index: 1;
}

.step-grid::before {
    content: "";
    position: absolute;
    top: calc(0.95rem + 17px);
    left: calc(12.5% + 0.95rem);
    right: calc(12.5% + 0.95rem);
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.08),
        rgba(10, 132, 255, 0.24) 20%,
        rgba(10, 132, 255, 0.24) 80%,
        rgba(255, 255, 255, 0.08)
    );
    z-index: 0;
}

.step-card {
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    padding: 0.95rem;
    backdrop-filter: blur(8px);
}

.step-card span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 132, 255, 0.35), rgba(255, 138, 54, 0.28));
    font-size: 0.8rem;
    font-weight: 700;
}

.step-card h3 {
    margin: 0.72rem 0 0.3rem;
    font-size: 0.98rem;
    line-height: 1.35;
}

.step-card p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(241, 246, 251, 0.8);
}

.final-cta {
    margin-top: 0.5rem;
    border: 1px solid rgba(12, 19, 28, 0.13);
    background:
        radial-gradient(circle at top left, rgba(10, 132, 255, 0.12), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255, 138, 54, 0.12), transparent 24%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(229, 237, 245, 0.88));
    border-radius: var(--radius-xl);
    padding: clamp(1.65rem, 4vw, 2.9rem);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.6rem;
    align-items: center;
    box-shadow: var(--shadow-soft);
}

.final-cta h2 {
    margin: 0;
    font-size: clamp(1.45rem, 2.6vw, 2.3rem);
    line-height: 1.2;
    max-width: 22ch;
}

.final-cta p {
    margin: 0.68rem 0 0;
    color: var(--ink-soft);
}

.final-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.82rem;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: color-mix(in srgb, #edf2f6, transparent 4%);
}

.footer-grid {
    padding: 2.2rem 0 1.5rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 1.2rem;
}

.footer-brand {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 1.7rem;
    line-height: 1;
}

.footer-grid p {
    margin-top: 0;
    color: #2f3f51;
}

.footer-title {
    margin: 0 0 0.55rem;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4a5f74;
}

.footer-grid a {
    display: block;
    margin-bottom: 0.44rem;
    color: #203245;
    font-size: 0.92rem;
    transition:
        color var(--dur-micro) var(--ease-standard),
        transform var(--dur-fast) var(--ease-spring);
}

.footer-grid a:hover {
    color: var(--accent-strong);
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid var(--line);
    text-align: center;
    padding: 0.85rem 1rem;
}

.footer-bottom p {
    margin: 0;
    color: #324151;
    font-size: 0.85rem;
}

.page-hero {
    padding: clamp(3rem, 7.2vw, 5.4rem) 0 1.8rem;
}

.page-hero-box {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(235, 242, 248, 0.88));
    box-shadow: var(--shadow-soft);
    padding: clamp(1.65rem, 3.8vw, 2.8rem);
}

.page-hero-box.page-hero-proof {
    background: linear-gradient(145deg, rgba(232, 243, 255, 0.96), rgba(255, 255, 255, 0.94));
}

.page-hero-box.page-hero-service {
    background: linear-gradient(145deg, rgba(255, 243, 232, 0.96), rgba(255, 255, 255, 0.94));
}

.page-hero-box.page-hero-manifesto {
    background: linear-gradient(145deg, rgba(235, 241, 248, 0.96), rgba(255, 255, 255, 0.94));
}

.page-hero .eyebrow {
    margin-bottom: 0.5rem;
}

.page-hero h1 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: var(--fs-page-hero);
    line-height: 0.98;
    max-width: 16ch;
}

.page-hero p {
    margin: 0.85rem 0 0;
    max-width: 58ch;
    color: var(--ink-soft);
}

.consultation-page .ambient-shape {
    display: none;
}

.consultation-hero {
    padding: clamp(2.8rem, 6vw, 5rem) 0 0;
}

.consultation-hero-shell {
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(255, 138, 54, 0.16), transparent 24%),
        #040506;
    color: #f4f6f8;
    padding: clamp(2rem, 5vw, 4rem);
    box-shadow: 0 28px 60px rgba(6, 9, 12, 0.34);
}

.consultation-micro {
    margin: 0;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(244, 246, 248, 0.72);
}

.consultation-hero-shell h1 {
    margin: 0.65rem 0 0;
    max-width: 9ch;
    font-family: var(--font-sans);
    font-size: clamp(3rem, 8vw, 6.9rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.consultation-lead {
    margin: 1rem 0 0;
    max-width: 26ch;
    font-size: clamp(1.12rem, 2vw, 1.4rem);
    color: rgba(244, 246, 248, 0.82);
}

.consultation-hero-shell .hero-actions {
    margin-top: 1.55rem;
}

.consultation-hero-shell .btn-primary {
    background: linear-gradient(120deg, var(--accent-warm), #db4e15);
    box-shadow: 0 12px 30px rgba(255, 138, 54, 0.24);
}

.consultation-hero-shell .btn-ghost {
    background: transparent;
    border-color: rgba(244, 246, 248, 0.14);
    color: #f4f6f8;
}

.consultation-hero-shell .btn-ghost:hover {
    border-color: rgba(244, 246, 248, 0.24);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
}

.consultation-trust {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.consultation-trust li {
    border-radius: 999px;
    border: 1px solid rgba(244, 246, 248, 0.1);
    background: rgba(255, 255, 255, 0.04);
    padding: 0.72rem 1rem;
    font-size: 0.9rem;
    color: rgba(244, 246, 248, 0.86);
}

.consultation-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.05rem;
}

.consultation-card {
    border-radius: 28px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    padding: clamp(1.35rem, 3vw, 1.8rem);
}

.consultation-card-warm {
    background: linear-gradient(145deg, rgba(255, 244, 233, 0.92), rgba(255, 250, 245, 0.96));
}

.consultation-card-cool {
    background: linear-gradient(145deg, rgba(233, 244, 255, 0.92), rgba(248, 251, 255, 0.96));
}

.consultation-card h2 {
    margin: 0.42rem 0 0;
    font-size: clamp(1.85rem, 3vw, 2.6rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.consultation-list {
    margin-top: 1rem;
}

.consultation-list li {
    font-size: 0.98rem;
}

.consultation-booking-shell {
    display: grid;
    grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
    gap: 1.15rem;
    align-items: start;
}

.consultation-booking-copy {
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(233, 240, 248, 0.72));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    padding: clamp(1.35rem, 3vw, 1.9rem);
}

.consultation-booking-copy h2 {
    margin: 0.45rem 0 0;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.consultation-booking-copy p:not(.eyebrow) {
    margin: 0.82rem 0 0;
    max-width: 28ch;
    color: var(--ink-soft);
}

.consultation-booking-note {
    font-size: 0.9rem;
    font-weight: 600;
    color: #22374d;
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.96fr);
    gap: 1.15rem;
    align-items: start;
}

.detail-board {
    border-radius: 24px;
    padding: 1.1rem;
    border: 1px solid rgba(12, 19, 28, 0.08);
    box-shadow: var(--shadow-soft);
}

.detail-board-dark {
    background: linear-gradient(155deg, #0f141a, #1f2b39);
    border-color: rgba(255, 255, 255, 0.1);
    color: #edf3f8;
}

.detail-board-light {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(232, 239, 246, 0.84));
}

.detail-board-kicker {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: #4f6984;
}

.detail-board-dark .detail-board-kicker {
    color: #a8c4e2;
}

.detail-board-title {
    margin: 0.42rem 0 0;
    font-size: clamp(1.35rem, 2.5vw, 1.95rem);
    line-height: 1.04;
    font-family: var(--font-serif);
    font-weight: 400;
}

.detail-board-grid {
    margin-top: 0.95rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.detail-board-card {
    border-radius: 18px;
    padding: 0.9rem;
    background: rgba(15, 20, 26, 0.04);
    border: 1px solid rgba(12, 19, 28, 0.08);
}

.detail-board-dark .detail-board-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.detail-board-card strong,
.detail-board-card span,
.detail-board-card small {
    display: block;
}

.detail-board-card strong {
    font-size: 1.4rem;
    line-height: 1;
}

.detail-board-card span {
    margin-top: 0.32rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #22384d;
}

.detail-board-dark .detail-board-card span {
    color: #eef4f9;
}

.detail-board-card small {
    margin-top: 0.28rem;
    font-size: 0.76rem;
    color: #617487;
}

.detail-board-dark .detail-board-card small {
    color: rgba(239, 245, 251, 0.74);
}

.detail-board-list {
    margin: 0.95rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.detail-board-list li {
    position: relative;
    padding-left: 1rem;
    font-size: 0.88rem;
    color: var(--ink-soft);
}

.detail-board-dark .detail-board-list li {
    color: rgba(239, 245, 251, 0.82);
}

.detail-board-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #236598;
    position: absolute;
    top: 0.56rem;
    left: 0;
}

.detail-board-dark .detail-board-list li::before {
    background: #8abef2;
}

.service-detail-grid {
    margin-top: 1.3rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.service-detail-card {
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
    padding: 1.08rem;
}

.service-detail-card h3 {
    margin: 0;
    font-size: 1.04rem;
    line-height: 1.28;
}

.service-detail-card p {
    margin: 0.48rem 0 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.artifact-shell {
    border-radius: 28px;
    padding: clamp(1.2rem, 2.8vw, 1.7rem);
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(233, 240, 247, 0.84));
    box-shadow: var(--shadow-soft);
}

.artifact-shell-dark {
    background: linear-gradient(155deg, #0f141a, #1f2c39);
    border-color: rgba(255, 255, 255, 0.1);
    color: #edf3f8;
}

.artifact-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
}

.artifact-title {
    margin: 0.3rem 0 0;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    line-height: 1.02;
    font-family: var(--font-serif);
    font-weight: 400;
}

.artifact-copy {
    margin: 0;
    max-width: 42ch;
    color: var(--ink-soft);
}

.artifact-shell-dark .artifact-copy {
    color: rgba(239, 245, 251, 0.78);
}

.artifact-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.artifact-card {
    border-radius: 20px;
    padding: 0.95rem 1rem;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(12, 19, 28, 0.08);
}

.artifact-shell-dark .artifact-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.artifact-card h3 {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.26;
}

.artifact-card p {
    margin: 0.45rem 0 0;
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.artifact-shell-dark .artifact-card p {
    color: rgba(239, 245, 251, 0.78);
}

.artifact-card strong {
    display: block;
    font-size: 1.28rem;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.artifact-chip-row {
    margin-top: 0.62rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.artifact-chip-row span {
    border-radius: 999px;
    padding: 0.42rem 0.72rem;
    font-size: 0.78rem;
    color: #214263;
    border: 1px solid rgba(12, 19, 28, 0.08);
    background: rgba(255, 255, 255, 0.84);
}

.artifact-shell-dark .artifact-chip-row span {
    color: #edf3f8;
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.08);
}

.article-proof-board {
    margin: 0 0 1rem;
    border-radius: 22px;
    padding: 1rem;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(232, 239, 246, 0.82));
    box-shadow: var(--shadow-soft);
}

.article-proof-board-dark {
    background: linear-gradient(155deg, #0f141a, #1f2b39);
    border-color: rgba(255, 255, 255, 0.1);
    color: #edf3f8;
}

.article-proof-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: start;
}

.article-proof-top p,
.article-proof-top span {
    margin: 0;
}

.article-proof-top span {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #587089;
}

.article-proof-board-dark .article-proof-top span {
    color: rgba(239, 245, 251, 0.68);
}

.article-proof-top p {
    font-size: 0.9rem;
    font-weight: 600;
}

.article-proof-grid {
    margin-top: 0.85rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.article-proof-card {
    border-radius: 18px;
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(12, 19, 28, 0.08);
}

.article-proof-board-dark .article-proof-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.article-proof-card strong,
.article-proof-card span,
.article-proof-card small {
    display: block;
}

.article-proof-card strong {
    font-size: 1.28rem;
    line-height: 1;
}

.article-proof-card span {
    margin-top: 0.3rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #22384d;
}

.article-proof-board-dark .article-proof-card span {
    color: #edf3f8;
}

.article-proof-card small {
    margin-top: 0.28rem;
    font-size: 0.76rem;
    color: #617487;
}

.article-proof-board-dark .article-proof-card small {
    color: rgba(239, 245, 251, 0.74);
}

.article-proof-list {
    margin: 0.9rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.article-proof-list li {
    position: relative;
    padding-left: 1rem;
    color: var(--ink-soft);
    font-size: 0.87rem;
}

.article-proof-board-dark .article-proof-list li {
    color: rgba(239, 245, 251, 0.8);
}

.article-proof-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #236598;
    position: absolute;
    top: 0.56rem;
    left: 0;
}

.article-proof-board-dark .article-proof-list li::before {
    background: #8abef2;
}

.page-hero-proof,
.page-hero-service,
.page-hero-manifesto {
    display: grid;
    gap: 1.15rem;
    align-items: start;
}

.page-hero-proof {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
}

.page-hero-service,
.page-hero-manifesto {
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
}

.hero-proof-aside,
.manifesto-points {
    display: grid;
    gap: 0.8rem;
}

.hero-proof-stat,
.manifesto-point,
.service-decision-note {
    border-radius: 22px;
    border: 1px solid rgba(12, 19, 28, 0.08);
    background: rgba(255, 255, 255, 0.72);
    padding: 1rem 1.05rem;
}

.hero-proof-stat span,
.hero-proof-stat strong,
.hero-proof-stat small,
.manifesto-point strong,
.manifesto-point span {
    display: block;
}

.hero-proof-stat span {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4f6984;
}

.hero-proof-stat strong {
    margin-top: 0.36rem;
    font-size: 1.6rem;
    line-height: 1;
}

.hero-proof-stat small {
    margin-top: 0.34rem;
    color: #5d7185;
}

.manifesto-point strong {
    font-size: 0.98rem;
}

.manifesto-point span {
    margin-top: 0.34rem;
    color: var(--ink-soft);
}

.service-decision-note {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(232, 239, 246, 0.72));
}

.service-decision-list {
    margin: 0.7rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.62rem;
}

.service-decision-list li {
    color: var(--ink-soft);
    padding-left: 1rem;
    position: relative;
}

.service-decision-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #236598;
    position: absolute;
    top: 0.62rem;
    left: 0;
}

.section-copy {
    margin: 0.78rem 0 0;
    max-width: 60ch;
    color: var(--ink-soft);
}

.cards-grid {
    margin-top: 1.2rem;
    display: grid;
    gap: 1.05rem;
}

.cards-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.problem-grid {
    margin-top: 1.4rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.05rem;
}

.problem-card {
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
    padding: 1.15rem;
    transition:
        transform var(--dur-med) var(--ease-out-expo),
        border-color var(--dur-med) var(--ease-standard),
        box-shadow var(--dur-med) var(--ease-out-expo);
}

.problem-card:hover {
    transform: translateY(-3px) scale(1.008);
    border-color: rgba(10, 132, 255, 0.22);
    box-shadow:
        0 18px 40px rgba(20, 34, 48, 0.14),
        0 0 0 1px rgba(10, 132, 255, 0.06);
}

.problem-label {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4f6984;
    font-weight: 700;
}

.problem-card h3 {
    margin: 0.72rem 0 0;
    font-size: 1.04rem;
    line-height: 1.32;
}

.problem-card p {
    margin: 0.55rem 0 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.problem-card .text-link,
.offer-card .text-link {
    display: inline-block;
    margin-top: 0.7rem;
    color: #1c4467;
    font-size: 0.87rem;
    font-weight: 600;
}

.offer-grid {
    margin-top: 1.4rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.05rem;
}

.offer-card {
    border-radius: 22px;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(236, 242, 248, 0.82));
    box-shadow: var(--shadow-soft);
    padding: 1.2rem;
    transition:
        transform var(--dur-med) var(--ease-out-expo),
        border-color var(--dur-med) var(--ease-standard),
        box-shadow var(--dur-med) var(--ease-out-expo);
}

.offer-card:hover {
    transform: translateY(-3px);
    border-color: rgba(10, 132, 255, 0.22);
}

.offer-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.offer-fit {
    font-size: 0.75rem;
    color: #52677c;
}

.offer-card h3 {
    margin: 0.56rem 0 0;
    font-size: 1.12rem;
    line-height: 1.3;
}

.offer-card p {
    margin: 0.52rem 0 0;
    color: var(--ink-soft);
}

.conviction-shell {
    margin-top: 0.7rem;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1.15rem;
}

.conviction-quote,
.conviction-card,
.proof-stat,
.standard-card {
    border-radius: 24px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.conviction-quote {
    padding: clamp(1.25rem, 3vw, 2rem);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(232, 239, 246, 0.82));
}

.conviction-quote h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3.5vw, 2.8rem);
    line-height: 1.02;
    font-family: var(--font-serif);
    font-weight: 400;
    max-width: 14ch;
}

.conviction-quote p:last-child {
    margin: 0.95rem 0 0;
    max-width: 58ch;
    color: var(--ink-soft);
}

.conviction-list {
    display: grid;
    gap: 1rem;
}

.conviction-card {
    padding: 1.1rem 1.12rem;
    background: rgba(255, 255, 255, 0.9);
}

.conviction-card h3 {
    margin: 0.5rem 0 0;
    font-size: 1.05rem;
    line-height: 1.32;
}

.conviction-card p:last-child {
    margin: 0.44rem 0 0;
    color: var(--ink-soft);
}

.proof-band-grid {
    margin-top: 1.4rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.05rem;
}

.proof-stat {
    padding: 1.1rem;
    background: linear-gradient(155deg, #0f141a, #1d2a37);
    border-color: rgba(255, 255, 255, 0.12);
    color: #edf3f8;
}

.proof-stat strong {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1;
}

.proof-stat p {
    margin: 0.52rem 0 0;
    color: rgba(239, 245, 251, 0.78);
    font-size: 0.9rem;
}

.proof-band-grid .proof-stat {
    border-color: rgba(24, 38, 54, 0.08);
    color: var(--ink-strong);
    box-shadow: 0 18px 40px rgba(17, 28, 39, 0.08);
}

.proof-band-grid .proof-stat:nth-child(1) {
    background: linear-gradient(155deg, rgba(223, 239, 255, 0.98), rgba(255, 255, 255, 0.96));
}

.proof-band-grid .proof-stat:nth-child(2) {
    background: linear-gradient(155deg, rgba(255, 234, 214, 0.98), rgba(255, 255, 255, 0.96));
}

.proof-band-grid .proof-stat:nth-child(3) {
    background: linear-gradient(155deg, rgba(232, 239, 247, 0.98), rgba(255, 255, 255, 0.96));
}

.proof-band-grid .proof-stat strong {
    color: var(--ink-strong);
}

.proof-band-grid .proof-stat p {
    color: var(--ink-soft);
}

.standards-grid {
    margin-top: 1.4rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.05rem;
}

.standard-card {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.9);
}

.standard-card h3 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    line-height: 1.16;
    max-width: 18ch;
}

.refusal-card {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.86), rgba(245, 238, 232, 0.92));
}

.panel {
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
    padding: 1.12rem;
}

.panel h3 {
    margin: 0;
    font-size: 1.04rem;
    line-height: 1.35;
}

.panel p {
    margin: 0.55rem 0 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.panel a.text-link {
    display: inline-block;
    margin-top: 0.64rem;
    color: #1c4467;
    font-size: 0.87rem;
    font-weight: 600;
}

.split-layout {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 1.15rem;
}

.list-clean {
    margin: 0.7rem 0 0;
    padding: 0;
    list-style: none;
}

.list-clean li {
    margin-top: 0.58rem;
    padding-left: 1.05rem;
    position: relative;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.list-clean li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #236598;
    position: absolute;
    top: 0.58rem;
    left: 0;
}

.article-grid {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.05rem;
}

.article-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
    transition:
        transform var(--dur-med) var(--ease-out-expo),
        border-color var(--dur-med) var(--ease-standard),
        box-shadow var(--dur-med) var(--ease-out-expo);
}

.article-card:hover {
    transform: translateY(-3px) scale(1.008);
    border-color: rgba(10, 132, 255, 0.2);
    box-shadow:
        0 18px 40px rgba(20, 34, 48, 0.14),
        0 0 0 1px rgba(10, 132, 255, 0.06);
}

.article-card img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.article-card-body {
    padding: 1.02rem 1.02rem 1.08rem;
}

.article-card .case-tag {
    margin-bottom: 0.42rem;
}

.article-card h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.38;
}

.article-card p {
    margin: 0.52rem 0 0;
    font-size: 0.88rem;
    color: var(--ink-soft);
}

.archive-shell {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.78fr);
    gap: 1.1rem;
    align-items: start;
}

.archive-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
    gap: 1.1rem;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.archive-feature-media {
    min-height: 100%;
}

.archive-feature-media img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
}

.archive-feature-body {
    padding: clamp(1.1rem, 3vw, 1.7rem);
}

.archive-feature-body h2 {
    margin: 0.45rem 0 0;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    line-height: 0.98;
    letter-spacing: -0.02em;
}

.archive-feature-body p {
    margin: 0.62rem 0 0;
    color: var(--ink-soft);
    max-width: 42ch;
}

.archive-feature-body .hero-actions {
    margin-top: 1rem;
}

.archive-rail {
    display: grid;
    gap: 1rem;
}

.archive-note {
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
    padding: 1.08rem;
}

.archive-note h3 {
    margin: 0.4rem 0 0;
    font-size: 1.05rem;
    line-height: 1.3;
}

.archive-note p {
    margin: 0.48rem 0 0;
    color: var(--ink-soft);
    font-size: 0.89rem;
}

.archive-note .text-link {
    display: inline-block;
    margin-top: 0.75rem;
}

.editorial-ledger {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    gap: 1.1rem;
    align-items: start;
}

.editorial-list {
    display: grid;
    gap: 0.78rem;
}

.editorial-entry {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr) auto;
    gap: 0.9rem;
    align-items: start;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
    padding: 1rem 1.05rem;
}

.editorial-entry-meta span,
.editorial-entry-meta small {
    display: block;
}

.editorial-entry-meta span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #416281;
}

.editorial-entry-meta small {
    margin-top: 0.38rem;
    font-size: 0.78rem;
    color: #738596;
}

.editorial-entry-body h3 {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.32;
}

.editorial-entry-body p {
    margin: 0.4rem 0 0;
    font-size: 0.89rem;
    color: var(--ink-soft);
}

.editorial-entry-link {
    align-self: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1b4f7e;
    white-space: nowrap;
}

.editorial-side {
    display: grid;
    gap: 1rem;
}

.editorial-note-card {
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
    padding: 1.1rem;
}

.editorial-note-card h3 {
    margin: 0.42rem 0 0;
    font-size: 1.16rem;
    line-height: 1.24;
}

.editorial-note-card-dark {
    background: linear-gradient(150deg, #0f141a, #18222d 65%, #223446);
    border-color: rgba(255, 255, 255, 0.12);
    color: #eef4f9;
}

.editorial-note-card-dark h3,
.editorial-note-card-dark .problem-label,
.editorial-note-card-dark li {
    color: #eef4f9;
}

.constraint-links {
    display: grid;
    gap: 0.58rem;
    margin-top: 0.95rem;
}

.constraint-links a {
    display: block;
    padding: 0.72rem 0.82rem;
    border-radius: 14px;
    border: 1px solid rgba(12, 19, 28, 0.08);
    background: rgba(247, 250, 253, 0.94);
    color: #22496a;
    font-size: 0.87rem;
    font-weight: 600;
}

.issue-tally {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.72rem;
    margin-top: 0.95rem;
}

.issue-tally article {
    border-radius: 16px;
    padding: 0.8rem 0.78rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.issue-tally strong,
.issue-tally span {
    display: block;
}

.issue-tally strong {
    font-size: 1.3rem;
    line-height: 1;
}

.issue-tally span {
    margin-top: 0.28rem;
    font-size: 0.76rem;
    color: rgba(239, 245, 251, 0.76);
}

.proof-summary-grid {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.05rem;
}

.proof-summary-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
    padding: 1.08rem;
}

.proof-summary-card strong,
.proof-summary-card span,
.proof-summary-card small {
    display: block;
}

.proof-summary-card strong {
    font-size: clamp(1.6rem, 2.8vw, 2.25rem);
    line-height: 1;
}

.proof-summary-card:nth-child(1) {
    background: linear-gradient(180deg, rgba(10, 132, 255, 0.12), rgba(255, 255, 255, 0.92));
}

.proof-summary-card:nth-child(2) {
    background: linear-gradient(180deg, rgba(255, 145, 77, 0.14), rgba(255, 255, 255, 0.92));
}

.proof-summary-card:nth-child(3) {
    background: linear-gradient(180deg, rgba(66, 184, 131, 0.12), rgba(255, 255, 255, 0.92));
}

.proof-summary-card:nth-child(4) {
    background: linear-gradient(180deg, rgba(15, 20, 26, 0.08), rgba(255, 255, 255, 0.92));
}

.proof-summary-card span {
    margin-top: 0.34rem;
    color: #20364c;
    font-size: 0.85rem;
    font-weight: 700;
}

.proof-summary-card small {
    margin-top: 0.3rem;
    color: #5f7488;
    font-size: 0.78rem;
}

.client-ledger {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.client-ledger-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
    padding: 1.05rem;
}

.client-ledger-card:nth-child(1) {
    background: linear-gradient(180deg, rgba(10, 132, 255, 0.12), rgba(255, 255, 255, 0.92));
}

.client-ledger-card:nth-child(2) {
    background: linear-gradient(180deg, rgba(255, 145, 77, 0.16), rgba(255, 255, 255, 0.92));
}

.client-ledger-card:nth-child(3) {
    background: linear-gradient(180deg, rgba(15, 20, 26, 0.08), rgba(255, 255, 255, 0.92));
}

.client-ledger-card:nth-child(4) {
    background: linear-gradient(180deg, rgba(10, 132, 255, 0.08), rgba(255, 255, 255, 0.92));
}

.client-ledger-card h3 {
    margin: 0.45rem 0 0;
    font-size: 1.04rem;
    line-height: 1.28;
}

.client-ledger-card p:last-child {
    margin: 0.5rem 0 0;
    color: var(--ink-soft);
    font-size: 0.86rem;
}

.work-stack {
    display: grid;
    gap: 1.1rem;
}

.work-case {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1.1rem;
    align-items: start;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
    padding: clamp(1.1rem, 3vw, 1.45rem);
}

.work-case.reverse .work-case-media {
    order: 2;
}

.work-case.reverse .work-case-body {
    order: 1;
}

.work-case-media {
    position: relative;
    display: grid;
    align-content: start;
    gap: 0.78rem;
    align-self: start;
}

.result-panel {
    border-radius: 28px;
    border: 1px solid rgba(12, 19, 28, 0.08);
    box-shadow: var(--shadow-soft);
    padding: 1.15rem;
}

.result-panel-blue {
    background: linear-gradient(180deg, rgba(10, 132, 255, 0.14), rgba(255, 255, 255, 0.96));
}

.result-panel-warm {
    background: linear-gradient(180deg, rgba(255, 145, 77, 0.18), rgba(255, 255, 255, 0.96));
}

.result-panel-ink {
    background: linear-gradient(180deg, rgba(15, 20, 26, 0.08), rgba(255, 255, 255, 0.96));
}

.result-panel-label {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #305273;
}

.result-panel h3 {
    margin: 0.55rem 0 0;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.result-panel-grid {
    margin-top: 0.95rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
}

.result-panel-card {
    border-radius: 18px;
    border: 1px solid rgba(12, 19, 28, 0.08);
    background: rgba(255, 255, 255, 0.74);
    padding: 0.85rem;
}

.result-panel-card strong,
.result-panel-card span {
    display: block;
}

.result-panel-card strong {
    font-size: clamp(1.2rem, 2.4vw, 1.7rem);
    line-height: 1;
}

.result-panel-card span {
    margin-top: 0.32rem;
    color: #324e68;
    font-size: 0.78rem;
    font-weight: 600;
}

.result-panel-note {
    margin: 0.85rem 0 0;
    color: #4d647b;
    font-size: 0.84rem;
}

.work-case-media img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(12, 19, 28, 0.08);
    background: rgba(240, 245, 250, 0.9);
}

.work-artifact .proof-canvas {
    min-height: 0;
}

.work-case-badge {
    position: static;
    justify-self: start;
    margin: 0;
    border-radius: 999px;
    padding: 0.38rem 0.72rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #edf5fb;
    background: rgba(15, 20, 26, 0.76);
    backdrop-filter: blur(12px);
}

.work-case-body h2 {
    margin: 0.42rem 0 0;
    font-size: clamp(1.55rem, 2.8vw, 2.2rem);
    line-height: 1;
    letter-spacing: -0.02em;
}

.work-case-lead {
    margin: 0.65rem 0 0;
    color: var(--ink-soft);
    font-size: 1rem;
}

.work-case-ref {
    margin: 0.3rem 0 0;
    color: #607181;
    font-size: 0.78rem;
    font-weight: 500;
}

.work-metric-grid {
    margin-top: 0.95rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.work-metric {
    border-radius: 18px;
    padding: 0.88rem 0.92rem;
    background: rgba(15, 20, 26, 0.03);
    border: 1px solid rgba(12, 19, 28, 0.08);
}

.work-metric strong,
.work-metric span,
.work-metric small {
    display: block;
}

.work-metric strong {
    font-size: 1.45rem;
    line-height: 1;
}

.work-metric span {
    margin-top: 0.34rem;
    color: #20364c;
    font-size: 0.82rem;
    font-weight: 700;
}

.work-metric small {
    margin-top: 0.26rem;
    color: #627486;
    font-size: 0.76rem;
}

.work-case-body .list-clean {
    margin-top: 0.9rem;
}

.work-case-actions {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.judgment-grid {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.05rem;
}

.judgment-card {
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
    padding: 1.08rem;
}

.judgment-card h3 {
    margin: 0.42rem 0 0;
    font-size: 1rem;
}

.judgment-card p {
    margin: 0.46rem 0 0;
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.7rem;
}

.meta-pill {
    border-radius: 999px;
    border: 1px solid var(--line);
    padding: 0.28rem 0.6rem;
    font-size: 0.72rem;
    color: #33526f;
    background: rgba(255, 255, 255, 0.78);
}

.article-layout {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 1rem;
    align-items: start;
}

.article-body {
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
    padding: clamp(1rem, 2.4vw, 1.6rem);
}

.article-body h2 {
    margin: 1.05rem 0 0;
    font-size: 1.2rem;
    line-height: 1.35;
}

.article-body p {
    margin: 0.62rem 0 0;
    color: var(--ink-soft);
}

.article-body img {
    margin-top: 0.9rem;
    border-radius: 16px;
}

.story-strip {
    margin-top: 0.2rem;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(233, 240, 247, 0.82));
    box-shadow: var(--shadow-soft);
    padding: clamp(1.2rem, 2.8vw, 1.65rem);
}

.story-strip-top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1.2rem;
}

.story-strip-top .eyebrow {
    margin-bottom: 0;
}

.story-strip-copy {
    margin: 0;
    max-width: 48ch;
    color: var(--ink-soft);
}

.story-metric-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.story-metric {
    border-radius: 18px;
    padding: 0.95rem 1rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(12, 19, 28, 0.08);
}

.story-metric strong,
.story-metric span,
.story-metric small {
    display: block;
}

.story-metric strong {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1;
}

.story-metric span {
    margin-top: 0.34rem;
    color: #20364c;
    font-size: 0.83rem;
    font-weight: 600;
}

.story-metric small {
    margin-top: 0.28rem;
    color: #627486;
    font-size: 0.78rem;
}

.story-brief-grid {
    margin-top: 0.9rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.story-brief-card {
    border-radius: 18px;
    padding: 1rem 1.05rem;
    background: rgba(15, 20, 26, 0.03);
    border: 1px solid rgba(12, 19, 28, 0.08);
}

.story-brief-label {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4d6884;
    font-weight: 700;
}

.story-brief-card p:last-child {
    margin: 0.42rem 0 0;
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.stack-col {
    display: grid;
    gap: 0.95rem;
    align-self: start;
    position: sticky;
    top: 112px;
}

.contact-grid {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.contact-card {
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
    padding: 1rem;
}

.contact-card h3 {
    margin: 0;
    font-size: 1rem;
}

.contact-card p,
.contact-card a {
    margin: 0.45rem 0 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.intake-path-grid {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.05rem;
}

.intake-path-card {
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
    padding: 1.15rem;
    transition:
        transform var(--dur-med) var(--ease-out-expo),
        border-color var(--dur-med) var(--ease-standard),
        box-shadow var(--dur-med) var(--ease-out-expo);
}

.intake-path-card:hover {
    transform: translateY(-3px);
    border-color: rgba(10, 132, 255, 0.22);
}

.intake-path-card h3 {
    margin: 0.46rem 0 0;
    font-size: 1.04rem;
    line-height: 1.3;
}

.intake-path-card p {
    margin: 0.46rem 0 0;
    color: var(--ink-soft);
}

.intake-path-card .text-link {
    display: inline-block;
    margin-top: 0.7rem;
    color: #1c4467;
    font-size: 0.87rem;
    font-weight: 600;
}

.booking-shell {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
    gap: 1.1rem;
    align-items: start;
}

.booking-frame {
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
    padding: 1rem;
}

.booking-frame-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.3rem 0.2rem 0.8rem;
}

.booking-frame-head p,
.booking-frame-head span {
    margin: 0;
}

.booking-frame-head p {
    font-size: 0.9rem;
    font-weight: 600;
}

.booking-frame-head span {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5a6f84;
}

.booking-sidebar {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(155deg, #0f141a, #1f2b39);
    color: #edf3f8;
    box-shadow: var(--shadow-soft);
    padding: 1.25rem;
}

.booking-sidebar h3 {
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.28;
}

.booking-sidebar p {
    margin: 0.55rem 0 0;
    color: rgba(239, 245, 251, 0.78);
}

.booking-sidebar .list-clean li {
    color: rgba(239, 245, 251, 0.82);
}

.booking-sidebar .list-clean li::before {
    background: #8abef2;
}

.booking-note {
    margin-top: 1rem;
    border-radius: 18px;
    padding: 1rem 1.05rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.booking-note strong {
    display: block;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #b8d5ef;
}

.booking-note p {
    margin: 0.38rem 0 0;
}

.form-shell {
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
    padding: clamp(1rem, 3vw, 1.5rem);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.form-row-full {
    grid-column: 1 / -1;
}

.form-input,
.form-textarea {
    width: 100%;
    border: 1px solid rgba(14, 24, 34, 0.18);
    border-radius: 12px;
    background: #ffffff;
    color: var(--ink);
    font: inherit;
    padding: 0.78rem 0.85rem;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.12);
}

.form-textarea {
    min-height: 132px;
    resize: vertical;
}

.alert {
    position: relative;
    border-radius: 10px;
    padding: 0.7rem 2.2rem 0.7rem 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.88rem;
}

.alert-success {
    background: rgba(27, 141, 79, 0.12);
    color: #0d5a33;
    border: 1px solid rgba(27, 141, 79, 0.3);
}

.alert-danger {
    background: rgba(201, 52, 52, 0.12);
    color: #7e1f1f;
    border: 1px solid rgba(201, 52, 52, 0.3);
}

.btn-close {
    position: absolute;
    top: 0.4rem;
    right: 0.45rem;
    width: 22px;
    height: 22px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    opacity: 0.65;
    cursor: pointer;
}

.btn-close:hover {
    opacity: 1;
}

.help-block {
    margin: 0.32rem 0 0;
    font-size: 0.8rem;
}

.site-disclaimer {
    margin-top: 1rem;
    max-width: 56ch;
    font-size: 0.8rem;
    color: #536578;
}

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

.js-ready .reveal {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    will-change: opacity, transform;
    transition: opacity var(--dur-slow) var(--ease-standard), transform var(--dur-slow) var(--ease-standard);
    transition-delay: var(--delay, 0ms);
}

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

/* Orchestrated hero entry */
.js-ready .hero-copy.reveal.visible .eyebrow {
    animation: hero-item-in var(--dur-slow) var(--ease-out-expo) both;
    animation-delay: 0ms;
}

.js-ready .hero-copy.reveal.visible h1 {
    animation: hero-item-in 800ms var(--ease-out-expo) both;
    animation-delay: 80ms;
}

.js-ready .hero-copy.reveal.visible .hero-sub {
    animation: hero-item-in var(--dur-slow) var(--ease-out-expo) both;
    animation-delay: 180ms;
}

.js-ready .hero-copy.reveal.visible .hero-actions {
    animation: hero-item-in var(--dur-slow) var(--ease-out-expo) both;
    animation-delay: 280ms;
}

.js-ready .hero-copy.reveal.visible .hero-meta {
    animation: hero-item-in var(--dur-slow) var(--ease-out-expo) both;
    animation-delay: 360ms;
}

/* Inner page hero entry */
.js-ready .page-hero-box.reveal.visible .eyebrow {
    animation: hero-item-in var(--dur-slow) var(--ease-out-expo) both;
    animation-delay: 0ms;
}

.js-ready .page-hero-box.reveal.visible h1 {
    animation: hero-item-in 800ms var(--ease-out-expo) both;
    animation-delay: 80ms;
}

.js-ready .page-hero-box.reveal.visible p:not(.eyebrow) {
    animation: hero-item-in var(--dur-slow) var(--ease-out-expo) both;
    animation-delay: 180ms;
}

.js-ready .page-hero-box.reveal.visible .hero-actions {
    animation: hero-item-in var(--dur-slow) var(--ease-out-expo) both;
    animation-delay: 260ms;
}

@keyframes hero-item-in {
    from {
        opacity: 0;
        transform: translate3d(0, 12px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes drift-a {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(22px, 18px, 0);
    }
}

@keyframes drift-b {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(-20px, 25px, 0);
    }
}

@keyframes logo-in {
    0% {
        opacity: 0;
        transform: scale(0.985);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes logo-breathe {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.01);
    }
}

@media (max-width: 1120px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        max-width: 14ch;
    }

    .hero-personas {
        grid-template-columns: 1fr;
    }

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

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .problem-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .framework-head {
        grid-template-columns: 1fr;
    }

    .flagship-shell,
    .framework-layout,
    .conviction-shell {
        grid-template-columns: 1fr;
    }

    .offer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .archive-shell,
    .archive-feature,
    .editorial-ledger,
    .work-case,
    .detail-hero {
        grid-template-columns: 1fr;
    }

    .proof-canvas-split,
    .proof-stack-grid,
    .proof-summary-grid,
    .judgment-grid,
    .proof-ledger-grid,
    .client-ledger,
    .service-detail-grid,
    .artifact-grid,
    .article-proof-grid,
    .issue-tally,
    .result-panel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .step-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .step-grid::before {
        display: none;
    }

    .final-cta {
        grid-template-columns: 1fr;
    }

    .final-cta-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cards-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cards-5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split-layout,
    .article-layout {
        grid-template-columns: 1fr;
    }

    .stack-col {
        position: static;
    }

    .intake-path-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .booking-shell {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .proof-band-grid,
    .standards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .top-note {
        font-size: 0.68rem;
    }

    .nav-wrap {
        display: flex;
        min-height: 72px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        margin-left: 0;
        padding: 0.95rem;
        border: 1px solid var(--line);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow-soft);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: initial;
        gap: 0.4rem;
    }

    .js-ready .nav-links {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px) scale(0.985);
        pointer-events: none;
        transition: opacity var(--dur-fast) var(--ease-standard), transform var(--dur-fast) var(--ease-standard), visibility 0s linear var(--dur-fast);
    }

    .nav-links a {
        padding: 0.68rem 0.85rem;
        border-radius: 10px;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover,
    .nav-links a.is-active {
        background: rgba(10, 132, 255, 0.1);
    }

    .nav-links .btn-compact {
        margin-left: 0;
    }

    .nav-links .btn-compact::before {
        display: none;
    }

    .js-ready .nav-wrap.is-open .nav-links {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
        transition-delay: 0s;
    }

    .nav-wrap.is-open .nav-toggle span:first-child {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-wrap.is-open .nav-toggle span:last-child {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding-top: 2.5rem;
    }

    .brand img {
        width: auto;
        height: 46px;
    }

    .hero-copy h1 {
        max-width: none;
        font-size: clamp(2.2rem, 12.5vw, 3.4rem);
        line-height: 0.96;
        letter-spacing: -0.01em;
    }

    .hero-meta {
        flex-direction: column;
    }

    .hero-meta li {
        width: fit-content;
    }

    .proof-ledger-head,
    .flagship-notes,
    .flagship-artifact-grid,
    .flagship-metrics,
    .framework-stat-grid,
    .story-metric-grid,
    .story-brief-grid,
    .proof-band-grid,
    .standards-grid {
        grid-template-columns: 1fr;
    }

    .conviction-shell,
    .flagship-shell,
    .archive-feature,
    .editorial-ledger,
    .framework-layout,
    .page-hero-proof,
    .page-hero-service,
    .page-hero-manifesto,
    .proof-canvas-split,
    .proof-summary-grid,
    .offer-grid,
    .service-grid,
    .proof-ledger-grid,
    .client-ledger,
    .hero-personas,
    .consultation-grid,
    .consultation-booking-shell,
    .service-detail-grid,
    .artifact-grid,
    .article-proof-grid,
    .case-grid,
    .step-grid,
    .footer-grid,
    .article-grid,
    .judgment-grid,
    .intake-path-grid,
    .contact-grid,
    .work-metric-grid,
    .cards-2,
    .cards-3,
    .cards-4,
    .cards-5,
    .issue-tally,
    .form-grid,
    .result-panel-grid {
        grid-template-columns: 1fr;
    }

    .editorial-entry {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .final-cta-actions {
        flex-direction: column;
    }

    .proof-badge {
        position: static;
        margin-top: 0.75rem;
    }

    .flagship-story h3,
    .framework-panel h3,
    .conviction-quote h2 {
        max-width: none;
    }

    .flagship-chart-row {
        grid-template-columns: 1fr;
    }

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

    .story-strip-top,
    .booking-frame-head {
        display: grid;
        justify-content: start;
    }

    .archive-feature-media img {
        min-height: 260px;
    }

    .work-case.reverse .work-case-media,
    .work-case.reverse .work-case-body {
        order: initial;
    }

    .offer-card-top {
        display: grid;
        justify-content: start;
    }

    .consultation-hero-shell {
        border-radius: 28px;
        padding: 1.5rem;
    }

    .consultation-hero-shell h1 {
        max-width: none;
        font-size: clamp(2.7rem, 15vw, 4.8rem);
    }

    .consultation-trust li {
        width: 100%;
        text-align: center;
    }
}

/* ─── Team Grid ─── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2.5vw, 1.8rem);
    margin-top: 2.5rem;
}

.team-member {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.team-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform var(--dur-slow) var(--ease-out-expo);
}

.team-member:hover .team-photo {
    transform: scale(1.04);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.1rem 1.1rem;
    background: linear-gradient(to top, rgba(10, 15, 22, 0.88) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(6px);
    transition:
        opacity var(--dur-med) var(--ease-standard),
        transform var(--dur-med) var(--ease-out-expo);
}

.team-member:hover .team-overlay {
    opacity: 1;
    transform: translateY(0);
}

.team-name {
    margin: 0 0 0.18rem;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.team-role {
    margin: 0;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.62);
    font-weight: 400;
    letter-spacing: 0.03em;
}

/* ─── Stat Proof Block ─── */
.stat-proof {
    background: var(--ink);
    border-radius: var(--radius-xl);
    padding: clamp(2rem, 5vw, 3.5rem) clamp(1.8rem, 5vw, 3.5rem);
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 5vw, 4.5rem);
    flex-wrap: wrap;
}

.stat-proof-number {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1;
    flex-shrink: 0;
    letter-spacing: -0.02em;
}

.stat-proof-meta {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(0.9rem, 1.6vw, 1.1rem);
    line-height: 1.55;
    flex: 1;
    min-width: 200px;
}

.stat-proof-meta strong {
    color: #ffffff;
    display: block;
    font-size: clamp(1rem, 2vw, 1.35rem);
    line-height: 1.25;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.stat-proof-statement {
    background: var(--ink);
    border-radius: var(--radius-xl);
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1.8rem, 5vw, 3.5rem);
    text-align: center;
}

.stat-proof-statement p {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    color: #ffffff;
    line-height: 1.2;
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.01em;
}

@media (max-width: 820px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-proof {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-proof-number {
        font-size: clamp(3rem, 14vw, 4.5rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

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

}
