.required-indicator {
    display: inline-block;
    margin-left: 0.35rem;
    color: #9f3030;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    vertical-align: middle;
}

.required-response {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.required-response input {
    margin-top: 0.2rem;
    accent-color: var(--accent-emerald);
}

.required-error {
    margin: 0.75rem 0 0;
    color: var(--error-red);
    font-size: 0.88rem;
}

.required-error[hidden] {
    display: none;
}

:root {
    --bg-primary: #CACDC4;
    --bg-surface: #E4E7DF;
    --bg-elevated: #F0F2EC;
    --bg-input: #F8F9F6;
    --bg-inset: #D9DED5;
    --border-subtle: rgba(37, 46, 40, 0.18);
    --border-hover: rgba(112, 84, 35, 0.48);
    --border-focus: #536754;
    --text-primary: #252E28;
    --text-secondary: #46534A;
    --text-muted: #4F5B52;
    --accent-gold: #684E27;
    --accent-gold-hover: #62491F;
    --accent-gold-subtle: rgba(116, 90, 46, 0.14);
    --accent-emerald: #20583E;
    --error-red: #9f3030;

    /* Distinct 4 Avatar Colors */
    --avatar-blue: #3b82f6;
    --avatar-blue-glow: rgba(59, 130, 246, 0.45);
    --avatar-green: #10b981;
    --avatar-green-glow: rgba(16, 185, 129, 0.45);
    --avatar-orange: #f59e0b;
    --avatar-orange-glow: rgba(245, 158, 11, 0.45);
    --avatar-purple: #8b5cf6;
    --avatar-purple-glow: rgba(139, 92, 246, 0.45);

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    min-height: 100%;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--bg-primary);
    padding: 2rem 1.5rem;
}

/* Site Header */
.site-header {
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1.125rem;
    border-bottom: 1px solid var(--border-subtle);
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: inherit;
}

.brand-mark {
    width: 12px;
    height: 12px;
    background-color: var(--accent-gold);
    transform: rotate(45deg);
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.4);
}

.brand-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.wizard-progress {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.progress-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-gold);
    white-space: nowrap;
}

.progress-track {
    position: relative;
    width: 140px;
    height: 5px;
    background-color: rgba(37, 46, 40, 0.12);
    border-radius: 999px;
    overflow: hidden;
}

.progress-fill {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 20%;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-emerald));
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.progress-segment {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.6);
}

.progress-segment:nth-of-type(1) { left: 0; }
.progress-segment:nth-of-type(2) { left: 20%; }
.progress-segment:nth-of-type(3) { left: 40%; }
.progress-segment:nth-of-type(4) { left: 60%; }
.progress-segment:nth-of-type(5) { left: 80%; }

/* Main Container & Card */
.main-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.25rem 0;
}

.advisory-card {
    max-width: 820px;
    width: 100%;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 2.75rem 2.75rem;
    box-shadow: 0 18px 40px rgba(37, 46, 40, 0.14);
    position: relative;
}

