/* ===== Base & Reset ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy-deep: #0a1628;
    --navy-mid: #111d33;
    --navy-card: rgba(12, 22, 45, 0.85);
    --gold: #d4a843;
    --gold-light: #e8c56d;
    --amber: #e8913a;
    --amber-light: #f0a854;
    --cream: #f5f0e8;
    --text: #e0ddd8;
    --text-light: #b0a898;
    --text-muted: #78706a;
    --shadow: rgba(0, 0, 0, 0.35);
    --radius: 16px;
    --transition: 0.4s ease;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    background: var(--navy-deep);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.7;
    position: relative;
    overflow-x: hidden;
}

/* ===== Animated Gradient Background ===== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background:
        radial-gradient(ellipse 120% 60% at 20% 10%, rgba(212, 168, 67, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 100% 50% at 60% 5%, rgba(232, 145, 58, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 80% 40% at 80% 15%, rgba(212, 168, 67, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 90% 45% at 40% 90%, rgba(232, 145, 58, 0.06) 0%, transparent 50%);
    animation: ambientShift 20s ease-in-out infinite alternate;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background:
        radial-gradient(ellipse 100% 55% at 35% 85%, rgba(212, 168, 67, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 70% 35% at 75% 80%, rgba(232, 145, 58, 0.06) 0%, transparent 50%);
    animation: ambientShift2 25s ease-in-out infinite alternate;
    opacity: 0.7;
}

@keyframes ambientShift {
    0% { transform: translateX(0) scaleY(1); opacity: 1; }
    50% { transform: translateX(-15px) scaleY(1.05); opacity: 0.9; }
    100% { transform: translateX(10px) scaleY(0.98); opacity: 1; }
}

@keyframes ambientShift2 {
    0% { transform: translateX(0) scaleY(1); opacity: 0.7; }
    50% { transform: translateX(12px) scaleY(1.03); opacity: 0.5; }
    100% { transform: translateX(-8px) scaleY(0.97); opacity: 0.7; }
}

#app {
    position: relative;
    z-index: 1;
}

/* ===== Screens ===== */
.screen {
    display: none;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 1rem;
    animation: fadeIn 0.5s ease;
}

.screen.active {
    display: flex;
}

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

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ===== Card ===== */
.card {
    background: var(--navy-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 168, 67, 0.12);
    border-radius: var(--radius);
    box-shadow: 0 4px 30px var(--shadow), 0 0 60px rgba(212, 168, 67, 0.03);
    padding: 2.5rem 2rem;
    max-width: 640px;
    width: 100%;
    position: relative;
}

/* ===== Typography ===== */
h1 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(212, 168, 67, 0.2);
    line-height: 1.3;
}

h2 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.subtitle {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--amber);
    margin-bottom: 1.5rem;
}

/* ===== Hub Home Screen ===== */
.home-card {
    text-align: center;
    max-width: 700px;
    padding: 2.5rem 2rem;
}

.home-card h1 {
    font-size: 1.9rem;
    margin-bottom: 0.5rem;
}

.home-card .event-badge {
    display: inline-block;
    background: rgba(232, 145, 58, 0.12);
    border: 1px solid rgba(232, 145, 58, 0.25);
    border-radius: 20px;
    padding: 0.3rem 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    color: var(--amber);
    letter-spacing: 0.05em;
    margin-bottom: 1.2rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.home-card .event-badge:hover {
    background: rgba(232, 145, 58, 0.22);
    border-color: var(--amber);
}

.home-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.tool-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.tool-card {
    background: rgba(212, 168, 67, 0.06);
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: 14px;
    padding: 1.5rem 1.2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
}

.tool-card:hover {
    background: rgba(212, 168, 67, 0.12);
    border-color: rgba(212, 168, 67, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.15);
}

.tool-card.coming-soon {
    opacity: 0.45;
    cursor: default;
    pointer-events: none;
}

.tool-icon {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.tool-name {
    font-size: 0.95rem;
    font-weight: bold;
    color: var(--text);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.tool-desc {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
}

.tool-badge {
    display: inline-block;
    background: rgba(212, 168, 67, 0.15);
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 12px;
    padding: 0.15rem 0.6rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* ===== Welcome Screen ===== */
.welcome-card {
    text-align: center;
    padding: 2.5rem 2rem;
}

.welcome-card h1 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
}

.welcome-intro {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.welcome-pillars {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0 2rem;
    flex-wrap: wrap;
}

.pillar {
    text-align: center;
    flex: 0 0 auto;
}

.pillar-icon {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.pillar-label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    font-weight: 600;
}

/* ===== Progress Indicator ===== */
.question-progress {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.progress-track {
    width: 100%;
    height: 4px;
    background: rgba(212, 168, 67, 0.12);
    border-radius: 2px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--amber));
    border-radius: 2px;
    transition: width 0.4s ease;
}

/* ===== Question ===== */
.question-container {
    animation: slideIn 0.4s ease;
}

.dimension-label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber);
    margin-bottom: 0.5rem;
}

.question-text {
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ===== Likert Scale ===== */
.likert-scale {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.likert-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    border: 2px solid rgba(212, 168, 67, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 48px;
}

.likert-option:hover {
    border-color: rgba(212, 168, 67, 0.3);
    background: rgba(212, 168, 67, 0.04);
}

.likert-option.selected {
    border-color: var(--gold);
    background: rgba(212, 168, 67, 0.1);
}

.likert-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(212, 168, 67, 0.25);
    flex-shrink: 0;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.likert-option.selected .likert-dot {
    background: var(--gold);
    border-color: var(--gold);
}

.likert-option.selected .likert-dot::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--navy-deep);
}

.likert-label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    flex: 1;
}

