:root {
    --midnight: #0b1f36;
    --midnight-2: #071827;
    --navy-soft: #102a46;
    --gold: #b7925a;
    --gold-light: #d7bc7c;
    --ivory: #f7f5f2;
    --warm-white: #fffdf8;
    --slate: #5c6773;
    --slate-dark: #233142;
    --emerald: #1e6b4d;
    --border: rgba(11, 31, 54, .12);
    --border-dark: rgba(255, 255, 255, .14);
    --shadow: 0 24px 70px rgba(11, 31, 54, .12);
    --shadow-dark: 0 24px 80px rgba(0, 0, 0, .35);
    --container: min(1160px, calc(100vw - 44px));
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--midnight);
    background: var(--warm-white);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

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

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

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

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

.skip-link {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 100;
    padding: 10px 14px;
    color: var(--warm-white);
    background: var(--midnight);
    border-radius: 999px;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 253, 248, .92);
    border-bottom: 1px solid rgba(11, 31, 54, .09);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    flex: 0 0 auto;
    width: 236px;
}

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

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(16px, 2vw, 28px);
    color: var(--midnight-2);
    font-size: 13px;
    font-weight: 650;
    letter-spacing: .025em;
}

.primary-nav a {
    position: relative;
    opacity: .92;
    transition: color .2s ease, opacity .2s ease;
}

.primary-nav a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease;
}

.primary-nav a:hover {
    color: var(--gold);
    opacity: 1;
}

.primary-nav a:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    padding: 13px 20px;
    color: var(--midnight) !important;
    border: 1px solid rgba(183, 146, 90, .75);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 11px;
    background: rgba(255, 253, 248, .6);
    box-shadow: 0 12px 30px rgba(183, 146, 90, .10);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: transparent;
    padding: 11px;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--midnight);
    transition: transform .2s ease, opacity .2s ease;
}

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

.section-shell {
    position: relative;
    overflow: hidden;
}

.hero {
    min-height: calc(100vh - 86px);
    display: flex;
    align-items: stretch;
    background: var(--ivory);
    border-bottom: 1px solid rgba(11, 31, 54, .08);
}

.hero-media {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 253, 248, .98) 0%, rgba(255, 253, 248, .92) 24%, rgba(255, 253, 248, .55) 43%, rgba(255, 253, 248, .05) 68%),
        url('../images/index-hero.png') right center / cover no-repeat;
}

.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, .72), transparent 36%),
        linear-gradient(180deg, rgba(255, 253, 248, 0) 0%, rgba(255, 253, 248, .96) 100%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 520px) 1fr;
    align-items: center;
    min-height: calc(100vh - 86px);
    padding-block: clamp(74px, 10vw, 128px) 88px;
}

.hero-copy {
    max-width: 560px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.eyebrow::after {
    content: '';
    width: 54px;
    height: 1px;
    background: currentColor;
    opacity: .6;
}

.eyebrow-gold {
    color: var(--gold-light);
}

.hero h1,
.section-copy h2,
.journey h2,
.network h2,
.cora h2,
.private-copy h2 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: .96;
}

.hero h1 {
    margin-top: 26px;
    font-size: clamp(56px, 8vw, 106px);
    max-width: 690px;
}

.hero h1 span {
    display: block;
    color: var(--gold);
}

.hero-lede {
    margin-top: 30px;
    max-width: 535px;
    color: var(--slate-dark);
    font-size: clamp(17px, 1.7vw, 20px);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

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

.button-primary {
    color: var(--warm-white);
    background: linear-gradient(135deg, var(--gold), #9b7844);
    box-shadow: 0 18px 42px rgba(183, 146, 90, .26);
}

.button-primary:hover {
    box-shadow: 0 22px 52px rgba(183, 146, 90, .34);
}

.button-secondary {
    color: var(--midnight);
    border-color: rgba(11, 31, 54, .22);
    background: rgba(255, 253, 248, .64);
}

.confidential-note {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
    color: var(--slate);
    font-size: 13px;
    line-height: 1.4;
}

.confidential-note strong {
    display: block;
    margin-bottom: 3px;
    color: var(--midnight);
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.note-icon,
.lock-emblem {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--gold);
}

.note-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(183, 146, 90, .38);
    border-radius: 50%;
    background: rgba(255, 253, 248, .72);
}

.note-icon svg,
.lock-emblem svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.value-cards {
    position: relative;
    z-index: 2;
    margin-top: -46px;
    padding-bottom: 74px;
}

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

.info-card {
    min-height: 230px;
    padding: 34px 34px 30px;
    background: rgba(255, 253, 248, .92);
    border: 1px solid rgba(11, 31, 54, .10);
    box-shadow: 0 18px 54px rgba(11, 31, 54, .08);
    backdrop-filter: blur(10px);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(183, 146, 90, .42);
    box-shadow: var(--shadow);
}

.card-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: var(--gold);
    border: 1px solid rgba(183, 146, 90, .42);
    border-radius: 50%;
}