.wizard-section {
    animation: stepFadeIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.wizard-section[hidden] {
    display: none !important;
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.step-heading {
    font-family: var(--font-serif);
    font-size: 2.3rem;
    font-weight: 500;
    line-height: 1.18;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.step-description {
    font-size: 0.94rem;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    max-width: 66ch;
}

/* ==========================================================================
   AVATAR & THOUGHT BUBBLE SYSTEM
   ========================================================================== */
.avatar-stage-wrapper {
    margin-bottom: 2rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--border-subtle);
    animation: stepFadeIn 0.35s ease forwards;
}

/* 4-Avatar Mini Dock */
.avatar-dock {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 0.65rem 1rem;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.dock-avatar-indicator {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    opacity: 0.45;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.dock-avatar-indicator.active {
    opacity: 1;
    transform: scale(1.08);
}

.dock-circle {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.dock-blue {
    background-color: var(--avatar-blue);
    box-shadow: 0 0 8px var(--avatar-blue-glow);
}

.dock-green {
    background-color: var(--avatar-green);
    box-shadow: 0 0 8px var(--avatar-green-glow);
}

.dock-orange {
    background-color: var(--avatar-orange);
    box-shadow: 0 0 8px var(--avatar-orange-glow);
}

.dock-purple {
    background-color: var(--avatar-purple);
    box-shadow: 0 0 8px var(--avatar-purple-glow);
}

.dock-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
}

.dock-avatar-indicator.active .dock-label {
    color: var(--text-primary);
}

/* Main Interaction Row: Active Avatar + Thought Bubble */
.advisor-interaction-row {
    display: grid;
    grid-template-columns: minmax(160px, 33%) minmax(0, 1fr);
    align-items: flex-start;
    gap: 1.75rem;
}

/* 4 DISTINCT AVATAR PLACEHOLDERS: 100px x 100px Colored Circles */
.avatar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 0;
}

.avatar-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.avatar-circle:hover {
    transform: scale(1.04);
}

/* Avatar 1: Blue (Section 1 & 5) */
.avatar-circle.avatar-1-blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 0 28px var(--avatar-blue-glow), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    border-color: rgba(147, 197, 253, 0.6);
}

/* Avatar 2: Green (Section 2) */
.avatar-circle.avatar-2-green {
    background: linear-gradient(135deg, #10b981, #047857);
    box-shadow: 0 0 28px var(--avatar-green-glow), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    border-color: rgba(110, 231, 183, 0.6);
}

/* Avatar 3: Orange (Section 3) */
.avatar-circle.avatar-3-orange {
    background: linear-gradient(135deg, #f59e0b, #b45309);
    box-shadow: 0 0 28px var(--avatar-orange-glow), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    border-color: rgba(252, 211, 77, 0.6);
}

/* Avatar 4: Purple (Section 4) */
.avatar-circle.avatar-4-purple {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    box-shadow: 0 0 28px var(--avatar-purple-glow), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    border-color: rgba(196, 181, 253, 0.6);
}

.avatar-glyph {
    font-size: 2.1rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.avatar-portrait {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
}

.intro-avatar-circle.avatar-image-frame {
    width: 104px;
    height: 140px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.avatar-circle.avatar-image-frame {
    width: 100px;
    height: 136px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.page-wrapper.section1-immersive {
    padding: 1.25rem 1.5rem 0;
}

.page-wrapper.section1-immersive .site-header,
.page-wrapper.section1-immersive .site-footer {
    max-width: none;
}

.page-wrapper.section1-immersive .main-container {
    align-items: stretch;
    justify-content: stretch;
    padding: 1rem 0 0;
}

.page-wrapper.section1-immersive .advisory-card {
    max-width: none;
    width: 100%;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.section1-fullscreen:not([hidden]) {
    display: grid;
    grid-template-columns: minmax(320px, 42vw) minmax(0, 1fr);
    align-items: start;
    width: 100%;
    min-height: max(620px, calc(100vh - 190px));
}

.section1-avatar-panel {
    position: relative;
    align-self: start;
    min-width: 0;
    height: clamp(480px, calc(100vh - 190px), 820px);
    overflow: hidden;
}

.section1-avatar-panel .avatar-circle.avatar-image-frame {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    cursor: default;
    transition: none;
}

.section1-avatar-panel .avatar-circle.avatar-image-frame:hover {
    transform: none;
}

.section1-avatar-panel .avatar-portrait {
    object-fit: cover;
    object-position: center top;
}

.section1-content-panel {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 0 clamp(1rem, 2.5vw, 2.5rem);
}

.section1-advisor-panel {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
}

.section1-advisor-panel .avatar-dock {
    margin-bottom: 1rem;
}

.section1-advisor-panel .thought-bubble-container {
    width: 100%;
}

#section-1-container,
#section-2-container,
#section-3-container,
#section-4-container,
#section-4-report-container {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

#section-1-container .form-field,
#section-2-container .form-field,
#section-3-container .form-field,
#section-4-container .form-field,
#section-4-report-container .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

#section-1-container .form-grid .field-label,
#section-2-container .form-grid .field-label,
#section-3-container .form-grid .field-label,
#section-4-container .form-grid .field-label {
    display: block;
    min-height: 2.5rem;
    line-height: 1.35;
}

#section-1-container .form-field>.text-input,
#section-1-container .form-field>select,
#section-2-container .form-field>.text-input,
#section-2-container .form-field>select,
#section-3-container .form-field>.text-input,
#section-3-container .form-field>select,
#section-4-container .form-field>.text-input,
#section-4-container .form-field>select {
    height: 3.1rem;
    min-height: 3.1rem;
}

.section1-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 1.15rem;
    margin-bottom: 1.15rem;
}

.section1-dropdown-grid .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

#section-1-container .section1-dropdown-grid .field-label,
#section-2-container .section1-dropdown-grid .field-label,
#section-3-container .section1-dropdown-grid .field-label,
#section-4-container .section1-dropdown-grid .field-label {
    display: block;
    min-height: 3.5rem;
    line-height: 1.35;
}

.section1-dropdown-grid .dropdown-select {
    height: 3.1rem;
    min-height: 3.1rem;
}

@media (max-width: 700px) {
    .page-wrapper.section1-immersive {
        padding: 1rem 0.75rem 0;
    }

    .page-wrapper.section1-immersive .main-container {
        padding-top: 0.5rem;
    }

    .section1-fullscreen {
        grid-template-columns: minmax(0, 1fr);
        min-height: 0;
    }

    .section1-avatar-panel {
        height: 48vh;
        min-height: 260px;
        max-height: 480px;
    }

    .section1-content-panel {
        padding: 1rem 0 0;
    }

    .section1-advisor-panel .avatar-dock {
        width: 100%;
        gap: 0.5rem;
    }

    .section1-dropdown-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (min-width: 701px) and (max-width: 1000px) {
    .section1-dropdown-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.avatar-number-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    border: 1.5px solid rgba(37, 46, 40, 0.28);
}

.avatar-name-tag {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    text-align: center;
}

/* Active Avatar Pulse when Audio is playing */
.avatar-circle.speaking {
    animation: avatarPulse 1.4s infinite ease-in-out;
}

@keyframes avatarPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }

    50% {
        transform: scale(1.06);
        box-shadow: 0 0 36px rgba(255, 255, 255, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
}

/* STYLED CSS THOUGHT BUBBLE */
.thought-bubble-container {
    flex: 1;
    position: relative;
    min-width: 0;
}

.thought-bubble {
    position: relative;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1.35rem 1.6rem;
    box-shadow: 0 10px 24px rgba(37, 46, 40, 0.12);
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: border-color 0.3s ease;
}

/* Thought bubble pointer circles */
.thought-bubble::before {
    content: '';
    position: absolute;
    top: 36px;
    left: -14px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
}

.thought-bubble::after {
    content: '';
    position: absolute;
    top: 44px;
    left: -24px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
}

.thought-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
    flex-wrap: wrap;
}

.thought-speaker-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.thought-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    box-shadow: 0 0 6px var(--accent-gold);
}

.thought-persona-title {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.thought-audio-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Audio Wave Visualizer Bars */
.audio-waves {
    display: inline-flex;
    align-items: center;
    gap: 2.5px;
    height: 16px;
}

.audio-waves span {
    width: 3px;
    background-color: var(--accent-emerald);
    border-radius: 2px;
    animation: waveJump 0.8s infinite ease-in-out;
}

.audio-waves span:nth-child(1) {
    height: 6px;
    animation-delay: 0.1s;
}

.audio-waves span:nth-child(2) {
    height: 14px;
    animation-delay: 0.3s;
}

.audio-waves span:nth-child(3) {
    height: 10px;
    animation-delay: 0.2s;
}

.audio-waves span:nth-child(4) {
    height: 16px;
    animation-delay: 0.4s;
}

@keyframes waveJump {

    0%,
    100% {
        transform: scaleY(0.4);
    }

    50% {
        transform: scaleY(1.2);
    }
}

.voice-replay-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: rgba(197, 168, 128, 0.12);
    border: 1px solid rgba(197, 168, 128, 0.3);
    border-radius: 999px;
    padding: 0.3rem 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent-gold);
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.voice-replay-btn:hover {
    background-color: rgba(197, 168, 128, 0.25);
    transform: translateY(-1px);
}

.voice-replay-btn.pulse-prompt {
    background-color: rgba(197, 168, 128, 0.35);
    border-color: var(--accent-gold);
    box-shadow: 0 0 14px rgba(197, 168, 128, 0.5);
    animation: btnGlowPulse 1.6s infinite ease-in-out;
}

@keyframes btnGlowPulse {

    0%,
    100% {
        box-shadow: 0 0 8px rgba(197, 168, 128, 0.3);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 18px rgba(197, 168, 128, 0.7);
        transform: scale(1.04);
    }
}

.thought-text {
    font-size: 0.98rem;
    line-height: 1.62;
    color: var(--text-primary);
}

.thought-text strong {
    color: var(--accent-gold);
    font-weight: 600;
}

/* ==========================================================================
   DATA VISUALIZATION CONTAINERS (RAW TIGER DATA MATCHES)
   ========================================================================== */
.matches-data-container {
    margin-top: 2rem;
    animation: stepFadeIn 0.35s ease forwards;
}

.matches-header {
    margin-bottom: 1.15rem;
}

.matches-title {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.matches-subtitle {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.alumni-match-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.15rem;
    margin-bottom: 1.5rem;
}

.alumni-card {
    background-color: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 6px 16px rgba(37, 46, 40, 0.1);
}

.alumni-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent-gold);
}

.card-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
}

.alum-id-badge {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--accent-gold);
    background-color: var(--accent-gold-subtle);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

.alum-salary-badge {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-emerald);
    background-color: rgba(39, 104, 74, 0.1);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

.alum-role-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.alum-employer {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.alum-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    background-color: var(--bg-inset);
    padding: 0.65rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    font-size: 0.78rem;
}

.alum-stat-item span {
    display: block;
    color: var(--text-muted);
    font-size: 0.68rem;
    text-transform: uppercase;
}

.alum-stat-item strong {
    color: var(--text-primary);
    font-size: 0.88rem;
}

.alum-highlight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.5rem;
}

