.report-dashboard-page {
    --report-accent: #ff7433;
    --report-soft: #fff2e9;
    --report-deep: #18304b;
    background: var(--nm-canvas);
}

/* Defensive layout rules shared by every assessment report. */
.report-dashboard-main > *,
.report-section,
.report-card-surface,
.report-overview-grid > *,
.report-summary-grid > *,
.report-detail-grid > *,
.report-track-grid > *,
.report-career-grid > *,
.analysis-report > *,
.analysis-report__hero > *,
.analysis-report__section,
.analysis-report__domains > article,
.analysis-report__domains > article > div > *,
.ffm-factor-summary > *,
.strengths-analysis-grid > *,
.barriers-analysis-grid > * {
    min-width: 0;
}

.report-dashboard-page img,
.analysis-report-page img {
    max-width: 100%;
    height: auto;
}

.report-dashboard-page p,
.report-dashboard-page li,
.report-dashboard-page h1,
.report-dashboard-page h2,
.report-dashboard-page h3,
.analysis-report-page p,
.analysis-report-page li,
.analysis-report-page h1,
.analysis-report-page h2,
.analysis-report-page h3 {
    overflow-wrap: anywhere;
}

.report-dashboard-topbar__actions,
.report-detail-actions,
.analysis-report__actions {
    flex-wrap: wrap;
}

.report-dashboard-page table,
.analysis-report-page table {
    max-width: 100%;
}

.report-dashboard-page--gardner {
    --report-accent: #7b5cff;
    --report-soft: #f2efff;
    --report-deep: #25234d;
}

.report-dashboard-page--holland {
    --report-accent: #ff5f57;
    --report-soft: #fff0ee;
    --report-deep: #213047;
}

.report-dashboard-page--cattell { --report-accent: #1ea7a1; --report-soft: #e9f8f6; --report-deep: #173d3b; }
.report-dashboard-page--strengths { --report-accent: #2f80ed; --report-soft: #edf5ff; --report-deep: #18385f; }
.report-dashboard-page--dopamine { --report-accent: #f59e0b; --report-soft: #fff7e6; --report-deep: #513d14; }

.report-dashboard-shell {
    min-height: 100vh;
}

.report-sidebar {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 80;
    display: flex;
    width: 270px;
    flex-direction: column;
    overflow: hidden;
    padding: 30px 22px 22px;
    background:
        radial-gradient(circle at 70% 10%, color-mix(in srgb, var(--report-accent) 22%, transparent), transparent 14rem),
        linear-gradient(160deg, var(--nm-navy-900), var(--nm-navy-950));
    color: #fff;
}

.report-sidebar::after {
    content: "";
    position: absolute;
    inset: auto -12rem -15rem auto;
    width: 28rem;
    height: 28rem;
    border: 1px solid rgba(255,255,255,.055);
    border-radius: 50%;
    box-shadow: 0 0 0 4.5rem rgba(255,255,255,.018), 0 0 0 9rem rgba(255,255,255,.012);
}

.report-sidebar__brand,
.report-sidebar nav,
.report-sidebar__note {
    position: relative;
    z-index: 1;
}

.report-sidebar__close {
    position: absolute;
    inset: 18px auto auto 18px;
    z-index: 3;
    display: none;
    border-color: rgba(255,255,255,.13);
    background: rgba(255,255,255,.07);
    color: #fff;
}

.report-sidebar nav {
    display: grid;
    gap: 5px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.report-sidebar nav a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 13px;
    border-radius: 12px;
    color: #9eacc0;
    font-size: .78rem;
    font-weight: 600;
    transition: .22s ease;
}

.report-sidebar nav a span {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 8px;
    background: rgba(255,255,255,.055);
    color: #c8d2df;
}

.report-sidebar nav a:hover,
.report-sidebar nav a.is-active {
    background: rgba(255,255,255,.07);
    color: #fff;
    transform: translateX(-4px);
}

.report-sidebar nav a.is-active span {
    background: var(--report-accent);
    color: #fff;
    box-shadow: 0 7px 17px color-mix(in srgb, var(--report-accent) 32%, transparent);
}

.report-sidebar__note {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    background: rgba(255,255,255,.045);
}

.report-sidebar__note > span {
    color: var(--report-accent);
}

.report-sidebar__note p {
    margin: 0;
    color: #aab7ca;
    font-size: .67rem;
    line-height: 1.9;
}

.report-dashboard-main {
    min-width: 0;
    margin-inline-start: 270px;
    padding: 0 34px 42px;
}

.report-dashboard-topbar {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-inline: -34px;
    padding-inline: 34px;
    border-bottom: 1px solid rgba(27,38,55,.07);
    background: rgba(244,246,249,.9);
    backdrop-filter: blur(18px);
}

.report-dashboard-topbar__title {
    display: grid;
    gap: 2px;
}

.report-dashboard-topbar__title span {
    color: var(--nm-muted);
    font-size: .66rem;
}

.report-dashboard-topbar__title strong {
    font-size: .88rem;
}

.report-dashboard-topbar__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.report-dashboard-topbar .app-menu-button {
    display: none;
}

.report-content {
    width: min(1160px, 100%);
    margin-inline: auto;
}

.report-hero {
    position: relative;
    display: grid;
    min-height: 410px;
    grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr);
    overflow: hidden;
    margin-top: 28px;
    padding: 52px 56px;
    border-radius: 34px;
    background:
        linear-gradient(rgba(255,255,255,.065) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.065) 1px,transparent 1px),
        linear-gradient(115deg, var(--report-deep), color-mix(in srgb, var(--report-accent) 63%, var(--report-deep)) 63%, var(--report-accent));
    background-size: 42px 42px, 42px 42px, auto;
    color: #fff;
    box-shadow: 0 22px 58px color-mix(in srgb, var(--report-deep) 23%, transparent);
    isolation: isolate;
}

.report-hero::after {
    content: "";
    position: absolute;
    inset: auto -9% -70% auto;
    z-index: -1;
    width: 590px;
    height: 590px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255,255,255,.045), 0 0 0 140px rgba(255,255,255,.025);
    animation: report-spin 26s linear infinite;
}

.report-hero__copy {
    z-index: 3;
    align-self: center;
}

.report-hero__kicker {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,.82);
    font-size: .76rem;
    font-weight: 700;
}

.report-hero__kicker::before {
    content: "";
    width: 23px;
    height: 2px;
    background: #ffd0ad;
    box-shadow: 0 0 12px #ffd0ad;
}

.report-hero h1 {
    max-width: 650px;
    margin: 15px 0 12px;
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.5;
    letter-spacing: -.045em;
}

.report-hero__copy > p {
    max-width: 610px;
    margin: 0;
    color: rgba(255,255,255,.77);
    font-size: .84rem;
    line-height: 2;
}

.report-signature {
    display: flex;
    width: max-content;
    max-width: 100%;
    align-items: center;
    gap: 13px;
    margin-top: 20px;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    background: rgba(8,18,35,.15);
    backdrop-filter: blur(10px);
}

.report-signature small {
    color: rgba(255,255,255,.64);
    font-size: .64rem;
}

.report-signature strong {
    font-size: .88rem;
}

.report-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 23px;
}

.report-hero__meta span {
    display: grid;
    gap: 2px;
    padding-inline-end: 20px;
    border-inline-end: 1px solid rgba(255,255,255,.14);
}

.report-hero__meta span:last-child {
    border: 0;
}

.report-hero__meta small {
    color: rgba(255,255,255,.56);
    font-size: .58rem;
}

.report-hero__meta b {
    font-size: .72rem;
}

.report-hero__visual {
    position: relative;
    min-height: 300px;
    align-self: end;
}

.report-hero__visual .student-character {
    position: absolute;
    inset: auto 50% -60px auto;
    z-index: 2;
    width: auto;
    max-width: none;
    height: 425px;
    object-fit: contain;
    transform: translateX(50%);
    filter: drop-shadow(0 24px 20px rgba(10,24,42,.26));
    animation: report-character-in .9s var(--nm-ease) both;
}

.report-character-halo {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.report-character-halo::before {
    content: "";
    width: 280px;
    height: 280px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.28), rgba(255,255,255,.06) 52%, transparent 55%);
    animation: report-pulse 4.8s ease-in-out infinite;
}

.report-floating-stat {
    position: absolute;
    z-index: 4;
    display: grid;
    min-width: 108px;
    gap: 2px;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 17px;
    background: rgba(255,255,255,.94);
    color: var(--nm-ink);
    box-shadow: 0 16px 35px rgba(21,34,52,.2);
    backdrop-filter: blur(10px);
    animation: report-float 5s ease-in-out infinite;
}

.report-floating-stat small {
    color: var(--nm-muted);
    font-size: .58rem;
}

.report-floating-stat strong {
    color: var(--report-accent);
    font-size: 1.4rem;
}

.report-floating-stat--top {
    inset: 24px auto auto 0;
}

.report-floating-stat--bottom {
    inset: auto 0 12px auto;
    animation-delay: -2.5s;
}

.report-quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 14px 0 46px;
}

.report-quick-stats article {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 11px;
    align-items: center;
    padding: 15px 17px;
    border: 1px solid var(--nm-line);
    border-radius: 17px;
    background: #fff;
    box-shadow: var(--nm-shadow-sm);
}

.report-quick-stats i {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 14px;
    background: var(--report-soft);
    color: var(--report-accent);
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 800;
}

.report-quick-stats span {
    color: var(--nm-muted);
    font-size: .62rem;
}

.report-quick-stats strong {
    display: block;
    margin-top: 2px;
    font-size: .78rem;
}

.report-section-heading {
    margin: 0 0 18px;
}

.report-section-heading > span {
    color: var(--report-accent);
    font-size: .68rem;
    font-weight: 800;
}

.report-section-heading h2 {
    margin: 5px 0;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    letter-spacing: -.035em;
}

.report-section-heading p {
    max-width: 760px;
    margin: 0;
    color: var(--nm-muted);
    font-size: .76rem;
    line-height: 1.9;
}

