:root {
    --ink: #07142d;
    --ink-soft: #2d3c57;
    --navy: #0b2b57;
    --navy-deep: #071a39;
    --blue: #155fce;
    --cyan: #79dff0;
    --cyan-soft: #c9f2f7;
    --red: #ef3343;
    --paper: #f5f8f8;
    --white: #ffffff;
    --line: #cdd8e3;
    --muted: #6e7c91;
    --success: #0d8e65;
    --warning: #9b6300;
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: "Montserrat", Arial, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

button,
input {
    font: inherit;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
dialog:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 4px;
}

a {
    color: inherit;
}

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

[hidden] {
    display: none !important;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: -80px;
    left: 20px;
    border-radius: 30px;
    background: var(--white);
    padding: 12px 18px;
    transition: top .2s ease;
}

.skip-link:focus {
    top: 20px;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.site-header {
    position: absolute;
    z-index: 30;
    top: 20px;
    left: 0;
    width: 100%;
}

.header-inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    gap: 28px;
    border-radius: 44px;
    background: var(--navy);
    color: var(--white);
    padding: 0 28px;
    box-shadow: 0 18px 50px rgba(7, 26, 57, .13);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: inherit;
    text-decoration: none;
}

.brand img {
    width: 168px;
    height: auto;
    filter: brightness(0) invert(1);
}

.brand-divider {
    width: 1px;
    height: 28px;
    background: currentColor;
    opacity: .28;
}

.brand-product {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
}

.header-nav a {
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.header-nav a:hover {
    color: var(--white);
}

.button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    border-radius: 999px;
    padding: 0 27px;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

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

.button:active {
    transform: translateY(0);
}

.button:disabled {
    cursor: not-allowed;
    opacity: .45;
    transform: none;
}

.button-small {
    min-height: 44px;
    padding-inline: 22px;
    font-size: 13px;
}

.button-outline {
    border: 1px solid rgba(255, 255, 255, .5);
    background: transparent;
    color: var(--white);
}

.button-outline:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--navy);
}

.button-primary {
    background: var(--red);
    color: var(--white);
}

.button-primary:hover {
    background: #ff4351;
}

.button-icon {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
}

.button-ghost,
.button-outline-dark {
    border: 1px solid #aebdd0;
    background: transparent;
    color: var(--ink);
}

.button-ghost:hover,
.button-outline-dark:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}

.hero {
    position: relative;
    min-height: 920px;
    overflow: hidden;
    background:
        linear-gradient(90deg, transparent 49.93%, rgba(7, 20, 45, .06) 50%, transparent 50.07%),
        var(--paper);
    padding-top: 155px;
}

.hero::before {
    position: absolute;
    top: 250px;
    right: -260px;
    width: 640px;
    height: 640px;
    border: 1px solid rgba(21, 95, 206, .13);
    border-radius: 50%;
    content: "";
}

.hero-grid {
    position: relative;
    display: grid;
    min-height: 650px;
    align-items: center;
    grid-template-columns: minmax(0, 1.05fr) minmax(410px, .95fr);
    gap: 80px;
}

.eyebrow,
.section-kicker,
.result-kicker,
.preview-label,
.quiz-aside-label,
.source-card-label,
.opportunity-type {
    margin: 0 0 24px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

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

.eyebrow::before {
    width: 38px;
    height: 3px;
    background: var(--red);
    content: "";
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(58px, 5.8vw, 88px);
    font-weight: 500;
    letter-spacing: -.06em;
    line-height: .98;
}

.hero h1 em {
    color: var(--blue);
    font-weight: 400;
}

.hero-lead {
    max-width: 650px;
    margin: 38px 0 0;
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 34px;
}

.text-link {
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.text-link span {
    margin-left: 6px;
    color: var(--blue);
}

.privacy-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 11px;
}

.privacy-note span {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border: 1px solid var(--blue);
    border-radius: 50%;
    color: var(--blue);
}

.route-preview-wrap {
    position: relative;
    min-height: 610px;
}

.preview-backdrop {
    position: absolute;
    inset: 52px -28px 12px 28px;
    transform: rotate(3.6deg);
    background: var(--cyan-soft);
}

.route-preview {
    position: absolute;
    inset: 14px 4px 42px 0;
    display: flex;
    flex-direction: column;
    transform: rotate(-1.5deg);
    background:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
        var(--navy);
    background-size: 46px 46px;
    color: var(--white);
    padding: 34px 38px 30px;
    box-shadow: 0 34px 70px rgba(7, 26, 57, .18);
}

.route-preview::after {
    position: absolute;
    top: 112px;
    right: -42px;
    display: grid;
    width: 84px;
    height: 84px;
    place-items: center;
    border-radius: 50%;
    background: var(--red);
    content: "↗";
    font-size: 31px;
    font-weight: 500;
}

.preview-topline,
.preview-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, .67);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.preview-topline {
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    padding-bottom: 18px;
}

