.psycho-shell {
    --psycho-ink: #132238;
    --psycho-subtle: #607086;
    --psycho-accent: #d94f04;
    --psycho-accent-soft: rgba(217, 79, 4, 0.12);
    --psycho-navy: #0d355f;
    --psycho-sand: #f6f1e8;
    --psycho-surface: #ffffff;
    --psycho-border: rgba(19, 34, 56, 0.1);
    --psycho-success: #0b7a55;
    --psycho-warning: #8c5c06;
    font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
    color: var(--psycho-ink);
}

.psycho-shell h1,
.psycho-shell h2,
.psycho-shell h3,
.psycho-shell h4,
.psycho-shell h5 {
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    letter-spacing: -0.03em;
}

.psycho-hero {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 28px;
    padding: 2.75rem;
    background:
        radial-gradient(circle at top right, rgba(255, 210, 154, 0.6), transparent 34%),
        linear-gradient(135deg, #08223c 0%, #0d355f 45%, #184f77 100%);
    color: #f8fbff;
    box-shadow: 0 28px 80px rgba(8, 34, 60, 0.2);
}

.psycho-hero::after {
    content: "";
    position: absolute;
    inset: auto -8% -28% auto;
    width: 18rem;
    height: 18rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(6px);
}

.psycho-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    background: rgba(255, 255, 255, 0.12);
    color: #f8fbff;
    font-size: 0.86rem;
    font-weight: 600;
}

.psycho-panel,
.psycho-card,
.psycho-metric,
.psycho-question,
.psycho-result-card,
.psycho-calculator-row {
    border: 1px solid var(--psycho-border);
    border-radius: 24px;
    background: var(--psycho-surface);
    box-shadow: 0 18px 50px rgba(12, 25, 43, 0.06);
}

.psycho-card {
    height: 100%;
}

.psycho-card-body {
    padding: 1.6rem;
}

.psycho-metric {
    padding: 1.25rem 1.4rem;
}

.psycho-metric strong {
    display: block;
    font-size: 1.8rem;
    line-height: 1.1;
}

.psycho-muted {
    color: var(--psycho-subtle);
}

.psycho-cta {
    border-radius: 999px;
    padding: 0.8rem 1.4rem;
    font-weight: 600;
}

.psycho-cta-primary {
    background: linear-gradient(135deg, #ef6b1b 0%, #d94f04 100%);
    border: none;
    color: #fff;
}

.psycho-cta-secondary {
    border: 1px solid rgba(13, 53, 95, 0.18);
    color: var(--psycho-navy);
    background: #fff;
}

.psycho-search-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.psycho-search-cloud span {
    border-radius: 999px;
    background: #eef3f8;
    color: var(--psycho-navy);
    padding: 0.55rem 0.95rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.psycho-table th,
.psycho-table td {
    vertical-align: middle;
    padding: 0.95rem 0.85rem;
}

.psycho-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    background: var(--psycho-accent-soft);
    color: var(--psycho-accent);
}

.psycho-question {
    padding: 1.4rem;
    margin-bottom: 1.1rem;
}

.psycho-option {
    border: 1px solid var(--psycho-border);
    border-radius: 18px;
    padding: 0.95rem 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.psycho-option:hover {
    border-color: rgba(13, 53, 95, 0.28);
    box-shadow: 0 8px 24px rgba(13, 53, 95, 0.06);
    transform: translateY(-1px);
}

.psycho-option input {
    margin-top: 0.35rem;
}

.psycho-option img,
.psycho-question-media {
    max-width: 100%;
    border-radius: 16px;
    border: 1px solid var(--psycho-border);
}

.psycho-sticky {
    position: sticky;
    top: 1rem;
}

.psycho-timer {
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--psycho-navy);
}

.psycho-progress-pill {
    border-radius: 999px;
    background: #edf4fb;
    color: var(--psycho-navy);
    padding: 0.45rem 0.85rem;
    font-size: 0.86rem;
    font-weight: 700;
}

.psycho-score-good {
    color: var(--psycho-success);
}

.psycho-score-muted {
    color: var(--psycho-subtle);
}

.psycho-calculator-row {
    padding: 1rem 1.1rem;
}

.psycho-calculator-output {
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--psycho-navy);
}

.psycho-note {
    border-left: 4px solid var(--psycho-accent);
    background: #fff7f1;
    border-radius: 18px;
    padding: 1rem 1.1rem;
}

@media (max-width: 991px) {
    .psycho-hero {
        padding: 2rem 1.4rem;
    }

    .psycho-sticky {
        position: static;
    }
}