.report-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 14px;
    margin-bottom: 50px;
}

.report-card-surface {
    border: 1px solid var(--nm-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--nm-shadow-sm);
}

.report-chart-card,
.report-ranking-card,
.report-signal-card {
    padding: 24px;
}

.report-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.report-card-head span {
    color: var(--report-accent);
    font-size: .64rem;
    font-weight: 700;
}

.report-card-head h3 {
    margin: 4px 0 0;
    font-size: 1.15rem;
}

.report-card-head > b {
    padding: 6px 9px;
    border-radius: 9px;
    background: var(--report-soft);
    color: var(--report-accent);
    font-size: .72rem;
}

.radar-wrap {
    position: relative;
    width: min(360px, 100%);
    margin: 12px auto 0;
    aspect-ratio: 1;
}

.radar-wrap svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.radar-shape {
    transform-box: fill-box;
    transform-origin: center;
    animation: report-radar-grow 1s var(--nm-ease) both;
}

.radar-label {
    position: absolute;
    z-index: 2;
    padding: 3px 7px;
    border: 1px solid var(--nm-line);
    border-radius: 8px;
    background: rgba(255,255,255,.94);
    color: var(--nm-ink);
    max-width: 118px;
    font-size: .64rem;
    font-weight: 700;
    transform: translate(50%, -50%);
    line-height: 1.45;
    text-align: center;
}

.profile-bar-chart { display: grid; gap: 12px; margin-top: 22px; }
.profile-bar-chart__row { display: grid; grid-template-columns: minmax(130px,.9fr) minmax(120px,1.4fr) 44px; gap: 10px; align-items: center; }
.profile-bar-chart__row > span { color: var(--nm-ink); font-size: .76rem; font-weight: 800; line-height: 1.65; }
.profile-bar-chart__row > div { height: 10px; overflow: hidden; border-radius: 999px; background: #edf0f4; }
.profile-bar-chart__row i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg,var(--report-accent),color-mix(in srgb,var(--report-accent) 55%,white)); transform-origin: right center; animation: nm-bar-grow 1s var(--nm-ease) both; }
.profile-bar-chart__row strong { color: var(--report-accent); font-size: .75rem; }
.profile-bar-chart__row > small { grid-column: 2 / -1; margin-top: -7px; color: var(--nm-muted); font-size: .66rem; }
.profile-bar-chart__note { margin: 16px 0 0; color: var(--nm-muted); font-size: .7rem; line-height: 1.9; }

.report-score-bars {
    display: grid;
    gap: 13px;
    margin-top: 22px;
}

.report-score-row {
    display: grid;
    grid-template-columns: 26px minmax(72px, .72fr) minmax(90px, 1fr) 38px;
    gap: 9px;
    align-items: center;
}

.report-score-row > span {
    color: #a9b2bf;
    font-size: .58rem;
}

.report-score-copy {
    display: grid;
    min-width: 0;
}

.report-score-copy b {
    font-size: .7rem;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.report-score-copy small {
    color: var(--nm-muted);
    font-size: .54rem;
}

.report-score-track {
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: #edf0f4;
}

.report-score-track i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #cbd3de;
    transform-origin: right center;
    animation: nm-bar-grow 1s var(--nm-ease) both;
}

.report-score-row:first-child .report-score-track i {
    background: var(--report-accent);
}

.report-score-row > strong {
    color: var(--report-accent);
    font-size: .72rem;
    text-align: left;
}

.report-signal-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    border-color: color-mix(in srgb, var(--report-accent) 24%, var(--nm-line));
    background: linear-gradient(135deg, var(--report-soft), #fff);
}

.report-signal-card > div:first-child span {
    color: var(--report-accent);
    font-size: .66rem;
    font-weight: 800;
}

.report-signal-card h3 {
    margin: 5px 0;
    font-size: 1.25rem;
}

.report-signal-card p {
    max-width: 800px;
    margin: 0;
    color: var(--nm-muted);
    font-size: .74rem;
    line-height: 1.9;
}

.report-signal-metrics {
    display: flex;
    gap: 10px;
}

.report-signal-metrics b {
    display: grid;
    min-width: 105px;
    gap: 3px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 13px;
    background: rgba(255,255,255,.72);
    color: var(--report-accent);
    text-align: center;
}

.report-signal-metrics small {
    color: var(--nm-muted);
    font-size: .56rem;
}

.report-detail-section {
    margin-bottom: 50px;
}