.card-icon svg {
    width: 33px;
    height: 33px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.info-card h2 {
    margin-top: 22px;
    color: var(--midnight);
    font-size: 14px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.info-card p {
    margin-top: 12px;
    color: var(--slate);
    font-size: 14px;
    line-height: 1.7;
}

.info-card a,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.journey {
    position: relative;
    padding: clamp(76px, 9vw, 118px) 0;
    color: var(--warm-white);
    background: radial-gradient(circle at 50% 0%, rgba(183, 146, 90, .14), transparent 32%),
        linear-gradient(135deg, var(--midnight-2), var(--midnight));
    overflow: hidden;
}

.journey::before,
.site-footer::before,
.private-access::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, transparent, #000 22%, #000 78%, transparent);
    pointer-events: none;
}

.journey .container {
    position: relative;
}

.journey h2 {
    max-width: 720px;
    margin: 18px auto 56px;
    text-align: center;
    font-size: clamp(40px, 5.4vw, 70px);
}

.journey .eyebrow {
    display: flex;
    justify-content: center;
}

.journey-track {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    position: relative;
    gap: 18px;
}

.journey-track::before {
    content: '';
    position: absolute;
    left: 7%;
    right: 7%;
    top: 38px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(215, 188, 124, .9), transparent);
}

.journey-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.journey-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    color: var(--gold-light);
    background: var(--midnight);
    border: 1px solid rgba(215, 188, 124, .55);
    border-radius: 50%;
    box-shadow: 0 0 0 10px var(--midnight-2);
}

.journey-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.journey-step-active .journey-icon {
    color: var(--midnight);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-color: transparent;
}

.journey-step h3 {
    min-height: 48px;
    color: var(--warm-white);
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.12;
}

.journey-step p {
    margin-top: 8px;
    color: rgba(255, 253, 248, .72);
    font-size: 13px;
    line-height: 1.5;
}

.intelligence {
    padding: clamp(86px, 10vw, 130px) 0;
    background: var(--ivory);
}

.intelligence-grid {
    display: grid;
    grid-template-columns: minmax(0, .76fr) minmax(0, 1.24fr);
    gap: clamp(38px, 6vw, 78px);
    align-items: center;
}

.section-copy h2 {
    margin-top: 18px;
    color: var(--midnight);
    font-size: clamp(42px, 5.2vw, 72px);
}

.section-copy h2 span {
    display: block;
}

.section-copy p {
    margin-top: 26px;
    color: var(--slate-dark);
    font-size: 17px;
    line-height: 1.78;
}

.dashboard-preview {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 14px;
    padding: 18px;
    color: var(--warm-white);
    background: linear-gradient(145deg, #071827, #0b2037 55%, #071827);
    border: 1px solid rgba(215, 188, 124, .20);
    box-shadow: var(--shadow-dark);
}

.dash-card {
    position: relative;
    min-height: 226px;
    padding: 28px 24px 96px;
    overflow: hidden;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.09);
}

.dash-card span,
.dash-card strong,
.dash-card small {
    position: relative;
    z-index: 2;
}

.dash-card span {
    display: block;
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.dash-card strong {
    display: block;
    margin-top: 18px;
    color: var(--warm-white);
    font-family: var(--serif);
    font-size: clamp(38px, 4.2vw, 58px);
    line-height: .96;
    font-weight: 400;
}

.dash-card small {
    display: block;
    max-width: 68%;
    margin-top: 16px;
    color: rgba(255, 253, 248, .70);
    font-size: 15px;
    line-height: 1.48;
}

.dash-wide {
    grid-column: span 1;
}

.line-chart {
    position: absolute;
    z-index: 1;
    left: 22px;
    right: 22px;
    bottom: 24px;
    width: calc(100% - 44px);
    height: 58px;
    opacity: .96;
}

.line-chart path {
    fill: none;
    stroke: var(--gold-light);
    stroke-width: 3;
    stroke-linecap: round;
}

.line-chart.muted path {
    stroke: #6fb592;
}

.bar-chart {
    position: absolute;
    z-index: 1;
    left: auto;
    right: 24px;
    bottom: 24px;
    width: 64%;
    height: 82px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 8px;
}

.bar-chart::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(255, 253, 248, .18);
}