.highlight-tag {
    font-size: 0.7rem;
    background-color: rgba(255, 255, 255, 0.42);
    border: 1px solid var(--border-subtle);
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    color: var(--text-secondary);
}

/* Course Checklist & Planner */
.course-planner-card {
    background-color: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 1.35rem 1.5rem;
    margin-top: 1.25rem;
    margin-bottom: 1.5rem;
}

.card-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.card-subtext {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.course-checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.75rem;
}

.course-check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background-color: var(--bg-input);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}

.course-check-item:hover {
    border-color: var(--avatar-green);
    transform: translateY(-1px);
}

.course-check-item.checked {
    border-color: var(--accent-emerald);
    background-color: rgba(39, 104, 74, 0.1);
    box-shadow: 0 0 10px rgba(39, 104, 74, 0.12);
}

.course-chk-box {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1.5px solid var(--border-subtle);
    background: var(--bg-inset);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.15s ease;
}

.course-check-item.checked .course-chk-box {
    background-color: var(--accent-emerald);
    border-color: var(--accent-emerald);
}

.course-check-info,
.course-chk-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex-grow: 1;
}

.course-check-header,
.course-chk-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.course-check-code,
.course-chk-code {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
}

.course-check-credits,
.course-chk-credits {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent-gold);
    background: var(--accent-gold-subtle);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
}

.course-chk-level {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.5);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
}

.course-check-title,
.course-chk-title {
    font-size: 0.84rem;
    color: var(--text-secondary);
    line-height: 1.35;
}

.course-check-tags,
.course-chk-tags {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.elective-popularity-badge {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-emerald);
    background: rgba(39, 104, 74, 0.1);
    padding: 0.1rem 0.45rem;
    border-radius: 4px;
}

/* Class Analysis Comparison Grid */
.class-analysis-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.analysis-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 1.35rem 1.45rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 18px rgba(37, 46, 40, 0.1);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

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

.analysis-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border-subtle);
}

.analysis-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.analysis-count-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
}

.badge-completed,
.badge-green {
    background: rgba(32, 88, 62, 0.12);
    color: #20583E;
    border: 1px solid rgba(32, 88, 62, 0.35);
}

.badge-orange,
.badge-amber {
    background: rgba(245, 158, 11, 0.15);
    color: #b45309;
    border: 1px solid rgba(245, 158, 11, 0.35);
}

