/* ========================================
   Mindset Culture Test - Styles
   NK Brand: Bright Mode
   ======================================== */

:root {
    /* Brand Colors */
    --nk-black: #000000;
    --nk-off-white: #F7F3ED;
    --nk-white: #ffffff;
    --nk-blue: #7FABC8;
    --nk-green: #A6BEA4;
    --nk-yellow: #C6A55B;
    --nk-orange: #E08F6A;
    --nk-lilac: #C7B9D3;

    /* Culture Colors - using brand colors for neutral presentation */
    --genius-color: var(--nk-blue);
    --growth-color: var(--nk-green);
    --mixed-color: var(--nk-yellow);

    /* Typography */
    --nk-font-serif: 'Crimson Pro', Georgia, serif;
    --nk-font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Transitions */
    --nk-transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --nk-transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Reset & Base
   ======================================== */

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

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

body {
    font-family: var(--nk-font-sans);
    background-color: var(--nk-off-white);
    color: var(--nk-black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4 {
    font-family: var(--nk-font-serif);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 7vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
h3 { font-size: clamp(1.375rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.125rem, 2.5vw, 1.375rem); }

/* ========================================
   Layout
   ======================================== */

.screen {
    display: none;
    opacity: 0;
    transition: opacity var(--nk-transition-fast);
}

.screen.active {
    display: block;
    opacity: 1;
}

.container {
    max-width: 760px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    font-family: var(--nk-font-sans);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.875rem 2.25rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--nk-transition-fast);
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--nk-green);
    color: var(--nk-black);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(166, 190, 164, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--nk-black);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* ========================================
   Intro Screen
   ======================================== */

#intro {
    position: relative;
}

#intro .container {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
}

.intro-centered {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.intro-centered h1 {
    margin-bottom: 0.5rem;
    color: var(--nk-black);
}

.tagline {
    font-size: 1.25rem;
    color: var(--nk-green);
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Mindset Icons Preview */
.intro-visual {
    margin-bottom: 2rem;
}

.mindset-icons-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.mindset-icon-preview {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nk-white);
    border-radius: 18px;
    transition: all var(--nk-transition-fast);
}

.mindset-icon-preview.genius {
    border: 2px solid var(--genius-color);
}

.mindset-icon-preview.genius svg {
    width: 36px;
    height: 36px;
    stroke: var(--genius-color);
}

.mindset-icon-preview.growth {
    border: 2px solid var(--growth-color);
}

.mindset-icon-preview.growth svg {
    width: 36px;
    height: 36px;
    stroke: var(--growth-color);
}

.mindset-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mindset-arrow svg {
    width: 24px;
    height: 24px;
    stroke: rgba(0, 0, 0, 0.3);
}

.mindset-icon-preview:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Intro Body */
.intro-body {
    text-align: center;
    color: rgba(0, 0, 0, 0.7);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.intro-body p {
    margin-bottom: 1.5rem;
}

.intro-body p:last-child {
    margin-bottom: 0;
}

.intro-body .core-question {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--nk-black);
}

/* Mindsets Preview Pills */
.mindsets-preview {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mindset-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--nk-white);
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all var(--nk-transition-fast);
}

.mindset-pill svg {
    width: 18px;
    height: 18px;
}

.mindset-pill.genius {
    border: 1px solid var(--genius-color);
    color: var(--genius-color);
}

.mindset-pill.genius svg {
    stroke: var(--genius-color);
}

.mindset-pill.genius:hover {
    background: var(--genius-color);
    color: var(--nk-white);
}

.mindset-pill.genius:hover svg {
    stroke: var(--nk-white);
}

.mindset-pill.growth {
    border: 1px solid var(--growth-color);
    color: var(--growth-color);
}

.mindset-pill.growth svg {
    stroke: var(--growth-color);
}

.mindset-pill.growth:hover {
    background: var(--growth-color);
    color: var(--nk-white);
}

.mindset-pill.growth:hover svg {
    stroke: var(--nk-white);
}

/* Metrics */
.intro-metrics {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 1.5rem;
}

.metric-item {
    text-align: center;
}

.metric-number {
    display: block;
    font-family: var(--nk-font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--growth-color);
    line-height: 1.2;
}

.metric-label {
    font-size: 0.6875rem;
    color: var(--growth-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* CTA */
.intro-cta {
    text-align: center;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .mindset-icons-preview {
        gap: 1rem;
    }

    .mindset-icon-preview {
        width: 56px;
        height: 56px;
    }

    .mindset-icon-preview svg {
        width: 28px !important;
        height: 28px !important;
    }

    .intro-metrics {
        gap: 2rem;
    }

    .mindsets-preview {
        gap: 0.75rem;
    }

    .mindset-pill {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
    }
}

/* ========================================
   Quiz Screen
   ======================================== */

#quiz {
    padding-bottom: 1.5rem;
}

.quiz-header {
    position: sticky;
    top: 0;
    background: rgba(247, 243, 237, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.875rem 1.25rem;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.progress-container {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--nk-blue), var(--nk-green));
    border-radius: 2px;
    transition: width var(--nk-transition-medium);
}

.progress-text {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.quiz-content {
    padding-top: 1.25rem;
}

.category-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.dimension-icon-large {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nk-white);
    border: 2px solid var(--nk-blue);
    border-radius: 16px;
}

.dimension-icon-large svg {
    width: 32px;
    height: 32px;
    stroke: var(--nk-blue);
}

.category-header h2 {
    color: var(--nk-black);
    margin-bottom: 0.375rem;
}

.category-description {
    color: rgba(0, 0, 0, 0.6);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Questions */
.questions-container {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.question {
    background: var(--nk-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    transition: all var(--nk-transition-fast);
}

.question:hover {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.question-text {
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: var(--nk-black);
}

.question-number {
    color: var(--nk-green);
    font-weight: 600;
    margin-right: 0.375rem;
}

/* Rating Options */
.rating-options {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-start;
}

.rating-option {
    position: relative;
    cursor: pointer;
}

.rating-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.rating-value {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--nk-off-white);
    border: 2px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--nk-black);
    transition: all var(--nk-transition-fast);
}

.rating-option:hover .rating-value {
    border-color: var(--nk-green);
    background: color-mix(in srgb, var(--nk-green) 10%, transparent);
}

.rating-option.selected .rating-value,
.rating-option input:checked + .rating-value {
    background: var(--nk-green);
    border-color: var(--nk-green);
    color: var(--nk-white);
    transform: scale(1.05);
}

/* Rating Legend */
.rating-legend {
    display: none;
}

/* Inline Rating Labels */
.rating-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.6875rem;
    color: rgba(0, 0, 0, 0.5);
    width: 230px;
}

@media (max-width: 640px) {
    .rating-labels {
        font-size: 0.5625rem;
        max-width: 240px;
    }

    .rating-value {
        width: 38px;
        height: 38px;
    }
}

/* Quiz Navigation */
.quiz-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.quiz-navigation .btn-primary {
    margin-left: auto;
}

/* ========================================
   Email Capture Screen
   ======================================== */

#email-capture .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.email-content {
    max-width: 480px;
    margin: 0 auto;
}

/* Results Teaser */
.results-teaser {
    text-align: center;
    margin-bottom: 2rem;
}

.teaser-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(127, 171, 200, 0.15);
    border-radius: 50%;
}

.teaser-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--nk-blue);
}