.likert-option.selected .likert-label {
    color: var(--gold);
    font-weight: 600;
}

/* ===== Did You Know ===== */
.did-you-know {
    background: rgba(232, 145, 58, 0.06);
    border: 1px solid rgba(232, 145, 58, 0.15);
    border-left: 3px solid var(--amber);
    border-radius: 0 12px 12px 0;
    padding: 1rem 1.2rem;
    margin: 1rem 0;
    animation: fadeIn 0.4s ease;
}

.did-you-know-label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.did-you-know p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== Results Screen ===== */
.results-card {
    max-width: 700px;
}

.profile-header {
    text-align: center;
    margin-bottom: 2rem;
}

.profile-emoji {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.profile-type {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.profile-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
}

/* ===== Dimension Scores ===== */
.dimension-scores {
    margin: 2rem 0;
}

.dimension-scores h3 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 1rem;
}

.dimension-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
}

.dimension-name {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8rem;
    color: var(--text-light);
    min-width: 140px;
    flex-shrink: 0;
}

.dimension-bar-track {
    flex: 1;
    height: 12px;
    background: rgba(212, 168, 67, 0.08);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.dimension-bar-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 1s ease;
    position: relative;
}

.dimension-bar-fill.high {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.dimension-bar-fill.mid {
    background: linear-gradient(90deg, var(--amber), var(--amber-light));
}

.dimension-bar-fill.low {
    background: linear-gradient(90deg, #c0854a, var(--amber));
}

.dimension-score-value {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    min-width: 36px;
    text-align: right;
}

/* ===== Strengths & Tips ===== */
.strengths-section, .tips-section {
    margin: 1.5rem 0;
}

.strengths-section h3, .tips-section h3 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.strengths-section h3 {
    color: var(--gold);
}

.tips-section h3 {
    color: var(--amber);
}

.strength-item, .tip-item {
    padding: 0.6rem 0 0.6rem 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text);
}

.strength-item::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.tip-item::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--amber);
    font-weight: bold;
}

/* ===== MI Cross-link from Results ===== */
.mi-crosslink {
    background: rgba(232, 145, 58, 0.06);
    border: 1px solid rgba(232, 145, 58, 0.15);
    border-radius: 12px;
    padding: 1.2rem;
    margin: 1.5rem 0;
    text-align: center;
}

.mi-crosslink-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.mi-crosslink-label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.mi-crosslink-stage {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.mi-crosslink-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

/* ===== Next Steps Screen ===== */
.next-steps-card {
    text-align: center;
    max-width: 640px;
}

.summary-profile {
    background: rgba(212, 168, 67, 0.06);
    border: 1px solid rgba(212, 168, 67, 0.12);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.summary-profile .profile-emoji {
    font-size: 2.5rem;
}

.summary-profile .profile-type {
    font-size: 1.3rem;
}

.top-tip {
    background: rgba(232, 145, 58, 0.06);
    border: 1px solid rgba(232, 145, 58, 0.15);
    border-left: 3px solid var(--amber);
    border-radius: 0 12px 12px 0;
    padding: 1rem 1.2rem;
    margin: 1.5rem 0;
    text-align: left;
}

.top-tip-label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.top-tip p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
}

.share-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
    align-items: center;
}

.cta-box {
    text-align: center;
    background: rgba(212, 168, 67, 0.06);
    border: 1px solid rgba(212, 168, 67, 0.12);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.cta-box p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.cta-box a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cta-box a:hover {
    color: var(--amber);
}

/* ===== Discussion Prompts ===== */
.discussion-section h3 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.discussion-item {
    padding: 0.6rem 0 0.6rem 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text);
    font-style: italic;
}

.discussion-item::before {
    content: '\1F4AC';
    position: absolute;
    left: 0;
    font-style: normal;
    font-size: 0.85rem;
}