.bar-chart i {
    flex: 1;
    display: block;
    min-height: 12px;
    background: linear-gradient(180deg, #7fca9e, #1e6b4d);
    opacity: .88;
}

.dash-region {
    grid-column: span 2;
    min-height: 250px;
    padding-bottom: 34px;
}

.dash-region strong {
    max-width: 70%;
}

.dash-region small {
    max-width: 54%;
}

.region-map {
    position: absolute;
    z-index: 1;
    right: 34px;
    bottom: 28px;
    width: 250px;
    height: 128px;
    border-radius: 48% 52% 50% 50%;
    background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
    clip-path: polygon(2% 50%, 11% 29%, 25% 35%, 35% 22%, 52% 26%, 68% 17%, 87% 28%, 96% 48%, 81% 60%, 72% 79%, 54% 72%, 43% 86%, 25% 77%, 12% 69%);
    opacity: .82;
}

.region-map span {
    position: absolute;
    right: 16px;
    bottom: 10px;
    width: 78px;
    height: 42px;
    background: rgba(215, 188, 124, .78);
    border-radius: 38% 45% 30% 42%;
}

.dash-score {
    min-height: 250px;
    padding-bottom: 28px;
}

.dash-score small {
    max-width: 100%;
}

.score-ring {
    width: 124px;
    height: 124px;
    margin: 22px auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: var(--warm-white);
    border-radius: 50%;
    background: conic-gradient(var(--gold-light) 75%, rgba(255,255,255,.10) 0);
    position: relative;
}

.score-ring::before {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    background: var(--midnight-2);
}

.score-ring b,
.score-ring em {
    position: relative;
    z-index: 1;
    font-style: normal;
}

.score-ring b {
    font-family: var(--serif);
    font-size: 44px;
    line-height: 1;
    font-weight: 400;
}

.score-ring em {
    color: rgba(255, 253, 248, .55);
    font-size: 13px;
    transform: translateY(8px);
}

.network {
    padding: clamp(78px, 9vw, 118px) 0;
    background: var(--warm-white);
    text-align: center;
}

.network h2 {
    margin-top: 18px;
    font-size: clamp(40px, 5.4vw, 72px);
}

.section-intro {
    max-width: 720px;
    margin: 22px auto 48px;
    color: var(--slate-dark);
    font-size: 17px;
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.partner-card {
    min-height: 236px;
    padding: 28px 18px;
    background: linear-gradient(180deg, #fff, var(--ivory));
    border: 1px solid var(--border);
    box-shadow: 0 18px 54px rgba(11, 31, 54, .06);
    transition: transform .2s ease, border-color .2s ease;
}

.partner-card:hover {
    transform: translateY(-4px);
    border-color: rgba(183, 146, 90, .42);
}

.avatar {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    color: var(--gold);
    border: 1px solid rgba(183, 146, 90, .44);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 20%, rgba(215, 188, 124, .20), transparent 55%), #fff;
    font-family: var(--serif);
    font-size: 20px;
}

.partner-card h3 {
    color: var(--midnight);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.partner-card p {
    margin-top: 12px;
    color: var(--slate);
    font-size: 13px;
    line-height: 1.55;
}

.cora {
    padding: clamp(70px, 8vw, 108px) 0;
    background: linear-gradient(180deg, #f0eeea, var(--ivory));
    border-top: 1px solid rgba(11, 31, 54, .08);
    border-bottom: 1px solid rgba(11, 31, 54, .08);
}

.cora-grid {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) minmax(300px, .8fr);
    gap: clamp(28px, 5vw, 68px);
    align-items: center;
}

.cora-card {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 28px;
    color: var(--warm-white);
    background: radial-gradient(circle at 50% 0%, rgba(183, 146, 90, .22), transparent 45%), linear-gradient(145deg, #071827, var(--midnight));
    box-shadow: var(--shadow-dark);
}

.cora-card img {
    width: 150px;
    height: auto;
}

.cora-card span {
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.cora-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
    color: var(--slate-dark);
}

.cora-list li {
    display: flex;
    gap: 12px;
    align-items: start;
}

.cora-list li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 800;
}

.private-access {
    position: relative;
    padding: clamp(66px, 8vw, 104px) 0;
    color: var(--warm-white);
    background: radial-gradient(circle at 20% 0%, rgba(183, 146, 90, .20), transparent 32%), linear-gradient(135deg, var(--midnight-2), var(--midnight));
    overflow: hidden;
}

.private-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    gap: clamp(30px, 6vw, 80px);
    align-items: center;
}

.lock-emblem {
    width: 68px;
    height: 68px;
    margin-bottom: 22px;
    border: 1px solid rgba(215, 188, 124, .45);
    border-radius: 50%;
    color: var(--gold-light);
}

.private-copy h2 {
    max-width: 820px;
    color: var(--warm-white);
    font-size: clamp(42px, 5.8vw, 78px);
}

.private-copy h2 span {
    display: block;
    color: var(--gold-light);
}

.private-panel {
    padding: 34px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(215, 188, 124, .25);
}

.private-panel p {
    margin-bottom: 24px;
    color: rgba(255, 253, 248, .78);
    font-size: 17px;
}

.site-footer {
    position: relative;
    overflow: hidden;
    color: rgba(255, 253, 248, .72);
    background: var(--midnight-2);
    border-top: 1px solid rgba(215, 188, 124, .16);
}

.footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(220px, 1.3fr) .7fr .7fr 1.1fr;
    gap: 44px;
    padding: 58px 0 38px;
}

.footer-brand img {
    width: 150px;
}

.footer-brand p {
    margin-top: 18px;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.site-footer h2 {
    margin-bottom: 15px;
    color: var(--gold-light);
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.site-footer a {
    display: block;
    margin: 8px 0;
    color: rgba(255, 253, 248, .70);
    font-size: 14px;
    transition: color .2s ease;
}

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

.footer-discretion {
    padding: 24px;
    border: 1px solid rgba(215, 188, 124, .22);
}

.footer-discretion p {
    color: rgba(255, 253, 248, .68);
    font-size: 14px;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 253, 248, .56);
    font-size: 13px;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .65s ease, transform .65s ease;
}

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal,
    .button,
    .info-card,
    .partner-card {
        transition: none;
        transform: none !important;
    }
}

@media (max-width: 1180px) {
    .brand {
        width: 210px;
    }

    .primary-nav {
        gap: 16px;
    }

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

    .journey-track {
        grid-template-columns: repeat(3, 1fr);
        gap: 34px 18px;
    }

    .journey-track::before {
        display: none;
    }
}

@media (max-width: 960px) {
    .header-inner {
        min-height: 78px;
    }

    .nav-toggle {
        display: block;
        position: relative;
        z-index: 80;
    }

    body.nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    body.nav-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .primary-nav {
        position: fixed;
        inset: 78px 0 auto 0;
        z-index: 70;
        display: grid;
        justify-items: stretch;
        gap: 0;
        padding: 22px 22px 30px;
        background: rgba(255, 253, 248, .98);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 30px 70px rgba(11, 31, 54, .18);
        transform: translateY(-140%);
        transition: transform .24s ease;
    }

    body.nav-open .primary-nav {
        transform: translateY(0);
    }

    .primary-nav a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(11, 31, 54, .08);
    }

    .nav-cta {
        margin-top: 16px;
        text-align: center;
        border-bottom: 1px solid rgba(183, 146, 90, .75) !important;
    }

    .hero,
    .hero-grid {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding-top: 92px;
        padding-bottom: 140px;
    }

    .hero-media {
        background: linear-gradient(180deg, rgba(255, 253, 248, .98) 0%, rgba(255, 253, 248, .88) 42%, rgba(255, 253, 248, .18) 100%),
            url('../images/index-hero.png') center bottom / cover no-repeat;
    }

    .cards-grid,
    .intelligence-grid,
    .cora-grid,
    .private-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .dash-card {
        min-height: 224px;
    }

    .dash-region {
        grid-column: span 1;
        min-height: 260px;
    }

    .dash-region strong,
    .dash-region small {
        max-width: 100%;
    }

    .region-map {
        width: 190px;
        height: 98px;
        opacity: .45;
    }
}