/* Extended interest-report chapters based on the supplied report structure. */
.holland-guide-section { margin: 34px 0 42px; }
.holland-types-section { margin: 42px 0; }
.holland-theory-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 18px; }
.holland-theory-card, .holland-scope-card, .holland-score-guide, .holland-profile-reading > article, .holland-type-card, .holland-family-strip { padding: 24px; }
.holland-hex { display: inline-flex; padding: 8px 13px; border-radius: 999px; color: var(--report-accent); background: var(--report-soft); font-size: .78rem; font-weight: 800; letter-spacing: .14em; }
.holland-theory-card h3, .holland-scope-card h3, .holland-score-guide h3, .holland-profile-reading h3, .holland-type-card h3, .holland-family-strip h2 { margin: 10px 0 7px; }
.holland-theory-card p, .holland-score-guide > div > p, .holland-profile-reading p, .holland-family-strip > div > p { margin: 0; color: var(--nm-muted); line-height: 1.95; }
.holland-scope-card { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.holland-scope-card > div:first-child { padding-inline-end: 20px; border-inline-end: 1px solid var(--nm-line); }
.holland-scope-card ul { display: grid; gap: 8px; margin: 10px 0 0; padding: 0; list-style: none; }
.holland-scope-card li { position: relative; padding-inline-start: 21px; color: var(--nm-muted); font-size: .83rem; line-height: 1.75; }
.holland-scope-card li::before { content: "\2713"; position: absolute; inset-inline-start: 0; color: var(--nm-success); font-weight: 800; }
.holland-scope-card > div:last-child li::before { content: "-"; color: var(--nm-warning); }
.holland-score-guide { display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; margin-top: 18px; }
.holland-score-guide > div:first-child > span, .holland-profile-reading article > span, .holland-family-strip > div:first-child > span { color: var(--report-accent); font-size: .73rem; font-weight: 800; }
.holland-score-bands { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.holland-score-bands article { padding: 13px; border-radius: 15px; background: var(--nm-canvas); }
.holland-score-bands b { display: block; color: var(--report-accent); font-size: .75rem; }.holland-score-bands strong { display: block; margin: 3px 0; font-size: .9rem; }.holland-score-bands p { margin: 0; color: var(--nm-muted); font-size: .7rem; line-height: 1.7; }
.holland-profile-reading { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.holland-profile-reading dl { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 15px 0 0; }
.holland-profile-reading dl div { padding: 10px; border-radius: 12px; background: var(--nm-canvas); }.holland-profile-reading dt { color: var(--nm-muted); font-size: .68rem; }.holland-profile-reading dd { margin: 3px 0 0; color: var(--report-accent); font-weight: 800; }
.holland-profile-reading em { display: block; margin-top: 12px; padding: 10px; border-radius: 12px; color: var(--nm-warning); background: var(--nm-warning-soft); font-size: .75rem; font-style: normal; }
.holland-methodology,
.report-more-careers,
.report-prose-panel {
    overflow: hidden;
}

.holland-methodology {
    margin-top: 16px;
    padding: 0;
}

.holland-methodology > summary,
.report-more-careers > summary,
.report-prose-panel > summary {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    cursor: pointer;
    list-style: none;
}

.holland-methodology > summary::-webkit-details-marker,
.report-more-careers > summary::-webkit-details-marker,
.report-prose-panel > summary::-webkit-details-marker {
    display: none;
}

.holland-methodology > summary span,
.report-more-careers > summary span,
.report-prose-panel > summary span {
    display: grid;
    gap: 4px;
}

.holland-methodology > summary b,
.report-more-careers > summary b,
.report-prose-panel > summary b {
    color: var(--nm-ink);
    font-size: .88rem;
}

.holland-methodology > summary small,
.report-more-careers > summary small,
.report-prose-panel > summary small {
    color: var(--nm-muted);
    font-size: .7rem;
    line-height: 1.8;
}

.holland-methodology > summary i,
.report-more-careers > summary i,
.report-prose-panel > summary i {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 11px;
    background: var(--report-soft);
    color: var(--report-accent);
    font-size: 1rem;
    font-style: normal;
    transition: transform .2s ease;
}

.holland-methodology[open] > summary i,
.report-more-careers[open] > summary i,
.report-prose-panel[open] > summary i {
    transform: rotate(180deg);
}

.holland-methodology:not([open]) > .holland-methodology__body,
.report-more-careers:not([open]) > .report-career-grid,
.report-prose-panel:not([open]) > .report-prose {
    display: none;
}

.holland-methodology__body {
    display: grid;
    gap: 18px;
    padding: 4px 22px 22px;
    border-top: 1px solid var(--nm-line);
}

.holland-methodology__body > article {
    padding-top: 18px;
}

.holland-methodology .holland-scope-card,
.holland-methodology .holland-score-guide {
    border-top: 1px solid var(--nm-line);
}
.holland-type-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.holland-type-card { position: relative; overflow: hidden; }.holland-type-card::before { content: ""; position: absolute; inset-block: 0; inset-inline-start: 0; width: 5px; background: var(--type-color, var(--report-accent)); }
.holland-type-card--R { --type-color: #4387ba; }.holland-type-card--I { --type-color: #d55367; }.holland-type-card--A { --type-color: #8a62c2; }.holland-type-card--S { --type-color: #2e9f90; }.holland-type-card--E { --type-color: #ef9a32; }.holland-type-card--C { --type-color: #7b9a45; }
.holland-type-card > header { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; }
.holland-type-card > header i { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 15px; color: #fff; background: var(--type-color); font-style: normal; font-weight: 800; }
.holland-type-card > header span { color: var(--type-color); font-size: .68rem; font-weight: 800; }.holland-type-card > header h3 { margin: 1px 0 0; }.holland-type-card > header > b { color: var(--type-color); font-size: 1.18rem; text-align: center; }.holland-type-card > header > b small { display: block; color: var(--nm-muted); font-size: .62rem; }
.holland-type-card dl { display: grid; gap: 0; margin: 17px 0 0; }.holland-type-card dl div { display: grid; grid-template-columns: 125px 1fr; gap: 10px; padding: 9px 0; border-top: 1px solid var(--nm-line); }.holland-type-card dt { color: var(--nm-muted); font-size: .72rem; }.holland-type-card dd { margin: 0; font-size: .78rem; line-height: 1.75; }
.holland-type-card > p { margin: 14px 0 0; padding: 12px; border-radius: 13px; color: var(--nm-muted); background: color-mix(in srgb, var(--type-color) 7%, white); font-size: .76rem; line-height: 1.8; }.holland-type-card > p strong { color: var(--type-color); }
.holland-family-strip { display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; margin-top: 18px; }
.holland-family-strip > div:last-child { display: grid; gap: 8px; }.holland-family-strip article { display: grid; grid-template-columns: 1fr 1.4fr auto; align-items: center; gap: 8px; padding: 11px 13px; border-radius: 12px; background: var(--nm-canvas); }.holland-family-strip article span { color: var(--nm-muted); font-size: .72rem; }.holland-family-strip article strong { color: var(--report-accent); font-size: .72rem; }

.report-tabs {
    display: grid;
    grid-template-columns: repeat(var(--tab-count, 5), minmax(0, 1fr));
    gap: 7px;
    margin-bottom: 11px;
    padding: 7px;
    border: 1px solid var(--nm-line);
    border-radius: 19px;
    background: #fff;
    box-shadow: var(--nm-shadow-sm);
}

.report-tab {
    display: grid;
    min-width: 0;
    gap: 3px;
    justify-items: center;
    padding: 11px 7px;
    border: 0;
    border-radius: 13px;
    background: transparent;
    color: var(--nm-muted);
    cursor: pointer;
    transition: .2s ease;
}

.report-tab i {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border-radius: 9px;
    background: #f1f3f6;
    color: var(--nm-ink);
    font-size: .62rem;
    font-style: normal;
    font-weight: 800;
}

.report-tab span {
    max-width: 100%;
    font-size: .64rem;
    font-weight: 700;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.report-tab b {
    font-size: .59rem;
}

.report-tab:hover,
.report-tab.is-active {
    background: var(--report-soft);
    color: var(--report-accent);
}

.report-tab.is-active i {
    background: var(--report-accent);
    color: #fff;
    box-shadow: 0 7px 16px color-mix(in srgb, var(--report-accent) 25%, transparent);
}

.report-tabs--strengths {
    grid-template-columns: repeat(5, minmax(145px, 1fr));
    gap: 10px;
    padding: 10px;
}

.report-tabs--strengths .report-tab {
    min-height: 112px;
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 5px 10px;
    align-content: center;
    justify-items: start;
    padding: 13px;
    border: 1px solid var(--nm-line);
    text-align: right;
}

.report-tabs--strengths .report-tab i {
    grid-row: 1 / 3;
    align-self: center;
}

.report-tabs--strengths .report-tab span,
.report-tabs--strengths .report-tab b {
    grid-column: 2;
}

.report-tabs--strengths .report-tab span {
    color: var(--nm-ink);
    font-size: .74rem;
    line-height: 1.75;
    overflow-wrap: normal;
    word-break: normal;
}

.report-tabs--strengths .report-tab b {
    color: var(--nm-muted);
    font-size: .62rem;
}

.report-tabs--strengths .report-tab:hover,
.report-tabs--strengths .report-tab.is-active {
    border-color: color-mix(in srgb, var(--report-accent) 45%, var(--nm-line));
}

.report-detail-panel {
    padding: 24px;
    animation: report-panel-in .4s var(--nm-ease) both;
}

.report-detail-panel[hidden] {
    display: none;
}

.report-detail-intro {
    display: grid;
    grid-template-columns: 68px 1fr auto;
    gap: 15px;
    align-items: center;
}

.report-detail-code {
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    border-radius: 21px;
    background: var(--report-soft);
    color: var(--report-accent);
    font-size: 1.65rem;
    font-weight: 800;
}

.report-detail-copy > span {
    color: var(--report-accent);
    font-size: .6rem;
    font-weight: 700;
}

.report-detail-copy h3 {
    margin: 3px 0;
    font-size: 1.35rem;
}

.report-detail-copy p {
    margin: 0;
    color: var(--nm-muted);
    font-size: .72rem;
    line-height: 1.95;
}

.report-detail-score {
    display: grid;
    min-width: 92px;
    gap: 2px;
    padding-inline-start: 18px;
    border-inline-start: 1px solid var(--nm-line);
    text-align: center;
}

.report-detail-score strong {
    color: var(--report-accent);
    font-size: 1.7rem;
}

.report-detail-score small {
    color: var(--nm-muted);
    font-size: .6rem;
}

.report-personal-note {
    margin: 18px 0;
    padding: 14px 16px;
    border-inline-start: 4px solid var(--report-accent);
    border-radius: 15px;
    background: var(--report-soft);
}

.report-personal-note b {
    color: var(--report-accent);
    font-size: .7rem;
}

.report-personal-note p {
    margin: 4px 0 0;
    color: #526071;
    font-size: .72rem;
    line-height: 1.95;
}

.report-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.ffm-factor-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 18px 0;
}

.ffm-factor-summary article,
.ffm-print-guidance-grid article {
    padding: 18px;
    border: 1px solid var(--nm-line);
    border-radius: 16px;
    background: #fbfcfe;
}

.ffm-factor-summary b,
.ffm-print-guidance-grid h3 {
    color: var(--report-deep);
    font-size: .82rem;
}

.ffm-factor-summary p,
.ffm-print-guidance-grid li {
    margin: 7px 0 0;
    color: #536174;
    font-size: .78rem;
    line-height: 2;
}

.ffm-print-guidance-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ffm-print-guidance-grid ul {
    margin: 10px 0 0;
    padding-inline-start: 20px;
}

.cattell-sten-profile {
    display: grid;
    gap: 12px;
    max-height: 630px;
    margin-top: 20px;
    padding-inline-end: 6px;
    overflow: auto;
}

.cattell-sten-row {
    display: grid;
    gap: 6px;
}

.cattell-sten-row header,
.cattell-sten-row__poles {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.cattell-sten-row header b {
    color: var(--nm-ink);
    font-size: .72rem;
}

.cattell-sten-row header strong {
    color: var(--report-deep);
    font-size: .68rem;
}

.cattell-sten-row__poles {
    color: var(--nm-muted);
    font-size: .61rem;
}

.cattell-sten-row__track {
    position: relative;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #dbe4ea, #aebec9 50%, #dbe4ea);
}

.cattell-sten-row__track::after {
    position: absolute;
    inset: -2px 50% -2px auto;
    width: 1px;
    background: #fff;
    content: "";
}

.cattell-sten-row__track i {
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--report-deep);
    box-shadow: 0 2px 7px rgba(36, 57, 71, .25);
    transform: translate(50%, -50%);
}

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

.cattell-focus-columns section,
.cattell-group-grid article,
.cattell-combination-grid article {
    padding: 16px;
    border: 1px solid var(--nm-line);
    border-radius: 15px;
    background: #fbfcfd;
}

.cattell-focus-columns h4,
.cattell-group-grid h3,
.cattell-combination-grid h3 {
    margin: 0 0 10px;
    color: var(--report-deep);
    font-size: .8rem;
}

.cattell-focus-columns p,
.cattell-group-grid p {
    display: grid;
    gap: 7px;
}

.cattell-focus-columns p span,
.cattell-group-grid p span {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    color: #536174;
    font-size: .68rem;
    line-height: 1.8;
}

.cattell-combination-grid p {
    color: #536174;
    font-size: .76rem;
    line-height: 2;
}

.cattell-context-section {
    display: grid;
    gap: 18px;
    padding: 24px;
}

.cattell-sten-profile--print {
    max-height: none;
    overflow: visible;
}

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

.strengths-top-five article {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--nm-line);
    border-radius: 16px;
    background: #fbfdfc;
}

.strengths-top-five article:first-child {
    grid-column: 1 / -1;
}

.strengths-top-five i,
.strengths-top-ten i,
.strengths-full-ranking article > i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: var(--report-soft);
    color: var(--report-deep);
    font-style: normal;
    font-weight: 800;
}

.strengths-top-five span,
.strengths-top-ten span,
.strengths-full-ranking span {
    color: var(--nm-muted);
    font-size: .64rem;
}

.strengths-top-five h4,
.strengths-full-ranking h4 {
    margin: 3px 0;
    color: var(--report-deep);
}

.strengths-top-five p,
.strengths-analysis-grid p,
.strengths-full-ranking p,
.strengths-domain-chart p {
    margin: 5px 0 0;
    color: #536174;
    font-size: .74rem;
    line-height: 1.95;
}

.strengths-top-ten {
    display: grid;
    gap: 8px;
}

.strengths-top-ten > p,
.strengths-top-ten > article {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    gap: 10px;
    align-items: center;
    margin: 0;
    padding: 9px 12px;
    border-radius: 13px;
    background: #f7faf9;
}

.strengths-analysis-grid article {
    padding: 16px;
    border: 1px solid var(--nm-line);
    border-radius: 15px;
    background: #fbfdfc;
}

.strengths-analysis-grid b {
    color: var(--report-deep);
    font-size: .78rem;
}

.strengths-domain-section {
    display: grid;
    gap: 20px;
    padding: 24px;
}

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

.strengths-domain-chart article {
    padding: 16px;
    border: 1px solid var(--nm-line);
    border-radius: 15px;
}

.strengths-domain-chart header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.strengths-domain-chart h3 {
    margin: 0;
    color: var(--report-deep);
    font-size: .82rem;
}

.strengths-domain-chart article > div {
    height: 9px;
    margin-top: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: #e5ece9;
}

.strengths-domain-chart article > div i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--report-accent);
}

.strengths-full-ranking summary {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    cursor: pointer;
}

.strengths-full-ranking summary span {
    display: grid;
}

.strengths-full-ranking > div {
    display: grid;
    gap: 8px;
    padding: 0 16px 16px;
}

.strengths-full-ranking article,
.strengths-print-all article {
    display: grid;
    grid-template-columns: 38px minmax(130px, .7fr) 1.5fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-top: 1px solid var(--nm-line);
}

.strengths-full-ranking article > b {
    color: var(--nm-muted);
    font-size: .64rem;
}

.strengths-print-all {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 14px;
}

.strengths-print-all article {
    grid-template-columns: 28px minmax(90px, .55fr) 1fr;
    gap: 8px;
    padding: 6px;
}

.strengths-print-all h3 {
    margin: 0;
    font-size: .7rem;
}

.strengths-print-all p {
    margin: 0;
    color: #536174;
    font-size: .58rem;
    line-height: 1.6;
}

.report-dashboard-page--strengths .report-print-overview .report-score-row {
    grid-template-columns: 32px 1fr auto;
}

.report-detail-item {
    padding: 14px;
    border: 1px solid var(--nm-line);
    border-radius: 16px;
    background: #fff;
    transition: .22s ease;
}

.report-detail-item:hover {
    border-color: color-mix(in srgb, var(--report-accent) 25%, var(--nm-line));
    transform: translateY(-3px);
}

.report-detail-item header {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    gap: 8px;
    align-items: center;
}

.report-detail-item header i {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 9px;
    background: var(--report-soft);
    color: var(--report-accent);
    font-size: .58rem;
    font-style: normal;
    font-weight: 800;
}

.report-detail-item h4 {
    margin: 0;
    font-size: .72rem;
}

.report-detail-item header b {
    color: var(--report-accent);
    font-size: .68rem;
}

.report-detail-item p {
    margin: 10px 0 0;
    color: var(--nm-muted);
    font-size: .64rem;
    line-height: 1.9;
}

.report-mini-chart {
    display: grid;
    grid-template-columns: 24px 1fr 28px;
    gap: 7px;
    align-items: center;
    margin-top: 12px;
}

.report-mini-chart small { color: var(--nm-muted); font-size: .56rem; text-align: center; }
.report-mini-chart > div { height: 8px; overflow: hidden; border-radius: 999px; background: #edf0f4; }
.report-mini-chart span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--report-accent), color-mix(in srgb, var(--report-accent) 55%, white));
    animation: nm-bar-grow 1s var(--nm-ease) both;
}