/* ===== Recommended Resources ===== */
.recommended-resource {
    background: rgba(232, 145, 58, 0.06);
    border: 1px solid rgba(232, 145, 58, 0.15);
    border-left: 3px solid var(--amber);
    border-radius: 0 12px 12px 0;
    padding: 0.8rem 1rem;
    margin-bottom: 0.6rem;
}

.rec-dimension {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber);
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.rec-title {
    font-size: 0.95rem;
    font-weight: bold;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.rec-reason {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== Resources Page ===== */
.resource-category {
    margin: 1.5rem 0;
}

.resource-category-title {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(212, 168, 67, 0.12);
    margin-bottom: 0.75rem;
}

.resource-item {
    display: block;
    background: rgba(212, 168, 67, 0.04);
    border: 1px solid rgba(212, 168, 67, 0.1);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin-bottom: 0.6rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.resource-item:hover {
    background: rgba(212, 168, 67, 0.1);
    border-color: rgba(212, 168, 67, 0.25);
    transform: translateY(-1px);
}

.resource-title {
    font-size: 1rem;
    font-weight: bold;
    color: var(--text);
    margin-bottom: 0.2rem;
    line-height: 1.4;
}

.resource-item:hover .resource-title {
    color: var(--gold);
}

.resource-source {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--amber);
    margin-bottom: 0.4rem;
}

.resource-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== MI Intro Screen ===== */
.mi-intro-section {
    margin: 1.5rem 0;
}

.mi-intro-section h3 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.mi-intro-section p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Mini stage timeline on intro */
.stage-mini-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin: 1rem 0;
}

.stage-mini {
    text-align: center;
    padding: 0.5rem 0.4rem;
}

.stage-mini-emoji {
    font-size: 1.4rem;
}

.stage-mini-name {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.6rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
    max-width: 80px;
}

.stage-mini-arrow {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0 0.1rem;
}

/* OARS Grid */
.oars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 1rem 0;
}

.oars-item {
    background: rgba(212, 168, 67, 0.06);
    border: 1px solid rgba(212, 168, 67, 0.12);
    border-radius: 10px;
    padding: 0.8rem;
    text-align: center;
}

.oars-letter {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.oars-label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}

.oars-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
}

.mi-path-choices {
    margin: 1.5rem 0 0.5rem;
}

.mi-path-choices h3 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* ===== MI Stages Screen ===== */

/* Stage Timeline */
.stage-timeline {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.5rem 0 1rem;
    margin: 1rem 0;
    -webkit-overflow-scrolling: touch;
}

.stage-timeline-item {
    flex: 0 0 auto;
    min-width: 100px;
    text-align: center;
    padding: 0.75rem 0.5rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 168, 67, 0.1);
    background: rgba(212, 168, 67, 0.04);
    cursor: pointer;
    transition: all 0.2s ease;
}

.stage-timeline-item:hover {
    background: rgba(212, 168, 67, 0.1);
    border-color: rgba(212, 168, 67, 0.25);
}

.stage-timeline-item.primary {
    background: rgba(212, 168, 67, 0.15);
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(212, 168, 67, 0.2);
}

.stage-timeline-item.secondary {
    background: rgba(232, 145, 58, 0.1);
    border-color: rgba(232, 145, 58, 0.3);
}

.stage-timeline-item.inactive {
    opacity: 0.4;
}

.stage-timeline-emoji {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.stage-timeline-name {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.stage-timeline-subtitle {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 0.2rem;
    line-height: 1.3;
}

/* MI Transition Box */
.mi-transition-box {
    background: rgba(232, 145, 58, 0.06);
    border: 1px solid rgba(232, 145, 58, 0.15);
    border-left: 3px solid var(--amber);
    border-radius: 0 12px 12px 0;
    padding: 1rem 1.2rem;
    margin: 1rem 0;
}

.mi-transition-label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber);
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.mi-transition-box p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Stage Detail */
.stage-detail {
    margin: 1.5rem 0;
}

.stage-detail-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.stage-detail-emoji {
    font-size: 2rem;
}

.stage-detail-header h3 {
    color: var(--gold);
    margin-bottom: 0.1rem;
}

.stage-detail-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.stage-detail-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* MI Subsections */
.mi-subsection {
    margin: 1rem 0;
}

.mi-subsection h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.mi-subsection p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.mi-characteristic {
    padding: 0.4rem 0 0.4rem 1.2rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
}

.mi-characteristic::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.mi-principle-text {
    font-style: italic;
    color: var(--amber) !important;
}

/* MI Exercises */
.mi-exercises {
    background: rgba(212, 168, 67, 0.04);
    border: 1px solid rgba(212, 168, 67, 0.1);
    border-radius: 12px;
    padding: 1.2rem;
    margin: 1.5rem 0;
}

.mi-exercises h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.mi-exercise-group {
    margin: 0.75rem 0;
}

.mi-exercise-label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
}