.badge-missing {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-recommended {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.badge-planned {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.analysis-course-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.4rem;
}

.analysis-course-pill {
    font-size: 0.78rem;
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.analysis-course-pill.pill-green {
    border-color: rgba(32, 88, 62, 0.35);
    background: rgba(32, 88, 62, 0.08);
    color: #20583E;
}

.analysis-course-pill.pill-orange,
.analysis-course-pill.pill-amber {
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(245, 158, 11, 0.08);
    color: #b45309;
}

.analysis-course-pill.pill-purple {
    border-color: rgba(112, 75, 137, 0.35);
    background: rgba(112, 75, 137, 0.08);
    color: #59366F;
}

.analysis-course-pill.pill-blue {
    border-color: rgba(48, 91, 137, 0.35);
    background: rgba(48, 91, 137, 0.08);
    color: #2D527D;
}

/* Involvement & Skill Pills */
.involvement-interactive-card {
    background-color: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 1.35rem 1.5rem;
    margin-bottom: 1.5rem;
}

.involvement-pills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.involvement-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.95rem;
    background-color: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    color: var(--text-secondary);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.18s ease;
}

.involvement-pill:hover {
    border-color: var(--accent-gold);
    color: var(--text-primary);
}

.involvement-pill.active {
    background-color: var(--accent-gold-subtle);
    border-color: var(--accent-gold);
    color: var(--text-primary);
    box-shadow: 0 0 0 1px rgba(116, 90, 46, 0.22);
}

.involvement-pill-meta {
    font-size: 0.7rem;
    color: var(--accent-emerald);
}

.skill-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.95rem;
    background-color: var(--accent-gold-subtle);
    border: 1px solid rgba(116, 90, 46, 0.35);
    border-radius: 999px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.18s ease;
}

.skill-pill:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 1px rgba(116, 90, 46, 0.16);
}

.skill-pill.active {
    background-color: rgba(112, 75, 137, 0.12);
    border-color: var(--avatar-purple);
    color: #59366F;
}

/* Loading transition */
.loading-screen {
    min-height: min(68vh, 620px);
    display: grid;
    place-items: center;
    padding: 3rem 1.25rem;
}

/* Shared route transition */
.page-wrapper {
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.page-wrapper.page-ready {
    opacity: 1;
    transform: translateY(0);
}

.page-wrapper.page-leaving {
    opacity: 0;
    transform: translateY(-5px);
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .page-wrapper { transition: none; }
}

.loading-content {
    width: min(100%, 520px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.loading-animation-wrapper {
    position: relative;
    display: grid;
    place-items: center;
    width: 146px;
    height: 146px;
    margin-bottom: 1.6rem;
}

.spinner-dual-ring {
    width: 94px;
    height: 94px;
    border: 5px solid rgba(116, 90, 46, 0.18);
    border-top-color: var(--accent-gold);
    border-right-color: var(--accent-emerald);
    border-radius: 50%;
    animation: loading-spin 1s linear infinite;
}

.pulse-ring {
    position: absolute;
    width: 94px;
    height: 94px;
    border: 1px solid rgba(116, 90, 46, 0.42);
    border-radius: 50%;
    animation: loading-pulse 2.5s ease-out infinite;
}

.ring-2 { animation-delay: 0.8s; }
.ring-3 { animation-delay: 1.6s; }

.loading-center-avatar {
    position: absolute;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    background: var(--bg-elevated);
    border: 1px solid rgba(116, 90, 46, 0.28);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(37, 46, 40, 0.12);
}

.loading-glyph { font-size: 1.55rem; }

.loading-title {
    margin: 0;
    color: var(--text-primary);
    font-family: var(--font-serif);
    font-size: clamp(1.65rem, 3vw, 2.15rem);
}

.loading-status {
    min-height: 1.5rem;
    margin: 0.65rem 0 1.4rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.loading-status.is-changing {
    opacity: 0;
    transform: translateY(5px);
}

.loading-bar-wrapper {
    width: min(100%, 390px);
    height: 6px;
    overflow: hidden;
    background: rgba(37, 46, 40, 0.1);
    border-radius: 999px;
}

.loading-bar-indeterminate {
    width: 42%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-emerald));
    animation: loading-sweep 1.5s ease-in-out infinite;
}

.loading-council-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1.25rem;
}

.council-tag {
    padding: 0.3rem 0.65rem;
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    color: var(--text-secondary);
    background: var(--bg-elevated);
    font-size: 0.72rem;
    font-weight: 600;
}

@keyframes loading-spin { to { transform: rotate(360deg); } }
@keyframes loading-sweep {
    0% { transform: translateX(-140%); }
    100% { transform: translateX(340%); }
}
@keyframes loading-pulse {
    0%, 100% { opacity: 0; transform: scale(0.72); }
    35% { opacity: 0.65; }
    75% { opacity: 0; transform: scale(1.5); }
}

@media (prefers-reduced-motion: reduce) {
    .spinner-dual-ring, .pulse-ring, .loading-bar-indeterminate { animation: none; }
}

/* Final Summary Matrix */
.final-summary-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.matrix-box {
    background-color: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 1rem 1.15rem;
}

.matrix-box-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.matrix-box-val {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-top: 0.2rem;
}

/* Form Inputs & Controls */
.year-primary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    margin-bottom: 0.75rem;
}

.year-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    background-color: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 1.1rem 1.25rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.year-btn:hover {
    border-color: var(--border-hover);
    background-color: rgba(116, 90, 46, 0.06);
}

.year-btn.selected {
    border-color: var(--accent-gold);
    background-color: var(--accent-gold-subtle);
    box-shadow: 0 0 0 2px rgba(116, 90, 46, 0.18);
}

.year-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

.year-meta {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.year-secondary-wrapper {
    width: 100%;
}

.year-btn-secondary {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-surface);
}

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

