:root {
    --primary-color: #2C5F2D;
    /* Deep Forest Green */
    --accent-color: #97BC62;
    /* Soft Spring Green */
    --bg-color: #F8FAF9;
    /* Off-white/Mint tint */
    --card-bg: #FFFFFF;
    --text-primary: #1F2937;
    --text-secondary: #4B5563;
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 12px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Header */
.main-header {
    text-align: center;
    margin-bottom: 3rem;
}

.brand-tag {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

h1 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin: 0.5rem 0;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Intro Card */
.intro-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    margin-bottom: 2rem;
    border-top: 4px solid var(--accent-color);
}

.intro-lead {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.intro-note {
    font-style: italic;
    color: var(--text-secondary);
    margin-top: 1.5rem;
}

/* Step Sections */
.step-section {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.section-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Horizon Options */
.question-prompt {
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.horizon-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.radio-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
}

.radio-card:hover {
    border-color: var(--accent-color);
    background-color: #F0FDF4;
}

.radio-card input:checked+.radio-label {
    color: var(--primary-color);
    font-weight: 600;
}

/* Slider Groups */
.slider-group {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #F3F4F6;
}

.slider-group:last-child {
    border-bottom: none;
}

.slider-label {
    display: block;
    margin-bottom: 1rem;
}

.dim-name {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.dim-quote {
    font-style: italic;
    color: var(--text-secondary);
}

.range-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.value-display {
    text-align: center;
    margin-bottom: 0.5rem;
}

.range-value-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.range-limit {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 1.5rem;
    text-align: center;
}

.slider {
    flex-grow: 1;
    height: 6px;
    background: #E5E7EB;
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    transition: background .15s ease-in-out;
}

.slider::-webkit-slider-thumb:hover {
    background: var(--accent-color);
}

.range-value {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
    min-width: 2rem;
    text-align: center;
}

/* Submit Button */
.submit-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: #1a3c1b;
}

/* Results Section */
.hidden {
    display: none !important;
}

.stats-bar {
    display: flex;
    justify-content: space-around;
    background: var(--card-bg);
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-color);
}

/* Outcome Card */
.outcome-card {
    background: #FFFFFF;
    border: 1px solid var(--accent-color);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.card-tag {
    display: inline-block;
    background: #ECFDF5;
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.card-headline {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.card-body {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.card-footer {
    font-style: italic;
    font-weight: 500;
    color: var(--primary-color);
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

/* Insight Grid (Strength/Growth) */
.insight-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media(min-width: 640px) {
    .insight-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.insight-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    text-align: center;
}

.strength {
    border-top: 4px solid var(--accent-color);
}

.growth {
    border-top: 4px solid #FCD34D;
    /* Soft Yellow/Gold */
}

.neutral {
    border-top: 4px solid #94A3B8;
    /* Slate Blue-Grey */
    grid-column: 1 / -1;
    /* Span full width if inside grid, or just block if outside */
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.insight-card h3 {
    font-size: 1.1rem;
    margin: 0.5rem 0 1rem 0;
    color: var(--text-primary);
}

.insight-dim-name {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.insight-summary {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
    border-top: 1px dashed var(--border-color);
    padding-top: 0.5rem;
}

/* Integration */
.integration-card {
    background: #F0F9FF;
    /* Very light blue */
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px dashed #BAE6FD;
}

.integration-card h3 {
    color: #0369A1;
    margin-top: 0;
}

.integration-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #0C4A6E;
    font-style: italic;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}