.mi-question, .mi-affirmation, .mi-reflection {
    padding: 0.3rem 0 0.3rem 1.2rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
}

.mi-question::before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.mi-affirmation::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.mi-reflection::before {
    content: '\223C';
    position: absolute;
    left: 0;
    color: var(--amber);
    font-weight: bold;
}

.mi-stage-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    margin: 1.5rem 0;
}

/* ===== MI Helping Screen — Tabs ===== */
.stage-tabs {
    display: flex;
    gap: 0.4rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    -webkit-overflow-scrolling: touch;
}

.stage-tab {
    flex: 0 0 auto;
    padding: 0.5rem 0.8rem;
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: 8px;
    background: rgba(212, 168, 67, 0.04);
    color: var(--text-light);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.stage-tab:hover {
    background: rgba(212, 168, 67, 0.1);
    border-color: rgba(212, 168, 67, 0.3);
}

.stage-tab.active {
    background: rgba(212, 168, 67, 0.18);
    border-color: var(--gold);
    color: var(--gold);
}

/* Guide Content */
.guide-content {
    animation: fadeIn 0.3s ease;
}

.guide-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.guide-emoji {
    font-size: 2rem;
}

.guide-header h3 {
    color: var(--gold);
}

.guide-goal {
    background: rgba(212, 168, 67, 0.06);
    border: 1px solid rgba(212, 168, 67, 0.12);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    margin-bottom: 1.5rem;
}

.guide-goal-label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.guide-goal p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.5;
}

.guide-dos-donts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.guide-column h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.guide-dos h4 {
    color: #6dbe75;
}

.guide-donts h4 {
    color: #e06060;
}

.guide-do-item, .guide-dont-item {
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.4;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.guide-do-item:last-child, .guide-dont-item:last-child {
    border-bottom: none;
}

.guide-script-section {
    margin-top: 1.5rem;
}

.guide-script-section h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.guide-script {
    background: rgba(232, 145, 58, 0.04);
    border: 1px solid rgba(232, 145, 58, 0.1);
    border-radius: 10px;
    padding: 1rem 1.2rem;
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
}

/* ===== Buttons ===== */
.btn {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    letter-spacing: 0.02em;
    min-height: 48px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--amber));
    color: var(--navy-deep);
    box-shadow: 0 2px 12px rgba(212, 168, 67, 0.25);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
}

.btn-secondary {
    background: rgba(212, 168, 67, 0.1);
    color: var(--gold);
    border: 1.5px solid rgba(212, 168, 67, 0.2);
}

.btn-secondary:hover {
    background: rgba(212, 168, 67, 0.18);
}

.btn-outline {
    background: transparent;
    color: var(--amber);
    border: 1.5px solid rgba(232, 145, 58, 0.25);
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
}

.btn-outline:hover {
    background: rgba(232, 145, 58, 0.1);
    border-color: var(--amber);
}

.btn-text {
    background: transparent;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    border: none;
    cursor: pointer;
}

.btn-text:hover {
    color: var(--text-light);
}

.nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* ===== Toast ===== */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy-deep);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
    z-index: 100;
    animation: toastIn 0.3s ease;
}

.toast.hidden {
    display: none;
}