@media (max-width: 680px) {
    :root {
        --container: min(100vw - 30px, 1160px);
    }

    .brand {
        width: 188px;
    }

    .hero h1 {
        font-size: clamp(48px, 16vw, 70px);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .value-cards {
        margin-top: -32px;
    }

    .journey-track,
    .network-grid,
    .dashboard-preview {
        grid-template-columns: 1fr;
    }

    .dashboard-preview {
        padding: 12px;
    }

    .dash-card,
    .dash-region,
    .dash-score {
        min-height: 220px;
    }

    .dash-card {
        padding: 24px 20px 94px;
    }

    .dash-card small {
        max-width: 82%;
    }

    .bar-chart {
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        height: 62px;
    }

    .region-map {
        width: 150px;
        height: 78px;
        right: 18px;
        bottom: 22px;
    }

    .score-ring {
        width: 108px;
        height: 108px;
    }

    .cora-card {
        min-height: 210px;
    }

    .cora-card img {
        width: 120px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

/* Updated private intake and trusted-network mockup refinements */
.primary-nav a[href="#network"] {
    white-space: nowrap;
}

.network-note {
    max-width: 720px;
    margin: 30px auto 0;
    color: var(--slate);
    font-size: 13px;
    line-height: 1.65;
}

.partner-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    color: var(--gold);
    border: 1px solid rgba(183, 146, 90, .44);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 20%, rgba(215, 188, 124, .20), transparent 55%), #fff;
    box-shadow: inset 0 0 0 8px rgba(247, 245, 242, .78);
}

.partner-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.private-grid {
    align-items: start;
    grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
}

.private-lede {
    max-width: 560px;
    margin-top: 28px;
    color: rgba(255, 253, 248, .80);
    font-size: 17px;
    line-height: 1.78;
}

.privacy-principles {
    display: grid;
    gap: 12px;
    max-width: 520px;
    margin-top: 30px;
}

.privacy-principles span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 253, 248, .78);
    font-size: 14px;
}