.preview-label {
    margin-top: 15px;
    color: var(--cyan);
}

.route-preview h2 {
    margin: 0;
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 500;
    letter-spacing: -.05em;
    line-height: 1.04;
}

.preview-steps {
    display: grid;
    gap: 0;
    margin: auto 0 28px;
    padding: 0;
    list-style: none;
}

.preview-steps li {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding: 16px 0;
}

.preview-steps span {
    color: var(--cyan);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.preview-steps strong {
    font-size: 13px;
    font-weight: 600;
}

.preview-footer {
    justify-content: flex-start;
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding-top: 18px;
}

.preview-footer b {
    margin-left: auto;
    color: var(--cyan);
    font-size: 24px;
}

.hero-audience {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.audience-line {
    display: flex;
    min-height: 90px;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 700;
}

.audience-line i {
    color: var(--red);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
}

.section {
    padding: 135px 0;
}

.editorial-heading {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr) minmax(320px, .65fr);
    align-items: end;
    gap: 36px;
}

.editorial-heading .section-kicker {
    align-self: start;
    margin-top: 19px;
}

.editorial-heading h2,
.quiz-heading h2,
.results-topline h2,
.opportunity-heading h2,
.methodology-title h2 {
    margin: 0;
    font-size: clamp(48px, 5.4vw, 78px);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: 1.03;
}

.editorial-copy {
    padding-bottom: 7px;
}

.editorial-copy p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.7;
}

.editorial-copy small {
    display: block;
    margin-top: 24px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.6;
}

.journey-list {
    display: grid;
    gap: 12px;
    margin-top: 85px;
}

.journey-item {
    display: grid;
    min-height: 190px;
    align-items: center;
    grid-template-columns: 150px 1fr auto;
    gap: 35px;
    border: 1px solid var(--line);
    background: var(--white);
    padding: 30px 42px;
}

.journey-item-dark {
    width: calc(100% - 80px);
    margin-left: 80px;
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}

.journey-item-cyan {
    width: calc(100% - 160px);
    margin-left: 160px;
    border-color: var(--cyan-soft);
    background: var(--cyan-soft);
}

.journey-number {
    color: var(--red);
    font-size: 50px;
    font-weight: 300;
    letter-spacing: -.05em;
}

.journey-item h3 {
    margin: 0 0 8px;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -.025em;
}

.journey-item p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.journey-item-dark p {
    color: rgba(255, 255, 255, .66);
}

.journey-item b {
    font-size: 36px;
    font-weight: 300;
}

.quiz-section {
    background: var(--navy-deep);
    color: var(--white);
}

.section-kicker-light {
    color: var(--cyan);
}

.quiz-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.quiz-heading h2 {
    max-width: 850px;
}

.quiz-heading-index {
    color: transparent;
    font-size: clamp(140px, 17vw, 240px);
    font-weight: 700;
    letter-spacing: -.1em;
    line-height: .65;
    -webkit-text-stroke: 1px rgba(121, 223, 240, .35);
}

.quiz-shell {
    display: grid;
    min-height: 620px;
    grid-template-columns: 34% 66%;
    margin-top: 80px;
    background: var(--white);
    color: var(--ink);
}

.quiz-aside {
    display: flex;
    flex-direction: column;
    background: var(--cyan-soft);
    padding: 48px 40px;
}

.quiz-aside-label {
    color: var(--blue);
}