.email-content h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--nk-black);
}

.teaser-subtitle {
    font-size: 1.0625rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 1.5rem;
}

.teaser-preview {
    background: var(--nk-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    text-align: left;
}

.teaser-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: rgba(0, 0, 0, 0.75);
}

.teaser-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.teaser-check {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nk-green);
    border-radius: 50%;
    flex-shrink: 0;
}

.teaser-check svg {
    width: 12px;
    height: 12px;
    stroke: white;
}

/* Newsletter Signup */
.newsletter-signup {
    max-width: 520px;
    margin: 0 auto;
}

.signup-prompt {
    text-align: center;
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.7);
}

/* Inline Form */
.inline-form {
    display: flex;
    align-items: stretch;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    overflow: hidden;
}

.inline-form input[type="email"] {
    flex: 1;
    padding: 1.125rem 1.5rem;
    font-family: var(--nk-font-sans);
    font-size: 1rem;
    background: transparent;
    border: none;
    color: var(--nk-black);
    min-width: 0;
}

.inline-form input[type="email"]:focus {
    outline: none;
}

.inline-form input[type="email"]::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.btn-inline {
    font-family: var(--nk-font-serif);
    font-size: 1.125rem;
    font-weight: 400;
    font-style: italic;
    padding: 1rem 1.75rem;
    background: var(--nk-green);
    color: var(--nk-off-white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--nk-transition-fast);
    white-space: nowrap;
    margin: 0.375rem;
    position: relative;
}

.btn-inline:hover {
    background: #8aab88;
}

.btn-inline:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

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

/* Subscribe Checkbox */
.subscribe-checkbox {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-top: 1.25rem;
    cursor: pointer;
    font-size: 1.125rem;
    color: var(--nk-black);
    line-height: 1.5;
}

.subscribe-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    background: var(--nk-white);
    border: 2px solid var(--nk-green);
    border-radius: 5px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--nk-transition-fast);
}