.report-career-section,
.report-summary-grid,
.report-prose-panel,
.report-disclaimer {
    margin-bottom: 50px;
}

.report-career-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
}

.report-career-card {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    padding: 20px;
}

.report-career-card > span {
    color: #aab3c0;
    font-size: .58rem;
}

.report-career-card h3 {
    max-width: calc(100% - 65px);
    margin: 8px 0;
    font-size: 1rem;
}

.report-career-card em {
    color: var(--report-accent);
    font-size: .65rem;
    font-style: normal;
    font-weight: 800;
}

.report-career-card p {
    margin: 11px 0 42px;
    color: var(--nm-muted);
    font-size: .66rem;
    line-height: 1.9;
    overflow-wrap: anywhere;
}

.report-fit-ring {
    position: absolute;
    left: 16px;
    top: 17px;
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(var(--report-accent) calc(var(--fit) * 1%), #edf0f4 0);
    isolation: isolate;
}

.report-fit-ring::after {
    content: "";
    position: absolute;
    inset: 6px;
    z-index: -1;
    border-radius: 50%;
    background: #fff;
}

.report-fit-ring b {
    font-size: .72rem;
}

.report-career-card .text-link {
    position: absolute;
    inset: auto 20px 18px auto;
    color: var(--report-accent);
    font-size: .67rem;
    font-weight: 800;
}

.report-more-careers {
    margin-top: 14px;
    padding: 0;
    border-color: color-mix(in srgb, var(--report-accent) 18%, var(--nm-line));
}

.report-more-careers > .report-career-grid {
    padding: 0 16px 16px;
}

.report-more-careers .report-career-card {
    border: 1px solid var(--nm-line);
    box-shadow: none;
}

.report-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.report-summary-column {
    padding: 28px;
}

.report-summary-column + .report-summary-column {
    border-inline-start: 1px solid var(--nm-line);
    background: #f8f9fb;
}

.report-summary-column > span {
    color: var(--report-accent);
    font-size: .66rem;
    font-weight: 800;
}

.report-summary-column h2 {
    margin: 5px 0 15px;
    font-size: 1.35rem;
}

.report-summary-column p {
    color: var(--nm-muted);
    font-size: .74rem;
    line-height: 2;
}

.report-prose-panel {
    padding: 0;
}

.report-prose {
    padding: 2px 24px 24px;
    border-top: 1px solid var(--nm-line);
    color: #455367;
    font-size: .78rem;
    line-height: 2.15;
}

.report-disclaimer {
    padding: 20px 23px;
    border: 1px solid color-mix(in srgb, var(--report-accent) 23%, var(--nm-line));
    border-radius: 18px;
    background: var(--report-soft);
}

.report-disclaimer strong {
    color: var(--report-accent);
    font-size: .78rem;
}

.report-disclaimer p,
.report-disclaimer li {
    color: #5f6d80;
    font-size: .68rem;
    line-height: 1.95;
}

.report-disclaimer ul {
    margin-bottom: 0;
}

.report-dashboard-footer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--nm-line);
}

.report-dashboard-footer p,
.report-dashboard-footer > span {
    color: var(--nm-muted);
    font-size: .61rem;
}

/* خوانایی متن‌های تحلیلی و پیشنهاد رشته هالند */
.report-section-heading p,
.report-detail-copy p,
.report-detail-item p,
.report-career-card p,
.report-summary-column p,
.report-prose,
.holland-methodology p,
.holland-methodology li {
    font-size: .9rem;
    line-height: 2.05;
}

.report-detail-copy h3,
.report-career-card h3 {
    line-height: 1.55;
}

.report-track-section {
    display: grid;
    gap: 24px;
    scroll-margin-top: 92px;
}

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

.report-track-card {
    display: grid;
    gap: 15px;
    padding: 22px;
    overflow: hidden;
}

.report-track-card--primary {
    grid-column: 1 / -1;
    border-color: color-mix(in srgb, var(--report-accent) 36%, var(--nm-line));
    background: linear-gradient(135deg, var(--report-soft), #fff 62%);
}

.report-track-card header {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 13px;
    align-items: center;
}

.report-track-card header > i {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--report-accent), color-mix(in srgb, var(--report-accent) 65%, white));
    box-shadow: 0 9px 20px color-mix(in srgb, var(--report-accent) 20%, transparent);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 800;
}

.report-track-card header span {
    color: var(--report-accent);
    font-size: .75rem;
    font-weight: 800;
}

.report-track-card h3 {
    margin: 2px 0 0;
    font-size: 1.35rem;
}

.report-track-card header > strong {
    color: var(--report-accent);
    font-size: 1.35rem;
}

.report-track-progress {
    height: 8px;
    overflow: hidden;
    border-radius: 99px;
    background: #edf0f4;
}

.report-track-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--report-accent), color-mix(in srgb, var(--report-accent) 58%, white));
}

.report-track-card p {
    margin: 0;
    color: #536176;
    font-size: .9rem;
    line-height: 2.05;
}

.report-track-card small {
    color: var(--nm-muted);
    font-size: .78rem;
    line-height: 1.9;
}

.report-career-reason {
    padding: 11px 12px;
    border-radius: 12px;
    background: var(--report-soft);
    color: #536176;
}

.report-career-reason b {
    color: var(--report-accent);
}

.report-track-notice {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
    padding: 18px 20px;
    border: 1px solid color-mix(in srgb, var(--report-accent) 25%, var(--nm-line));
    border-radius: 17px;
    background: var(--report-soft);
}