.field-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.field-group-full {
    grid-column: 1 / -1;
}

.field-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text-secondary);
}

.optional-tag {
    color: var(--text-muted);
    font-weight: 400;
}

.text-input,
.text-area,
select {
    width: 100%;
    background-color: var(--bg-input);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 0.78rem 0.95rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.text-area {
    resize: vertical;
    min-height: 80px;
}

.text-input:focus,
.text-area:focus {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px var(--accent-gold-subtle);
}

/* Action Buttons & Navigation */
.section-action-box {
    margin-top: 1.5rem;
    display: flex;
    justify-content: stretch;
}

.hero-action-btn {
    width: 100%;
    padding: 0.95rem 1.5rem;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
}

.next-step-box {
    margin-top: 1.75rem;
    display: flex;
    justify-content: flex-end;
}

.continue-btn {
    padding: 0.85rem 1.6rem;
    font-size: 0.85rem;
}

.final-actions-panel {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.75rem;
}

.wizard-nav[hidden] {
    display: none;
}

.wizard-progress[hidden] {
    display: none;
}

.primary-btn,
.submit-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 6px;
    padding: 0.825rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.primary-btn,
.submit-btn {
    background-color: var(--accent-gold);
    color: white;
    border: none;
    min-width: 150px;
}

.primary-btn:hover:not(:disabled),
.submit-btn:hover:not(:disabled) {
    background-color: var(--accent-gold-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(104, 78, 39, 0.25);
}

.secondary-btn {
    background-color: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
}

.secondary-btn:hover:not(:disabled) {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.submit-btn:disabled,
.secondary-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(37, 46, 40, 0.2);
    border-top-color: #252E28;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

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

.form-error {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--error-red);
}

.save-confirmation-card {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    background-color: rgba(39, 104, 74, 0.1);
    border: 1px solid rgba(39, 104, 74, 0.28);
    border-radius: 6px;
    color: var(--accent-emerald);
    font-size: 0.88rem;
    font-weight: 500;
}

/* Site Footer */
.site-footer {
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-align: center;
}

/* Responsive Media Queries */
@media (max-width: 700px) {
    .advisory-card {
        padding: 2rem 1.35rem;
    }

    .advisor-interaction-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .thought-bubble::before,
    .thought-bubble::after {
        display: none;
    }

    .form-grid,
    .year-primary-grid,
    .alumni-match-grid {
        grid-template-columns: 1fr;
    }

    .step-heading {
        font-size: 1.95rem;
    }

    .avatar-dock {
        width: 100%;
        justify-content: space-around;
        gap: 0.5rem;
    }
}

/* ==========================================================================
   STANDALONE SECTION INTRODUCTION STAGE
   Focused Avatar with Dialogue Bubble introducing themself to the user
   ========================================================================== */
.section-intro-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
    animation: stepFadeIn 0.4s ease forwards;
}

.intro-avatar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.intro-avatar-circle {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.intro-avatar-circle:hover {
    transform: scale(1.05);
}

.intro-avatar-glyph {
    font-size: 3rem;
    line-height: 1;
}

.intro-avatar-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    background-color: #0f172a;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 0.2rem 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #f8fafc;
}

.intro-persona-title {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-top: 0.35rem;
}

.intro-role-subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

/* Standalone Thought/Dialogue Bubble */
.intro-dialogue-bubble {
    position: relative;
    max-width: 620px;
    width: 100%;
    background-color: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    box-shadow: 0 12px 30px rgba(37, 46, 40, 0.12);
    margin-bottom: 2.25rem;
    text-align: left;
}

.intro-dialogue-bubble::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 12px 12px 12px;
    border-style: solid;
    border-color: transparent transparent var(--border-subtle) transparent;
}

.intro-dialogue-bubble::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 11px 11px 11px;
    border-style: solid;
    border-color: transparent transparent var(--bg-elevated) transparent;
}

.intro-dialogue-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-subtle);
}

.intro-speaker-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.intro-dialogue-text {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--text-primary);
}

.intro-continue-btn {
    padding: 0.95rem 2.5rem;
    font-size: 0.92rem;
    letter-spacing: 0.06em;
    box-shadow: 0 6px 18px rgba(116, 90, 46, 0.2);
}

.pill-option {
    background-color: var(--bg-input);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 0.78rem 0.95rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.pill-option:hover {
    border-color: var(--border-hover);
    transform: translateY(-1px);
}

.pill-option.active {
    background-color: var(--accent-gold-subtle);
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(197, 168, 128, 0.2);
    color: var(--text-primary);
}

/* =========================================================================
   AUTOCOMPLETE SEARCH BAR & PLANNED COURSE CHIPS (SECTION 2)
   ========================================================================= */
.autocomplete-search-wrapper {
    position: relative;
    width: 100%;
    margin-top: 0.75rem;
}

.autocomplete-search-input {
    width: 100%;
    padding: 0.9rem 1.1rem;
    font-size: 0.95rem;
    background-color: var(--bg-input);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.autocomplete-search-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.2);
}

.autocomplete-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    max-height: 280px;
    overflow-y: auto;
    background-color: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.autocomplete-item {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid var(--border-subtle);
    transition: background-color 0.15s ease;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover,
.autocomplete-item.highlighted {
    background-color: var(--accent-gold-subtle);
}

.autocomplete-item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.2rem;
}

.autocomplete-item-code {
    font-weight: 600;
    color: var(--accent-gold);
    font-size: 0.92rem;
}