@keyframes toastIn {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ===== Utility ===== */
.hidden {
    display: none;
}

.section-divider {
    border: none;
    border-top: 1px solid rgba(212, 168, 67, 0.1);
    margin: 1.5rem 0;
}

/* ===== Kotter Intro ===== */
.kotter-steps-visual {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin: 1rem 0;
}

.kotter-step-mini {
    text-align: center;
    padding: 0.6rem 0.3rem;
    background: rgba(212, 168, 67, 0.06);
    border: 1px solid rgba(212, 168, 67, 0.12);
    border-radius: 8px;
}

.kotter-step-number {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.kotter-step-mini-name {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.6rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.kotter-phases-legend {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
}

.kotter-phase-label {
    padding: 0.4rem 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.kotter-phase-name {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
}

.kotter-phase-steps {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ===== Kotter Step Cards ===== */
.kotter-step-card {
    margin: 1.5rem 0;
}

.kotter-step-card.priority {
    border-left: 3px solid var(--gold);
    padding-left: 1rem;
}

.kotter-step-card.needs-work {
    border-left: 3px solid var(--amber);
    padding-left: 1rem;
}

.kotter-step-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.kotter-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--navy-deep);
    flex-shrink: 0;
}

.kotter-step-title-area h3 {
    color: var(--gold);
    margin-bottom: 0.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.kotter-step-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.kotter-badge {
    display: inline-block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    vertical-align: middle;
}

.kotter-badge.priority {
    background: rgba(212, 168, 67, 0.2);
    color: var(--gold);
    border: 1px solid rgba(212, 168, 67, 0.3);
}

.kotter-badge.needs-work {
    background: rgba(232, 145, 58, 0.2);
    color: var(--amber);
    border: 1px solid rgba(232, 145, 58, 0.3);
}

.kotter-pitfall {
    padding: 0.4rem 0 0.4rem 1.2rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
}

.kotter-pitfall::before {
    content: '\2717';
    position: absolute;
    left: 0;
    color: #e06060;
    font-weight: bold;
}

.kotter-success {
    padding: 0.4rem 0 0.4rem 1.2rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
}

.kotter-success::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #6dbe75;
    font-weight: bold;
}

.kotter-diag-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.kotter-diag-bar .dimension-bar-track {
    flex: 1;
}

.kotter-diag-score {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    min-width: 28px;
}

/* ===== Kotter Action Planning ===== */
.kotter-action-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
}

.kotter-action-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.15);
    color: var(--gold);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Priority tab indicator */
.stage-tab.priority {
    border-color: rgba(212, 168, 67, 0.4);
    position: relative;
}

.stage-tab.priority::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
    .card {
        padding: 1.5rem 1.2rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    .home-card h1 {
        font-size: 1.55rem;
    }

    .welcome-card h1 {
        font-size: 1.55rem;
    }

    .welcome-pillars {
        gap: 1rem;
    }

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

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

    .guide-dos-donts {
        grid-template-columns: 1fr;
    }

    .dimension-name {
        min-width: 100px;
        font-size: 0.7rem;
    }

    .share-actions {
        align-items: stretch;
    }

    .share-actions .btn {
        text-align: center;
    }

    .nav-buttons {
        flex-direction: column;
    }

    .nav-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .stage-mini-timeline {
        gap: 0.1rem;
    }

    .stage-mini-name {
        font-size: 0.5rem;
        max-width: 56px;
    }

    .stage-mini-emoji {
        font-size: 1.1rem;
    }

    .stage-timeline-item {
        min-width: 80px;
    }

    .stage-timeline-name {
        font-size: 0.55rem;
    }

    .mi-exercises {
        padding: 0.8rem;
    }

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

    .kotter-step-card.priority,
    .kotter-step-card.needs-work {
        padding-left: 0.6rem;
    }
}

/* ===== ADKAR Styles ===== */
.adkar-visual {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.adkar-letter-card {
    background: var(--navy-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1rem 0.8rem;
    text-align: center;
    min-width: 80px;
    flex: 1;
    max-width: 120px;
    transition: transform 0.2s, border-color 0.2s;
}

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

.adkar-big-letter {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.4rem;
    font-family: Georgia, 'Times New Roman', serif;
}

.adkar-letter-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

.adkar-letter-desc {
    font-size: 0.65rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.adkar-milestone {
    background: var(--navy-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s;
}

.adkar-milestone.barrier {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.08);
}

.adkar-milestone h3 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.adkar-milestone-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy-deep);
    font-weight: 800;
    font-size: 1.1rem;
    font-family: Georgia, 'Times New Roman', serif;
    flex-shrink: 0;
}

.adkar-milestone-letter.barrier {
    background: #e74c3c;
    color: white;
}

.adkar-milestone p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.adkar-milestone ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.adkar-milestone ul li {
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.adkar-milestone ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.adkar-milestone.barrier ul li::before {
    color: #e74c3c;
}

/* ===== Bridges Transition Model Styles ===== */
.bridges-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.bridges-phase-card {
    background: var(--navy-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1.2rem 1rem;
    text-align: center;
    min-width: 110px;
    flex: 1;
    max-width: 180px;
    transition: transform 0.2s, border-color 0.2s;
}

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

.bridges-phase-card.endings {
    border-color: rgba(231, 76, 60, 0.4);
    background: rgba(231, 76, 60, 0.06);
}

.bridges-phase-card.neutral {
    border-color: rgba(243, 156, 18, 0.4);
    background: rgba(243, 156, 18, 0.06);
}

.bridges-phase-card.beginnings {
    border-color: rgba(46, 204, 113, 0.4);
    background: rgba(46, 204, 113, 0.06);
}

.bridges-phase-emoji {
    font-size: 2rem;
    margin-bottom: 0.4rem;
}

.bridges-phase-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.bridges-phase-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.bridges-arrow {
    font-size: 1.5rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.bridges-detail {
    background: var(--navy-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s;
}

.bridges-detail.active-phase {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.06);
}

.bridges-detail h3 {
    color: var(--text);
    margin-bottom: 0.5rem;
}

.bridges-detail p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.bridges-detail ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.bridges-detail ul li {
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.bridges-detail ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* ===== Workshop Facilitator Styles ===== */
.workshop-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1rem 0;
}

.workshop-card {
    background: var(--navy-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.workshop-card:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

.workshop-card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.workshop-emoji {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.workshop-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

.workshop-card-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.workshop-card-obj {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
}

.agenda-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 1rem 0;
}

.agenda-item {
    display: flex;
    gap: 1rem;
    padding: 0.8rem;
    background: var(--navy-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    align-items: flex-start;
}

.agenda-time {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
    min-width: 55px;
    padding-top: 0.1rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.agenda-content {
    flex: 1;
}

.agenda-activity {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.agenda-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ===== ADKAR / Bridges / Workshop responsive ===== */
@media (max-width: 600px) {
    .adkar-visual {
        gap: 0.3rem;
    }

    .adkar-letter-card {
        min-width: 55px;
        padding: 0.6rem 0.4rem;
    }

    .adkar-big-letter {
        font-size: 1.6rem;
    }

    .adkar-letter-name {
        font-size: 0.6rem;
    }

    .adkar-letter-desc {
        font-size: 0.55rem;
    }

    .bridges-visual {
        flex-direction: column;
        align-items: stretch;
    }

    .bridges-phase-card {
        max-width: none;
    }

    .bridges-arrow {
        text-align: center;
        transform: rotate(90deg);
    }

    .agenda-item {
        flex-direction: column;
        gap: 0.3rem;
    }

    .agenda-time {
        min-width: auto;
    }
}

/* ===== Persistent Nav Header ===== */
.nav-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 168, 67, 0.12);
    padding: 0.6rem 1.2rem;
}

.nav-header-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-header-title {
    background: none;
    border: none;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--gold);
    cursor: pointer;
    padding: 0.2rem 0;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nav-header-title:hover {
    color: var(--gold-light);
}

.nav-breadcrumb {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-progress-dots {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-shrink: 0;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.15);
    border: 1px solid rgba(212, 168, 67, 0.25);
    transition: all 0.3s ease;
}

.nav-dot.visited {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 6px rgba(212, 168, 67, 0.4);
}

/* Adjust screen padding when nav header is present */
.nav-header + .screen {
    min-height: calc(100vh - 44px);
}

/* ===== Related Tools Section ===== */
.related-tools-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 168, 67, 0.1);
}

.related-tools-section h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.related-tool {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(212, 168, 67, 0.04);
    border: 1px solid rgba(212, 168, 67, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-bottom: 0.5rem;
}

.related-tool:hover {
    background: rgba(212, 168, 67, 0.1);
    border-color: rgba(212, 168, 67, 0.3);
    transform: translateX(4px);
}

.related-tool-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.related-tool-info {
    flex: 1;
    min-width: 0;
}

.related-tool-name {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--text);
    margin-bottom: 0.15rem;
}

.related-tool-why {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.4;
}

.related-tool-arrow {
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.related-tool:hover .related-tool-arrow {
    transform: translateX(3px);
}

.visited-check {
    color: var(--gold);
    font-weight: bold;
    font-size: 0.8rem;
    margin-left: 0.3rem;
}

.frameworks-link {
    border-style: dashed;
}

/* ===== Journey Dashboard ===== */
.journey-progress {
    margin-bottom: 1.5rem;
}

.journey-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(212, 168, 67, 0.12);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.4rem;
}

.journey-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--amber));
    border-radius: 4px;
    transition: width 0.6s ease;
}

.journey-progress-label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: right;
}

.journey-profile-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(212, 168, 67, 0.06);
    border: 1px solid rgba(212, 168, 67, 0.12);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.journey-tool-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.journey-tool {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: rgba(212, 168, 67, 0.04);
    border: 1px solid rgba(212, 168, 67, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.journey-tool:hover {
    background: rgba(212, 168, 67, 0.1);
    border-color: rgba(212, 168, 67, 0.3);
}

.journey-tool.visited {
    border-color: rgba(212, 168, 67, 0.25);
}

.journey-tool.suggested {
    border-color: var(--gold);
    animation: suggestedPulse 2s ease-in-out infinite;
}

.journey-tool-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.journey-tool-info {
    flex: 1;
}

.journey-tool-name {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--text);
}

.journey-suggested-label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--amber);
    margin-top: 0.15rem;
}

.journey-tool-status {
    flex-shrink: 0;
    font-size: 1rem;
}

.journey-arrow {
    color: var(--text-muted);
}

/* ===== Frameworks Integration Page ===== */
.framework-map {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 1.5rem;
}

.framework-level {
    width: 100%;
    text-align: center;
}

.framework-level-label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber);
    margin-bottom: 0.5rem;
}