.quiz-aside ul {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.quiz-aside li {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 16px;
    border-top: 1px solid rgba(7, 20, 45, .18);
    padding: 22px 0;
    font-size: 14px;
    font-weight: 600;
}

.quiz-aside li span {
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
}

.quiz-aside-note {
    margin: auto 0 20px;
    color: var(--muted);
    font-size: 11px;
}

.aside-reset {
    width: fit-content;
    border: 0;
    border-bottom: 1px solid currentColor;
    background: transparent;
    color: var(--ink);
    padding: 0 0 3px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
}

.quiz-content {
    min-width: 0;
    padding: 58px 64px 52px;
}

.quiz-placeholder {
    display: flex;
    min-height: 500px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.placeholder-code {
    margin-bottom: 30px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .2em;
}

.quiz-placeholder h3,
.review-screen h3 {
    max-width: 650px;
    margin: 0;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 500;
    letter-spacing: -.05em;
    line-height: 1.06;
}

.quiz-placeholder p,
.review-screen > p:not(.result-kicker) {
    max-width: 610px;
    margin: 24px 0 32px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.quiz-progress-wrap {
    margin-bottom: 38px;
}

.quiz-progress-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.quiz-progress {
    height: 3px;
    overflow: hidden;
    background: #e3e9ef;
}

.quiz-progress span {
    display: block;
    width: 17%;
    height: 100%;
    background: var(--red);
    transition: width .3s ease;
}

.quiz-form fieldset {
    min-width: 0;
    margin: 0;
    border: 0;
    padding: 0;
}

.quiz-form legend {
    width: 100%;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 500;
    letter-spacing: -.04em;
    line-height: 1.1;
}

.question-hint {
    margin: 12px 0 28px;
    color: var(--muted);
    font-size: 13px;
}

.answer-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
}

.answer-option {
    display: grid;
    min-height: 90px;
    align-items: center;
    grid-template-columns: 27px 1fr;
    gap: 14px;
    border: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    padding: 15px 18px;
    text-align: left;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}

.answer-option:nth-child(2n) {
    border-right: 0;
}

.answer-option:hover {
    background: #f2f6f9;
}

.answer-option[aria-pressed="true"] {
    background: var(--navy);
    color: var(--white);
}

.answer-option-marker {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border: 1px solid #aebdca;
    border-radius: 50%;
    color: transparent;
    font-size: 11px;
}

.answer-option[aria-pressed="true"] .answer-option-marker {
    border-color: var(--cyan);
    background: var(--cyan);
    color: var(--navy);
}

.answer-option-copy {
    display: grid;
    gap: 4px;
}

.answer-option-copy strong {
    font-size: 13px;
    font-weight: 650;
}

.answer-option-copy small {
    color: var(--muted);
    font-size: 10px;
    line-height: 1.4;
}

.answer-option[aria-pressed="true"] small {
    color: rgba(255, 255, 255, .65);
}

.question-error {
    min-height: 22px;
    margin: 14px 0 0;
    color: #bc2230;
    font-size: 12px;
    font-weight: 700;
}

.quiz-controls {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 24px;
}

.review-screen {
    min-height: 500px;
}

.review-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
}

.review-item {
    display: grid;
    align-content: start;
    gap: 7px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 16px 18px;
}

.review-item:nth-child(2n) {
    border-right: 0;
}

.review-item span {
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.review-item strong {
    font-size: 12px;
    font-weight: 600;
}

.results-section {
    background: var(--white);
}

.results-topline {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
}

.profile-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 38px 0 50px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.profile-chip {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 12px 18px;
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 700;
}

.low-match-message {
    margin: -22px 0 34px;
    border-left: 4px solid #e0a13c;
    background: #fff8e8;
    padding: 16px 19px;
    color: #704c13;
    font-size: 12px;
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.recommendation-card {
    display: flex;
    min-height: 480px;
    flex-direction: column;
    border: 1px solid var(--line);
    background: var(--paper);
    padding: 32px;
}

.recommendation-card:first-child {
    min-height: 400px;
    grid-column: 1 / -1;
    background: var(--navy);
    color: var(--white);
    padding: 40px;
}

.card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.card-rank {
    color: var(--red);
    font-size: 36px;
    font-weight: 300;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.availability-badge::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #8c9bae;
    content: "";
}

.status-open {
    color: var(--success);
}

.status-open::before {
    background: var(--success);
}

.status-annual,
.status-evergreen {
    color: var(--blue);
}

.status-annual::before,
.status-evergreen::before {
    background: var(--blue);
}

.recommendation-card:first-child .availability-badge,
.recommendation-card:first-child .opportunity-type {
    color: var(--cyan);
}

.opportunity-type {
    margin: 22px 0 12px;
}

.recommendation-card h3 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 550;
    letter-spacing: -.04em;
    line-height: 1.1;
}

.recommendation-card > p:not(.opportunity-type) {
    max-width: 820px;
    margin: 18px 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.recommendation-card:first-child > p:not(.opportunity-type) {
    color: rgba(255, 255, 255, .65);
}

.match-list {
    display: grid;
    gap: 7px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.match-list li {
    position: relative;
    padding-left: 18px;
    color: var(--ink-soft);
    font-size: 11px;
}

.match-list li::before {
    position: absolute;
    left: 0;
    color: var(--success);
    content: "✓";
    font-weight: 800;
}

.recommendation-card:first-child .match-list li {
    color: rgba(255, 255, 255, .8);
}

.recommendation-card:first-child .match-list li::before {
    color: var(--cyan);
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: auto;
}

.card-meta span {
    border: 1px solid var(--line);
    padding: 6px 10px;
    color: var(--muted);
    font-size: 9px;
}

.recommendation-card:first-child .card-meta span {
    border-color: rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .6);
}

.card-actions {
    display: grid;
    grid-template-columns: 1fr 52px;
    gap: 8px;
    margin-top: 20px;
}

.card-action {
    display: grid;
    min-height: 52px;
    place-items: center;
    border: 1px solid #aebdd0;
    border-radius: 999px;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

.primary-action {
    border: 0;
    background: var(--red);
    color: var(--white);
    font-size: 20px;
}

.recommendation-card:first-child .card-action:not(.primary-action) {
    border-color: rgba(255, 255, 255, .35);
    color: var(--white);
}

.results-lower-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 12px;
    margin-top: 12px;
}

.career-panel,
.route-panel {
    background: var(--paper);
    padding: 42px;
}

.career-panel h3,
.route-panel h3 {
    margin: 0;
    font-size: 27px;
    font-weight: 550;
    letter-spacing: -.035em;
    line-height: 1.15;
}

.professions-list {
    display: grid;
    gap: 0;
    margin-top: 28px;
    border-top: 1px solid var(--line);
}

.profession-item {
    display: grid;
    gap: 8px;
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
}

.profession-item strong {
    font-size: 14px;
}

.profession-item span {
    color: var(--muted);
    font-size: 10px;
    line-height: 1.6;
}

.route-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.track-label {
    max-width: 210px;
    background: var(--cyan-soft);
    padding: 9px 12px;
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    text-align: center;
}

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

.route-step {
    position: relative;
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 16px;
    padding-bottom: 24px;
}

.route-step:not(:last-child)::before {
    position: absolute;
    top: 31px;
    bottom: 0;
    left: 17px;
    width: 1px;
    background: var(--line);
    content: "";
}

.route-dot {
    position: relative;
    z-index: 1;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
}

.route-step:first-child .route-dot {
    border-color: var(--red);
    background: var(--red);
    color: var(--white);
}

.route-copy {
    display: grid;
    gap: 4px;
}

.route-copy small {
    color: var(--blue);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.route-copy strong {
    font-size: 12px;
}

.route-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
}

.opportunities-section {
    background: var(--navy);
    color: var(--white);
}

.opportunity-heading {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: end;
    gap: 90px;
}

.opportunity-heading p:last-child {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, .68);
    font-size: 15px;
    line-height: 1.75;
}

.track-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 85px;
    border-top: 1px solid rgba(255, 255, 255, .25);
    border-left: 1px solid rgba(255, 255, 255, .25);
}

.track-list article {
    display: grid;
    min-height: 175px;
    align-content: center;
    grid-template-columns: 56px 1fr;
    column-gap: 18px;
    border-right: 1px solid rgba(255, 255, 255, .25);
    border-bottom: 1px solid rgba(255, 255, 255, .25);
    padding: 30px 34px;
}

.track-list span {
    grid-row: 1 / span 2;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 800;
}

.track-list h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 550;
    letter-spacing: -.025em;
}