.checkbox-custom::after {
    content: '';
    width: 6px;
    height: 11px;
    border: solid var(--nk-white);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) translate(-1px, -1px);
    opacity: 0;
    transition: opacity var(--nk-transition-fast);
}

.subscribe-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--nk-green);
}

.subscribe-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    opacity: 1;
}

.subscribe-checkbox a {
    color: var(--nk-green);
    text-decoration: underline;
}

.subscribe-checkbox a:hover {
    color: #8aab88;
}

.subscribe-checkbox em {
    font-family: var(--nk-font-serif);
    font-style: italic;
}

@media (max-width: 520px) {
    .inline-form {
        flex-direction: column;
        background: transparent;
    }

    .inline-form input[type="email"] {
        background: rgba(0, 0, 0, 0.04);
        border-radius: 12px;
        margin-bottom: 0.75rem;
    }

    .btn-inline {
        margin: 0;
        width: 100%;
        border-radius: 12px;
    }
}

/* ========================================
   Results Screen
   ======================================== */

#results .container {
    padding-top: 2rem;
    padding-bottom: 3rem;
    max-width: 840px;
}

.results-section {
    background: var(--nk-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.25rem;
}

.results-section h3 {
    color: var(--nk-black);
    margin-bottom: 1.25rem;
    text-align: center;
    font-size: 1.75rem;
}

/* Results Hero - Score Meter */
.results-hero {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--nk-white);
    border-radius: 24px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.results-hero h2 {
    margin-bottom: 2rem;
    color: var(--nk-black);
    font-size: 2.25rem;
}

/* Score Meter */
.score-meter {
    max-width: 480px;
    margin: 0 auto 2rem;
}

.meter-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.meter-label.genius {
    color: var(--genius-color);
}

.meter-label.mixed {
    color: var(--mixed-color);
}

.meter-label.growth {
    color: var(--growth-color);
}

.meter-track {
    height: 12px;
    background: linear-gradient(90deg, var(--nk-blue), var(--nk-green));
    border-radius: 6px;
    position: relative;
    overflow: visible;
    margin: 1rem 0;
}

.meter-fill {
    display: none;
}

.meter-marker {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background: var(--nk-white);
    border: 3px solid var(--nk-black);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: left 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.meter-score {
    margin-top: 1rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.score-value {
    font-family: var(--nk-font-serif);
    font-size: 3rem;
    font-weight: 400;
    color: var(--nk-black);
}

.score-max {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.4);
}

/* Score Interpretation */
.score-interpretation {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    max-width: 560px;
    margin: 0 auto;
}

.score-interpretation h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--nk-black);
}

.score-interpretation p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

/* Dimension Breakdown */
.dimension-breakdown {
    padding: 2rem;
}

.dimension-bars {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.dimension-bar-item {
    animation: fadeInUp 0.4s ease-out both;
}

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

.dimension-bar-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nk-white);
    border: 1.5px solid var(--nk-blue);
    border-radius: 8px;
    flex-shrink: 0;
}

.dimension-bar-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--nk-blue);
}

.dimension-bar-title {
    flex: 1;
    font-weight: 500;
    color: var(--nk-black);
    font-size: 1rem;
}

.dimension-bar-score {
    font-weight: 600;
    font-size: 0.9375rem;
    color: rgba(0, 0, 0, 0.6);
}

.dimension-bar {
    height: 10px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.dimension-bar::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 2px;
    background: rgba(0, 0, 0, 0.15);
    transform: translateX(-50%);
}

.dimension-bar-fill {
    height: 100%;
    border-radius: 5px;
    width: 0;
    transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Key Insights */
.key-insights {
    padding: 2rem;
}

.key-insights .section-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(198, 165, 91, 0.12);
    border-radius: 12px;
}

.key-insights .section-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--nk-yellow);
}

.insight-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.insight-item h4 {
    font-size: 1.125rem;
    color: var(--nk-black);
    margin-bottom: 0.5rem;
}

.insight-item p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.65);
    margin: 0;
}

/* Growth Actions */
.growth-actions {
    padding: 2rem;
}

.growth-actions .section-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(127, 171, 200, 0.12);
    border-radius: 12px;
}

.growth-actions .section-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--nk-blue);
}

.actions-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.actions-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
}

.actions-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--growth-color);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

/* Section Icons */
.section-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(127, 171, 200, 0.12);
    border-radius: 12px;
}

.section-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--nk-blue);
}

.section-icon.action-icon {
    background: rgba(127, 171, 200, 0.12);
}

.section-icon.action-icon svg {
    stroke: var(--nk-blue);
}