.framework-level-tools {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.framework-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    background: rgba(212, 168, 67, 0.06);
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.framework-card:hover {
    background: rgba(212, 168, 67, 0.14);
    border-color: rgba(212, 168, 67, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212, 168, 67, 0.15);
}

.framework-card-emoji {
    font-size: 1.2rem;
}

.framework-card-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.framework-connector {
    font-size: 1.2rem;
    color: var(--text-muted);
    padding: 0.3rem 0;
}

.framework-table {
    width: 100%;
    border: 1px solid rgba(212, 168, 67, 0.12);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.framework-table-row {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1.3fr;
    gap: 0;
}

.framework-table-row.header {
    background: rgba(212, 168, 67, 0.1);
}

.framework-table-row.header .framework-table-cell {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    font-weight: 700;
}

.framework-table-cell {
    padding: 0.6rem 0.75rem;
    font-size: 0.82rem;
    color: var(--text-light);
    border-bottom: 1px solid rgba(212, 168, 67, 0.06);
    line-height: 1.4;
}

.framework-recommendation {
    background: rgba(232, 145, 58, 0.06);
    border: 1px solid rgba(232, 145, 58, 0.15);
    border-left: 3px solid var(--amber);
    border-radius: 0 12px 12px 0;
    padding: 1rem 1.2rem;
    margin-top: 1.5rem;
}

/* ===== Source Books ===== */
.source-books {
    margin-top: 1.5rem;
}

.source-books h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 0.6rem;
}

.source-book-link {
    display: block;
    padding: 0.65rem 0.9rem;
    background: rgba(212, 168, 67, 0.04);
    border: 1px solid rgba(212, 168, 67, 0.1);
    border-radius: 10px;
    margin-bottom: 0.4rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.source-book-link:hover {
    background: rgba(212, 168, 67, 0.1);
    border-color: rgba(212, 168, 67, 0.3);
}

.source-book-title {
    display: block;
    font-size: 0.88rem;
    font-weight: bold;
    color: var(--text);
    line-height: 1.3;
}

.source-book-author {
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

/* ===== Switch Framework ===== */
.switch-strategy {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(212, 168, 67, 0.04);
    border: 1px solid rgba(212, 168, 67, 0.1);
    border-radius: 12px;
}

.switch-strategy-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: var(--amber);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
}

.switch-strategy-content {
    flex: 1;
}

.switch-strategy-content strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.switch-strategy-content p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
}

.switch-strategy-example {
    margin-top: 0.5rem;
    padding: 0.6rem 0.75rem;
    background: rgba(212, 168, 67, 0.06);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.switch-diagnostic {
    margin: 1rem 0;
    padding: 0.9rem 1rem;
    background: rgba(192, 57, 43, 0.05);
    border: 1px solid rgba(192, 57, 43, 0.12);
    border-left: 4px solid rgba(192, 57, 43, 0.4);
    border-radius: 0 10px 10px 0;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
}

.switch-element {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 168, 67, 0.12);
}

.switch-element:last-child {
    border-bottom: none;
}

.switch-element.primary-element {
    background: rgba(212, 168, 67, 0.04);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 14px;
    padding: 1.25rem;
    margin-bottom: 2rem;
}

.reflection-prompts {
    margin-top: 0.75rem;
}

.reflection-prompts h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.reflection-prompts p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    padding-left: 0.5rem;
}

