:root
{
    --brand:       #7d6bf2;
    --brand-dim:   #5a48c6;
    --bg:          #0a0a0f;
    --panel:       rgba(18, 18, 26, 0.92);
    --border:      rgba(255, 255, 255, 0.08);
    --text:        #e8e8f0;
    --text-dim:    rgba(255, 255, 255, 0.55);
}

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

html,
body
{
    overflow: hidden;
    background: var(--bg);
    width: 100vw;
    height: 100vh;
    font-family: system-ui, -apple-system, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    color: var(--text);
}

/* Full-viewport 3D Room */
.experience
{
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 100vh;
}

/* ── Intro / welcome overlay ────────────────────────────────────────────── */
.intro-overlay
{
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    pointer-events: auto;
    background: radial-gradient(circle at 50% 40%, rgba(125, 107, 242, 0.18), transparent 55%),
                rgba(5, 5, 12, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: opacity 0.5s ease;
}

.intro-overlay[hidden]
{
    display: none;
}

.intro-tilt
{
    max-width: 760px;
    width: 100%;
    perspective: 1200px;
    transform-style: preserve-3d;
    will-change: transform;
}

.intro-card
{
    position: relative;
    width: 100%;
    text-align: center;
    padding: 48px 52px 40px;
    border-radius: 24px;
    background:
        linear-gradient(152deg, rgba(28, 22, 58, 0.88) 0%, rgba(12, 10, 24, 0.82) 100%);
    border: 1px solid rgba(125, 107, 242, 0.45);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    box-shadow:
        0 0 0 1px rgba(125, 107, 242, 0.18) inset,
        0 24px 60px rgba(0, 0, 0, 0.55),
        0 0 80px rgba(125, 107, 242, 0.28);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    overflow: hidden;
    isolation: isolate;
}

.intro-card::before
{
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% -10%, rgba(125, 107, 242, 0.35), transparent 55%),
        radial-gradient(circle at 110% 120%, rgba(200, 191, 248, 0.18), transparent 55%);
    opacity: 0.85;
    pointer-events: none;
    z-index: -1;
}