.autocomplete-item-credits {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.autocomplete-item-title {
    font-size: 0.88rem;
    color: var(--text-primary);
}

.autocomplete-empty {
    padding: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.planned-courses-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    min-height: 20px;
}

.planned-course-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    background-color: rgba(197, 168, 128, 0.15);
    border: 1px solid var(--accent-gold);
    border-radius: 20px;
    color: var(--text-primary);
    font-size: 0.85rem;
    animation: fadeIn 0.2s ease;
}

.planned-course-chip .chip-remove-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    padding: 0 0.15rem;
    line-height: 1;
    transition: color 0.15s ease;
}

.planned-course-chip .chip-remove-btn:hover {
    color: var(--text-primary);
}

/* =========================================================================
   SECTION 3: LARGE IMPACT TEXTAREA, INVOLVEMENT METRICS & CLUBS DATA TABLE
   ========================================================================= */
.text-area-large {
    width: 100%;
    padding: 1rem 1.1rem;
    font-size: 0.95rem;
    font-family: var(--font-sans);
    line-height: 1.6;
    background-color: var(--bg-input);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-primary);
    resize: vertical;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.text-area-large:focus {
    outline: none;
    border-color: var(--avatar-orange);
    box-shadow: 0 0 0 3px var(--avatar-orange-glow);
}

.involvement-metrics-container {
    width: 100%;
}

.involvement-metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.metric-bar-wrap {
    width: 100%;
    height: 12px;
    background-color: var(--bg-inset);
    border-radius: 6px;
    overflow: hidden;
    margin-top: 0.5rem;
    border: 1px solid var(--border-subtle);
}

.metric-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #d97706 0%, var(--avatar-orange) 50%, #f59e0b 100%);
    border-radius: 6px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.clubs-table-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.clubs-data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    text-align: left;
}

.clubs-data-table th {
    padding: 0.75rem 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 2px solid var(--border-subtle);
    background-color: var(--bg-surface);
}

.clubs-data-table td {
    padding: 0.85rem;
    border-bottom: 1px solid var(--border-subtle);
    vertical-align: middle;
}

.clubs-data-table tbody tr:last-child td {
    border-bottom: none;
}

.clubs-data-table tbody tr:hover {
    background-color: var(--bg-inset);
}

.club-rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--bg-inset);
    border: 1px solid var(--border-subtle);
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--text-primary);
}

.badge-hackathon {
    background-color: rgba(245, 158, 11, 0.15) !important;
    color: #92400e !important;
    border: 1px solid rgba(245, 158, 11, 0.4) !important;
}

.badge-research {
    background-color: rgba(59, 130, 246, 0.15) !important;
    color: #1e40af !important;
    border: 1px solid rgba(59, 130, 246, 0.4) !important;
}

.badge-org {
    background-color: rgba(16, 185, 129, 0.15) !important;
    color: #065f46 !important;
    border: 1px solid rgba(16, 185, 129, 0.4) !important;
}


/* =========================================================================
   SECTION 5: DASHBOARD GRID, ULTIMATE MATCH HERO & HORIZONTAL TIMELINE
   ========================================================================= */

.advisory-card:has(#section-5-container),
.page-wrapper.section5-blueprint-view .advisory-card {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

.section5-stage {
    width: 100%;
    margin: 0 auto;
}

/* Section 5 Hero Top Row: Avatar Takes Up Half Screen Width & Height */
.section5-hero-stage-wrapper {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-subtle);
}

.section5-top-hero-row {
    display: grid;
    grid-template-columns: minmax(320px, 46%) minmax(0, 54%);
    align-items: center;
    gap: 2.25rem;
    margin-top: 1rem;
}

.section5-avatar-half {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 420px;
    height: 48vh;
    max-height: 520px;
    position: relative;
}

.section5-hero-avatar-circle.avatar-image-frame {
    width: 100%;
    max-width: 440px;
    height: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.section5-hero-portrait {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.35));
    transition: transform 0.3s ease;
}

.section5-hero-portrait:hover {
    transform: scale(1.02);
}

.section5-avatar-tag {
    margin-top: 0.75rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.04em;
    background: var(--bg-surface);
    padding: 0.35rem 0.95rem;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
}

.section5-thought-half {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.section5-thought-half .thought-bubble {
    padding: 1.75rem 2rem;
    font-size: 1rem;
    line-height: 1.65;
}

/* Stage A Intro Screen Large Avatar */
.section5-large-avatar-wrap .section5-hero-avatar-frame {
    width: clamp(260px, 35vw, 380px);
    height: clamp(340px, 45vh, 480px);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section5-large-avatar-wrap .avatar-portrait {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.4));
}

@media (max-width: 850px) {
    .section5-top-hero-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.5rem;
    }

    .section5-avatar-half {
        height: 40vh;
        min-height: 280px;
    }
}

#section-5-container {
    width: 100%;
    margin: 0 auto;
}

.report-top-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.report-actions-quick-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.report-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.report-section-card {
    background-color: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 1.35rem 1.5rem;
    box-shadow: 0 4px 16px rgba(37, 46, 40, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.report-section-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent-gold);
}

.report-card-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border-subtle);
}

.report-card-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.report-card-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
}

.concise-bullet-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.concise-bullet-list li {
    position: relative;
    padding-left: 1.15rem;
}

.concise-bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.15rem;
}

.concise-bullet-list strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* --- The Ultimate Match Hero Section --- */
.ultimate-match-section {
    margin-top: 2rem;
    animation: stepFadeIn 0.35s ease forwards;
}

.ultimate-match-hero {
    background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(197, 168, 128, 0.12) 100%);
    border: 1.5px solid var(--accent-gold);
    border-radius: 12px;
    padding: 1.75rem 2rem;
    box-shadow: 0 10px 28px rgba(37, 46, 40, 0.12);
    transition: transform 0.2s ease;
}