/* ===== Immunity to Change ===== */
.immunity-map-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin: 1rem 0;
}

.immunity-column {
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
}

.immunity-column-header {
    padding: 0.6rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
}

.col-commitment .immunity-column-header { background: rgba(52, 152, 219, 0.85); }
.col-behaviors .immunity-column-header { background: rgba(230, 126, 34, 0.85); }
.col-competing .immunity-column-header { background: rgba(192, 57, 43, 0.85); }
.col-assumptions .immunity-column-header { background: rgba(142, 68, 173, 0.85); }

.immunity-column-items {
    padding: 0.6rem;
}

.immunity-item {
    padding: 0.5rem 0.6rem;
    margin-bottom: 0.4rem;
    background: rgba(212, 168, 67, 0.04);
    border-radius: 8px;
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.4;
}

.immunity-item:last-child {
    margin-bottom: 0;
}

.immunity-step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 1.5rem;
}

.immunity-step {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(212, 168, 67, 0.3);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
}

.immunity-step.active {
    background: var(--amber);
    color: #fff;
    border-color: var(--amber);
}

.immunity-step.completed {
    background: rgba(42, 125, 46, 0.15);
    color: #2a7d2e;
    border-color: rgba(42, 125, 46, 0.3);
}

.immunity-step-line {
    width: 32px;
    height: 2px;
    background: rgba(212, 168, 67, 0.2);
}

.immunity-option {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.75rem 0.9rem;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.4;
}

.immunity-option:hover {
    background: rgba(212, 168, 67, 0.06);
    border-color: rgba(212, 168, 67, 0.3);
}

.immunity-option.selected {
    background: rgba(212, 168, 67, 0.08);
    border-color: rgba(212, 168, 67, 0.35);
}

.immunity-option input[type="radio"],
.immunity-option input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--amber);
}

.immunity-custom-input {
    margin-top: 0.25rem;
}

.immunity-options {
    margin: 0.75rem 0;
}