.report-track-notice strong { color: var(--report-accent); }
.report-track-notice p { margin: 0; color: #576579; font-size: .86rem; line-height: 2; }

.report-disclaimer p,
.report-disclaimer li {
    font-size: .78rem;
}

.report-print-layer {
    display: none;
}

@keyframes report-character-in {
    from { opacity: 0; transform: translateX(50%) translateY(34px) scale(.94); }
    to { opacity: 1; transform: translateX(50%) translateY(0) scale(1); }
}

@keyframes report-radar-grow {
    from { opacity: 0; transform: scale(0); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes report-panel-in {
    from { opacity: 0; transform: translateY(9px); }
    to { opacity: 1; transform: none; }
}

@keyframes report-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes report-pulse {
    0%, 100% { transform: scale(1); opacity: .82; }
    50% { transform: scale(1.06); opacity: 1; }
}

@keyframes report-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 1180px) {
    .report-sidebar { width: 230px; }
    .report-dashboard-main { margin-inline-start: 230px; padding-inline: 24px; }
    .report-dashboard-topbar { margin-inline: -24px; padding-inline: 24px; }
    .report-hero { grid-template-columns: 1.2fr .8fr; padding-inline: 38px; }
    .report-hero__visual .student-character { height: 380px; }
    .report-tabs { grid-template-columns: repeat(4, 1fr); }
    .report-tabs--strengths { grid-template-columns: repeat(3, minmax(145px, 1fr)); }
}

@media (max-width: 820px) {
    .report-sidebar {
        width: 280px;
        max-width: 88vw;
        transform: translateX(105%);
        transition: transform .35s var(--nm-ease);
    }

    .sidebar-is-open .report-sidebar { transform: none; }
    .report-sidebar__close { display: inline-grid; }

    .sidebar-scrim {
        position: fixed;
        inset: 0;
        z-index: 70;
        border: 0;
        background: rgba(8,16,28,.48);
        backdrop-filter: blur(3px);
    }

    .sidebar-is-open .sidebar-scrim { display: block; }
    .report-dashboard-main { margin-inline-start: 0; padding: 0 15px 28px; }
    .report-dashboard-topbar { margin-inline: -15px; padding-inline: 15px; }
    .report-dashboard-topbar .app-menu-button { display: inline-grid; }
    .report-dashboard-topbar__title { margin-inline-end: auto; }
    .report-hero { grid-template-columns: 1fr; min-height: 680px; padding: 38px 28px 0; }
    .report-hero__copy { margin-inline: auto; text-align: center; }
    .report-hero__kicker, .report-signature, .report-hero__meta { justify-content: center; }
    .report-hero__visual { min-height: 300px; }
    .report-hero__visual .student-character { height: 390px; bottom: -62px; }
    .report-quick-stats, .report-overview-grid { grid-template-columns: 1fr; }
    .report-signal-card { grid-template-columns: 1fr; }
    .report-detail-grid, .report-career-grid, .report-track-grid, .ffm-factor-summary, .ffm-print-guidance-grid, .cattell-focus-columns, .cattell-group-grid, .cattell-combination-grid, .strengths-top-five, .strengths-analysis-grid, .strengths-domain-chart { grid-template-columns: 1fr 1fr; }
    .report-summary-grid { grid-template-columns: 1fr; }
    .report-summary-column + .report-summary-column { border-inline-start: 0; border-top: 1px solid var(--nm-line); }
    .holland-theory-grid, .holland-score-guide, .holland-profile-reading, .holland-family-strip { grid-template-columns: 1fr; }
    .holland-type-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .report-dashboard-topbar__title span { display: none; }
    .report-dashboard-topbar__actions .button { min-height: 40px; padding-inline: 12px; font-size: .68rem; }
    .report-hero { min-height: 660px; padding-inline: 19px; border-radius: 25px; }
    .report-hero h1 { font-size: 1.7rem; }
    .report-signature { width: 100%; flex-direction: column; gap: 2px; }
    .report-hero__meta { gap: 9px; }
    .report-hero__meta span { padding-inline-end: 9px; }
    .report-hero__visual .student-character { height: 350px; }
    .report-floating-stat--top { left: 0; }
    .report-floating-stat--bottom { right: 0; }
    .report-tabs { grid-template-columns: 1fr 1fr; }
    .report-tabs--strengths { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .report-detail-panel { padding: 17px; }
    .report-detail-intro { grid-template-columns: 54px 1fr; }
    .report-detail-code { width: 54px; height: 54px; border-radius: 17px; font-size: 1.3rem; }
    .report-detail-score { grid-column: 1 / -1; grid-auto-flow: column; justify-content: center; gap: 8px; border: 0; border-top: 1px solid var(--nm-line); padding: 10px 0 0; }
    .report-detail-grid, .report-career-grid, .report-track-grid { grid-template-columns: 1fr; }
    .report-track-card--primary { grid-column: auto; }
    .report-track-card { padding: 17px; }
    .report-track-card header { grid-template-columns: 44px 1fr auto; }
    .report-track-card header > i { width: 42px; height: 42px; border-radius: 13px; }
    .report-track-notice { grid-template-columns: 1fr; gap: 5px; }
    .report-signal-metrics { flex-direction: column; }
    .report-dashboard-footer { grid-template-columns: 1fr; text-align: center; }
    .report-score-row { grid-template-columns: 22px 76px 1fr 34px; }
    .holland-scope-card { grid-template-columns: 1fr; }
    .holland-scope-card > div:first-child { padding-inline-end: 0; padding-bottom: 16px; border-inline-end: 0; border-bottom: 1px solid var(--nm-line); }
    .holland-score-bands { grid-template-columns: 1fr; }
    .holland-family-strip article { grid-template-columns: 1fr; }
    .holland-type-card dl div { grid-template-columns: 1fr; gap: 3px; }
    .holland-methodology > summary, .report-more-careers > summary, .report-prose-panel > summary { min-height: 68px; padding: 15px 16px; }
    .holland-methodology__body { padding-inline: 16px; }
    .report-more-careers > .report-career-grid { padding-inline: 10px; }
}

@media (max-width: 420px) {
    .report-dashboard-main {
        padding-inline: 14px;
    }
    .report-dashboard-topbar {
        margin-inline: -14px;
        padding-inline: 14px;
    }
    .report-dashboard-topbar__actions .button {
        min-height: 40px;
        padding-inline: 10px;
        font-size: .68rem;
    }
    .report-hero {
        min-height: 0;
        padding: 28px 18px 0;
    }
    .report-tabs {
        grid-template-columns: 1fr;
    }
    .report-tabs--strengths {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 8px;
    }
    .report-tabs--strengths .report-tab {
        min-height: 96px;
        grid-template-columns: 29px minmax(0, 1fr);
        padding: 10px;
    }
    .report-tabs--strengths .report-tab span {
        font-size: .7rem;
    }
    .report-score-row,
    .analysis-report__bars article,
    .profile-bar-chart__row {
        grid-template-columns: 1fr;
        gap: 7px;
    }
    .report-score-row > span {
        display: none;
    }
    .report-score-row > strong,
    .analysis-report__bars article > strong {
        justify-self: start;
    }
    .analysis-report {
        width: min(100% - 24px, var(--nm-container));
    }
    .analysis-report__section,
    .analysis-report__hero {
        padding: 20px 16px;
        border-radius: 20px;
    }
}

.analysis-report-page { background: #f6f8fb; }
.analysis-report { padding-block: 34px 80px; }
.analysis-report__hero { display: grid; grid-template-columns: minmax(0,1fr) minmax(250px,.34fr); gap: 24px; padding: clamp(28px,5vw,58px); border-radius: 32px; background: linear-gradient(135deg,var(--report-soft),#fff 58%); box-shadow: var(--nm-shadow-md); }
.analysis-report__hero h1 { margin: 6px 0 10px; font-size: clamp(2rem,4vw,3.6rem); line-height: 1.45; }
.analysis-report__hero > div > p:last-of-type { max-width: 780px; color: var(--nm-muted); font-size: 1rem; line-height: 2; }
.analysis-report__hero dl { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 0; }
.analysis-report__hero dl div { min-width: 150px; padding: 10px 14px; border: 1px solid var(--nm-line); border-radius: 14px; background: rgba(255,255,255,.78); }
.analysis-report__hero dt { color: var(--nm-muted); font-size: .7rem; }
.analysis-report__hero dd { margin: 3px 0 0; font-weight: 800; line-height: 1.7; }
.analysis-report__hero > aside { display: flex; flex-direction: column; justify-content: center; min-width: 0; padding: 24px; border-radius: 24px; background: var(--report-deep,var(--nm-navy)); color: #fff; }
.analysis-report__hero > aside span,.analysis-report__hero > aside small { color: rgba(255,255,255,.72); line-height: 1.9; }
.analysis-report__hero > aside strong { margin: 8px 0 18px; color: #fff; font-size: 1.5rem; line-height: 1.55; overflow-wrap: anywhere; }
.analysis-report__actions { display: flex; justify-content: flex-end; gap: 10px; margin: 18px 0 36px; }
.analysis-report__section { margin-top: 26px; padding: clamp(22px,4vw,40px); border: 1px solid var(--nm-line); border-radius: 26px; background: #fff; box-shadow: var(--nm-shadow-sm); }
.analysis-report__section > header > span { color: var(--report-accent); font-size: .76rem; font-weight: 800; }
.analysis-report__section > header h2 { margin: 4px 0 8px; font-size: clamp(1.45rem,3vw,2.15rem); line-height: 1.55; }
.analysis-report__section > header p { max-width: 900px; margin: 0; color: var(--nm-muted); line-height: 2; }
.analysis-report__bars { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px 28px; margin-top: 26px; }
.analysis-report__bars article { display: grid; grid-template-columns: minmax(130px,.8fr) minmax(100px,1.2fr) 44px; gap: 10px; align-items: center; padding: 8px 0; }
.analysis-report__bars article > div:first-child { display: grid; min-width: 0; }
.analysis-report__bars b { line-height: 1.55; overflow-wrap: anywhere; }
.analysis-report__bars span { color: var(--nm-muted); font-size: .68rem; }
.analysis-report__bars article > strong { color: var(--report-accent); font-size: .78rem; }
.analysis-report__track { height: 9px; overflow: hidden; border-radius: 99px; background: #edf0f4; }
.analysis-report__track i { display: block; height: 100%; border-radius: inherit; background: var(--report-accent); }
.analysis-report__guidance { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; margin-top: 22px; }
.analysis-report__guidance article { padding: 20px; border-radius: 18px; background: #f8fafc; }
.analysis-report__guidance h3 { margin: 0 0 8px; color: var(--report-accent); }
.analysis-report__guidance p,.analysis-report__guidance li { color: #536174; line-height: 2; }
.analysis-report__domains { display: grid; gap: 18px; margin-top: 24px; }
.analysis-report__domains > article { padding: 24px; border: 1px solid var(--nm-line); border-radius: 20px; }
.analysis-report__domains > article > header { display: grid; grid-template-columns: 1fr auto; gap: 4px 16px; align-items: end; }
.analysis-report__domains > article > header span { grid-column: 1/-1; color: var(--report-accent); font-size: .7rem; font-weight: 800; }
.analysis-report__domains h3 { margin: 0; font-size: 1.25rem; }
.analysis-report__domains > article > header b { color: var(--report-accent); }
.analysis-report__domains > article > p,.analysis-report__domains section p,.analysis-report__domains aside p { color: #536174; font-size: .94rem; line-height: 2.05; }
.analysis-report__domains > article > aside { margin: 16px 0; padding: 14px 18px; border-inline-start: 4px solid var(--report-accent); border-radius: 12px; background: var(--report-soft); }
.analysis-report__domains > article > aside p { margin: 4px 0 0; }
.analysis-report__domains > article > div { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; margin-top: 18px; }
.analysis-report__domains section { padding: 16px; border-radius: 14px; background: #f8fafc; }
.analysis-report__domains h4 { margin: 0 0 8px; }
.analysis-report__facet { display: grid; grid-template-columns: 24px 1fr 28px; gap: 7px; align-items: center; }
.analysis-report__facet small { color: var(--nm-muted); font-size: .58rem; }
.analysis-report__facet i { height: 7px; overflow: hidden; border-radius: 99px; background: #e5e9ef; }
.analysis-report__facet i span { display: block; height: 100%; border-radius: inherit; background: var(--report-accent); }
.analysis-report__prose,.analysis-report__final li,.analysis-report__final aside { color: #465568; line-height: 2.1; }
.analysis-report__final ol { display: grid; gap: 10px; margin-block: 22px; }
.analysis-report__final ol li { padding: 14px 18px; border-radius: 14px; background: var(--report-soft); }
.analysis-report__final ol p { margin: 4px 0 0; }
.analysis-report__final > aside { padding: 18px; border-radius: 16px; background: #fff7e6; }

@media (max-width: 760px) {
    .profile-bar-chart__row,.analysis-report__bars article { grid-template-columns: minmax(105px,.8fr) minmax(80px,1fr) 38px; }
    .ffm-factor-summary, .ffm-print-guidance-grid, .cattell-focus-columns, .cattell-group-grid, .cattell-combination-grid, .strengths-top-five, .strengths-analysis-grid, .strengths-domain-chart { grid-template-columns: 1fr; }
    .strengths-top-five article:first-child { grid-column: auto; }
    .strengths-full-ranking article { grid-template-columns: 34px 1fr; }
    .strengths-full-ranking article > p, .strengths-full-ranking article > b { grid-column: 2; }
    .analysis-report__hero,.analysis-report__bars,.analysis-report__guidance,.analysis-report__domains > article > div { grid-template-columns: 1fr; }
    .analysis-report__hero { border-radius: 22px; }
    .analysis-report__actions { justify-content: stretch; }
    .analysis-report__actions > * { flex: 1; }
    .analysis-report__domains > article { padding: 17px; }
    .analysis-report__domains > article > header { grid-template-columns: 1fr; align-items: start; }
}

.result-celebration-modal__dialog {
    width: min(590px, 100%);
    padding: clamp(24px, 5vw, 38px);
    text-align: right;
}

.result-celebration-modal__icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    place-items: center;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--nm-orange), #ff9b68);
    box-shadow: 0 12px 28px rgba(255, 116, 51, .24);
    color: #fff;
    font-size: 1.45rem;
    font-weight: 800;
}

.result-celebration-modal__dialog h2 {
    margin: 4px 0 10px;
    color: var(--nm-navy-950);
    font-size: clamp(1.55rem, 4vw, 2.2rem);
}

.result-celebration-modal__summary {
    margin: 0 0 16px;
    color: #526074;
    font-size: .94rem;
    line-height: 2;
}

.result-celebration-modal__note {
    margin-top: 10px;
    padding: 14px 16px;
    border: 1px solid #e4e9ef;
    border-radius: 15px;
    background: #f7f9fb;
}

.result-celebration-modal__note--action {
    border-color: #f1d3bf;
    background: #fff7f1;
}

.result-celebration-modal__note strong {
    color: var(--nm-navy-900);
}

.result-celebration-modal__note p {
    margin: 5px 0 0;
    color: #59677a;
    line-height: 1.85;
}

.result-celebration-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

@media (max-width: 560px) {
    .result-celebration-modal__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .result-celebration-modal__actions .button {
        width: 100%;
        padding-inline: 8px;
        font-size: .74rem;
    }
}

@media print {
    @page { size: A4; margin: 0; }

    .report-dashboard-page {
        background: #fff !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .report-dashboard-shell { display: none !important; }
    .report-print-layer { display: block !important; }

    .report-print-page {
        position: relative;
        width: 210mm;
        min-height: 297mm;
        height: auto;
        overflow: visible;
        padding: 20mm 17mm 18mm;
        page-break-after: always;
        background: #fff;
        color: var(--nm-ink);
        font-family: var(--nm-font-family);
    }

    .report-print-page:last-child { page-break-after: auto; }
    .report-print-page::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4mm; background: linear-gradient(180deg, var(--report-accent), var(--report-soft)); }
    .report-print-page .brand__logo--horizontal { width: 46mm; height: auto; max-height: 14mm; object-fit: contain; }
    .report-print-cover > header .brand__logo--horizontal { width: 58mm; max-height: 17mm; }

    .report-print-header { position: absolute; inset: 9mm 17mm auto; display: flex; align-items: center; justify-content: space-between; padding-bottom: 3.5mm; border-bottom: .25mm solid var(--nm-line); }
    .report-print-header > span { color: var(--nm-muted); font-size: 2.1mm; }
    .report-print-footer { position: absolute; inset: auto 17mm 7mm; display: flex; justify-content: space-between; padding-top: 3mm; border-top: .25mm solid var(--nm-line); color: var(--nm-muted); font-size: 1.8mm; }
    .report-print-title { margin-top: 12mm; }
    .report-print-title > span { color: var(--report-accent); font-size: 2.4mm; font-weight: 800; }
    .report-print-title h2 { margin: 1.5mm 0; font-size: 7mm; }
    .report-print-title p { max-width: 155mm; margin: 0; color: var(--nm-muted); font-size: 2.5mm; line-height: 2; }

    .report-print-cover { padding: 17mm 18mm; background: linear-gradient(145deg, var(--report-soft), #fff 52%, #f7f8fa); }
    .report-print-cover::before { width: 100%; height: 5mm; inset: auto 0 0; background: linear-gradient(90deg, var(--report-accent), color-mix(in srgb, var(--report-accent) 55%, white)); }
    .report-print-cover__copy { position: relative; z-index: 2; width: 125mm; margin-top: 28mm; }
    .report-print-cover__copy > span { color: var(--report-accent); font-size: 2.7mm; font-weight: 800; }
    .report-print-cover__copy h1 { margin: 3mm 0 2mm; font-size: 9mm; line-height: 1.6; }
    .report-print-cover__copy > p { width: 108mm; color: var(--nm-muted); font-size: 2.8mm; line-height: 2.1; }
    .report-print-cover__copy > div { display: grid; width: max-content; gap: 1mm; margin-top: 7mm; padding: 3mm 5mm; border-inline-start: 1.5mm solid var(--report-accent); border-radius: 3mm; background: rgba(255,255,255,.78); }
    .report-print-cover__copy small { color: var(--nm-muted); font-size: 2mm; }
    .report-print-cover__copy strong { font-size: 4mm; }
    .report-print-cover > .student-character { position: absolute; inset: auto auto 5mm 3mm; z-index: 1; width: auto; height: 144mm; object-fit: contain; filter: drop-shadow(0 7mm 6mm rgba(23,37,56,.15)); }
    .report-print-cover dl { position: absolute; inset: auto 18mm 18mm auto; z-index: 3; display: grid; width: 88mm; grid-template-columns: 1fr 1fr; overflow: hidden; margin: 0; border: .25mm solid var(--nm-line); border-radius: 4mm; background: rgba(255,255,255,.92); }
    .report-print-cover dl div { display: contents; }
    .report-print-cover dt, .report-print-cover dd { margin: 0; padding: 2.6mm 3mm; border-bottom: .25mm solid var(--nm-line); font-size: 2.1mm; }
    .report-print-cover dt { background: #f8f9fb; color: var(--nm-muted); }
    .report-print-cover footer { position: absolute; inset: auto auto 8mm 18mm; display: flex; gap: 9mm; color: var(--nm-muted); font-size: 2mm; }

    .report-print-overview__grid { display: grid; grid-template-columns: 78mm 1fr; gap: 8mm; align-items: center; margin-top: 9mm; }
    .report-print-overview .radar-wrap { width: 78mm; }
    .report-print-overview .report-score-bars { gap: 3mm; margin: 0; }
    .report-print-overview .report-score-row { grid-template-columns: 6mm 27mm 1fr 10mm; gap: 2mm; }
    .report-print-overview .report-score-copy b, .report-print-overview .report-score-row > strong { font-size: 2mm; }
    .report-print-overview .report-score-copy small, .report-print-overview .report-score-row > span { font-size: 1.5mm; }
    .report-print-overview .report-score-track { height: 2mm; }
    .report-print-summary { margin-top: 8mm; padding: 5mm; border: .3mm solid color-mix(in srgb, var(--report-accent) 22%, var(--nm-line)); border-radius: 4mm; background: var(--report-soft); }
    .report-print-summary strong { color: var(--report-accent); font-size: 2.6mm; }
    .report-print-summary p { margin: 1.5mm 0 0; color: #586579; font-size: 2.3mm; line-height: 2; }

    .report-print-holland-scope { display: grid; grid-template-columns: 1fr 1fr; gap: 5mm; margin-top: 8mm; }
    .report-print-holland-scope article { padding: 5mm; border: .25mm solid var(--nm-line); border-radius: 4mm; background: #fff; }
    .report-print-holland-scope h3 { margin: 0 0 3mm; color: var(--report-accent); font-size: 3mm; }
    .report-print-holland-scope ul { display: grid; gap: 2mm; margin: 0; padding-inline-start: 5mm; color: #566276; font-size: 2.2mm; line-height: 1.8; }
    .report-print-holland-bands { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3mm; margin-top: 6mm; }
    .report-print-holland-bands article { padding: 4mm; border-radius: 3mm; background: var(--report-soft); }
    .report-print-holland-bands b, .report-print-holland-bands strong { display: block; }.report-print-holland-bands b { color: var(--report-accent); font-size: 2.4mm; }.report-print-holland-bands strong { margin: 1mm 0; font-size: 2.7mm; }.report-print-holland-bands p { margin: 0; color: #5c6879; font-size: 2mm; line-height: 1.8; }
    .report-print-holland-type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3mm; margin-top: 6mm; }
    .report-print-holland-type-grid article { padding: 3.5mm; border: .25mm solid var(--nm-line); border-radius: 3mm; }
    .report-print-holland-type-grid article header { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2mm; }
    .report-print-holland-type-grid i { display: grid; width: 9mm; height: 9mm; place-items: center; border-radius: 2.5mm; color: #fff; background: var(--report-accent); font-size: 3.2mm; font-style: normal; font-weight: 800; }
    .report-print-holland-type-grid h3 { margin: 0; font-size: 2.8mm; }.report-print-holland-type-grid header span { color: var(--nm-muted); font-size: 1.9mm; }.report-print-holland-type-grid header b { color: var(--report-accent); font-size: 2.8mm; }
    .report-print-holland-type-grid p { margin: 2mm 0 0; color: #586579; font-size: 1.9mm; line-height: 1.7; }

    .report-print-track-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3mm; margin-top: 7mm; }
    .report-print-track-grid article { padding: 4mm; border: .25mm solid var(--nm-line); border-radius: 3.5mm; }
    .report-print-track-grid article:first-child { grid-column: 1 / -1; border-color: var(--report-accent); background: var(--report-soft); }
    .report-print-track-grid header { display: grid; grid-template-columns: 9mm 1fr auto; gap: 2.5mm; align-items: center; }
    .report-print-track-grid i { display: grid; width: 8mm; height: 8mm; place-items: center; border-radius: 2.3mm; color: #fff; background: var(--report-accent); font-size: 3mm; font-style: normal; }
    .report-print-track-grid span { color: var(--report-accent); font-size: 1.7mm; }
    .report-print-track-grid h3 { margin: .5mm 0 0; font-size: 3.4mm; }
    .report-print-track-grid header strong { color: var(--report-accent); font-size: 3mm; }
    .report-print-track-grid p { margin: 2mm 0; color: #536176; font-size: 2mm; line-height: 1.8; }
    .report-print-track-grid small { color: var(--nm-muted); font-size: 1.8mm; line-height: 1.7; }

    .report-print-domain-head { display: grid; grid-template-columns: 18mm 1fr 28mm; gap: 4mm; align-items: center; margin-top: 15mm; padding: 5mm; border-radius: 5mm; background: var(--report-soft); }
    .report-print-domain-head > i { display: grid; width: 16mm; height: 16mm; place-items: center; border-radius: 5mm; background: #fff; color: var(--report-accent); font-size: 6mm; font-style: normal; font-weight: 800; }
    .report-print-domain-head span { color: var(--report-accent); font-size: 1.8mm; }
    .report-print-domain-head h2 { margin: 0; font-size: 6mm; }
    .report-print-domain-head p { margin: 1mm 0 0; color: var(--nm-muted); font-size: 2mm; line-height: 1.8; }
    .report-print-domain-head > strong { display: grid; color: var(--report-accent); font-size: 5.5mm; text-align: center; }
    .report-print-domain-head > strong small { color: var(--nm-muted); font-size: 1.8mm; }
    .report-print-detail__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3mm; }
    .report-print-detail__grid article { padding: 3.2mm; border: .25mm solid var(--nm-line); border-radius: 3mm; }
    .report-print-detail__grid article header { display: grid; grid-template-columns: 8mm 1fr auto; gap: 2mm; align-items: center; }
    .report-print-detail__grid article header i { display: grid; width: 7mm; height: 7mm; place-items: center; border-radius: 2mm; background: var(--report-soft); color: var(--report-accent); font-size: 1.5mm; font-style: normal; font-weight: 800; }
    .report-print-detail__grid h3, .report-print-detail__grid header b { margin: 0; font-size: 2mm; }
    .report-print-detail__grid article > div { height: 1.5mm; overflow: hidden; margin: 2mm 0; border-radius: 99px; background: #edf0f4; }
    .report-print-detail__grid article > div span { display: block; height: 100%; background: var(--report-accent); }
    .report-print-detail__grid p { margin: 0; color: var(--nm-muted); font-size: 1.8mm; line-height: 1.75; }

    .report-print-careers > div:last-of-type { display: grid; gap: 3mm; margin-top: 8mm; }
    .report-print-careers article { display: grid; grid-template-columns: 18mm 1fr; gap: 4mm; align-items: center; padding: 3.5mm; border: .25mm solid var(--nm-line); border-radius: 3mm; }
    .report-print-careers article > strong { display: grid; width: 16mm; height: 16mm; place-items: center; border-radius: 50%; background: var(--report-soft); color: var(--report-accent); font-size: 2.8mm; }
    .report-print-careers h3 { display: inline; margin: 0; font-size: 2.7mm; }
    .report-print-careers article span { color: var(--report-accent); font-size: 1.7mm; }
    .report-print-careers article p { margin: 1mm 0 0; color: var(--nm-muted); font-size: 1.9mm; line-height: 1.8; }

    .report-print-final__summary { max-height: none; overflow: visible; margin-top: 8mm; color: #526071; font-size: 2.2mm; line-height: 2; }
    .report-print-final aside { position: absolute; inset: auto 17mm 18mm; padding: 4mm; border: .3mm solid color-mix(in srgb, var(--report-accent) 25%, var(--nm-line)); border-radius: 4mm; background: var(--report-soft); }
    .report-print-final aside strong { color: var(--report-accent); font-size: 2.4mm; }
    .report-print-final aside li { color: #5f6d80; font-size: 1.8mm; line-height: 1.8; }
}

.student-guide-section { margin: 56px 0; }
.student-guide-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.student-guide-card { min-height: 190px; padding: 26px; }
.student-guide-card--overview { background: linear-gradient(135deg, var(--report-soft), #fff 78%); border-color: color-mix(in srgb, var(--report-accent) 32%, var(--nm-line)); }
.student-guide-card > span, .student-guide-tracks > span, .student-guide-actions header > span { display: block; margin-bottom: 10px; color: var(--report-accent); font-size: .82rem; font-weight: 800; }
.student-guide-card p { margin: 0; color: #516075; font-size: .98rem; line-height: 2; }
.student-guide-card strong { display: block; margin-top: 18px; color: var(--report-deep); font-size: 1.05rem; }
.student-guide-card small { display: block; margin-top: 7px; color: var(--nm-muted); line-height: 1.8; }
.student-guide-card ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.student-guide-card li { position: relative; padding-inline-start: 20px; color: #435268; line-height: 1.85; }
.student-guide-card li::before { content: ""; position: absolute; inset-inline-start: 0; top: .62em; width: 8px; height: 8px; border-radius: 50%; background: var(--report-accent); box-shadow: 0 0 0 5px var(--report-soft); }
.student-guide-card__study { margin-top: 18px !important; padding-top: 16px; border-top: 1px solid var(--nm-line); }
.student-guide-card__study b { color: var(--report-deep); }
.student-guide-tracks { margin-top: 18px; padding: 24px; border: 1px solid color-mix(in srgb, var(--report-accent) 25%, var(--nm-line)); border-radius: 22px; background: #fff; }
.student-guide-tracks > div { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.student-guide-tracks article { padding: 17px; border-radius: 16px; background: var(--report-soft); }
.student-guide-tracks b { color: var(--report-deep); }
.student-guide-tracks strong { float: inline-end; color: var(--report-accent); }
.student-guide-tracks p { clear: both; margin: 12px 0 0; color: #59677a; font-size: .88rem; line-height: 1.85; }
.student-guide-actions { margin-top: 18px; padding: 26px; background: #fff; }
.student-guide-actions h3 { margin: 0; color: var(--report-deep); font-size: 1.35rem; }
.student-guide-actions ol { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 20px 0 0; padding: 0; list-style: none; counter-reset: none; }
.student-guide-actions li { display: grid; grid-template-columns: 32px 1fr; gap: 10px; align-items: start; padding: 14px; border-radius: 14px; background: var(--report-soft); }
.student-guide-actions li i { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 10px; color: #fff; background: var(--report-accent); font-style: normal; font-weight: 800; }
.student-guide-actions li p { margin: 0; color: #4d5c70; line-height: 1.85; }
.student-guide-notice { margin-top: 14px; padding: 16px 20px; border-radius: 16px; color: #506075; background: #f7f8fa; line-height: 1.9; }
.student-guide-notice strong { color: var(--report-deep); }.student-guide-notice p { display: inline; margin: 0 8px 0 0; }

.report-action-row { display: flex; flex-wrap: wrap; gap: 10px; }
.confidence-meter { display: grid; min-width: 230px; gap: 10px; align-content: center; }
.confidence-meter > strong { color: var(--nm-orange); font-size: 1.9rem; }
.confidence-meter > span { display: block; height: 10px; overflow: hidden; border-radius: 99px; background: #e8edf3; }
.confidence-meter > span i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--nm-orange), #ff9b52); }
/* هموار: screening barriers are actions to follow up, not strengths. */
.barriers-direction-notice {
    display: flex;
    gap: 14px;
    align-items: center;
    margin: 0 0 18px;
    padding: 17px 20px;
    border: 1px solid color-mix(in srgb, var(--report-accent) 25%, var(--nm-line));
    border-radius: 16px;
    background: var(--report-soft);
}
.barriers-direction-notice strong { flex: 0 0 auto; color: var(--report-deep); }
.barriers-direction-notice p { margin: 0; color: #536174; line-height: 1.9; }
.barriers-bar-chart .profile-bar-chart__row {
    grid-template-columns: minmax(170px, 1fr) minmax(140px, 1.35fr) minmax(132px, auto);
    padding: 9px 11px;
    border-inline-start: 4px solid transparent;
    border-radius: 12px;
}
.barrier-level--normal { border-color: #789287 !important; }
.barrier-level--attention { border-color: #d6a329 !important; }
.barrier-level--concerning { border-color: #e47d32 !important; }
.barrier-level--follow_up { border-color: #c96b68 !important; }
.barriers-bar-chart .profile-bar-chart__row > strong { font-size: .78rem; white-space: normal; text-align: end; }
.barriers-priority-list { display: grid; gap: 12px; }
.barriers-priority-list article {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--nm-line);
    border-inline-start-width: 5px;
    border-radius: 15px;
    background: #fff;
}
.barriers-priority-list i,
.barriers-seven-day-plan > article > i {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: var(--report-accent);
    font-style: normal;
    font-weight: 800;
}
.barriers-priority-list b { display: block; color: var(--report-deep); }
.barriers-priority-list span { display: block; margin-top: 3px; color: var(--nm-muted); font-size: .8rem; }
.barriers-priority-list strong { color: var(--report-deep); font-size: 1.2rem; }
.barriers-level-legend {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 16px;
}
.barriers-level-legend span { color: var(--nm-muted); font-size: .74rem; line-height: 1.7; }
.barriers-level-legend i { display: inline-block; width: 9px; height: 9px; margin-inline-end: 6px; border-radius: 50%; }
.barriers-analysis-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}
.barriers-analysis-grid article {
    min-width: 0;
    padding: 17px;
    border: 1px solid #e7ebef;
    border-radius: 15px;
    background: #f9fafb;
}
.barriers-analysis-grid article:first-child,
.barriers-analysis-grid article:nth-child(7) { grid-column: 1 / -1; }
.barriers-analysis-grid b { color: var(--report-deep); }
.barriers-analysis-grid p { margin: 7px 0 0; color: #536174; line-height: 1.95; overflow-wrap: anywhere; }
.barriers-followup-section,
.barriers-plan-section { margin: 34px 0; padding: 28px; }
.barriers-all-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.barriers-all-list article {
    min-width: 0;
    padding: 15px;
    border: 1px solid var(--nm-line);
    border-inline-start-width: 5px;
    border-radius: 15px;
    background: #fff;
}
.barriers-all-list header { display: grid; grid-template-columns: 30px 1fr auto; gap: 10px; align-items: center; }
.barriers-all-list header > i { color: var(--report-accent); font-style: normal; font-weight: 800; }
.barriers-all-list h3 { margin: 0; color: var(--report-deep); font-size: .96rem; }
.barriers-all-list header span { color: var(--nm-muted); font-size: .73rem; }
.barriers-all-list header strong { color: var(--report-deep); }
.barriers-all-list > article > p { margin: 12px 0 0; color: #59677a; font-size: .86rem; line-height: 1.85; }
.barriers-seven-day-plan { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.barriers-seven-day-plan > article {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: start;
    padding: 16px;
    border-radius: 15px;
    background: var(--report-soft);
}
.barriers-seven-day-plan > article:last-child { grid-column: 1 / -1; }
.barriers-seven-day-plan b { color: var(--report-deep); }
.barriers-seven-day-plan p { margin: 5px 0 0; color: #536174; line-height: 1.85; }
.barriers-audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 18px;
}
.barriers-audience-grid article { padding: 19px; border: 1px solid var(--nm-line); border-radius: 16px; background: #fff; }
.barriers-audience-grid h3 { margin: 0 0 12px; color: var(--report-deep); }
.barriers-audience-grid ul { display: grid; gap: 9px; margin: 0; padding-inline-start: 20px; color: #536174; line-height: 1.85; }
.barriers-referral { margin-top: 18px; padding: 17px 20px; border-radius: 16px; background: #f5f7f6; }
.barriers-referral--active { border: 1px solid #e0a7a4; background: #fff5f4; }
.barriers-referral strong { color: var(--report-deep); }
.barriers-referral p { margin: 5px 0 0; color: #536174; line-height: 1.9; }

.interpretation-guide-wrap {
    margin: 22px 0 32px;
}
.interpretation-guide {
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--report-accent) 24%, var(--nm-line));
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 32px rgba(29, 43, 61, .055);
}
.interpretation-guide > summary {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    min-height: 78px;
    padding: 14px 18px;
    color: var(--report-deep);
    background: linear-gradient(110deg, var(--report-soft), #fff 70%);
    cursor: pointer;
    list-style: none;
}
.interpretation-guide > summary::-webkit-details-marker { display: none; }
.interpretation-guide > summary:focus-visible { outline: 3px solid color-mix(in srgb, var(--report-accent) 38%, transparent); outline-offset: -4px; }
.interpretation-guide > summary > span:nth-child(2) { display: grid; gap: 2px; }
.interpretation-guide > summary strong { font-size: 1rem; }
.interpretation-guide > summary small { color: var(--nm-muted); font-size: .79rem; line-height: 1.7; }
.interpretation-guide > summary > i { color: var(--report-accent); font-style: normal; font-size: 1.35rem; transition: transform .2s ease; }
.interpretation-guide[open] > summary > i { transform: rotate(180deg); }
.interpretation-guide__icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #fff;
    background: var(--report-accent);
    font-size: 1.1rem;
    font-weight: 800;
}
.interpretation-guide__body { padding: 24px; border-top: 1px solid var(--nm-line); }
.interpretation-guide__body > header { max-width: 850px; }
.interpretation-guide__body > header > span { color: var(--report-accent); font-size: .75rem; font-weight: 800; }
.interpretation-guide__body > header h2 { margin: 5px 0 7px; color: var(--report-deep); font-size: clamp(1.25rem, 2vw, 1.6rem); }
.interpretation-guide__body > header p { margin: 0; color: var(--nm-muted); line-height: 1.95; }
.interpretation-guide__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 20px; }
.interpretation-guide__grid > article {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: start;
    gap: 11px;
    min-width: 0;
    padding: 17px;
    border: 1px solid #e7ebef;
    border-radius: 15px;
    background: #fbfcfd;
}
.interpretation-guide__grid > article > span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 10px; color: var(--report-accent); background: var(--report-soft); font-weight: 800; }
.interpretation-guide__grid h3 { margin: 2px 0 7px; color: var(--report-deep); font-size: .95rem; }
.interpretation-guide__grid p,
.interpretation-guide__grid ol { margin: 0; color: #536174; font-size: .88rem; line-height: 1.95; overflow-wrap: anywhere; }
.interpretation-guide__grid ol { display: grid; gap: 7px; padding-inline-start: 22px; }
.interpretation-guide__avoid,
.interpretation-guide__questions { grid-column: 1 / -1; }
.interpretation-guide__avoid { border-color: #f1d7c8 !important; background: #fffaf7 !important; }
.interpretation-guide__body > aside { margin-top: 14px; padding: 17px 19px; border-inline-start: 5px solid var(--report-accent); border-radius: 14px; background: var(--report-soft); }
.interpretation-guide__body > aside strong { color: var(--report-deep); }
.interpretation-guide__body > aside p { margin: 5px 0 0; color: #536174; line-height: 1.95; }

@media (max-width: 760px) {
    .interpretation-guide-wrap { margin: 16px 0 26px; }
    .interpretation-guide > summary { grid-template-columns: 40px minmax(0, 1fr) auto; gap: 10px; min-height: 70px; padding: 12px; }
    .interpretation-guide__icon { width: 38px; height: 38px; border-radius: 12px; }
    .interpretation-guide__body { padding: 17px 13px; }
    .interpretation-guide__grid { grid-template-columns: 1fr; }
    .interpretation-guide__avoid,
    .interpretation-guide__questions { grid-column: auto; }
    .interpretation-guide__grid > article { padding: 14px 12px; }
    .student-guide-section { margin: 38px 0; }
    .student-guide-grid, .student-guide-tracks > div, .student-guide-actions ol { grid-template-columns: 1fr; }
    .student-guide-card, .student-guide-tracks, .student-guide-actions { padding: 20px; }
    .interaction-plan { grid-template-columns: 1fr; }
    .confidence-meter { min-width: 0; width: 100%; }
    .barriers-direction-notice { align-items: flex-start; flex-direction: column; }
    .barriers-bar-chart .profile-bar-chart__row { grid-template-columns: 1fr; gap: 7px; }
    .barriers-bar-chart .profile-bar-chart__row > strong { text-align: start; }
    .barriers-level-legend,
    .barriers-analysis-grid,
    .barriers-all-list,
    .barriers-seven-day-plan,
    .barriers-audience-grid { grid-template-columns: 1fr; }
    .barriers-analysis-grid article:first-child,
    .barriers-analysis-grid article:nth-child(7),
    .barriers-seven-day-plan > article:last-child { grid-column: auto; }
    .barriers-followup-section,
    .barriers-plan-section { padding: 20px; }
}

@media print {
    .interpretation-guide-wrap { display: none !important; }
    .barriers-direction-notice { padding: 3mm 4mm; border-radius: 3mm; }
    .barriers-analysis-grid--print { grid-template-columns: 1fr 1fr; gap: 2.5mm; margin-top: 5mm; }
    .barriers-analysis-grid--print article { padding: 3mm; border-radius: 2.5mm; }
    .barriers-analysis-grid--print b { font-size: 2mm; }
    .barriers-analysis-grid--print p { font-size: 1.8mm; line-height: 1.65; }
    .barriers-seven-day-plan--print { grid-template-columns: 1fr; gap: 2.5mm; margin-top: 7mm; }
    .barriers-seven-day-plan--print > article,
    .barriers-seven-day-plan--print > article:last-child {
        grid-column: auto;
        grid-template-columns: 9mm 1fr;
        padding: 3mm;
        border-radius: 3mm;
    }
    .barriers-seven-day-plan--print > article > i { width: 8mm; height: 8mm; border-radius: 2mm; font-size: 2.4mm; }
    .barriers-seven-day-plan--print b { font-size: 2.2mm; }
    .barriers-seven-day-plan--print p { font-size: 1.9mm; line-height: 1.65; }
}