.track-list p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .55);
    font-size: 11px;
}

.methodology-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 110px;
}

.methodology-title > p:last-child {
    max-width: 520px;
    margin: 32px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

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

.method-list article {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 22px;
    border-bottom: 1px solid var(--line);
    padding: 30px 0;
}

.method-list article > span {
    color: var(--red);
    font-size: 13px;
    font-weight: 800;
}

.method-list h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 600;
}

.method-list p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.source-strip {
    display: grid;
    grid-template-columns: 1.1fr .75fr .65fr;
    align-items: end;
    gap: 45px;
    margin-top: 95px;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    padding: 30px 0;
}

.source-strip p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 11px;
    line-height: 1.65;
}

.source-links {
    display: grid;
    gap: 9px;
}

.source-links a {
    width: fit-content;
    border-bottom: 1px solid var(--ink);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.source-strip small {
    color: var(--muted);
    font-size: 9px;
    line-height: 1.55;
}

.site-footer {
    background: var(--navy-deep);
    color: var(--white);
    padding: 46px 0;
}

.footer-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr auto;
    gap: 35px;
}

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

.footer-grid p {
    margin: 0;
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
}

.footer-grid > a {
    color: var(--cyan);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

.opportunity-dialog {
    width: min(calc(100% - 32px), 820px);
    max-height: 90vh;
    overflow: auto;
    border: 0;
    background: var(--white);
    color: var(--ink);
    padding: 0;
    box-shadow: 0 32px 100px rgba(7, 20, 45, .35);
}

.opportunity-dialog::backdrop {
    background: rgba(4, 15, 35, .78);
    backdrop-filter: blur(5px);
}

.dialog-close {
    position: sticky;
    z-index: 2;
    top: 20px;
    display: grid;
    width: 42px;
    height: 42px;
    float: right;
    margin: 20px 20px 0 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    cursor: pointer;
    font-size: 25px;
}

.dialog-body {
    padding: 58px 60px 50px;
}

.dialog-body h2 {
    max-width: 680px;
    margin: 0;
    font-size: clamp(35px, 5vw, 54px);
    font-weight: 500;
    letter-spacing: -.05em;
    line-height: 1.06;
}

.dialog-lead {
    margin: 20px 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.dialog-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 34px 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.dialog-facts div {
    display: grid;
    align-content: start;
    gap: 7px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 18px;
}

.dialog-facts small {
    color: var(--muted);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.dialog-facts strong {
    font-size: 11px;
}

.dialog-section {
    border-top: 1px solid var(--line);
    padding: 25px 0;
}

.dialog-section h3 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 600;
}

.dialog-section ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 18px;
    color: var(--ink-soft);
    font-size: 12px;
}

.dialog-disclaimer {
    border-left: 4px solid var(--red);
    background: #f3f6f8;
    padding: 15px 17px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.55;
}

.dialog-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 26px;
}

