:root {
    --ink: #08131f;
    --navy: #0b1726;
    --navy-2: #10243a;
    --cream: #f7f3ea;
    --paper: #fffaf1;
    --mist: #dbe3df;
    --line: rgba(8, 19, 31, 0.12);
    --gold: #b99555;
    --gold-dark: #80602d;
    --teal: #2d6d70;
    --white: #ffffff;
    --muted: #647067;
    --shadow: 0 30px 90px rgba(8, 19, 31, 0.18);
    --display: "Source Serif 4", Georgia, serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
    scrollbar-gutter: stable;
}

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.5;
}

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

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

button {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 28px;
    padding: 14px clamp(20px, 4vw, 56px);
    color: rgba(255, 255, 255, 0.82);
    transition: background 220ms ease, box-shadow 220ms ease;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-signin {
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 700;
    transition: color 180ms ease;
}

.header-signin:hover {
    color: var(--gold);
}

.site-header.is-scrolled {
    background: rgba(8, 19, 31, 0.88);
    box-shadow: 0 14px 40px rgba(8, 19, 31, 0.24);
    backdrop-filter: blur(18px);
}

.brand-mark {
    justify-self: start;
    display: block;
    width: 128px;
}

.site-nav {
    display: flex;
    gap: 28px;
    font-size: 13px;
    font-weight: 700;
}

.site-nav a,
.header-cta {
    transition: color 180ms ease;
}

.site-nav a:hover {
    color: var(--gold);
}

.header-cta {
    color: var(--ink);
    background: var(--gold);
    font-size: 12px;
    font-weight: 900;
    border-radius: 4px;
    padding: 9px 16px;
    transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
    background: #c9a865;
    transform: translateY(-1px);
}

.hero {
    min-height: 88svh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 92px clamp(20px, 4vw, 64px) 48px;
    color: var(--white);
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(8, 19, 31, 0.96) 0%, rgba(8, 19, 31, 0.84) 38%, rgba(8, 19, 31, 0.28) 100%),
        linear-gradient(180deg, rgba(8, 19, 31, 0.36), rgba(8, 19, 31, 0.74)),
        url("assets/hero-strategy-room.jpg") center / cover no-repeat,
        var(--navy);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(185, 149, 85, 0.5), transparent);
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-brand {
    margin: 10px 0 0;
    font-family: var(--display);
    font-size: clamp(70px, 10vw, 148px);
    line-height: 0.9;
    font-weight: 500;
}

.hero h1 {
    margin: 14px 0 0;
    max-width: 640px;
    font-family: var(--display);
    font-size: clamp(32px, 4.4vw, 64px);
    line-height: 1.05;
    font-weight: 500;
    color: var(--paper);
}