.privacy-principles span::before {
    content: '';
    width: 9px;
    height: 9px;
    border: 1px solid rgba(215, 188, 124, .8);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(215, 188, 124, .08);
}

.intake-form {
    position: relative;
    z-index: 1;
    padding: clamp(24px, 3vw, 38px);
    color: var(--midnight);
    background: rgba(255, 253, 248, .97);
    border: 1px solid rgba(215, 188, 124, .34);
    box-shadow: 0 28px 90px rgba(0, 0, 0, .28);
}

.intake-form::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(183, 146, 90, .18);
    pointer-events: none;
}

.form-head,
.form-section {
    position: relative;
    z-index: 1;
}

.form-head {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(11, 31, 54, .10);
}

.eyebrow-compact {
    font-size: 10px;
    letter-spacing: .20em;
}

.eyebrow-compact::after {
    width: 34px;
}

.form-head h3 {
    margin-top: 12px;
    color: var(--midnight);
    font-family: var(--serif);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: 1;
}

.form-head p:not(.eyebrow) {
    margin-top: 14px;
    color: var(--slate);
    font-size: 14px;
    line-height: 1.65;
}

.form-section {
    margin: 0;
    padding: 26px 0 0;
    border: 0;
}

.form-section + .form-section,
.role-panel + .form-section,
.role-panel.is-active + .form-section {
    margin-top: 4px;
}

.form-section legend {
    padding: 0;
    color: var(--midnight);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.field-grid {
    display: grid;
    gap: 18px;
    margin-top: 16px;
}

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

.intake-form label {
    display: grid;
    gap: 7px;
    color: var(--slate-dark);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: .02em;
}

.intake-form label span {
    color: var(--slate);
    font-weight: 500;
}

.intake-form input,
.intake-form select,
.intake-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    color: var(--midnight);
    background: #fff;
    border: 1px solid rgba(11, 31, 54, .16);
    border-radius: 0;
    font: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
    border-color: rgba(183, 146, 90, .82);
    box-shadow: 0 0 0 4px rgba(183, 146, 90, .12);
}

.role-options {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 16px;
}