.ultimate-match-hero:hover {
    transform: translateY(-2px);
}

.ultimate-match-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.ultimate-badge-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.ultimate-role-heading {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.ultimate-employer-sub {
    font-size: 0.92rem;
    color: var(--accent-emerald);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.ultimate-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.85rem;
    background: var(--bg-surface);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    margin-bottom: 1.25rem;
}

.ultimate-stat-block {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.ultimate-stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    font-weight: 600;
}

.ultimate-stat-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.ultimate-takeaway-box {
    border-left: 3px solid var(--accent-gold);
    background: rgba(197, 168, 128, 0.12);
    padding: 0.95rem 1.25rem;
    border-radius: 0 8px 8px 0;
    font-size: 0.88rem;
    color: var(--text-primary);
    font-style: italic;
    line-height: 1.55;
}

/* --- Next Steps Horizontal Timeline --- */
.timeline-section-wrapper {
    margin-top: 2.5rem;
    width: 100%;
    animation: stepFadeIn 0.35s ease forwards;
}

.timeline-container {
    width: 100%;
    overflow-x: auto;
    padding: 1.25rem 0.25rem 0.5rem 0.25rem;
}

.timeline-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
    min-width: 680px;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--avatar-blue), var(--avatar-green), var(--avatar-orange), var(--avatar-purple));
    z-index: 1;
}

.timeline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-timeframe-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent-gold);
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    margin-bottom: 0.65rem;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.timeline-marker {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    border: 3px solid var(--bg-surface);
    box-shadow: 0 0 0 2px var(--accent-gold);
    margin-bottom: 0.85rem;
    flex-shrink: 0;
}

.timeline-node-body {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 1rem 0.85rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    height: 100%;
    box-shadow: 0 4px 12px rgba(37, 46, 40, 0.06);
    text-align: left;
}

.timeline-node-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.timeline-node-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.timeline-node-badge {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-emerald);
    background: rgba(39, 104, 74, 0.1);
    border: 1px solid rgba(39, 104, 74, 0.25);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    align-self: flex-start;
    margin-top: auto;
}

/* =========================================================================
   SECTION 4: DYNAMIC TAG INPUT, EXPERIENCE GRID & PROFESSIONAL REPORT
   ========================================================================= */

.tag-input-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    background: var(--bg-surface);
    border: 1.5px solid var(--border-subtle);
    border-radius: 8px;
    padding: 0.45rem 0.65rem;
    min-height: 3.2rem;
    cursor: text;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.tag-input-box:focus-within {
    border-color: var(--avatar-purple);
    box-shadow: 0 0 0 3px rgba(89, 54, 111, 0.15);
}

.tag-chips-wrapper {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
}

.tag-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(89, 54, 111, 0.12);
    color: #59366F;
    border: 1px solid rgba(89, 54, 111, 0.3);
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.2;
    animation: fadeIn 0.15s ease-out;
}

.tag-chip-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #59366F;
    font-size: 1.05rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    margin-left: 0.15rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transition: background-color 0.15s, color 0.15s;
}

.tag-chip-remove:hover {
    background: rgba(89, 54, 111, 0.25);
    color: #2e163b;
}

.tag-text-input {
    flex: 1;
    min-width: 180px;
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 0.9rem;
    outline: none;
    padding: 0.25rem 0.2rem;
}

.tag-text-input::placeholder {
    color: var(--text-muted);
}

/* Experience Categories Grid */
.experience-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0.85rem;
}

.experience-category-card {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 8px;
    border: 1.5px solid var(--border-subtle);
    background: var(--bg-surface);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    user-select: none;
}

.experience-category-card:hover {
    border-color: var(--avatar-purple);
    transform: translateY(-1px);
}

.experience-category-card.selected {
    border-color: var(--avatar-purple);
    background: rgba(89, 54, 111, 0.06);
    box-shadow: 0 0 0 2px rgba(89, 54, 111, 0.15);
}

.experience-cat-checkbox {
    margin-top: 0.2rem;
    accent-color: var(--avatar-purple);
    width: 17px;
    height: 17px;
    cursor: pointer;
}

.exp-card-icon {
    font-size: 1.35rem;
    line-height: 1;
    flex-shrink: 0;
}

.exp-card-content {
    flex: 1;
    min-width: 0;
}

.exp-card-title {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.exp-card-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.35;
}

/* Category Details Popups & Panels (Screen 2) */
.category-details-container {
    animation: fadeIn 0.25s ease-out;
}

.category-detail-panel {
    background: var(--bg-elevated);
    border: 1.5px solid var(--border-subtle);
    border-left: 4px solid var(--avatar-purple);
    border-radius: 8px;
    padding: 1.25rem 1.4rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    animation: slideDownFade 0.25s ease-out;
    margin-bottom: 1rem;
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.category-detail-title {
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.category-detail-badge {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(89, 54, 111, 0.12);
    color: var(--avatar-purple);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

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

@media (max-width: 768px) {
    .category-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* Job Role Item Cards */
.job-role-card {
    background: var(--bg-surface);
    border: 1.5px solid var(--border-subtle);
    border-radius: 8px;
    padding: 1.25rem;
    position: relative;
    transition: border-color 0.2s;
}

.job-role-card:focus-within {
    border-color: rgba(89, 54, 111, 0.4);
}

.job-role-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.job-role-badge {
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(89, 54, 111, 0.12);
    color: var(--avatar-purple);
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
}

.btn-remove-role {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: #dc2626;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-remove-role:hover {
    background: #fee2e2;
    border-color: #fca5a5;
}

/* Section 4 Report Containers */
.prof-report-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.companies-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1rem;
}

.company-showcase-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 1rem 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    transition: transform 0.2s, border-color 0.2s;
}

.company-showcase-card:hover {
    transform: translateY(-2px);
    border-color: var(--avatar-purple);
}

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

.company-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.company-hire-badge {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    background: rgba(16, 185, 129, 0.15);
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.3);
    white-space: nowrap;
}

.company-subtext {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.35;
}

.company-alumni-count {
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--avatar-purple);
    margin-top: auto;
    padding-top: 0.35rem;
    border-top: 1px dashed var(--border-subtle);
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.opportunity-item-card {
    background: var(--bg-elevated);
    border-left: 3.5px solid var(--avatar-purple);
    border-top: 1px solid var(--border-subtle);
    border-right: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    border-radius: 0 8px 8px 0;
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    transition: transform 0.2s;
}

.opportunity-item-card:hover {
    transform: translateY(-2px);
}

.opp-badge-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.15rem;
}