.intro-accent
{
    position: absolute;
    top: 44px;
    bottom: 44px;
    left: 0;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: linear-gradient(180deg, #c8bff8 0%, #7d6bf2 50%, transparent 100%);
    box-shadow: 0 0 14px rgba(125, 107, 242, 0.75);
}

.intro-eyebrow
{
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.32em;
    color: var(--brand);
    text-transform: uppercase;
}

.intro-title
{
    font-size: 38px;
    font-weight: 800;
    line-height: 1.35;
    color: #ffffff;
    letter-spacing: 0.01em;
    text-shadow:
        0 2px 16px rgba(0, 0, 0, 0.7),
        0 0 32px rgba(125, 107, 242, 0.4);
    margin: 4px 0;
}

.intro-title span
{
    background: linear-gradient(120deg, #c8bff8 0%, #7d6bf2 60%, #c8bff8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.intro-subtitle
{
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    max-width: 540px;
}

.intro-start
{
    margin-top: 12px;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #fff;
    background: linear-gradient(120deg, #7d6bf2 0%, #5a48c6 100%);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    box-shadow:
        0 12px 28px rgba(125, 107, 242, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.intro-start:hover
{
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow:
        0 16px 36px rgba(125, 107, 242, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

.intro-start:active
{
    transform: translateY(0);
}

.intro-start:disabled
{
    cursor: progress;
    opacity: 0.55;
    transform: none;
    box-shadow: 0 6px 18px rgba(125, 107, 242, 0.25);
}

.intro-hint
{
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.02em;
    margin-top: 6px;
}

@media (max-width: 600px)
{
    .intro-title    { font-size: 28px; }
    .intro-card     { padding: 30px 24px 28px; }
}

/* ── Floating quiz overlay (HUD + answer buttons, page-centered) ────────── */
.quiz-overlay
{
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 28px;
    z-index: 10;
}

.quiz-hud
{
    pointer-events: auto;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 34px;
    border-radius: 18px;
    background: rgba(12, 10, 22, 0.72);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    border: 1px solid rgba(125, 107, 242, 0.4);
    box-shadow:
        0 0 0 1px rgba(125, 107, 242, 0.15) inset,
        0 10px 34px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(125, 107, 242, 0.2);
}

.quiz-question
{
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #ffffff;
    text-align: center;
    text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.65),
        0 0 28px rgba(125, 107, 242, 0.35);
}

.quiz-progress
{
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #c8bff8;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

/* ── Answer buttons overlay (floating above 3D room) ────────────────────── */
.answer-grid
{
    pointer-events: auto;
    width: 100%;
    max-width: 820px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.answer-btn
{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px 18px;
    min-height: 104px;
    background: rgba(16, 13, 32, 0.58);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(125, 107, 242, 0.5);
    border-radius: 14px;
    color: #ffffff;
    font: inherit;
    font-size: 17px;
    line-height: 1.35;
    letter-spacing: 0.01em;
    text-align: left;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.08) inset,
        0 12px 30px rgba(0, 0, 0, 0.5),
        0 0 24px rgba(125, 107, 242, 0.18);
    /* Note: deliberately NOT transitioning `transform` — GSAP owns that
       channel for the bounce-in / press feedback. */
    transition:
        border-color 0.2s ease,
        box-shadow 0.25s ease,
        background 0.2s ease;
}

.answer-btn:disabled
{
    cursor: default;
    opacity: 0.7;
}

.answer-btn:not(:disabled):hover
{
    background: rgba(44, 34, 82, 0.42);
    border-color: rgba(125, 107, 242, 0.95);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.08) inset,
        0 18px 36px rgba(0, 0, 0, 0.55),
        0 0 28px rgba(125, 107, 242, 0.4);
}

.answer-btn.is-picked
{
    border-color: var(--brand);
    background: rgba(125, 107, 242, 0.28);
    box-shadow:
        0 0 0 1px var(--brand) inset,
        0 0 36px rgba(125, 107, 242, 0.55);
}

.answer-text
{
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}

/* ── Report overlay ─────────────────────────────────────────────────────── */
.report-overlay
{
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(5, 5, 10, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

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

.report-card
{
    position: relative;
    background: linear-gradient(165deg, rgba(22, 17, 46, 0.97) 0%, rgba(12, 10, 24, 0.97) 100%);
    border: 1px solid rgba(125, 107, 242, 0.45);
    border-radius: 20px;
    box-shadow:
        0 0 0 1px rgba(125, 107, 242, 0.3) inset,
        0 0 0 6px rgba(125, 107, 242, 0.08),
        0 30px 90px rgba(0, 0, 0, 0.75),
        0 0 120px rgba(125, 107, 242, 0.25);
    overflow: hidden;
    max-width: 1240px;
    width: 96vw;
    height: 98vh;
    max-height: 98vh;
    display: flex;
    flex-direction: column;
    transform-origin: center center;
}

.report-card::after
{
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(125, 107, 242, 0.22);
    border-radius: 14px;
    pointer-events: none;
    z-index: 0;
}

.report-card::before
{
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% -10%, rgba(125, 107, 242, 0.22), transparent 55%),
        radial-gradient(circle at 0% 100%,  rgba(90, 72, 198, 0.15), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.report-scroll
{
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 28px 44px 28px;
    display: flex;
    flex-direction: column;
    gap: 26px;
    scrollbar-width: thin;
    scrollbar-color: rgba(125, 107, 242, 0.5) transparent;
}

.report-scroll::-webkit-scrollbar            { width: 8px; }
.report-scroll::-webkit-scrollbar-thumb      { background: rgba(125, 107, 242, 0.45); border-radius: 4px; }
.report-scroll::-webkit-scrollbar-track      { background: transparent; }

/* Header */
.report-head
{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(125, 107, 242, 0.2);
}

.report-tags
{
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.report-tag
{
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand);
    border: 1px solid rgba(125, 107, 242, 0.6);
    background: rgba(125, 107, 242, 0.12);
    border-radius: 4px;
    padding: 4px 10px;
}

.report-tag-persona
{
    color: #fff;
    background: var(--brand);
    border-color: var(--brand);
}

.report-title
{
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #ffffff;
    text-shadow: 0 0 24px rgba(125, 107, 242, 0.35);
}

.report-blurb
{
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.report-levelhint
{
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-dim);
    padding: 10px 14px;
    border-left: 2px solid var(--brand);
    background: rgba(125, 107, 242, 0.08);
    border-radius: 0 8px 8px 0;
}

/* Section heads */
.section-head
{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.section-dot
{
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 10px rgba(125, 107, 242, 0.9);
}

.report-section h3
{
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

.section-hint
{
    margin-left: auto;
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.02em;
}

/* Agent grid */
.agent-grid
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.agent-card
{
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(16, 13, 32, 0.6);
    border: 1px solid rgba(125, 107, 242, 0.28);
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.agent-card:hover
{
    transform: translateY(-3px);
    border-color: rgba(125, 107, 242, 0.85);
    background: rgba(44, 34, 82, 0.55);
    box-shadow: 0 14px 28px rgba(0,0,0,0.45), 0 0 24px rgba(125, 107, 242, 0.35);
}

.agent-card__head
{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
}

.agent-card__name
{
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.agent-card__rating
{
    font-size: 12px;
    color: #f5c24a;
    letter-spacing: 0.05em;
}

.agent-card__org
{
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.agent-card__tagline
{
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    margin: 2px 0 0;
    min-height: 40px;
}

.agent-card__foot
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px solid rgba(125, 107, 242, 0.18);
    font-size: 12px;
}

.agent-card__host
{
    color: var(--brand);
    font-weight: 500;
}

.agent-card__arrow
{
    color: var(--brand);
    font-size: 14px;
    transition: transform 0.18s ease;
}

.agent-card:hover .agent-card__arrow
{
    transform: translate(2px, -2px);
}

/* Skill cards */
.skill-grid
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.skill-card
{
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(16, 13, 32, 0.6);
    border: 1px solid rgba(125, 107, 242, 0.25);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.skill-card--primary
{
    border-color: rgba(125, 107, 242, 0.7);
    background: linear-gradient(155deg, rgba(60, 48, 128, 0.4), rgba(16, 13, 32, 0.7));
    box-shadow: 0 0 24px rgba(125, 107, 242, 0.22);
}

.skill-card__head
{
    display: flex;
    align-items: center;
    gap: 12px;
}

.skill-card__icon
{
    font-size: 26px;
    line-height: 1;
}

.skill-card__titles
{
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.skill-card__titles strong
{
    font-size: 15px;
    color: #fff;
    font-weight: 700;
}

.skill-card__titles span
{
    font-size: 12px;
    color: var(--text-dim);
}

.skill-card__badge
{
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 3px 8px;
    border-radius: 4px;
    background: var(--brand);
    color: #fff;
}

.skill-card__badge--alt
{
    background: rgba(125, 107, 242, 0.18);
    color: var(--brand);
    border: 1px solid rgba(125, 107, 242, 0.5);
}

.skill-card__list
{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
}

.skill-card__list li
{
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(125, 107, 242, 0.14);
    border: 1px solid rgba(125, 107, 242, 0.25);
}

/* Project grid */
.project-grid
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.project-card
{
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(16, 13, 32, 0.6);
    border: 1px solid rgba(125, 107, 242, 0.25);
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover
{
    transform: translateY(-3px);
    border-color: rgba(125, 107, 242, 0.85);
    background: rgba(44, 34, 82, 0.55);
    box-shadow: 0 14px 28px rgba(0,0,0,0.45), 0 0 24px rgba(125, 107, 242, 0.35);
}

.project-card__head
{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
}

.project-card__name
{
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.project-card__stars
{
    font-size: 12px;
    font-weight: 700;
    color: #f5c24a;
    background: rgba(245, 194, 74, 0.12);
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid rgba(245, 194, 74, 0.3);
}

.project-card__slug
{
    font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
    font-size: 11px;
    color: var(--brand);
    word-break: break-all;
}

.project-card__desc
{
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    margin-top: 4px;
}

.project-card__foot
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px solid rgba(125, 107, 242, 0.18);
    font-size: 12px;
    color: var(--brand);
}

.project-card__arrow
{
    transition: transform 0.18s ease;
}

.project-card:hover .project-card__arrow
{
    transform: translate(2px, -2px);
}

/* Learning tip */
.learning-tip__body-wrap
{
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(125, 107, 242, 0.1);
    border: 1px solid rgba(125, 107, 242, 0.25);
}

.learning-tip__emoji
{
    font-size: 28px;
    line-height: 1;
}

.learning-tip__title
{
    display: block;
    font-size: 15px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 4px;
}

.learning-tip__body
{
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

/* Steps */
.report-steps
{
    list-style: none;
    counter-reset: step;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.report-steps li
{
    counter-increment: step;
    position: relative;
    padding: 12px 16px 12px 46px;
    border-radius: 10px;
    background: rgba(16, 13, 32, 0.55);
    border: 1px solid rgba(125, 107, 242, 0.22);
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
}

.report-steps li::before
{
    content: counter(step);
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(125, 107, 242, 0.6);
}

/* Footer */
.report-foot
{
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 38px;
    border-top: 1px solid rgba(125, 107, 242, 0.2);
    background: rgba(10, 8, 20, 0.7);
}

.report-outbound
{
    color: var(--brand);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.18s ease;
}

.report-outbound:hover
{
    color: #fff;
}

.report-close
{
    background: var(--brand);
    color: white;
    border: 0;
    border-radius: 10px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.2s, transform 0.18s ease;
    box-shadow: 0 6px 18px rgba(125, 107, 242, 0.4);
}

.report-close:hover
{
    background: var(--brand-dim);
    transform: translateY(-1px);
}

@media (max-width: 720px)
{
    .agent-grid   { grid-template-columns: 1fr 1fr; }
    .skill-grid   { grid-template-columns: 1fr; }
    .project-grid { grid-template-columns: 1fr; }
    .report-scroll { padding: 24px 20px 18px; }
    .report-foot   { padding: 12px 20px; }
    .report-title  { font-size: 24px; }
    .report-masthead { flex-direction: column; gap: 12px; align-items: flex-start; }
    .profile-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Report masthead (official-document header) ─────────────────────────── */
.report-masthead
{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 14px;
    border-bottom: 1px dashed rgba(125, 107, 242, 0.3);
}

.report-masthead__brand
{
    font-size: 11px;
    letter-spacing: 0.32em;
    color: var(--brand);
    text-transform: uppercase;
    font-weight: 600;
}

.report-masthead__title
{
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-top: 4px;
    letter-spacing: 0.02em;
}

.report-masthead__right
{
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.report-id-label
{
    font-size: 10px;
    letter-spacing: 0.26em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.report-id
{
    font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
    font-size: 18px;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: 0.05em;
    text-shadow: 0 0 18px rgba(125, 107, 242, 0.5);
}

.report-date
{
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.06em;
}

/* Section numeric index */
.section-index
{
    font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
    font-size: 11px;
    font-weight: 700;
    color: var(--brand);
    background: rgba(125, 107, 242, 0.14);
    border: 1px solid rgba(125, 107, 242, 0.35);
    border-radius: 4px;
    padding: 2px 8px;
    letter-spacing: 0.08em;
}

/* Profile grid */
.profile-grid
{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.profile-cell
{
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(16, 13, 32, 0.55);
    border: 1px solid rgba(125, 107, 242, 0.22);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.profile-cell__label
{
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.profile-cell__value
{
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

/* Prompt template block */
.template-body
{
    margin: 0;
    padding: 16px 18px;
    border-radius: 10px;
    background: rgba(5, 3, 12, 0.75);
    border: 1px solid rgba(125, 107, 242, 0.35);
    font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
    font-size: 12.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    white-space: pre-wrap;
    word-break: break-word;
    max-height: 360px;
    overflow-y: auto;
}

/* Pitfall list */
.pitfall-list
{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pitfall-list li
{
    position: relative;
    padding: 10px 14px 10px 44px;
    border-radius: 10px;
    background: rgba(16, 13, 32, 0.55);
    border: 1px solid rgba(125, 107, 242, 0.22);
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
}

.pitfall-list li::before
{
    content: '⚠';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #f5a04a;
    font-size: 16px;
}

/* Custom / round-2 blocks */
.custom-blocks
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.custom-block
{
    padding: 14px 16px;
    border-radius: 10px;
    background: linear-gradient(155deg, rgba(60, 48, 128, 0.35), rgba(16, 13, 32, 0.7));
    border: 1px solid rgba(125, 107, 242, 0.4);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.custom-block__eyebrow
{
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand);
    font-weight: 600;
}

.custom-block__title
{
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.custom-block__body
{
    font-size: 12.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.custom-block__list
{
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.custom-block__list li
{
    position: relative;
    padding-left: 14px;
    font-size: 12.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.custom-block__list li::before
{
    content: '›';
    position: absolute;
    left: 0;
    color: var(--brand);
    font-weight: 700;
}

.custom-freetext
{
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(125, 107, 242, 0.1);
    border-left: 3px solid var(--brand);
}

.custom-freetext__head
{
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--brand);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 6px;
}

.custom-freetext__body
{
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    white-space: pre-wrap;
}

/* Signoff */
.report-signoff
{
    margin-top: 8px;
    padding-top: 18px;
    border-top: 1px dashed rgba(125, 107, 242, 0.3);
    text-align: center;
}

.report-signoff__text
{
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.02em;
}

.report-signoff__id
{
    font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
    color: var(--brand);
    background: rgba(125, 107, 242, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}

/* Report footer buttons */
.report-foot__right
{
    display: flex;
    gap: 10px;
}

.report-download,
.report-refine
{
    background: rgba(125, 107, 242, 0.14);
    color: var(--brand);
    border: 1px solid rgba(125, 107, 242, 0.5);
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.18s ease;
}

.report-download:hover,
.report-refine:hover
{
    background: rgba(125, 107, 242, 0.28);
    color: #fff;
    transform: translateY(-1px);
}

/* ── Intro resume (enter ID to continue) ────────────────────────────────── */
.intro-resume-toggle
{
    margin-top: 14px;
    background: transparent;
    border: 0;
    color: var(--text-dim);
    font: inherit;
    font-size: 12px;
    letter-spacing: 0.04em;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 999px;
    transition: color 0.2s, background 0.2s;
}

.intro-resume-toggle:hover
{
    color: var(--brand);
    background: rgba(125, 107, 242, 0.1);
}

.intro-resume-toggle[aria-expanded="true"]
{
    color: var(--brand);
}

.intro-resume-wrap
{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.intro-resume-wrap[hidden] { display: none; }

.intro-resume
{
    display: flex;
    gap: 8px;
    width: 100%;
    max-width: 460px;
}

.intro-resume-input
{
    flex: 1;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(8, 6, 18, 0.7);
    border: 1px solid rgba(125, 107, 242, 0.35);
    color: #fff;
    font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
    font-size: 13px;
    letter-spacing: 0.08em;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.intro-resume-input::placeholder
{
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.02em;
}

.intro-resume-input:focus
{
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(125, 107, 242, 0.18);
}

.intro-resume-btn
{
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(125, 107, 242, 0.18);
    color: var(--brand);
    border: 1px solid rgba(125, 107, 242, 0.5);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.intro-resume-btn:hover
{
    background: rgba(125, 107, 242, 0.35);
    color: #fff;
}

.intro-resume-hint
{
    font-size: 12px;
    min-height: 16px;
    color: var(--text-dim);
}

.intro-resume-hint.is-error { color: #f5a04a; }
.intro-resume-hint.is-ok    { color: #9fe1ae; }

/* ── Round 2 modal ──────────────────────────────────────────────────────── */
.round2-overlay
{
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(5, 5, 10, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    pointer-events: auto;
}

.round2-overlay[hidden] { display: none; }

.round2-card
{
    max-width: 680px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 28px 32px;
    border-radius: 18px;
    background: linear-gradient(165deg, rgba(22, 17, 46, 0.97), rgba(12, 10, 24, 0.97));
    border: 1px solid rgba(125, 107, 242, 0.45);
    box-shadow:
        0 0 0 1px rgba(125, 107, 242, 0.25) inset,
        0 24px 70px rgba(0, 0, 0, 0.7),
        0 0 90px rgba(125, 107, 242, 0.25);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.round2-head
{
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 14px;
    border-bottom: 1px dashed rgba(125, 107, 242, 0.25);
}

.round2-eyebrow
{
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--brand);
    text-transform: uppercase;
    font-weight: 600;
}

.round2-eyebrow span
{
    font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
}

.round2-title
{
    font-size: 22px;
    color: #fff;
    font-weight: 700;
}

.round2-blurb
{
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
}

.round2-questions
{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.r2-question
{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.r2-q
{
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.r2-choices
{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.r2-btn
{
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(16, 13, 32, 0.6);
    border: 1px solid rgba(125, 107, 242, 0.35);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.15s, background 0.2s, border-color 0.2s;
}

.r2-btn:hover
{
    transform: translateY(-1px);
    background: rgba(44, 34, 82, 0.5);
    border-color: rgba(125, 107, 242, 0.85);
}

.r2-btn.is-picked
{
    background: rgba(125, 107, 242, 0.3);
    border-color: var(--brand);
    box-shadow: 0 0 0 1px var(--brand) inset, 0 0 20px rgba(125, 107, 242, 0.4);
}

.round2-free
{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.round2-free > span
{
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.round2-free-text
{
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(8, 6, 18, 0.7);
    border: 1px solid rgba(125, 107, 242, 0.35);
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    line-height: 1.6;
    outline: none;
    resize: vertical;
    min-height: 80px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.round2-free-text::placeholder { color: rgba(255, 255, 255, 0.35); }
.round2-free-text:focus
{
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(125, 107, 242, 0.18);
}

.round2-foot
{
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 8px;
    border-top: 1px dashed rgba(125, 107, 242, 0.2);
}

.round2-cancel,
.round2-submit
{
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.18s;
}

.round2-cancel
{
    background: transparent;
    color: var(--text-dim);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.round2-cancel:hover
{
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.round2-submit
{
    background: var(--brand);
    color: #fff;
    border: 0;
    box-shadow: 0 6px 18px rgba(125, 107, 242, 0.4);
}

.round2-submit:hover:not(:disabled)
{
    background: var(--brand-dim);
    transform: translateY(-1px);
}

.round2-submit:disabled
{
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none;
}

@media (max-width: 600px)
{
    .r2-choices { grid-template-columns: 1fr 1fr; }
    .custom-blocks { grid-template-columns: 1fr; }
}

/* ── Intro: animated backdrop ──────────────────────────────────────────── */
.intro-bg
{
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.intro-orb
{
    position: absolute;
    border-radius: 999px;
    filter: blur(60px);
    opacity: 0.55;
    mix-blend-mode: screen;
    animation: orbDrift 18s ease-in-out infinite;
}

.intro-orb--a { width: 520px; height: 520px; left: -120px;  top:  -80px;
                background: radial-gradient(circle, rgba(125, 107, 242, 0.85), transparent 60%); }
.intro-orb--b { width: 420px; height: 420px; right: -80px;  top:   20vh;
                background: radial-gradient(circle, rgba(90, 72, 198, 0.7), transparent 60%);
                animation-delay: -6s; }
.intro-orb--c { width: 380px; height: 380px; left: 30vw;    bottom: -140px;
                background: radial-gradient(circle, rgba(200, 191, 248, 0.5), transparent 60%);
                animation-delay: -12s; }

@keyframes orbDrift
{
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate( 40px,  -30px) scale(1.08); }
    66%      { transform: translate(-30px,   20px) scale(0.95); }
}

.intro-grid
{
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(125, 107, 242, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(125, 107, 242, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 75%);
}

/* ── Intro: typewriter rotator ─────────────────────────────────────────── */
.intro-rotator
{
    position: relative;
    display: inline-flex;
    align-items: baseline;
    margin: 0 6px;
}

.intro-rotator__word
{
    background: linear-gradient(120deg, #c8bff8 0%, #7d6bf2 60%, #c8bff8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 900;
    white-space: pre;
}

.intro-rotator__caret
{
    display: inline-block;
    margin-left: 2px;
    color: #c8bff8;
    font-weight: 300;
    opacity: 0.9;
    animation: caretBlink 1.05s steps(2, start) infinite;
    transform: translateY(-0.05em);
}

@keyframes caretBlink { to { opacity: 0; } }

/* ── Intro: start button (refreshed with shimmer) ──────────────────────── */
.intro-start
{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

.intro-start__arrow
{
    display: inline-block;
    transition: transform 0.25s ease;
}

.intro-start:not(:disabled):hover .intro-start__arrow
{
    transform: translateX(5px);
}

.intro-start::before
{
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: -60%;
    width: 50%;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
    transform: skewX(-18deg);
    transition: left 0.6s ease;
    pointer-events: none;
}
.intro-start:not(:disabled):hover::before { left: 130%; }

/* ── Intro: scroll hint ─────────────────────────────────────────────────── */
.intro-scroll
{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.intro-scroll__mouse
{
    display: inline-flex;
    justify-content: center;
    width: 22px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 11px;
    padding-top: 6px;
}

.intro-scroll__dot
{
    width: 3px;
    height: 7px;
    background: #c8bff8;
    border-radius: 2px;
    animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot
{
    0%    { transform: translateY(0);    opacity: 1; }
    70%   { transform: translateY(10px); opacity: 0; }
    100%  { transform: translateY(0);    opacity: 0; }
}

/* ── Intro: curve slide-up curtain (portfolio-style exit) ──────────────── */
.intro-curtain
{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    z-index: 30;
    opacity: 0;
}

.intro-curtain.is-showing { opacity: 1; }

.intro-curtain__path
{
    fill: #0a0a0f;
}

/* ── Answer buttons: simplified centered redesign ──────────────────────── */
.answer-btn
{
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    padding: 18px 20px !important;
    min-height: 88px !important;
    background: linear-gradient(180deg, rgba(28, 22, 58, 0.72) 0%, rgba(14, 11, 28, 0.82) 100%) !important;
    border: 1px solid rgba(125, 107, 242, 0.5) !important;
    border-bottom-width: 3px !important;
    border-radius: 14px !important;
    isolation: isolate;
    overflow: hidden;
}

/* Picked state — must clearly read as "you tapped this one" */
.answer-btn.is-picked
{
    background: linear-gradient(180deg, rgba(125, 107, 242, 0.55) 0%, rgba(90, 72, 198, 0.55) 100%) !important;
    border-color: #c8bff8 !important;
    border-bottom-width: 1px !important;
    box-shadow:
        0 0 0 1px rgba(200, 191, 248, 0.6) inset,
        0 0 28px rgba(125, 107, 242, 0.7),
        0 4px 14px rgba(0, 0, 0, 0.5) !important;
}

.answer-btn.is-picked .answer-text
{
    color: #ffffff;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.55), 0 1px 6px rgba(0, 0, 0, 0.6);
}

.answer-body
{
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.answer-text
{
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}

.answer-glow
{
    position: absolute;
    inset: auto 0 -40% 0;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(125, 107, 242, 0.55) 0%, transparent 65%);
    filter: blur(22px);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: -1;
}

.answer-btn:not(:disabled):hover .answer-glow,
.answer-btn.is-picked .answer-glow
{
    opacity: 1;
}

@media (max-width: 600px)
{
    .intro-card      { padding: 36px 28px 30px; }
    .intro-accent    { top: 28px; bottom: 28px; }

    /* Bigger tap targets on phones — 2×2 instead of 1×4 means each button
       roughly doubles in width (~170px @ 390 viewport vs ~80px), which
       eliminates the "tapped but nothing happened" boundary misses. */
    .answer-grid
    {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        max-width: 100%;
    }
    .answer-btn
    {
        min-height: 76px !important;
        padding: 14px 14px !important;
    }
    .answer-text { font-size: 16px; }
}

/* ── Report freshness banner ──────────────────────────────────────────── */
.report-freshness
{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    margin-top: -8px;
    border-radius: 12px;
    background:
        linear-gradient(110deg, rgba(125, 107, 242, 0.18) 0%, rgba(125, 107, 242, 0.04) 100%);
    border: 1px solid rgba(125, 107, 242, 0.32);
    box-shadow: 0 0 24px rgba(125, 107, 242, 0.12) inset;
}

.report-freshness__pulse
{
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    margin-top: 6px;
    border-radius: 50%;
    background: #69e08a;
    box-shadow: 0 0 0 0 rgba(105, 224, 138, 0.7);
    animation: freshnessPulse 1.8s ease-out infinite;
}

@keyframes freshnessPulse
{
    0%   { box-shadow: 0 0 0 0 rgba(105, 224, 138, 0.6); }
    70%  { box-shadow: 0 0 0 12px rgba(105, 224, 138, 0); }
    100% { box-shadow: 0 0 0 0 rgba(105, 224, 138, 0); }
}

.report-freshness__text
{
    display: flex;
    flex-direction: column;
    gap: 3px;
    line-height: 1.55;
}

.report-freshness__title
{
    font-size: 12px;
    font-weight: 700;
    color: #c8bff8;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.report-freshness__date
{
    color: #fff;
    text-transform: none;
    letter-spacing: 0.02em;
}

.report-freshness__body
{
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 600px)
{
    .report-freshness        { padding: 10px 12px; gap: 10px; }
    .report-freshness__body  { font-size: 12px; }
}

/* ── Compute overlay (finale beat) ─────────────────────────────────────── */
.compute-overlay[hidden] { display: none !important; }

.compute-overlay
{
    position: fixed;
    inset: 0;
    z-index: 22;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: radial-gradient(ellipse at center, rgba(10, 8, 24, 0.35) 0%, rgba(0, 0, 0, 0.65) 100%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.compute-card
{
    width: min(560px, 100%);
    padding: 32px 34px 28px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(28, 22, 58, 0.82) 0%, rgba(14, 11, 28, 0.88) 100%);
    border: 1px solid rgba(125, 107, 242, 0.45);
    box-shadow:
        0 0 0 1px rgba(125, 107, 242, 0.28) inset,
        0 30px 90px rgba(0, 0, 0, 0.65),
        0 0 120px rgba(125, 107, 242, 0.35);
    color: #fff;
}

.compute-badge
{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(125, 107, 242, 0.2);
    border: 1px solid rgba(125, 107, 242, 0.5);
    font-size: 12px;
    letter-spacing: 0.06em;
    color: #d6ceff;
}

.compute-badge__dot
{
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #7dffb0;
    box-shadow: 0 0 10px rgba(125, 255, 176, 0.9);
    animation: computePulse 1.2s ease-in-out infinite;
}

@keyframes computePulse
{
    0%, 100% { transform: scale(1);   opacity: 1;   }
    50%      { transform: scale(1.4); opacity: 0.55; }
}

.compute-title
{
    margin: 14px 0 6px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.compute-sub
{
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}

.compute-steps
{
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.compute-step
{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.compute-step__mark
{
    position: relative;
    width: 18px; height: 18px;
    flex: 0 0 auto;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: transparent;
}

.compute-step.is-active
{
    color: #fff;
    background: rgba(125, 107, 242, 0.12);
    border-color: rgba(125, 107, 242, 0.55);
}

.compute-step.is-active .compute-step__mark
{
    border-color: #c8bff8;
    background: radial-gradient(circle, rgba(200, 191, 248, 0.9) 0%, rgba(125, 107, 242, 0.4) 60%, transparent 100%);
    animation: computePulse 1.1s ease-in-out infinite;
}

.compute-step.is-done
{
    color: rgba(200, 191, 248, 0.85);
}

.compute-step.is-done .compute-step__mark
{
    border-color: rgba(125, 255, 176, 0.9);
    background: rgba(125, 255, 176, 0.25);
}

.compute-step.is-done .compute-step__mark::after
{
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: #7dffb0;
    box-shadow: 0 0 10px rgba(125, 255, 176, 0.8);
}

.compute-bar
{
    position: relative;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    margin-bottom: 12px;
}

.compute-bar__fill
{
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #7d6bf2 0%, #c8bff8 50%, #f07bff 100%);
    box-shadow: 0 0 20px rgba(125, 107, 242, 0.65);
}

.compute-meta
{
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    letter-spacing: 0.02em;
}

@media (max-width: 600px)
{
    .compute-card  { padding: 24px 22px 22px; border-radius: 18px; }
    .compute-title { font-size: 20px; }
    .compute-sub   { font-size: 13px; }
    .compute-step  { font-size: 13px; padding: 9px 12px; }
}

/* ── Expanded report sections ──────────────────────────────────────────── */
.report-section--fastwin
{
    background: linear-gradient(160deg, rgba(125, 107, 242, 0.12), rgba(125, 107, 242, 0.02));
    border: 1px solid rgba(125, 107, 242, 0.25);
    border-radius: 16px;
    padding: 20px 22px 18px;
    margin-top: 4px;
}

.fastwin-title
{
    font-weight: 600;
    color: #d6ceff;
    margin-left: 6px;
}

.fastwin-steps
{
    padding-left: 22px;
    margin: 8px 0 12px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
}

.fastwin-steps li { margin-bottom: 4px; }

.fastwin-expect
{
    font-size: 13px;
    color: rgba(200, 191, 248, 0.8);
    border-top: 1px dashed rgba(125, 107, 242, 0.3);
    padding-top: 10px;
}

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

.week-card
{
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(16, 13, 32, 0.58);
    border: 1px solid rgba(125, 107, 242, 0.3);
}

.week-card__head
{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.week-card__num
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 28px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(125, 107, 242, 0.55), rgba(90, 72, 198, 0.55));
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.05em;
}

.week-card__focus
{
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.week-card ul
{
    padding-left: 18px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.6;
}

.ladder-wrap
{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ladder-step
{
    flex: 1 1 140px;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-width: 140px;
}

.ladder-step--here
{
    background: linear-gradient(180deg, rgba(125, 107, 242, 0.32), rgba(125, 107, 242, 0.08));
    border-color: rgba(200, 191, 248, 0.55);
    box-shadow: 0 0 18px rgba(125, 107, 242, 0.35);
}

.ladder-step__stage
{
    font-size: 11px;
    letter-spacing: 0.14em;
    color: #c8bff8;
    font-weight: 700;
}

.ladder-step__name
{
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 2px 0 4px;
}

.ladder-step__sign
{
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
}

.concepts-grid
{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.concept-chip
{
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(16, 13, 32, 0.5);
    border: 1px solid rgba(125, 107, 242, 0.22);
}

.concept-chip__term
{
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.concept-chip__gloss
{
    font-size: 12.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.7);
}

.models-grid
{
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}

.model-row
{
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 2.2fr;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(16, 13, 32, 0.5);
    border: 1px solid rgba(125, 107, 242, 0.2);
    align-items: center;
}

.model-row__name
{
    font-weight: 700;
    color: #fff;
}

.model-row__kind
{
    display: inline-block;
    margin-left: 6px;
    padding: 1px 8px;
    font-size: 11px;
    font-weight: 600;
    color: #c8bff8;
    background: rgba(125, 107, 242, 0.18);
    border: 1px solid rgba(125, 107, 242, 0.45);
    border-radius: 999px;
    vertical-align: middle;
}

.model-row__org
{
    font-size: 12px;
    color: #c8bff8;
}

.model-row__strength
{
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 680px)
{
    .weeks-grid    { grid-template-columns: 1fr; }
    .concepts-grid { grid-template-columns: 1fr; }
    .model-row     { grid-template-columns: 1fr; gap: 2px; padding: 10px 12px; }
    .model-row__org { order: 2; }
    .model-row__strength { order: 3; }
}

/* ── Outcome hook (report hero) ─────────────────────────────────────────── */
.outcome-hook[hidden] { display: none; }

.outcome-hook
{
    position: relative;
    padding: 26px 28px 24px;
    border-radius: 20px;
    background:
        radial-gradient(ellipse at top left, rgba(125, 107, 242, 0.22), transparent 55%),
        radial-gradient(ellipse at bottom right, rgba(255, 182, 90, 0.14), transparent 55%),
        linear-gradient(180deg, rgba(24, 18, 48, 0.85) 0%, rgba(14, 11, 28, 0.9) 100%);
    border: 1px solid rgba(125, 107, 242, 0.38);
    box-shadow:
        0 0 0 1px rgba(125, 107, 242, 0.18) inset,
        0 24px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(125, 107, 242, 0.18);
    overflow: hidden;
}

.outcome-hook::before
{
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 60%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(255, 210, 140, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.outcome-hook__eyebrow
{
    position: relative;
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: #ffd89b;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 196, 110, 0.12);
    border: 1px solid rgba(255, 196, 110, 0.4);
    margin-bottom: 12px;
}

.outcome-hook__headline
{
    position: relative;
    display: block;
    margin: 6px 0 8px;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 800;
    color: #ffe6b3;
    letter-spacing: 0.005em;
    text-shadow: 0 1px 12px rgba(255, 196, 110, 0.18);
}

.outcome-hook__subline
{
    position: relative;
    margin: 0 0 18px;
    font-size: 14.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    max-width: 56ch;
}

.outcome-hook__timechip
{
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(125, 107, 242, 0.12);
    border: 1px solid rgba(125, 107, 242, 0.35);
    margin-bottom: 18px;
}

.outcome-hook__timeicon
{
    font-size: 22px;
    line-height: 1;
    padding-top: 2px;
}

.outcome-hook__timetext strong
{
    font-size: 16px;
    color: #fff;
    margin-right: 8px;
}

.outcome-hook__timetag
{
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.06em;
    padding: 2px 8px;
    border-radius: 6px;
    background: rgba(125, 107, 242, 0.25);
    color: #d6ceff;
    vertical-align: middle;
}

.outcome-hook__timevibe
{
    margin: 6px 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
}

.outcome-hook__block
{
    position: relative;
    margin-bottom: 16px;
}

.outcome-hook__block-title
{
    font-size: 12px;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    margin-bottom: 10px;
}

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

.deliverable-card
{
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 14px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.deliverable-card:hover
{
    transform: translateY(-2px);
    border-color: rgba(125, 107, 242, 0.4);
    background: rgba(125, 107, 242, 0.08);
}

.deliverable-card__icon
{
    font-size: 26px;
    line-height: 1;
    flex: 0 0 auto;
    filter: drop-shadow(0 2px 6px rgba(125, 107, 242, 0.4));
}

.deliverable-card__title
{
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2px;
}

.deliverable-card__qty
{
    font-size: 15px;
    font-weight: 700;
    color: #ffd89b;
    margin-bottom: 2px;
}

.deliverable-card__note
{
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.5;
}

.outcome-hook__income
{
    padding: 14px 16px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 196, 110, 0.08), rgba(255, 196, 110, 0.02));
    border: 1px solid rgba(255, 196, 110, 0.3);
}

.outcome-hook__income-range
{
    font-size: 22px;
    font-weight: 800;
    color: #ffd89b;
    letter-spacing: 0.01em;
    margin-bottom: 4px;
}

.outcome-hook__income-note
{
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 10px;
}

.outcome-hook__income-sources
{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.outcome-hook__income-sources li
{
    position: relative;
    padding-left: 16px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
}

.outcome-hook__income-sources li::before
{
    content: '▸';
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(255, 196, 110, 0.7);
}

.outcome-hook__cta
{
    position: relative;
    margin-top: 16px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.12em;
    color: rgba(214, 206, 255, 0.7);
    text-transform: uppercase;
    animation: outcomeCtaPulse 2.6s ease-in-out infinite;
}

@keyframes outcomeCtaPulse
{
    0%, 100% { opacity: 0.55; transform: translateY(0); }
    50%      { opacity: 1;    transform: translateY(2px); }
}

@media (max-width: 680px)
{
    .outcome-hook                { padding: 20px 18px 18px; border-radius: 16px; }
    .outcome-hook__headline      { font-size: 20px; }
    .outcome-hook__subline       { font-size: 13.5px; }
    .outcome-hook__deliverables  { grid-template-columns: 1fr; }
    .outcome-hook__income-range  { font-size: 18px; }
}

/* ============================================================
   Markdown-based report renderer (ReportRenderer.js → .rr-*)
   ============================================================ */

.rr-root
{
    display: flex;
    flex-direction: column;
    gap: 22px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14.5px;
    line-height: 1.65;
}

/* Masthead */
.rr-masthead
{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 26px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(30, 24, 66, 0.9), rgba(18, 14, 42, 0.92));
    border: 1px solid rgba(125, 107, 242, 0.4);
    flex-wrap: wrap;
}
.rr-masthead__brand       { font-size: 11.5px; letter-spacing: 0.18em; color: #b4a9ff; text-transform: uppercase; margin-bottom: 6px; }
.rr-masthead__title       { font-size: 24px; font-weight: 800; color: #fff; margin: 0 0 10px; letter-spacing: 0.01em; }
.rr-masthead__tags        { display: flex; gap: 8px; flex-wrap: wrap; }
.rr-tag
{
    display: inline-block;
    font-size: 11.5px;
    padding: 3px 10px;
    border-radius: 999px;
    letter-spacing: 0.05em;
    font-weight: 600;
}
.rr-tag--level            { background: rgba(125, 107, 242, 0.2); color: #d6ceff; border: 1px solid rgba(125, 107, 242, 0.5); }
.rr-tag--persona          { background: rgba(255, 196, 110, 0.15); color: #ffd89b; border: 1px solid rgba(255, 196, 110, 0.4); }
.rr-masthead__right       { text-align: right; min-width: 180px; }
.rr-masthead__idlabel     { font-size: 10.5px; letter-spacing: 0.18em; color: rgba(255, 255, 255, 0.5); text-transform: uppercase; }
.rr-masthead__id          { font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace; font-size: 14px; font-weight: 600; color: #ffd89b; margin: 4px 0 2px; letter-spacing: 0.04em; }
.rr-masthead__date        { font-size: 12px; color: rgba(255, 255, 255, 0.6); }

/* Freshness banner */
.rr-freshness
{
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(120, 230, 160, 0.07);
    border: 1px solid rgba(120, 230, 160, 0.25);
}
.rr-freshness__pulse
{
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #6ce894;
    margin-top: 6px;
    box-shadow: 0 0 0 0 rgba(108, 232, 148, 0.6);
    animation: rrPulse 1.8s infinite;
}
@keyframes rrPulse
{
    0%   { box-shadow: 0 0 0 0 rgba(108, 232, 148, 0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(108, 232, 148, 0); }
    100% { box-shadow: 0 0 0 0 rgba(108, 232, 148, 0); }
}
.rr-freshness strong      { display: block; font-size: 13px; color: #bdeccb; margin-bottom: 2px; letter-spacing: 0.01em; }
.rr-freshness span        { font-size: 12.5px; color: rgba(255, 255, 255, 0.72); line-height: 1.55; }

/* Hero — outcome blueprint */
.rr-hero
{
    position: relative;
    padding: 28px 30px 26px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(24, 18, 48, 0.92) 0%, rgba(14, 11, 28, 0.96) 100%);
    border: 1px solid rgba(125, 107, 242, 0.5);
    overflow: hidden;
}
.rr-hero::before
{
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at 85% -20%, rgba(255, 196, 110, 0.14), transparent 60%);
    pointer-events: none;
}
.rr-hero > *              { position: relative; }
.rr-hero__eyebrow
{
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: #ffd89b;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(255, 196, 110, 0.14);
    border: 1px solid rgba(255, 196, 110, 0.4);
    margin-bottom: 14px;
}
.rr-hero__title
{
    margin: 6px 0 10px;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 800;
    color: #ffe6b3;
    letter-spacing: 0.005em;
    text-shadow: 0 1px 14px rgba(255, 196, 110, 0.2);
}
.rr-hero__sub             { margin: 0 0 20px; font-size: 14.8px; line-height: 1.65; color: rgba(255, 255, 255, 0.86); max-width: 58ch; }

.rr-hero__pace
{
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(125, 107, 242, 0.14);
    border: 1px solid rgba(125, 107, 242, 0.4);
    margin-bottom: 20px;
}
.rr-pace__icon            { font-size: 22px; line-height: 1; padding-top: 2px; }
.rr-pace__row strong      { font-size: 16px; color: #fff; margin-right: 8px; }
.rr-pace__tag
{
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.06em;
    padding: 2px 8px;
    border-radius: 6px;
    background: rgba(125, 107, 242, 0.3);
    color: #d6ceff;
    vertical-align: middle;
}
.rr-pace__vibe            { margin: 6px 0 0; font-size: 13px; color: rgba(255, 255, 255, 0.78); line-height: 1.55; }

.rr-block                 { margin-bottom: 18px; }
.rr-block:last-child      { margin-bottom: 0; }
.rr-block__title
{
    font-size: 12px;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.rr-block--income
{
    padding: 16px 18px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 196, 110, 0.1), rgba(255, 196, 110, 0.03));
    border: 1px solid rgba(255, 196, 110, 0.35);
}

.rr-deliv-grid
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}
.rr-deliv
{
    padding: 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.rr-deliv__icon           { font-size: 22px; line-height: 1; }
.rr-deliv__title          { font-size: 13.5px; font-weight: 600; color: rgba(255, 255, 255, 0.92); }
.rr-deliv__qty            { font-size: 15.5px; font-weight: 700; color: #ffd89b; }
.rr-deliv__note           { font-size: 11.8px; color: rgba(255, 255, 255, 0.62); line-height: 1.5; }

.rr-income__range         { font-size: 22px; font-weight: 800; color: #ffd89b; margin-bottom: 6px; letter-spacing: 0.01em; }
.rr-income__note          { font-size: 13px; line-height: 1.6; color: rgba(255, 255, 255, 0.82); margin: 0 0 12px; }
.rr-sources               { list-style: none; padding: 0; margin: 10px 0 0; display: flex; flex-direction: column; gap: 6px; }
.rr-sources li
{
    position: relative;
    padding-left: 16px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
}
.rr-sources li::before    { content: "▸"; position: absolute; left: 0; top: 0; color: rgba(255, 196, 110, 0.8); }

/* Income chart */
.rr-chart                 { margin: 14px 0 6px; padding: 22px 12px 30px; }
.rr-chart-track
{
    position: relative;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
}
.rr-chart-fill
{
    position: absolute;
    top: 0; bottom: 0;
    border-radius: 4px;
    background: linear-gradient(90deg, #ff9d6c 0%, #ffd89b 50%, #ffe6b3 100%);
    box-shadow: 0 0 12px rgba(255, 196, 110, 0.4);
}
.rr-chart-tick
{
    position: absolute;
    top: -6px; bottom: -6px;
    width: 1px;
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(-0.5px);
}
.rr-chart-tick span
{
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.48);
    white-space: nowrap;
}
.rr-chart-pt
{
    position: absolute;
    top: -10px;
    width: 14px;
    height: 14px;
    margin-left: -7px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #ffb870;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
.rr-chart-pt span
{
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 700;
    color: #ffd89b;
    white-space: nowrap;
}
.rr-chart-pt--lo          { border-color: #9d8ce8; }
.rr-chart-pt--lo span     { color: #d6ceff; }

/* Persona intro block */
.rr-persona
{
    padding: 22px 26px;
    border-radius: 18px;
    background: rgba(125, 107, 242, 0.06);
    border: 1px solid rgba(125, 107, 242, 0.25);
}
.rr-persona h2            { font-size: 22px; color: #fff; margin: 0 0 10px; font-weight: 700; }
.rr-persona__blurb        { font-size: 14.5px; line-height: 1.7; color: rgba(255, 255, 255, 0.88); margin: 0 0 8px; }
.rr-persona__hint         { font-size: 13px; line-height: 1.6; color: rgba(214, 206, 255, 0.82); margin: 0; font-style: italic; }

/* Section frame */
.rr-section
{
    padding: 22px 26px;
    border-radius: 18px;
    background: rgba(20, 16, 40, 0.55);
    border: 1px solid rgba(125, 107, 242, 0.2);
}
.rr-section__head
{
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.rr-section__idx
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 24px;
    padding: 0 8px;
    border-radius: 8px;
    background: rgba(125, 107, 242, 0.2);
    color: #c7bdff;
    font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.rr-section__head h2      { margin: 0; font-size: 17px; font-weight: 700; color: #fff; letter-spacing: 0.005em; }
.rr-section__hint         { font-size: 12.5px; color: rgba(255, 255, 255, 0.55); margin-left: auto; }

/* Profile cells */
.rr-profile
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}
.rr-profile__cell
{
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.rr-profile__label        { font-size: 11.5px; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.55); text-transform: uppercase; margin-bottom: 4px; }
.rr-profile__value        { font-size: 14.5px; font-weight: 600; color: #fff; }

/* Tool cards */
.rr-tools
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}
.rr-tool
{
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(125, 107, 242, 0.3);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.rr-tool:hover            { transform: translateY(-2px); border-color: rgba(125, 107, 242, 0.6); background: rgba(125, 107, 242, 0.08); }
.rr-tool__head            { display: flex; justify-content: space-between; align-items: center; }
.rr-tool__name            { font-size: 15px; font-weight: 700; color: #fff; }
.rr-tool__stars           { font-size: 12px; color: #ffd89b; letter-spacing: 0.05em; }
.rr-tool__org             { font-size: 11.5px; color: rgba(255, 255, 255, 0.55); letter-spacing: 0.02em; }
.rr-tool__line            { font-size: 13px; color: rgba(255, 255, 255, 0.82); line-height: 1.55; margin: 4px 0 6px; }
.rr-tool__foot            { display: flex; justify-content: space-between; font-size: 11.5px; color: rgba(214, 206, 255, 0.7); padding-top: 4px; border-top: 1px dashed rgba(255, 255, 255, 0.1); }

/* Skills */
.rr-skills
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}
.rr-skill
{
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.rr-skill--primary        { background: rgba(255, 196, 110, 0.08); border-color: rgba(255, 196, 110, 0.35); }
.rr-skill__head           { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.rr-skill__icon           { font-size: 22px; line-height: 1; }
.rr-skill__head strong    { display: block; font-size: 14.5px; color: #fff; }
.rr-skill__sub            { display: block; font-size: 12px; color: rgba(255, 255, 255, 0.58); }
.rr-skill__badge
{
    margin-left: auto;
    font-size: 10.5px;
    letter-spacing: 0.08em;
    padding: 2px 8px;
    border-radius: 6px;
    background: rgba(125, 107, 242, 0.25);
    color: #d6ceff;
    font-weight: 600;
}
.rr-skill--primary .rr-skill__badge { background: rgba(255, 196, 110, 0.25); color: #ffd89b; }
.rr-skill ul              { margin: 0; padding-left: 18px; font-size: 13px; line-height: 1.7; color: rgba(255, 255, 255, 0.82); }

/* Projects */
.rr-projs
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}
.rr-proj
{
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.rr-proj:hover            { transform: translateY(-2px); border-color: rgba(120, 230, 160, 0.4); }
.rr-proj__head            { display: flex; justify-content: space-between; align-items: center; }
.rr-proj__name            { font-size: 14.5px; font-weight: 700; color: #fff; }
.rr-proj__stars           { font-size: 12px; color: #ffd89b; }
.rr-proj__slug            { font-size: 11.5px; font-family: 'JetBrains Mono', 'SF Mono', monospace; color: rgba(214, 206, 255, 0.68); }
.rr-proj p                { font-size: 12.8px; color: rgba(255, 255, 255, 0.75); line-height: 1.55; margin: 4px 0; }
.rr-proj__foot            { display: flex; justify-content: space-between; font-size: 11.5px; color: rgba(120, 230, 160, 0.82); padding-top: 4px; border-top: 1px dashed rgba(255, 255, 255, 0.1); }

/* Code / template */
.rr-code
{
    margin: 0;
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(10, 8, 22, 0.75);
    border: 1px solid rgba(125, 107, 242, 0.3);
    font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
    font-size: 12.8px;
    line-height: 1.65;
    color: #d6ceff;
    white-space: pre-wrap;
    word-break: break-word;
    overflow-x: auto;
}
.rr-code code             { font-family: inherit; }

/* Markdown body (pitfalls etc.) */
.rr-md ul, .rr-md ol      { padding-left: 20px; margin: 0; }
.rr-md li                 { font-size: 13.5px; line-height: 1.7; color: rgba(255, 255, 255, 0.85); margin-bottom: 4px; }
.rr-md p                  { margin: 0 0 8px; font-size: 13.5px; line-height: 1.65; color: rgba(255, 255, 255, 0.85); }
.rr-md code               { font-family: 'JetBrains Mono', 'SF Mono', monospace; font-size: 12.5px; padding: 1px 6px; border-radius: 4px; background: rgba(125, 107, 242, 0.18); color: #d6ceff; }
.rr-md strong             { color: #fff; }
.rr-md em                 { color: #ffd89b; font-style: normal; }

/* Numbered step lists (fast win, next steps) */
.rr-steps
{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    counter-reset: rr-step;
}
.rr-steps li
{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
}
.rr-num
{
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7d6bf2, #a590ff);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.rr-expect
{
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(120, 230, 160, 0.08);
    border: 1px solid rgba(120, 230, 160, 0.25);
    font-size: 12.8px;
    color: #bdeccb;
    letter-spacing: 0.02em;
}

/* 4-week plan */
.rr-weeks
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}
.rr-week
{
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.rr-week__bar             { height: 4px; border-radius: 2px; background: rgba(255, 255, 255, 0.08); overflow: hidden; margin-bottom: 10px; }
.rr-week__bar-fill        { height: 100%; background: linear-gradient(90deg, #7d6bf2, #ffd89b); transition: width 0.4s ease; }
.rr-week__head            { display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px; }
.rr-week__num             { font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 700; color: #ffd89b; }
.rr-week__focus           { font-size: 13.5px; color: #fff; font-weight: 600; }
.rr-week ul               { margin: 0; padding-left: 18px; font-size: 12.8px; line-height: 1.6; color: rgba(255, 255, 255, 0.78); }
.rr-week li               { margin-bottom: 3px; }

/* Ladder */
.rr-ladder                { display: flex; flex-direction: column; gap: 8px; }
.rr-ladder__step
{
    position: relative;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 80px 1fr 2fr;
    gap: 14px;
    align-items: center;
}
.rr-ladder__step--here
{
    background: rgba(125, 107, 242, 0.12);
    border-color: rgba(125, 107, 242, 0.5);
}
.rr-ladder__stage         { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: #ffd89b; font-weight: 700; }
.rr-ladder__name          { font-size: 14px; font-weight: 600; color: #fff; }
.rr-ladder__sign          { font-size: 12.5px; color: rgba(255, 255, 255, 0.68); line-height: 1.5; }
.rr-ladder__badge
{
    position: absolute;
    top: -10px;
    right: 12px;
    font-size: 10.5px;
    padding: 3px 10px;
    border-radius: 999px;
    background: #7d6bf2;
    color: #fff;
    letter-spacing: 0.08em;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(125, 107, 242, 0.4);
}

/* Concepts */
.rr-concepts
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
}
.rr-concept
{
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.rr-concept__term         { font-size: 13px; font-weight: 700; color: #ffd89b; margin-bottom: 4px; }
.rr-concept__gloss        { font-size: 12.5px; color: rgba(255, 255, 255, 0.78); line-height: 1.55; }

/* Models table */
.rr-models                { width: 100%; border-collapse: collapse; font-size: 13px; }
.rr-models th, .rr-models td { padding: 10px 12px; text-align: left; border-bottom: 1px solid rgba(255, 255, 255, 0.08); vertical-align: top; }
.rr-models th             { font-size: 11.5px; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.55); text-transform: uppercase; border-bottom-color: rgba(255, 255, 255, 0.15); }
.rr-models tr:last-child td { border-bottom: none; }
.rr-models__name          { font-weight: 700; color: #fff; }
.rr-models__kind
{
    display: inline-block;
    font-size: 10.5px;
    padding: 1px 7px;
    border-radius: 5px;
    background: rgba(125, 107, 242, 0.25);
    color: #d6ceff;
    letter-spacing: 0.04em;
    margin-left: 4px;
    font-weight: 600;
}
.rr-models__org           { color: rgba(255, 255, 255, 0.62); font-size: 12.5px; }
.rr-models__str           { color: rgba(255, 255, 255, 0.85); font-size: 12.8px; line-height: 1.55; }

/* Custom / round-2 blocks */
.rr-custom-section
{
    background: linear-gradient(180deg, rgba(255, 196, 110, 0.09), rgba(125, 107, 242, 0.06));
    border: 1px solid rgba(255, 196, 110, 0.35);
}
.rr-section__idx--new
{
    background: linear-gradient(135deg, #ffb870, #ff9d6c);
    color: #1a1030;
    letter-spacing: 0.12em;
    font-weight: 800;
    min-width: 38px;
    box-shadow: 0 2px 10px rgba(255, 184, 112, 0.4);
}
.rr-customs               { display: flex; flex-direction: column; gap: 12px; }
.rr-custom
{
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 196, 110, 0.06);
    border: 1px solid rgba(255, 196, 110, 0.28);
}
.rr-custom--free          { background: rgba(125, 107, 242, 0.07); border-color: rgba(125, 107, 242, 0.3); }
.rr-custom__eye           { display: inline-block; font-size: 10.5px; letter-spacing: 0.12em; color: #ffd89b; text-transform: uppercase; margin-bottom: 4px; }
.rr-custom--free .rr-custom__eye { color: #c7bdff; }
.rr-custom__title         { font-size: 14.5px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.rr-custom ul             { margin: 0; padding-left: 18px; font-size: 13px; line-height: 1.65; color: rgba(255, 255, 255, 0.82); }
.rr-custom p              { margin: 0; font-size: 13px; line-height: 1.65; color: rgba(255, 255, 255, 0.82); }

/* Learning tip */
.rr-tip
{
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.rr-tip__emoji            { font-size: 28px; line-height: 1; flex: 0 0 auto; }
.rr-tip strong            { display: block; font-size: 14.5px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.rr-tip p                 { margin: 0; font-size: 13.5px; line-height: 1.65; color: rgba(255, 255, 255, 0.82); }

/* Signoff */
.rr-signoff
{
    margin-top: 6px;
    padding: 14px 18px;
    border-radius: 12px;
    text-align: center;
    font-size: 12.5px;
    color: rgba(214, 206, 255, 0.75);
    letter-spacing: 0.04em;
    border: 1px dashed rgba(125, 107, 242, 0.35);
}
.rr-signoff code          { font-family: 'JetBrains Mono', monospace; color: #ffd89b; background: rgba(255, 196, 110, 0.1); padding: 1px 8px; border-radius: 4px; }

/* Mobile */
@media (max-width: 680px)
{
    .rr-masthead                    { padding: 18px 20px; }
    .rr-masthead__title             { font-size: 20px; }
    .rr-masthead__right             { text-align: left; min-width: 0; }
    .rr-hero                        { padding: 22px 20px; border-radius: 18px; }
    .rr-hero__title                 { font-size: 22px; }
    .rr-hero__sub                   { font-size: 13.5px; }
    .rr-deliv-grid                  { grid-template-columns: 1fr; }
    .rr-income__range               { font-size: 19px; }
    .rr-section                     { padding: 18px 18px; }
    .rr-profile, .rr-tools, .rr-skills, .rr-projs, .rr-weeks, .rr-concepts { grid-template-columns: 1fr; }
    .rr-ladder__step                { grid-template-columns: 1fr; gap: 4px; }
    .rr-models                      { font-size: 12px; }
    .rr-models th, .rr-models td    { padding: 8px 6px; }
}


/*# sourceMappingURL=main.css.map*/