.role-options label {
    position: relative;
    min-height: 70px;
    display: grid;
    place-items: center;
    padding: 12px 10px;
    text-align: center;
    border: 1px solid rgba(11, 31, 54, .13);
    background: linear-gradient(180deg, #fff, var(--ivory));
    cursor: pointer;
    text-decoration: none;
    transition: border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.role-options label:hover {
    transform: translateY(-2px);
    border-color: rgba(183, 146, 90, .50);
}

.role-options input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.role-options span {
    color: var(--midnight);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .10em;
    line-height: 1.25;
    text-transform: uppercase;
}

.role-options label:has(input:checked) {
    border-color: rgba(183, 146, 90, .92);
    box-shadow: inset 0 0 0 1px rgba(183, 146, 90, .45), 0 16px 34px rgba(183, 146, 90, .12);
}

.role-panel {
    display: none;
}

.role-panel.is-active {
    display: block;
}

.privacy-checks {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.privacy-checks label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--slate-dark);
    font-weight: 600;
    line-height: 1.45;
}

.privacy-checks input {
    width: 16px;
    min-width: 16px;
    height: 16px;
    min-height: 16px;
    margin-top: 2px;
    accent-color: var(--gold);
}

.form-submit {
    width: 100%;
    margin-top: 26px;
    border: 0;
    cursor: pointer;
}

.form-disclaimer {
    margin-top: 16px;
    color: var(--slate);
    font-size: 12px;
    line-height: 1.55;
}

@media (max-width: 1180px) {
    .role-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 680px) {
    .field-grid.two-col,
    .role-options {
        grid-template-columns: 1fr;
    }

    .intake-form {
        padding: 24px 18px;
    }

    .intake-form::before {
        inset: 7px;
    }
}

/* Modal conversation flow refinements */
body.nav-open,
body.modal-open {
    overflow: hidden;
}

button {
    font: inherit;
}

.primary-nav a[data-open-intake-modal] {
    white-space: nowrap;
}

.private-path-panel p {
    margin-bottom: 24px;
}

.path-grid {
    display: grid;
    gap: 12px;
}

.path-card {
    width: 100%;
    display: grid;
    gap: 7px;
    padding: 18px 18px;
    color: rgba(255, 253, 248, .78);
    text-align: left;
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(215, 188, 124, .24);
    cursor: pointer;
    text-decoration: none;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.path-card:hover,
.path-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(215, 188, 124, .62);
    background: rgba(255, 255, 255, .07);
    outline: none;
}

.path-card strong {
    color: var(--gold-light);
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.path-card span {
    color: rgba(255, 253, 248, .72);
    font-size: 13px;
    line-height: 1.5;
}

.partner-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 18px;
    padding: 0;
    color: var(--gold);
    background: transparent;
    border: 0;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
    cursor: pointer;
}

.partner-action:hover,
.partner-action:focus-visible {
    color: var(--midnight);
    outline: none;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(7, 24, 39, .72);
    backdrop-filter: blur(10px);
}

.conversation-modal {
    position: fixed;
    inset: 0;
    z-index: 91;
    display: grid;
    place-items: center;
    padding: clamp(16px, 3vw, 40px);
    pointer-events: none;
}

.modal-backdrop[hidden],
.conversation-modal[hidden] {
    display: none !important;
}

.modal-dialog {
    position: relative;
    width: min(980px, 100%);
    max-height: min(92vh, 980px);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    overflow: hidden;
    color: var(--midnight);
    background: var(--warm-white);
    border: 1px solid rgba(215, 188, 124, .42);
    box-shadow: 0 34px 120px rgba(0, 0, 0, .46);
    pointer-events: auto;
}

.modal-dialog:focus {
    outline: none;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: rgba(255, 253, 248, .88);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(215, 188, 124, .24);
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    transition: background .18s ease, border-color .18s ease;
}

.modal-close:hover,
.modal-close:focus-visible {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(215, 188, 124, .52);
    outline: none;
}

.modal-intro {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 22px;
    padding: clamp(26px, 4vw, 42px) clamp(24px, 4vw, 46px);
    color: var(--warm-white);
    background: radial-gradient(circle at 12% 0%, rgba(183, 146, 90, .24), transparent 36%), linear-gradient(135deg, var(--midnight-2), var(--midnight));
    border-bottom: 1px solid rgba(215, 188, 124, .28);
}

.modal-lock {
    margin: 0;
}

.modal-intro h2 {
    margin-top: 12px;
    color: var(--warm-white);
    font-family: var(--serif);
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: 1;
}

.modal-intro p:not(.eyebrow) {
    max-width: 680px;
    margin-top: 14px;
    color: rgba(255, 253, 248, .76);
    font-size: 15px;
    line-height: 1.65;
}

.modal-scroll {
    overflow: auto;
    background: var(--ivory);
}

.modal-scroll .intake-form {
    box-shadow: none;
    border: 0;
    background: rgba(255, 253, 248, .98);
}

.modal-scroll .intake-form::before {
    inset: 14px;
}

@media (max-width: 760px) {
    .modal-intro {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-right: 76px;
    }

    .modal-lock {
        width: 52px;
        height: 52px;
    }

    .modal-close {
        top: 16px;
        right: 16px;
    }
}