.dialog-source {
    color: var(--muted);
    font-size: 9px;
}

.toast {
    position: fixed;
    z-index: 100;
    right: 24px;
    bottom: 24px;
    max-width: min(380px, calc(100% - 48px));
    background: var(--navy-deep);
    color: var(--white);
    padding: 15px 20px;
    box-shadow: 0 15px 50px rgba(7, 20, 45, .25);
    font-size: 12px;
}

.reveal {
    animation: reveal-in .65s ease both;
}

.route-preview-wrap.reveal {
    animation-delay: .12s;
}

@keyframes reveal-in {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

@media (max-width: 1100px) {
    .header-nav { display: none; }
    .header-inner { min-height: 72px; }
    .header-inner .button { margin-left: auto; }
    .hero { min-height: 990px; }
    .hero-grid { grid-template-columns: 1fr 430px; gap: 38px; }
    .hero h1 { font-size: 62px; }
    .route-preview-wrap { min-height: 560px; }
    .editorial-heading { grid-template-columns: 1fr 1fr; }
    .editorial-heading .section-kicker { grid-column: 1 / -1; margin: 0; }
    .journey-item { grid-template-columns: 100px 1fr auto; }
    .quiz-content { padding-inline: 40px; }
    .opportunity-heading { gap: 50px; }
    .methodology-grid { gap: 60px; }
}

@media (max-width: 820px) {
    .container { width: min(calc(100% - 32px), var(--container)); }
    .site-header { top: 12px; }
    .header-inner { min-height: 64px; padding-inline: 20px; }
    .brand img { width: 145px; }
    .brand-product, .brand-divider { display: none; }
    .hero { min-height: auto; padding: 120px 0 0; background: var(--paper); }
    .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 62px; }
    .hero h1 { font-size: clamp(50px, 11.5vw, 76px); }
    .route-preview-wrap { width: min(100% - 20px, 560px); min-height: 600px; margin-inline: auto; }
    .hero-audience { position: relative; margin-top: 42px; }
    .audience-line { flex-wrap: wrap; justify-content: center; padding: 20px 0; }
    .section { padding: 92px 0; }
    .editorial-heading { grid-template-columns: 1fr; align-items: start; }
    .editorial-heading .section-kicker { grid-column: auto; }
    .editorial-copy { max-width: 620px; }
    .journey-list { margin-top: 55px; }
    .journey-item, .journey-item-dark, .journey-item-cyan {
        width: 100%; margin-left: 0; grid-template-columns: 72px 1fr auto; padding: 28px;
    }
    .journey-number { font-size: 38px; }
    .quiz-heading-index { display: none; }
    .quiz-shell { grid-template-columns: 1fr; }
    .quiz-aside { min-height: 320px; }
    .quiz-content { padding: 45px 34px; }
    .recommendations-grid, .results-lower-grid { grid-template-columns: 1fr; }
    .recommendation-card:first-child { grid-column: auto; }
    .opportunity-heading, .methodology-grid { grid-template-columns: 1fr; gap: 42px; }
    .track-list { grid-template-columns: 1fr; }
    .source-strip { grid-template-columns: 1fr 1fr; }
    .source-strip small { grid-column: 1 / -1; }
    .footer-grid { grid-template-columns: 1fr auto; }
    .footer-grid p { grid-row: 2; }
}