/* Reflection Questions */
.reflection {
    padding: 2rem;
}

.reflection-list {
    padding-left: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.reflection-list li {
    padding: 0.625rem 0;
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.0625rem;
    line-height: 1.6;
}

.reflection-list li::marker {
    color: var(--nk-blue);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: rgba(127, 171, 200, 0.08);
    border: none;
    padding: 2.5rem 2rem;
}

.cta-section h3 {
    color: var(--nk-black);
    font-size: 2rem;
}

.cta-section p {
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.7;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   Responsive Styles
   ======================================== */

@media (max-width: 768px) {
    .container {
        padding: 1.25rem 1rem;
    }

    .results-hero h2 {
        font-size: 1.875rem;
    }

    .results-section h3 {
        font-size: 1.5rem;
    }

    .question {
        padding: 1rem 1.25rem;
    }

    .results-section {
        padding: 1.5rem;
    }

    .score-interpretation {
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .rating-options {
        gap: 0.375rem;
    }

    .rating-value {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }

    .rating-labels span {
        font-size: 0.5rem;
    }

    .mindset-icon-preview {
        width: 48px;
        height: 48px;
    }

    .score-value {
        font-size: 2.5rem;
    }
}

/* ========================================
   Animations
   ======================================== */

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

.screen.active .intro-content,
.screen.active .quiz-content,
.screen.active .email-content,
.screen.active .results-content {
    animation: fadeInUp 0.5s ease-out;
}

.question {
    animation: fadeInUp 0.4s ease-out both;
}

.question:nth-child(1) { animation-delay: 0.03s; }
.question:nth-child(2) { animation-delay: 0.06s; }
.question:nth-child(3) { animation-delay: 0.09s; }
.question:nth-child(4) { animation-delay: 0.12s; }
.question:nth-child(5) { animation-delay: 0.15s; }

.results-section {
    animation: fadeInUp 0.4s ease-out both;
}

.results-section:nth-child(1) { animation-delay: 0.05s; }
.results-section:nth-child(2) { animation-delay: 0.1s; }
.results-section:nth-child(3) { animation-delay: 0.15s; }
.results-section:nth-child(4) { animation-delay: 0.2s; }
.results-section:nth-child(5) { animation-delay: 0.25s; }
.results-section:nth-child(6) { animation-delay: 0.3s; }

/* ========================================
   Other Tests Dropdown (Landing Page)
   ======================================== */

.other-tests-dropdown {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 200;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--nk-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: var(--nk-font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
    transition: all var(--nk-transition-fast);
}

.dropdown-trigger:hover {
    border-color: rgba(0, 0, 0, 0.2);
    color: var(--nk-black);
}

.dropdown-trigger svg {
    width: 16px;
    height: 16px;
    transition: transform var(--nk-transition-fast);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 260px;
    background: var(--nk-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--nk-transition-fast);
}

.dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu.open + .dropdown-trigger svg,
.other-tests-dropdown:has(.dropdown-menu.open) .dropdown-trigger svg {
    transform: rotate(180deg);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    text-decoration: none;
    color: var(--nk-black);
    transition: background var(--nk-transition-fast);
}

.dropdown-item:first-child {
    border-radius: 12px 12px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 12px 12px;
}

.dropdown-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.dropdown-item:hover {
    background: rgba(0, 0, 0, 0.03);
}

.dropdown-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(127, 171, 200, 0.12);
    border-radius: 8px;
    flex-shrink: 0;
}

.dropdown-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--nk-blue);
}

.dropdown-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.dropdown-text strong {
    font-size: 0.9375rem;
    font-weight: 500;
}

.dropdown-text small {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.5);
}

/* ========================================
   Other Tests Bento (Results Page)
   ======================================== */

.other-tests-bento {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.other-tests-bento h4 {
    text-align: center;
    font-family: var(--nk-font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 1.25rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.bento-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--nk-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    text-decoration: none;
    color: var(--nk-black);
    transition: all var(--nk-transition-fast);
}

.bento-card:hover {
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.bento-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(127, 171, 200, 0.12);
    border-radius: 12px;
    margin-bottom: 0.75rem;
}

.bento-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--nk-blue);
}

.bento-content strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.bento-content p {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.5);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 640px) {
    .other-tests-dropdown {
        top: 0.75rem;
        right: 0.75rem;
    }

    .dropdown-trigger {
        padding: 0.375rem 0.75rem;
        font-size: 0.8125rem;
    }

    .dropdown-menu {
        min-width: 240px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .bento-card {
        flex-direction: row;
        text-align: left;
        padding: 1rem;
        gap: 1rem;
    }

    .bento-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }
}