.immunity-guided-prompts {
    margin: 0.75rem 0;
}

.immunity-guided-prompts textarea {
    width: 100%;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.88rem;
    padding: 0.75rem;
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 10px;
    resize: vertical;
    min-height: 60px;
    color: var(--text);
    line-height: 1.5;
}

.immunity-guided-prompts textarea:focus {
    outline: none;
    border-color: var(--amber);
    box-shadow: 0 0 0 2px rgba(212, 168, 67, 0.15);
}

/* Immunity Intro Mini Diagram */
.immunity-mini-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.immunity-mini-col {
    text-align: center;
    padding: 0.75rem 0.5rem;
    min-width: 80px;
}

.immunity-mini-emoji {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.immunity-mini-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.3;
}

.immunity-mini-arrow {
    font-size: 1.2rem;
    color: var(--text-muted);
    padding: 0 0.1rem;
}

/* ===== Responsive: Immunity Map ===== */
@media (max-width: 900px) {
    .immunity-map-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .immunity-map-grid {
        grid-template-columns: 1fr;
    }

    .immunity-mini-diagram {
        gap: 0.15rem;
    }

    .immunity-mini-col {
        min-width: 60px;
        padding: 0.5rem 0.25rem;
    }
}

/* ===== Go Deeper Book Cards ===== */
.deeper-book {
    background: rgba(212, 168, 67, 0.04);
    border: 1px solid rgba(212, 168, 67, 0.12);
    border-radius: 14px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.deeper-book-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.deeper-book-header h4 {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 0.1rem;
}

.deeper-book-emoji {
    font-size: 1.6rem;
    flex-shrink: 0;
    line-height: 1;
}

.deeper-book-author {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.deeper-book-concept,
.deeper-book-application {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.6rem;
}

.deeper-book-label {
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--amber);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

/* ===== Hub Links ===== */
.hub-links {
    margin-top: 1.5rem;
    text-align: center;
}

/* ===== Explored Badge ===== */
.tool-badge.explored {
    background: rgba(212, 168, 67, 0.1);
    border-color: rgba(212, 168, 67, 0.2);
    color: var(--gold);
}

/* ===== Staggered FadeInUp Animation ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hub-tool-card {
    animation: fadeInUp 0.4s ease both;
}

/* ===== Suggested Pulse ===== */
@keyframes suggestedPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 67, 0.15); }
    50% { box-shadow: 0 0 0 6px rgba(212, 168, 67, 0.08); }
}

/* ===== Enhanced Hover Glow ===== */
.tool-card:hover {
    box-shadow: 0 4px 24px rgba(212, 168, 67, 0.2);
}

/* ===== Focus Visible (Accessibility) ===== */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

[role="button"]:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ===== Screen Transition ===== */
#app {
    transition: opacity 0.15s ease;
}

/* ===== Responsive: Nav Header ===== */
@media (max-width: 600px) {
    .nav-breadcrumb {
        display: none;
    }

    .nav-header-title {
        font-size: 0.78rem;
    }

    .framework-table-row {
        grid-template-columns: 1fr;
    }

    .framework-table-row.header {
        display: none;
    }

    .framework-table-cell {
        padding: 0.4rem 0.75rem;
        border-bottom: none;
    }

    .framework-table-cell:first-child {
        padding-top: 0.6rem;
        font-weight: bold;
        color: var(--text);
    }

    .framework-table-cell:last-child {
        padding-bottom: 0.6rem;
        border-bottom: 1px solid rgba(212, 168, 67, 0.1);
    }

    .framework-level-tools {
        flex-direction: column;
        align-items: center;
    }

    .framework-card {
        width: 100%;
        justify-content: center;
    }

    .journey-tool-name {
        font-size: 0.85rem;
    }
}

/* ===== Site Footer ===== */
.site-footer {
    text-align: center;
    padding: 1.5rem 1rem 2rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

.site-footer a {
    color: var(--gold);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ===== Print Styles ===== */
@media print {
    body::before, body::after {
        display: none;
    }

    body {
        background: white;
        color: #222;
    }

    .card {
        background: white;
        border: 1px solid #ccc;
        box-shadow: none;
        backdrop-filter: none;
    }

    .btn, .share-actions, .nav-buttons, .nav-header, .related-tools-section, .hub-links {
        display: none !important;
    }

    h1, h2, .profile-type, .dimension-scores h3, .strengths-section h3, .tips-section h3 {
        color: #333;
    }

    .dimension-bar-track {
        background: #eee;
    }

    .dimension-bar-fill.high,
    .dimension-bar-fill.mid,
    .dimension-bar-fill.low {
        background: #666;
    }

    .screen {
        display: flex !important;
        min-height: auto;
        padding: 1rem;
    }

    .screen:not(.print-visible) {
        display: none !important;
    }
}