.opp-badge {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: rgba(89, 54, 111, 0.12);
    color: var(--avatar-purple);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
}

.opp-timeframe {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.opp-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.opp-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* =========================================================================
   PRINT-SPECIFIC STYLESHEET (@media print)
   Hides website UI and cleanly reformats user data into an 8.5x11 printable report
   ========================================================================= */

.print-only-header {
    display: none;
}

@media print {
    @page {
        size: letter portrait;
        margin: 0.45in 0.45in 0.45in 0.45in;
    }

    body,
    html {
        background: #ffffff !important;
        color: #1a202c !important;
        font-size: 9.5pt !important;
        line-height: 1.35 !important;
    }

    .page-wrapper {
        padding: 0 !important;
        background: #ffffff !important;
        display: block !important;
        min-height: auto !important;
    }

    .site-header,
    .site-footer,
    .avatar-stage-wrapper,
    .section-intro-stage,
    .action-card,
    .report-actions-quick-bar,
    .voice-replay-btn,
    .audio-waves,
    button,
    .spinner {
        display: none !important;
    }

    .main-container {
        padding: 0 !important;
        display: block !important;
    }

    .advisory-card {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
    }

    .print-only-header {
        display: block !important;
        border-bottom: 2px solid #252e28;
        padding-bottom: 0.5rem;
        margin-bottom: 0.85rem;
    }

    .print-header-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .print-title {
        font-size: 15pt;
        font-weight: 700;
        color: #252e28;
        margin: 0;
    }

    .print-date {
        font-size: 8.5pt;
        color: #4a5568;
    }

    .print-subtitle {
        font-size: 8.5pt;
        color: #718096;
        margin-top: 0.2rem;
    }

    .step-heading,
    .eyebrow,
    .step-description {
        display: none !important;
    }

    .report-dashboard-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.65rem !important;
        margin: 0.65rem 0 !important;
        page-break-inside: avoid;
    }

    .report-section-card {
        background: #f8fafc !important;
        border: 1px solid #cbd5e1 !important;
        box-shadow: none !important;
        padding: 0.65rem 0.8rem !important;
        border-radius: 6px !important;
        page-break-inside: avoid;
    }

    .report-card-title {
        font-size: 10.5pt !important;
        color: #1e293b !important;
    }

    .concise-bullet-list {
        gap: 0.35rem !important;
        font-size: 8pt !important;
        line-height: 1.35 !important;
    }

    .concise-bullet-list strong {
        color: #0f172a !important;
    }

    .ultimate-match-section {
        margin-top: 0.85rem !important;
        page-break-inside: avoid;
    }

    .ultimate-match-hero {
        background: #f8fafc !important;
        border: 1.5px solid #475569 !important;
        box-shadow: none !important;
        padding: 0.75rem 0.9rem !important;
        border-radius: 6px !important;
        page-break-inside: avoid;
    }

    .ultimate-role-heading {
        font-size: 12pt !important;
    }

    .ultimate-stats-grid {
        background: #ffffff !important;
        border: 1px solid #e2e8f0 !important;
        padding: 0.45rem 0.65rem !important;
        gap: 0.45rem !important;
        margin-bottom: 0.45rem !important;
    }

    .ultimate-stat-value {
        font-size: 8pt !important;
    }

    .ultimate-takeaway-box {
        background: #f1f5f9 !important;
        border-left: 3px solid #334155 !important;
        padding: 0.4rem 0.65rem !important;
        font-size: 7.8pt !important;
    }

    .timeline-section-wrapper {
        margin-top: 0.85rem !important;
        page-break-inside: avoid;
    }

    .timeline-container {
        padding: 0.5rem 0 !important;
    }

    .timeline-track {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0.45rem !important;
        min-width: 100% !important;
    }

    .timeline-track::before {
        top: 24px !important;
        background: #94a3b8 !important;
        height: 2px !important;
    }

    .timeline-node-body {
        background: #ffffff !important;
        border: 1px solid #cbd5e1 !important;
        box-shadow: none !important;
        padding: 0.45rem !important;
    }

    .timeline-node-title {
        font-size: 7.8pt !important;
    }

    .timeline-node-desc {
        font-size: 7.2pt !important;
    }

    .timeline-marker {
        width: 10px !important;
        height: 10px !important;
        border-width: 2px !important;
        margin-bottom: 0.35rem !important;
    }

    .timeline-timeframe-tag {
        font-size: 6.8pt !important;
        padding: 0.1rem 0.35rem !important;
        margin-bottom: 0.25rem !important;
        background: #e2e8f0 !important;
        border-color: #cbd5e1 !important;
    }
}