@media (max-width: 560px) {
    .header-inner .button { min-width: 44px; width: 44px; overflow: hidden; padding: 0; font-size: 0; }
    .header-inner .button span { font-size: 18px; }
    .brand img { width: 135px; }
    .hero-copy { padding-top: 28px; }
    .hero h1 { font-size: clamp(43px, 12.5vw, 62px); }
    .hero-lead { margin-top: 26px; font-size: 15px; }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
    .hero-actions .button { width: 100%; }
    .privacy-note { align-items: flex-start; }
    .route-preview-wrap { min-height: 500px; }
    .preview-backdrop { inset: 42px -10px 12px 10px; }
    .route-preview { inset: 6px 8px 34px 0; padding: 25px 22px; }
    .route-preview::after { top: 105px; right: -13px; width: 62px; height: 62px; font-size: 23px; }
    .route-preview h2 { font-size: 38px; }
    .preview-steps li { grid-template-columns: 70px 1fr; padding: 12px 0; }
    .preview-footer { flex-wrap: wrap; }
    .audience-line { gap: 10px; font-size: 10px; }
    .audience-line i { font-size: 16px; }
    .section { padding: 76px 0; }
    .editorial-heading h2, .quiz-heading h2, .results-topline h2, .opportunity-heading h2, .methodology-title h2 { font-size: 43px; }
    .journey-item, .journey-item-dark, .journey-item-cyan { min-height: auto; grid-template-columns: 1fr auto; gap: 18px; padding: 24px; }
    .journey-number { grid-column: 1 / -1; }
    .journey-item h3 { font-size: 21px; }
    .journey-item b { font-size: 26px; }
    .quiz-shell { margin-top: 48px; }
    .quiz-aside { min-height: 290px; padding: 35px 25px; }
    .quiz-content { padding: 38px 22px; }
    .quiz-placeholder { min-height: 430px; }
    .answer-options, .review-list { grid-template-columns: 1fr; }
    .answer-option, .answer-option:nth-child(2n), .review-item, .review-item:nth-child(2n) { border-right: 0; }
    .quiz-controls { flex-direction: column-reverse; }
    .quiz-controls .button { width: 100%; }
    .results-topline { align-items: flex-start; flex-direction: column; }
    .results-topline .button { width: 100%; }
    .recommendation-card, .recommendation-card:first-child { min-height: 450px; padding: 25px; }
    .career-panel, .route-panel { padding: 28px 24px; }
    .route-header { flex-direction: column; }
    .track-list article { min-height: 150px; grid-template-columns: 42px 1fr; padding: 24px 20px; }
    .track-list h3 { font-size: 18px; }
    .source-strip { grid-template-columns: 1fr; gap: 28px; }
    .source-strip small { grid-column: auto; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid p { grid-row: auto; }
    .dialog-body { padding: 55px 23px 32px; }
    .dialog-facts { grid-template-columns: 1fr; }
    .dialog-actions { align-items: stretch; flex-direction: column; }
}