.hero-text {
    max-width: 590px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(16px, 1.4vw, 19px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.hero-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.hero-notes span {
    color: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 700;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 13px 22px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 800;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
    color: var(--ink);
    background: var(--gold);
}

.button-secondary {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.product-hero {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.workspace-shell {
    min-height: 540px;
    display: grid;
    grid-template-columns: 70px 1fr;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.workspace-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
    background: rgba(4, 12, 22, 0.48);
}

.rail-logo {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    font-family: var(--display);
    font-weight: 700;
}

.workspace-rail span:not(.rail-logo) {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.workspace-main {
    min-width: 0;
    padding: 24px;
}

.workspace-topbar,
.panel-header,
.client-score {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.workspace-topbar {
    margin-bottom: 22px;
}

.workspace-topbar strong {
    display: block;
    margin-top: 4px;
    font-family: var(--display);
    font-size: 32px;
    font-weight: 500;
}

.workspace-kicker,
.panel-label,
.stage-kicker,
.report-tag {
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.workspace-status {
    color: var(--paper);
    border: 1px solid rgba(185, 149, 85, 0.42);
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.workspace-grid {
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    grid-template-rows: minmax(196px, auto) minmax(196px, auto);
    gap: 16px;
}

.client-panel,
.analysis-panel,
.report-panel {
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    background: rgba(9, 24, 40, 0.72);
    padding: 20px;
}

.client-panel {
    grid-row: span 2;
}

.client-panel h2 {
    margin: 10px 0 24px;
    font-family: var(--display);
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1.02;
    font-weight: 500;
}

.client-score {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.client-score strong {
    color: var(--white);
}

.progress-track {
    height: 8px;
    margin: 14px 0 26px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}

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

.signal-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
}

.signal-list li {
    display: flex;
    gap: 10px;
}

.signal-list span {
    width: 7px;
    height: 7px;
    margin-top: 7px;
    border-radius: 50%;
    background: var(--gold);
    flex: 0 0 auto;
}

.analysis-panel,
.report-panel {
    min-width: 0;
}

.source-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
    align-items: center;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
}

.source-row i {
    display: block;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(185, 149, 85, 0.92), rgba(45, 109, 112, 0.45));
}

.report-page {
    min-height: 174px;
    padding: 16px;
    color: var(--ink);
    background: var(--paper);
    border-radius: 4px;
}

.report-page h3 {
    max-width: 220px;
    margin: 6px 0 12px;
    font-family: var(--display);
    font-size: 24px;
    line-height: 1.04;
}

.report-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 64px;
    padding: 9px;
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.report-chart span {
    width: 24%;
    height: var(--h);
    background: linear-gradient(180deg, var(--gold), var(--teal));
}

.report-lines {
    display: grid;
    gap: 7px;
    margin-top: 13px;
}

.report-lines span {
    height: 5px;
    border-radius: 999px;
    background: rgba(8, 19, 31, 0.16);
}

.report-lines span:nth-child(2) {
    width: 78%;
}

.report-lines span:nth-child(3) {
    width: 52%;
}

.audience-band {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 26px clamp(20px, 4vw, 64px);
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.audience-band p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.audience-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.audience-list span {
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    color: var(--ink);
}

.executive-section,
.method-section,
.intelligence-section,
.image-story,
.statement-section,
.product-section,
.whitelabel-section,
.contact-section {
    padding: clamp(72px, 9vw, 132px) clamp(20px, 4vw, 64px);
}

.statement-section .section-copy {
    max-width: 760px;
}

.statement-with-image {
    display: grid;
    grid-template-columns: minmax(420px, 1.05fr) minmax(300px, 0.95fr);
    gap: clamp(38px, 6vw, 90px);
    align-items: center;
}

.statement-section-light {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.statement-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.section-copy {
    max-width: 720px;
}

.section-copy h2,
.product-sticky h2,
.contact-section h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(42px, 6vw, 84px);
    line-height: 0.98;
    font-weight: 500;
}

.section-copy p:not(.eyebrow),
.product-sticky p,
.contact-section p {
    max-width: 650px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.executive-section {
    background: var(--cream);
}

.signal-strip b {
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.signal-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 48px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.signal-strip span {
    min-height: 92px;
    display: grid;
    align-content: center;
    gap: 6px;
    padding: 20px 22px;
    border-right: 1px solid var(--line);
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
}

.signal-strip span:last-child {
    border-right: 0;
}

.executive-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 60px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.executive-grid article {
    min-height: 310px;
    padding: 28px 26px;
    border-right: 1px solid var(--line);
}

.executive-grid article:last-child {
    border-right: 0;
}

.executive-grid span {
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.executive-grid h3 {
    margin: 58px 0 14px;
    font-family: var(--display);
    font-size: clamp(28px, 2.6vw, 40px);
    line-height: 1;
    font-weight: 500;
}

.executive-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.executive-boundaries {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.executive-boundaries span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 11px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.42);
    font-size: 12px;
    font-weight: 850;
}

.method-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 62px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.method-steps article {
    min-height: 270px;
    padding: 30px 28px;
    border-right: 1px solid var(--line);
}

.method-steps article:last-child {
    border-right: 0;
}

.method-steps span {
    color: var(--gold-dark);
    font-weight: 900;
}

.method-steps h3 {
    margin: 54px 0 12px;
    font-family: var(--display);
    font-size: 34px;
    font-weight: 500;
}

.method-steps p {
    margin: 0;
    color: var(--muted);
}

.model-section {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0)),
        var(--cream);
}

.model-section .method-steps {
    margin-top: 48px;
}

.model-section .method-steps article {
    min-height: 236px;
}

.model-section .method-steps h3 {
    margin-top: 42px;
}

.intelligence-section {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(460px, 1fr);
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
    color: var(--white);
    background:
        radial-gradient(circle at 72% 50%, rgba(45, 109, 112, 0.24), transparent 34%),
        linear-gradient(160deg, #08131f 0%, #0c1b2d 100%);
}

.intelligence-section .section-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.7);
}

.control-ledger {
    display: grid;
    gap: 16px;
    padding: 0;
    margin: 34px 0 0;
    list-style: none;
}

.control-ledger li {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.control-ledger strong {
    color: var(--paper);
    font-size: 13px;
    font-weight: 900;
}

.control-ledger span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

.core-visual {
    display: grid;
    place-items: center;
    width: 100%;
}

.core-flow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(180px, auto) auto minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    width: 100%;
    max-width: 720px;
}

.core-flow-col {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.core-flow-label {
    color: var(--gold);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.core-flow-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.core-flow-col li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(9, 24, 40, 0.72);
    border: 1px solid rgba(185, 149, 85, 0.34);
    border-radius: 8px;
    box-shadow: inset 0 0 18px rgba(45, 109, 112, 0.08);
}

.core-flow-outputs li {
    border-color: rgba(45, 109, 112, 0.5);
    box-shadow: inset 0 0 18px rgba(45, 109, 112, 0.18);
}

.core-flow-icon {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(8, 19, 31, 0.6);
    border: 1px solid rgba(185, 149, 85, 0.3);
    flex: 0 0 auto;
}

.core-flow-outputs .core-flow-icon {
    border-color: rgba(45, 109, 112, 0.5);
}

.core-flow-icon svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.core-flow-outputs .core-flow-icon svg {
    color: rgba(157, 205, 199, 0.92);
}

.core-flow-col b {
    color: var(--paper);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.core-flow-link {
    width: 48px;
    height: 2px;
    position: relative;
    background: linear-gradient(90deg, rgba(185, 149, 85, 0.6), rgba(45, 109, 112, 0.6));
    overflow: hidden;
}

.core-flow-link::after {
    content: "";
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid rgba(45, 109, 112, 0.8);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.core-flow-link i {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    animation: coreFlowPulse 2.4s linear infinite;
}

.core-flow-link-out i {
    animation-delay: 0.8s;
}

.core-flow-nucleus {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 14px;
    padding: 8px 4px;
}

.core-flow-orb {
    display: grid;
    place-items: center;
    width: 156px;
    height: 156px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.16), transparent 34%),
        linear-gradient(145deg, #172a40, #07111d);
    border: 1px solid rgba(185, 149, 85, 0.5);
    box-shadow: 0 0 60px rgba(185, 149, 85, 0.16), inset 0 0 24px rgba(45, 109, 112, 0.24);
    position: relative;
}

.core-flow-ring {
    position: absolute;
    inset: 10px;
    border: 1px dashed rgba(185, 149, 85, 0.34);
    border-radius: 50%;
    animation: coreSpin 60s linear infinite;
    animation-play-state: paused;
}

.core-flow-ring-inner {
    inset: 26px;
    border-style: solid;
    border-color: rgba(45, 109, 112, 0.4);
    animation: coreSpin 40s linear infinite reverse;
    animation-play-state: paused;
}

.core-flow-link i {
    animation-play-state: paused;
}

.core-flow.is-active .core-flow-ring,
.core-flow.is-active .core-flow-link i {
    animation-play-state: running;
}

.core-flow-orb strong {
    position: relative;
    z-index: 1;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.core-flow-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 700;
    max-width: 200px;
    line-height: 1.45;
}

.image-story {
    display: grid;
    grid-template-columns: minmax(420px, 1.05fr) minmax(300px, 0.95fr);
    gap: clamp(38px, 6vw, 90px);
    align-items: center;
}

.image-story-light {
    background: var(--paper);
}

.image-story-dark {
    color: var(--white);
    background: linear-gradient(160deg, #07111d, #0c1b2d);
}

.image-story-dark .section-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.7);
}

.story-image {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(8, 19, 31, 0.12);
    box-shadow: 0 30px 90px rgba(8, 19, 31, 0.18);
}

.image-story-dark .story-image {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.story-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 700ms ease;
}

.story-image:hover img {
    transform: scale(1.025);
}

.product-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1fr);
    gap: clamp(36px, 6vw, 88px);
    align-items: start;
    background: var(--ink);
    color: var(--white);
}

.product-sticky {
    position: sticky;
    top: 104px;
}

.product-sticky p {
    color: rgba(255, 255, 255, 0.68);
}

.flow-board {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.flow-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.flow-tabs button {
    min-height: 56px;
    color: rgba(255, 255, 255, 0.62);
    background: transparent;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.flow-tabs button:hover:not(.active) {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
    border-bottom-color: rgba(255, 255, 255, 0.24);
}

.flow-tabs button:last-child {
    border-right: 0;
}

.flow-tabs button.active {
    color: var(--ink);
    background: var(--gold);
}

.stage-window {
    position: relative;
    min-height: 790px;
}

.stage-screen {
    position: absolute;
    inset: 0;
    display: none;
    padding: clamp(28px, 5vw, 54px);
    background:
        radial-gradient(circle at 80% 30%, rgba(45, 109, 112, 0.32), transparent 28%),
        linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.stage-screen.active {
    display: block;
    animation: stageIn 300ms ease both;
}

.stage-screen h3 {
    max-width: 500px;
    margin: 12px 0 22px;
    font-family: var(--display);
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1;
    font-weight: 500;
}

.stage-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.stage-metrics span {
    display: inline-flex;
    gap: 6px;
    align-items: baseline;
    min-height: 34px;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.66);
    background: rgba(255, 255, 255, 0.05);
    font-size: 12px;
    font-weight: 700;
}

.stage-metrics b {
    color: var(--paper);
    font-weight: 900;
}

.block-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.block-grid span {
    min-height: 78px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 11px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.block-grid span::before,
.block-grid span::after {
    content: "";
    position: absolute;
    left: 11px;
    bottom: 8px;
    height: 5px;
    border-radius: 999px;
}

.block-grid span::before {
    right: 11px;
    background: rgba(255, 255, 255, 0.22);
}

.block-grid span::after {
    width: var(--p, 0%);
    max-width: calc(100% - 22px);
    min-width: 0;
    background: rgba(255, 255, 255, 0.64);
}

.block-grid b,
.block-grid em,
.block-grid small {
    position: relative;
    z-index: 1;
}

.block-grid b {
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.8px;
}

.block-grid em {
    color: rgba(255, 255, 255, 0.74);
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.block-grid small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-bottom: 9px;
}

.block-grid span.is-complete {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.block-grid span.is-complete::before {
    background: rgba(8, 19, 31, 0.22);
}

.block-grid span.is-complete::after {
    background: rgba(8, 19, 31, 0.48);
}

.block-grid span.is-complete b,
.block-grid span.is-complete em,
.block-grid span.is-complete small {
    color: rgba(8, 19, 31, 0.78);
}

.block-grid span.is-progress {
    background: rgba(185, 149, 85, 0.18);
    border-color: rgba(185, 149, 85, 0.28);
}

.block-grid span.is-progress::after {
    background: linear-gradient(90deg, var(--gold), rgba(45, 109, 112, 0.68));
}

.block-grid span.is-exception {
    background: rgba(128, 96, 45, 0.18);
    border-color: rgba(185, 149, 85, 0.46);
}

.block-grid span.is-exception::after {
    background: var(--gold);
}

.block-grid span.is-empty::after {
    background: rgba(255, 255, 255, 0.32);
}

.policy-layout,
.delivery-package,
.oversight-board {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 18px;
}

.policy-map {
    display: grid;
    gap: 12px;
}

.policy-map article,
.policy-review,
.delivery-document,
.delivery-checks {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
}

.policy-map article {
    min-height: 92px;
    display: grid;
    gap: 6px;
    padding: 16px 18px;
}

.policy-map span,
.policy-review > span,
.delivery-document > span,
.delivery-checks > span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.policy-map b,
.policy-review dd,
.delivery-checks b {
    color: var(--paper);
    font-size: 14px;
}

.policy-map small,
.policy-review dt,
.delivery-checks small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.policy-review {
    display: grid;
    align-content: start;
    gap: 18px;
    padding: 18px;
}

.policy-review dl {
    display: grid;
    gap: 14px;
    margin: 0;
}

.policy-review dl div {
    display: grid;
    gap: 4px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-review dl div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.policy-review dt,
.policy-review dd {
    margin: 0;
}

.delivery-document {
    min-height: 310px;
    padding: 24px;
    color: var(--ink);
    background: var(--paper);
}

.delivery-document b {
    display: block;
    max-width: 330px;
    margin: 12px 0 34px;
    font-family: var(--display);
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1;
    font-weight: 500;
}

.delivery-document i {
    display: block;
    height: 8px;
    margin-top: 10px;
    border-radius: 999px;
    background: rgba(8, 19, 31, 0.14);
}

.delivery-document i:nth-of-type(1) {
    width: 92%;
    background: linear-gradient(90deg, var(--navy-2), var(--teal));
}

.delivery-document i:nth-of-type(2) {
    width: 74%;
}

.delivery-document i:nth-of-type(3) {
    width: 56%;
}

.delivery-stamp {
    display: inline-flex;
    margin-top: 28px;
    border: 1px solid rgba(185, 149, 85, 0.44);
    border-radius: 999px;
    padding: 7px 10px;
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.delivery-checks {
    display: grid;
    align-content: start;
    gap: 18px;
    padding: 18px;
}

.delivery-checks ul {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.delivery-checks li {
    display: grid;
    gap: 4px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.delivery-checks li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.oversight-board {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
}

.oversight-board .task-list {
    gap: 10px;
}

.oversight-board .task-list article {
    min-height: 74px;
    grid-template-columns: minmax(0, 1fr) 116px 112px;
    padding: 14px 18px;
    width: 100%;
}

.oversight-board .task-list b {
    grid-column: 1;
    font-size: 15px;
    line-height: 1.15;
}

.oversight-board .task-list span {
    grid-column: 2;
    justify-self: start;
    font-size: 11px;
}

.oversight-board .task-list i {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    white-space: nowrap;
    font-size: 11px;
}

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

.oversight-summary article {
    display: grid;
    align-content: start;
    gap: 8px;
    min-height: 108px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
}

.oversight-summary span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.oversight-summary b {
    color: var(--paper);
    font-size: 18px;
    line-height: 1.05;
}

.oversight-summary small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-weight: 760;
}

.oversight-summary i {
    display: block;
    position: relative;
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

.oversight-summary i::after {
    content: "";
    display: block;
    width: var(--p);
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--teal));
}

.insight-stack,
.task-list {
    display: grid;
    gap: 14px;
}

.insight-stack article,
.task-list article {
    min-height: 72px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 18px;
    row-gap: 6px;
    padding: 16px 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.insight-stack article:nth-child(even),
.task-list article:nth-child(2) {
    width: 86%;
}

.oversight-board .task-list article:nth-child(2) {
    width: 100%;
}

.insight-stack b,
.task-list b {
    color: var(--paper);
    font-size: 14px;
}

.insight-stack span,
.task-list span,
.task-list i {
    color: rgba(255, 255, 255, 0.64);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
}

.insight-stack i {
    grid-row: 1 / span 2;
    grid-column: 2;
    width: 92px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), rgba(45, 109, 112, 0.6));
}

.task-list i {
    justify-self: end;
    border: 1px solid rgba(185, 149, 85, 0.28);
    border-radius: 999px;
    padding: 6px 9px;
    color: var(--gold);
}

.task-list i.is-pending {
    border-color: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.74);
}

.task-list i.is-progress {
    border-color: rgba(45, 109, 112, 0.54);
    color: rgba(157, 205, 199, 0.92);
}

.document-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.document-preview article {
    min-height: 220px;
    padding: 20px 18px;
    background: var(--paper);
    border-radius: 4px;
    color: var(--ink);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.document-preview article:nth-child(2) {
    transform: translateY(28px);
}

.document-preview article:nth-child(3) {
    transform: translateY(56px);
}

.document-preview span {
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 900;
}

.document-preview b {
    display: block;
    min-height: 48px;
    margin: 10px 0 34px;
    font-family: var(--display);
    font-size: 24px;
    line-height: 1;
}

.document-preview i {
    display: block;
    height: 7px;
    margin-top: 10px;
    border-radius: 999px;
    background: rgba(8, 19, 31, 0.14);
}

.document-preview i:nth-of-type(2) {
    width: 78%;
}

.document-preview i:nth-of-type(3) {
    width: 58%;
}

.whitelabel-section {
    display: grid;
    grid-template-columns: minmax(360px, 0.92fr) minmax(280px, 1fr);
    gap: clamp(38px, 6vw, 92px);
    align-items: center;
    background: var(--paper);
}

.brand-system {
    min-height: 520px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        radial-gradient(circle at 80% 18%, rgba(45, 109, 112, 0.12), transparent 28%),
        var(--cream);
    box-shadow: 0 28px 80px rgba(8, 19, 31, 0.12);
}

.brand-topbar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 26px;
    color: var(--white);
    background: var(--navy);
}

.client-monogram {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--ink);
    background: var(--gold);
    font-family: var(--display);
    font-size: 22px;
}

.brand-topbar strong,
.brand-topbar small {
    display: block;
}

.brand-topbar strong {
    font-family: var(--display);
    font-size: clamp(22px, 2.3vw, 30px);
    font-weight: 500;
}

.brand-topbar small {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.brand-state {
    margin-left: auto;
    border: 1px solid rgba(185, 149, 85, 0.38);
    border-radius: 999px;
    padding: 7px 10px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.portal-screen {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 18px;
    padding: 28px;
}

.portal-report,
.brand-controls {
    border: 1px solid var(--line);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.74);
}

.portal-report {
    min-height: 330px;
    padding: 28px;
}

.portal-label,
.brand-controls > span {
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.portal-report h3 {
    max-width: 430px;
    margin: 12px 0 10px;
    font-family: var(--display);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 0.98;
    font-weight: 500;
}

.portal-report p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.report-bars {
    display: grid;
    gap: 10px;
    margin: 34px 0 28px;
}

.report-bars i {
    display: block;
    width: var(--w);
    height: 9px;
    border-radius: 999px;
    background: rgba(8, 19, 31, 0.14);
}

.report-bars i:first-child {
    background: linear-gradient(90deg, var(--navy-2), var(--teal));
}

.portal-checklist {
    display: grid;
    gap: 10px;
    margin-top: 8px;
}

.portal-checklist span {
    position: relative;
    padding-left: 22px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
}

.portal-checklist span::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(185, 149, 85, 0.16);
}

.brand-controls {
    display: grid;
    align-content: start;
    gap: 20px;
    padding: 22px;
}

.brand-controls dl {
    display: grid;
    gap: 14px;
    margin: 0;
}

.brand-controls dl div {
    display: grid;
    gap: 4px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(8, 19, 31, 0.1);
}

.brand-controls dl div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.brand-controls dt,
.brand-controls dd {
    margin: 0;
}

.brand-controls dt {
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.brand-controls dd {
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
}

.brand-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 34px;
}

.brand-preview article {
    min-height: 280px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
}

.brand-preview span {
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.brand-preview strong {
    display: block;
    margin: 12px 0 34px;
    font-family: var(--display);
    font-size: 32px;
    line-height: 1;
    font-weight: 500;
}

.brand-preview i {
    display: block;
    height: 8px;
    margin-top: 12px;
    border-radius: 999px;
    background: rgba(8, 19, 31, 0.12);
}

.brand-preview i:nth-of-type(1) {
    width: 90%;
}

.brand-preview i:nth-of-type(2) {
    width: 72%;
}

.brand-preview i:nth-of-type(3) {
    width: 54%;
}

.brand-swatches {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    height: 76px;
}

.brand-controls .brand-swatches {
    height: 42px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(8, 19, 31, 0.1);
}

.brand-swatches span:nth-child(1) {
    background: #10243a;
}

.brand-swatches span:nth-child(2) {
    background: #2d6d70;
}

.brand-swatches span:nth-child(3) {
    background: #b99555;
}

.brand-proof-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    background: rgba(8, 19, 31, 0.04);
}

.brand-proof-row span {
    min-height: 66px;
    display: grid;
    place-items: center;
    padding: 14px;
    border-right: 1px solid var(--line);
    color: var(--ink);
    text-align: center;
    font-size: 12px;
    font-weight: 900;
}

.brand-proof-row span:last-child {
    border-right: 0;
}

.whitelabel-points {
    display: grid;
    gap: 18px;
    padding: 0;
    margin: 34px 0 0;
    list-style: none;
}

.whitelabel-points li {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.whitelabel-points strong {
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
}

.whitelabel-points span {
    color: var(--muted);
    font-size: 14px;
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 6vw, 88px);
    align-items: center;
    color: var(--white);
    background:
        linear-gradient(120deg, rgba(8, 19, 31, 0.96), rgba(8, 19, 31, 0.82)),
        linear-gradient(90deg, var(--navy), var(--teal));
}

.contact-section p {
    color: rgba(255, 255, 255, 0.7);
}

.contact-agenda {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.contact-agenda span {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 9px 11px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 900;
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px 32px;
    padding: 24px clamp(20px, 4vw, 64px);
    color: rgba(255, 255, 255, 0.56);
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
}

.site-footer p {
    margin: 0;
}

/* ── Focus ─────────────────────────────────── */

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 2px;
}

.flow-tabs button:focus-visible {
    outline-offset: -3px;
}

/* ── Eyebrows on light backgrounds ─────────── */

.executive-section .eyebrow,
.model-section .eyebrow,
.image-story-light .eyebrow,
.statement-section-light .eyebrow,
.whitelabel-section .eyebrow {
    color: var(--gold-dark);
}

/* Restore gold on dark sections where a parent p rule overrides */
.product-sticky .eyebrow,
.contact-section .eyebrow {
    color: var(--gold);
}

/* ── Nav toggle (hamburger) ─────────────────── */

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 9px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 180ms ease;
}

.nav-toggle:hover {
    border-color: rgba(255, 255, 255, 0.54);
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile nav overlay ─────────────────────── */

.nav-mobile-link,
.nav-mobile-cta {
    display: none;
}

/* ── Hero tagline ───────────────────────────── */

.hero-tagline {
    margin: 6px 0 0;
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.74);
    letter-spacing: 0.2px;
    max-width: 640px;
}

/* ── Footer brand ───────────────────────────── */

.footer-brand {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.footer-tagline {
    color: rgba(185, 149, 85, 0.92);
    font-family: var(--display);
    font-style: italic;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.footer-disclaimer {
    max-width: 480px;
}

/* ── Contact form ───────────────────────────── */

.contact-form {
    display: grid;
    gap: 16px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
}

.form-field {
    display: grid;
    gap: 10px;
}

.form-field label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.form-field input,
.form-field select {
    height: 46px;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 4px;
    color: var(--white);
    font: inherit;
    font-size: 14px;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input:focus-visible,
.form-field select:focus-visible {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(185, 149, 85, 0.42);
}

.form-field input::placeholder {
    color: rgba(255, 255, 255, 0.62);
}

.form-field select option {
    background: var(--navy);
    color: var(--white);
}

.contact-form .button {
    margin-top: 4px;
}

/* ── Outcomes band ───────────────────────────── */

.outcomes-band {
    padding: 28px clamp(20px, 4vw, 64px) 32px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.outcomes-eyebrow {
    margin: 0 0 18px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.outcomes-grid article {
    padding: 18px 22px;
    border-right: 1px solid var(--line);
    display: grid;
    gap: 6px;
    align-content: start;
}

.outcomes-grid article:last-child {
    border-right: 0;
}

.outcomes-grid strong {
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
}

.outcomes-grid span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.outcomes-note {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 11px;
    font-style: italic;
}

/* ── Stage caption ────────────────────────────── */

.stage-caption {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.5;
    max-width: 540px;
}

/* ── Flow tabs bridge ─────────────────────────── */

.flow-bridge {
    margin: 0;
    padding: 14px 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-style: italic;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Control ledger link ──────────────────────── */

.control-ledger-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(185, 149, 85, 0.4);
    padding-bottom: 4px;
    transition: color 180ms ease, border-color 180ms ease;
}

.control-ledger-link:hover {
    color: var(--paper);
    border-color: var(--gold);
}

.control-ledger-link svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Form: required + errors + consent + success */

.required-marker {
    color: rgba(185, 149, 85, 0.92);
    margin-left: 2px;
    font-weight: 900;
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"] {
    border-color: rgba(220, 100, 95, 0.7);
    background: rgba(220, 100, 95, 0.06);
}

.field-error {
    color: #ffb0ac;
    font-size: 12px;
    font-weight: 700;
    margin-top: 2px;
}

.form-consent {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    line-height: 1.55;
}

.form-consent a {
    color: var(--gold);
    border-bottom: 1px solid rgba(185, 149, 85, 0.5);
    transition: color 180ms ease;
}

.form-consent a:hover {
    color: var(--paper);
}

.form-success:empty {
    display: none;
}

.form-success {
    padding: 28px 8px;
    color: var(--white);
    text-align: left;
    outline: none;
}

.form-success:focus-visible {
    box-shadow: 0 0 0 3px rgba(185, 149, 85, 0.42);
    border-radius: 6px;
}

.form-success h3 {
    margin: 0 0 14px;
    font-family: var(--display);
    font-size: 32px;
    line-height: 1.05;
    font-weight: 500;
    color: var(--paper);
}

.form-success p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.55;
}

.form-success a {
    color: var(--gold);
    border-bottom: 1px solid rgba(185, 149, 85, 0.5);
}

.form-network-error {
    margin: 4px 0 0;
    padding: 12px 14px;
    background: rgba(220, 100, 95, 0.12);
    border: 1px solid rgba(255, 176, 172, 0.45);
    border-radius: 6px;
    color: #ffb0ac;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
}

.form-network-error a {
    color: var(--gold);
    border-bottom: 1px solid rgba(185, 149, 85, 0.5);
}

button[type="submit"][disabled] {
    opacity: 0.7;
    cursor: progress;
}

/* Honeypot field — visible only to bots that scrape the DOM. Pushed
   off-screen rather than display:none so basic spam scripts still see and
   fill it; the backend rejects any submission where this is populated. */
.honeypot-field {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* ── Site nav active state ────────────────────── */

.site-nav a {
    position: relative;
    padding-bottom: 4px;
    transition: color 180ms ease;
}

.nav-locale {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    min-width: 44px;
    padding: 6px 14px;
    color: rgba(255, 255, 255, 0.72);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    cursor: pointer;
    transition: color 180ms ease, border-color 180ms ease;
}

.nav-locale:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.site-nav a.is-active {
    color: var(--gold);
}

.site-nav a.is-active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
}

/* ── FAQ section ──────────────────────────────── */

.faq-section {
    background: var(--paper);
    display: grid;
    grid-template-columns: minmax(260px, 0.7fr) minmax(300px, 1fr);
    gap: clamp(36px, 6vw, 88px);
    align-items: start;
    padding: clamp(72px, 9vw, 132px) clamp(20px, 4vw, 64px);
}

.faq-section .section-copy p:not(.eyebrow) {
    color: var(--muted);
    font-size: 16px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
}

.faq-list summary {
    cursor: pointer;
    list-style: none;
    color: var(--ink);
    font-family: var(--display);
    font-size: clamp(20px, 1.8vw, 24px);
    font-weight: 500;
    line-height: 1.2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 180ms ease;
}

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

.faq-list summary::after {
    content: "+";
    color: var(--gold-dark);
    font-family: var(--sans);
    font-size: 22px;
    font-weight: 400;
    flex: 0 0 auto;
    line-height: 1;
    transition: color 180ms ease;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list summary:hover {
    color: var(--gold-dark);
}

.faq-list details p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
    max-width: 600px;
}

/* ── Security section ─────────────────────────── */

.security-section {
    color: var(--white);
    background: linear-gradient(160deg, #08131f 0%, #0c1b2d 100%);
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1fr);
    gap: clamp(40px, 6vw, 90px);
    padding: clamp(72px, 9vw, 132px) clamp(20px, 4vw, 64px);
    align-items: start;
}

.security-section .section-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.7);
}

.security-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
}

.security-list li {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.security-list strong {
    color: var(--paper);
    font-size: 13px;
    font-weight: 900;
}

.security-list span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.55;
}

/* ── Footer extras ────────────────────────────── */

.footer-meta {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
    font-weight: 700;
}

.footer-meta a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 180ms ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding-bottom: 1px;
}

.footer-meta a:hover {
    color: var(--gold);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 4px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 180ms ease;
}

.footer-links a:hover {
    color: var(--gold);
}

html.has-js [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 600ms ease, transform 600ms ease;
}

/* ── Skip link ──────────────────────────────── */

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    padding: 12px 18px;
    background: var(--gold);
    color: var(--ink);
    font-weight: 900;
    font-size: 13px;
    border-radius: 4px;
    transform: translateY(calc(-100% - 24px));
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
    outline: 2px solid var(--ink);
    outline-offset: 2px;
}

/* ── Tabpanel focus styling ─────────────────── */

.stage-screen[role="tabpanel"]:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: -3px;
}

.stage-screen[role="tabpanel"] {
    outline: none;
}

/* ── Active flow tab focus ring contrast ────── */

.flow-tabs button.active:focus-visible {
    outline-color: var(--ink);
}

html.has-js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes stageIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes coreFlowPulse {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(400%);
    }
}

@keyframes coreFlowPulseV {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(400%);
    }
}

@media (max-width: 1080px) {
    .hero,
    .intelligence-section,
    .image-story,
    .statement-with-image,
    .product-section,
    .whitelabel-section,
    .faq-section,
    .security-section {
        grid-template-columns: 1fr;
    }

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

    .outcomes-grid article:nth-child(2) {
        border-right: 0;
    }

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

    .hero {
        padding-top: 104px;
    }

    .workspace-shell {
        min-height: 460px;
    }

    .product-sticky {
        position: static;
    }

    .core-visual {
        min-height: 460px;
    }

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

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

    .signal-strip span:nth-child(2) {
        border-right: 0;
    }

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

    .executive-grid article:nth-child(2) {
        border-right: 0;
    }

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

    .method-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .method-steps article:nth-child(2) {
        border-right: 0;
    }

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

@media (max-width: 760px) {
    .site-header {
        grid-template-columns: 1fr auto;
        gap: 16px;
    }

    .brand-mark {
        width: 132px;
    }

    .header-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
        grid-column: 2;
        grid-row: 1;
    }

    .site-nav {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 9;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        background: rgba(8, 19, 31, 0.96);
        backdrop-filter: blur(18px);
        font-size: 18px;
        font-weight: 700;
    }

    .site-nav.is-open {
        display: flex;
    }

    .nav-mobile-link,
    .nav-mobile-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 28px;
        font-size: 15px;
        font-weight: 900;
    }

    .nav-mobile-link {
        margin-top: 8px;
        color: rgba(255, 255, 255, 0.82);
    }

    .nav-mobile-cta {
        margin-top: 4px;
        background: var(--gold);
        color: var(--ink);
        border-radius: 4px;
    }

    .hero {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-notes {
        gap: 8px;
    }

    .hero-actions,
    .contact-section {
        align-items: stretch;
        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
    }

    .workspace-shell {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .workspace-rail {
        display: none;
    }

    .workspace-main {
        padding: 16px;
    }

    .workspace-topbar strong {
        font-size: 24px;
    }

    .workspace-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .client-panel {
        grid-row: auto;
    }

    .audience-band {
        grid-template-columns: 1fr;
    }

    .signal-strip {
        grid-template-columns: 1fr;
    }

    .signal-strip span,
    .signal-strip span:nth-child(2) {
        min-height: 74px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .signal-strip span:last-child {
        border-bottom: 0;
    }

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

    .executive-grid article {
        min-height: 230px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .executive-grid article:last-child {
        border-bottom: 0;
    }

    .executive-grid h3 {
        margin-top: 42px;
    }

    .control-ledger li {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .method-steps {
        grid-template-columns: 1fr;
    }

    .method-steps article {
        min-height: 220px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .method-steps article:last-child {
        border-bottom: 0;
    }

    .flow-tabs {
        grid-template-columns: 1fr 1fr;
    }

    .flow-tabs button:nth-child(2) {
        border-right: 0;
    }

    .flow-tabs button:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stage-window {
        min-height: 980px;
    }

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

    .policy-layout,
    .delivery-package,
    .oversight-board {
        grid-template-columns: 1fr;
    }

    .oversight-summary {
        grid-template-columns: 1fr;
    }

    .oversight-board .task-list article {
        grid-template-columns: 1fr;
    }

    .oversight-board .task-list b,
    .oversight-board .task-list span,
    .oversight-board .task-list i {
        grid-column: auto;
        grid-row: auto;
        justify-self: start;
    }

    .delivery-document {
        min-height: 260px;
    }

    .document-preview {
        grid-template-columns: 1fr;
    }

    .document-preview article {
        min-height: 140px;
        transform: none !important;
    }

    .brand-system {
        min-height: 0;
    }

    .brand-topbar {
        flex-wrap: wrap;
    }

    .brand-state {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }

    .portal-screen {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .portal-report {
        min-height: 0;
        padding: 22px;
    }

    .brand-proof-row {
        grid-template-columns: 1fr;
    }

    .brand-proof-row span {
        min-height: 52px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .brand-proof-row span:last-child {
        border-bottom: 0;
    }

    .whitelabel-points li {
        grid-template-columns: 1fr;
        gap: 6px;
    }

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

    .outcomes-grid article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .outcomes-grid article:last-child {
        border-bottom: 0;
    }

    .security-list li {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .faq-list summary {
        font-size: 18px;
    }

    .core-flow {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .core-flow-link {
        width: 2px;
        height: 32px;
        background: linear-gradient(180deg, rgba(185, 149, 85, 0.6), rgba(45, 109, 112, 0.6));
        justify-self: center;
    }

    .core-flow-link::after {
        right: 50%;
        top: auto;
        bottom: -7px;
        transform: translateX(50%);
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 7px solid rgba(45, 109, 112, 0.8);
        border-bottom: 0;
    }

    .core-flow-link i {
        background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.7), transparent);
        width: 100%;
        height: 30%;
        animation-name: coreFlowPulseV;
    }

    .core-flow-orb {
        width: 132px;
        height: 132px;
    }

    .brand-preview {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .brand-preview article {
        min-height: 190px;
    }
}

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

    html.has-js [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
    }
}
