:root {
    --bg: #070816;
    --bg-soft: #101225;
    --card: rgba(255, 255, 255, 0.08);
    --card-strong: rgba(255, 255, 255, 0.13);
    --text: #f8fafc;
    --muted: #a7b0c6;
    --line: rgba(255, 255, 255, 0.14);
    --primary: #7c3aed;
    --primary-2: #06b6d4;
    --radius: 28px;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    background:
        radial-gradient(circle at 15% 10%, rgba(124, 58, 237, 0.35), transparent 32rem),
        radial-gradient(circle at 85% 5%, rgba(6, 182, 212, 0.25), transparent 34rem),
        linear-gradient(180deg, #070816 0%, #0c1022 45%, #070816 100%);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

main {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.aurora {
    position: fixed;
    width: 34rem;
    height: 34rem;
    border-radius: 999px;
    filter: blur(90px);
    opacity: 0.38;
    pointer-events: none;
    z-index: -1;
    animation: float 14s ease-in-out infinite alternate;
}

.aurora-a {
    top: 20%;
    left: -12rem;
    background: #7c3aed;
}

.aurora-b {
    right: -10rem;
    bottom: 4rem;
    background: #06b6d4;
    animation-delay: -5s;
}

@keyframes float {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(50px, -30px, 0) scale(1.08); }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 18px 0;
    backdrop-filter: blur(18px);
}

.brand,
.nav {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand {
    font-weight: 900;
    letter-spacing: -0.02em;
}

.brand-mark {
    display: block;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brand-mark img {
    display: block;
    width: 100%;
    height: 100%;
}

.nav a {
    color: var(--muted);
    padding: 10px 12px;
    border-radius: 999px;
    transition: 0.2s ease;
}

.nav a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
    align-items: center;
    padding: 76px 0 42px;
}

.hero h1,
.quiz-hero h1,
.result-hero h1,
.page-hero h1 {
    margin: 0;
    font-size: clamp(2.4rem, 7vw, 5.6rem);
    line-height: 0.96;
    letter-spacing: -0.075em;
}

.hero p,
.quiz-hero p,
.result-hero p,
.page-hero p {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.9;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #93c5fd;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-actions,
.result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 12px 18px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, border 0.18s ease;
}

.btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.13);
}

.btn:disabled {
    cursor: not-allowed;
    opacity: 0.45;
    transform: none;
}

.btn.primary {
    border: 0;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    box-shadow: 0 16px 38px rgba(6, 182, 212, 0.22);
}

.btn.ghost {
    background: rgba(255, 255, 255, 0.06);
}

.btn.small {
    padding: 10px 16px;
}

.btn.large {
    padding: 15px 24px;
    font-weight: 800;
}

.btn.full {
    width: 100%;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.stats span {
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.06);
}

.stats strong {
    color: var(--text);
    font-size: 1.25rem;
}

.hero-panel {
    perspective: 1000px;
}

.planet-card,
.card,
.glass {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
}

.planet-card {
    position: relative;
    min-height: 430px;
    padding: 32px;
    overflow: hidden;
    transform: rotateY(-8deg) rotateX(4deg);
}

.planet-card::before {
    content: "";
    position: absolute;
    inset: 38px 38px auto auto;
    width: 155px;
    height: 155px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #fff, #a78bfa 28%, #06b6d4 65%, #1e1b4b 100%);
    box-shadow: 0 0 60px rgba(6, 182, 212, 0.42);
}

.orbit {
    position: absolute;
    top: 64px;
    right: 18px;
    width: 220px;
    height: 120px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: rotate(-18deg);
}

.planet-card h2 {
    margin-top: 210px;
}

.mini-test {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 12px;
    align-items: center;
    padding: 14px;
    margin-top: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.17);
}

.mini-test > span {
    width: 46px;
    height: 46px;
    border-radius: 16px;
}

.mini-test small {
    display: block;
    color: var(--muted);
    margin-top: 4px;
}

.toolbar {
    padding: 18px;
    margin: 18px 0 28px;
}

.search-form {
    display: grid;
    grid-template-columns: 1fr 180px auto;
    gap: 12px;
}

.search-box {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.18);
}

.search-box input,
.search-form select {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
}

.search-form select {
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #14182b;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.pill,
.tag-row span {
    display: inline-flex;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 10px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.06);
}

.pill.active {
    color: var(--text);
    background: rgba(124, 58, 237, 0.45);
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 34px;
}

.test-grid.compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.test-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 14px 50px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
}

.test-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.32);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

.test-card-top {
    display: flex;
    justify-content: space-between;
    min-height: 96px;
    padding: 18px;
}

.test-card-top span,
.test-card-top strong {
    height: fit-content;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.22);
}

.test-card-body {
    padding: 20px;
}

.test-card h2 {
    margin: 0 0 8px;
    letter-spacing: -0.04em;
}

.test-card p {
    min-height: 52px;
    color: var(--muted);
    line-height: 1.65;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    margin: 16px 0;
}

.integrity,
.page-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px;
    margin: 28px 0 54px;
}

.quiz-hero {
    margin: 42px 0 28px;
}

.mobile-start-panel {
    display: none;
}

.quiz-hero-card {
    position: relative;
    overflow: hidden;
    padding: 36px;
    border-radius: 34px;
    background: var(--quiz-gradient);
    box-shadow: var(--shadow);
}

.quiz-hero-card::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    border: 42px solid rgba(255, 255, 255, 0.16);
}

.back-link {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--muted);
}

.quiz-layout {
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 22px;
    align-items: start;
}

.quiz-aside {
    position: sticky;
    top: 86px;
    padding: 22px;
}

.quiz-aside p {
    color: var(--muted);
    line-height: 1.75;
}

.fine-print {
    font-size: 0.85rem;
}

.progress-shell {
    width: 100%;
    height: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.progress-bar {
    width: 0;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #8b5cf6, #06b6d4);
    transition: width 0.22s ease;
}

.step-chip {
    display: inline-flex;
    margin-left: 8px;
    padding: 4px 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text);
    background: rgba(124, 58, 237, 0.28);
}

.question-card {
    padding: 24px;
    margin-bottom: 18px;
    border: 1px solid var(--line);
}

.question-card.active {
    animation: questionIn 0.28s ease both;
}

@keyframes questionIn {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

fieldset {
    min-width: 0;
    border: 0;
}

.question-title {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 18px;
    font-size: 1.12rem;
    font-weight: 850;
    line-height: 1.55;
}

.question-title span {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(124, 58, 237, 0.38);
}

.likert {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.likert label {
    display: grid;
    gap: 6px;
    justify-items: center;
    min-height: 112px;
    padding: 12px 8px;
    border: 1px solid var(--line);
    border-radius: 20px;
    color: var(--muted);
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    text-align: center;
    transition: 0.18s ease;
}

.likert input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.bubble {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.12);
}

.likert label:has(input:checked) {
    color: var(--text);
    border-color: rgba(6, 182, 212, 0.78);
    background: rgba(6, 182, 212, 0.14);
    transform: translateY(-2px);
}

.likert label:has(input:checked) .bubble {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
}

.likert small {
    font-size: 0.78rem;
}

.submit-dock {
    position: sticky;
    bottom: 18px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    margin: 20px 0 46px;
}

.submit-dock p {
    margin: 4px 0 0;
    color: var(--muted);
}

.wizard-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.alert {
    padding: 16px 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(248, 113, 113, 0.45);
    border-radius: 18px;
    color: #fecaca;
    background: rgba(127, 29, 29, 0.35);
}

.result-hero {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 22px;
    align-items: stretch;
    margin: 46px 0 24px;
}

.result-card {
    padding: 36px;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.08)),
        var(--quiz-gradient);
}

.result-chart {
    display: grid;
    place-items: center;
    min-height: 420px;
    padding: 20px;
}

.dimension-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.dimension-card {
    padding: 18px;
}

.dimension-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.88rem;
}

.duo-bar {
    display: flex;
    height: 12px;
    overflow: hidden;
    margin: 14px 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.result-layout {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 22px;
    margin: 22px 0;
}

.result-layout > .card,
.related .card,
.source-list,
.empty {
    padding: 26px;
}

.score-list {
    display: grid;
    gap: 16px;
}

.score-row {
    display: grid;
    grid-template-columns: 170px 1fr 44px;
    gap: 14px;
    align-items: center;
}

.score-label strong,
.score-label small {
    display: block;
}

.score-label small {
    color: var(--muted);
    margin-top: 4px;
}

.score-track {
    height: 14px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}

.score-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
}

.insight-card ul {
    margin: 0 0 24px;
    padding-left: 22px;
    color: var(--muted);
    line-height: 1.85;
}

.report-card {
    padding: 30px;
    margin: 22px 0;
}

.report-card h2 {
    max-width: 900px;
    margin: 8px 0 14px;
    font-size: clamp(1.55rem, 4vw, 2.35rem);
    line-height: 1.18;
    letter-spacing: -0.05em;
}

.report-card p {
    max-width: 980px;
    color: rgba(248, 250, 252, 0.88);
    line-height: 1.9;
}

.report-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.report-keywords span {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: #bfdbfe;
    background: rgba(255, 255, 255, 0.06);
}

.report-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 22px 0;
}

.report-section {
    padding: 24px;
}

.report-section h2,
.action-report h2 {
    margin: 8px 0 12px;
    letter-spacing: -0.03em;
}

.report-section ul,
.action-report ol {
    margin: 0;
    padding-left: 22px;
    color: var(--muted);
    line-height: 1.85;
}

.report-section li + li,
.action-report li + li {
    margin-top: 8px;
}

.report-section.warning {
    border-color: rgba(250, 204, 21, 0.18);
    background:
        radial-gradient(circle at 0% 0%, rgba(250, 204, 21, 0.12), transparent 38%),
        rgba(255, 255, 255, 0.06);
}

.action-report {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.82fr);
    gap: 20px;
    align-items: stretch;
    padding: 26px;
    margin: 22px 0;
}

.action-report blockquote {
    display: grid;
    align-content: center;
    gap: 10px;
    margin: 0;
    padding: 20px;
    border: 1px solid rgba(6, 182, 212, 0.22);
    border-radius: 22px;
    color: rgba(248, 250, 252, 0.9);
    background: rgba(6, 182, 212, 0.08);
    line-height: 1.8;
}

.action-report blockquote strong,
.action-report blockquote span {
    display: block;
}

.share-panel {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 24px;
    align-items: center;
    padding: 26px;
    margin: 22px 0;
}

.share-panel p {
    color: var(--muted);
    line-height: 1.75;
}

.share-card-preview {
    margin: 16px 0 0;
}

.share-card-preview img {
    display: block;
    width: min(100%, 420px);
    height: auto;
    aspect-ratio: 1200 / 630;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.share-card-preview figcaption {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.82rem;
}

.share-link-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-top: 16px;
}

.share-link-row input {
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    color: var(--text);
    background: rgba(0, 0, 0, 0.18);
}

.wechat-share-box {
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    text-align: center;
}

.wechat-share-box img {
    width: 150px;
    height: 150px;
    border-radius: 14px;
    background: white;
}

.wechat-share-box small {
    color: var(--muted);
    line-height: 1.45;
}

.ad-card {
    position: relative;
    min-height: 118px;
    padding: 18px;
    margin: 22px 0;
    border: 1px dashed rgba(255, 255, 255, 0.22);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.045);
    overflow: hidden;
}

.ad-label {
    position: absolute;
    top: 10px;
    right: 14px;
    padding: 3px 8px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.72rem;
    background: rgba(0, 0, 0, 0.25);
}

.ad-placeholder {
    display: grid;
    place-items: center;
    gap: 6px;
    min-height: 82px;
    color: var(--muted);
    text-align: center;
}

.ad-placeholder strong {
    color: var(--text);
}

.ad-code,
.baidu-ad-container {
    min-height: 90px;
}

.adsbygoogle {
    min-height: 90px;
}

.section-head {
    margin: 40px 0 18px;
}

.source-list {
    display: grid;
    gap: 12px;
}

.source-list a {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    color: #bfdbfe;
    background: rgba(255, 255, 255, 0.05);
}

.source-list a span,
.source-list a small {
    display: block;
}

.source-list a small,
.muted-copy {
    color: var(--muted);
}

.source-list a small {
    margin-top: 6px;
    overflow-wrap: anywhere;
    font-size: 0.82rem;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    width: min(1180px, calc(100% - 36px));
    margin: 36px auto 0;
    padding: 30px 0 42px;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.site-footer p {
    margin: 6px 0 0;
}

@media (max-width: 980px) {
    .hero,
    .quiz-layout,
    .result-hero,
    .result-layout,
    .report-grid,
    .action-report {
        grid-template-columns: 1fr;
    }

    .quiz-aside,
    .submit-dock {
        position: static;
    }

    .test-grid,
    .test-grid.compact,
    .dimension-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .search-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    :root {
        --radius: 24px;
    }

    html,
    body {
        background: #070816;
    }

    body {
        padding-bottom: env(safe-area-inset-bottom);
        -webkit-tap-highlight-color: transparent;
    }

    main,
    .site-header,
    .site-footer {
        width: min(100% - 24px, 1180px);
    }

    main {
        padding-top: 10px;
    }

    .site-header {
        position: sticky;
        top: 0;
        width: 100%;
        padding: calc(10px + env(safe-area-inset-top)) 14px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
        background: rgba(7, 8, 22, 0.72);
        backdrop-filter: blur(24px);
    }

    .brand {
        gap: 10px;
        font-size: 0.98rem;
    }

    .brand-mark {
        width: 36px;
        height: 36px;
        border-radius: 13px;
    }

    .nav {
        position: static;
        display: flex;
        gap: 8px;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.06);
        box-shadow: none;
        backdrop-filter: none;
        font-size: 0.92rem;
    }

    .nav a {
        justify-content: center;
        padding: 9px 10px;
        color: var(--text);
        background: transparent;
    }

    .nav a::before {
        margin-right: 6px;
    }

    .nav a:first-child::before {
        content: "⌂";
    }

    .nav a:last-child::before {
        content: "？";
    }

    .hero {
        padding: 20px 0 18px;
        gap: 18px;
    }

    .hero h1,
    .quiz-hero h1,
    .result-hero h1,
    .page-hero h1 {
        font-size: clamp(2.2rem, 14vw, 3.8rem);
    }

    .hero p,
    .quiz-hero p,
    .result-hero p,
    .page-hero p {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin: 20px 0;
    }

    .hero-actions .btn {
        min-height: 48px;
        padding-inline: 12px;
    }

    .stats {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .stats span {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 14px;
        border-radius: 18px;
    }

    .hero-panel {
        display: block;
        perspective: none;
    }

    .planet-card {
        min-height: auto;
        padding: 18px;
        border-radius: 26px;
        transform: none;
    }

    .planet-card::before {
        inset: 18px 18px auto auto;
        width: 86px;
        height: 86px;
        box-shadow: 0 0 42px rgba(6, 182, 212, 0.38);
    }

    .orbit {
        top: 28px;
        right: -12px;
        width: 132px;
        height: 72px;
        opacity: 0.7;
    }

    .planet-card h2 {
        margin: 96px 0 12px;
        font-size: 1.35rem;
        letter-spacing: -0.04em;
    }

    .mini-test {
        grid-template-columns: 40px 1fr;
        padding: 12px;
        border-radius: 18px;
    }

    .mini-test > span {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .toolbar {
        position: sticky;
        top: calc(56px + env(safe-area-inset-top));
        z-index: 12;
        padding: 12px;
        margin: 10px 0 16px;
        border-radius: 22px;
        background: rgba(10, 12, 28, 0.78);
        transition: padding 0.2s ease, border-radius 0.2s ease, transform 0.2s ease;
    }

    .search-box,
    .search-form select {
        min-height: 48px;
        border-radius: 16px;
    }

    .toolbar.mobile-collapsed {
        padding: 8px;
        border-radius: 20px;
        background: rgba(10, 12, 28, 0.86);
        box-shadow: 0 14px 42px rgba(0, 0, 0, 0.32);
    }

    .toolbar.mobile-collapsed .search-form {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .toolbar.mobile-collapsed .search-box {
        position: relative;
        min-height: 44px;
        cursor: pointer;
    }

    .toolbar.mobile-collapsed .search-box input {
        pointer-events: none;
    }

    .toolbar.mobile-collapsed .search-form select,
    .toolbar.mobile-collapsed .search-form button,
    .toolbar.mobile-collapsed .category-pills {
        display: none;
    }

    .toolbar.mobile-expanded {
        border-radius: 24px;
        background: rgba(10, 12, 28, 0.94);
        box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
    }

    .category-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .category-pills::-webkit-scrollbar {
        display: none;
    }

    .pill {
        flex: 0 0 auto;
    }

    .test-grid,
    .test-grid.compact,
    .dimension-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 22px;
    }

    .test-card {
        border-radius: 24px;
    }

    .test-card-top {
        min-height: 74px;
        padding: 14px;
    }

    .test-card-body {
        padding: 16px;
    }

    .test-card p {
        min-height: auto;
        margin-bottom: 10px;
    }

    .tag-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .tag-row::-webkit-scrollbar {
        display: none;
    }

    .tag-row span {
        flex: 0 0 auto;
    }

    .btn {
        min-height: 46px;
    }

    .btn.full {
        min-height: 50px;
        font-weight: 800;
    }

    .quiz-hero {
        margin: 14px 0 12px;
    }

    .back-link {
        display: none;
    }

    .quiz-hero-card {
        padding: 20px;
        border-radius: 26px;
    }

    .quiz-hero-card::after {
        width: 160px;
        height: 160px;
        right: -70px;
        top: -70px;
        border-width: 30px;
    }

    .quiz-hero h1 {
        font-size: clamp(1.85rem, 10vw, 3rem);
        line-height: 1.05;
    }

    .quiz-hero-card .tag-row {
        margin-bottom: 0;
    }

    .mobile-start-panel {
        display: grid;
        gap: 10px;
        margin-top: 18px;
    }

    .mobile-start-panel p {
        margin: 0;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.9rem;
        line-height: 1.6;
        text-align: center;
    }

    body.quiz-not-started .quiz-layout {
        display: none;
    }

    body.quiz-not-started .quiz-hero {
        min-height: calc(100vh - 92px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
        display: grid;
        align-items: center;
        margin-top: 0;
    }

    body.quiz-not-started .quiz-hero-card {
        padding: 26px 20px;
    }

    body.quiz-not-started .quiz-hero-card p {
        margin-bottom: 16px;
    }

    body.quiz-started .mobile-start-panel {
        display: none;
    }

    body.quiz-started .nav {
        display: none;
    }

    body.result-page .site-header {
        position: relative;
        top: auto;
        margin-bottom: 8px;
    }

    body.result-page .nav {
        display: none;
    }

    .quiz-layout {
        gap: 12px;
    }

    .quiz-aside {
        position: relative;
        top: auto;
        z-index: 11;
        padding: 14px;
        border-radius: 22px;
        background: rgba(10, 12, 28, 0.8);
    }

    .quiz-aside h2,
    .quiz-aside > p:not(.progress-text),
    .quiz-aside .fine-print,
    .quiz-aside [data-clear-progress] {
        display: none;
    }

    .progress-shell {
        height: 9px;
    }

    .progress-text {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin: 10px 0 0;
        font-size: 0.88rem;
    }

    .step-chip {
        margin-left: auto;
    }

    .quiz-form {
        padding-bottom: 230px;
    }

    .question-card {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-height: auto;
        padding: 38px 18px 156px;
        margin-bottom: 0;
        border-radius: 28px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
    }

    .question-title {
        display: block;
        margin-bottom: 24px;
        font-size: 1.28rem;
        line-height: 1.55;
        letter-spacing: -0.03em;
    }

    .question-title span {
        width: 42px;
        height: 42px;
        margin-bottom: 18px;
        border-radius: 16px;
        font-size: 1.04rem;
    }

    .likert {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .likert label {
        grid-template-columns: 42px minmax(78px, auto) 1fr;
        align-items: center;
        justify-items: start;
        min-height: auto;
        min-height: 58px;
        padding: 12px;
        border-radius: 18px;
        text-align: left;
    }

    .bubble {
        width: 38px;
        height: 38px;
    }

    .likert label strong {
        white-space: nowrap;
    }

    .likert label small {
        justify-self: end;
    }

    .submit-dock {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: calc(82px + env(safe-area-inset-bottom));
        z-index: 45;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px;
        border-radius: 22px;
        background: rgba(10, 12, 28, 0.88);
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.46);
        backdrop-filter: blur(22px);
    }

    body.quiz-started .submit-dock {
        bottom: calc(12px + env(safe-area-inset-bottom));
    }

    .submit-dock > div:first-child {
        display: none;
    }

    .submit-dock strong {
        display: block;
        overflow: hidden;
        font-size: 0.88rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .submit-dock p {
        display: none;
    }

    .wizard-controls {
        display: grid;
        grid-template-columns: 0.78fr 1fr;
        width: 100%;
        gap: 8px;
    }

    .wizard-controls .btn {
        width: 100%;
        min-height: 46px;
        font-weight: 800;
    }

    .wizard-controls #submitQuiz {
        grid-column: auto;
    }

    .result-hero {
        margin: 18px 0 14px;
        gap: 14px;
    }

    .result-card,
    .result-chart,
    .result-layout > .card,
    .report-card,
    .report-section,
    .action-report,
    .related .card,
    .source-list,
    .empty,
    .page-hero {
        padding: 20px;
        border-radius: 26px;
    }

    .result-card h1 {
        font-size: clamp(2.2rem, 12vw, 3.5rem);
    }

    .result-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin: 20px 0 0;
    }

    .result-actions .btn:first-child {
        grid-column: 1 / -1;
    }

    .result-chart {
        min-height: 300px;
    }

    .result-chart canvas {
        width: 100%;
        max-width: 320px;
        height: auto;
    }

    .dimension-card {
        padding: 16px;
    }

    .result-layout {
        gap: 14px;
    }

    .report-card,
    .report-grid,
    .action-report {
        margin: 14px 0;
    }

    .report-card h2 {
        font-size: 1.42rem;
        line-height: 1.3;
        letter-spacing: -0.04em;
    }

    .report-card p,
    .report-section ul,
    .action-report ol,
    .action-report blockquote {
        line-height: 1.78;
    }

    .report-grid {
        gap: 14px;
    }

    .report-section li + li,
    .action-report li + li {
        margin-top: 10px;
    }

    .action-report {
        gap: 14px;
    }

    .action-report blockquote {
        padding: 16px;
        border-radius: 20px;
    }

    .share-panel {
        grid-template-columns: 1fr;
        padding: 20px;
        border-radius: 26px;
    }

    .share-card-preview {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 12px;
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.05);
    }

    .share-card-preview img {
        width: 132px;
        max-width: 38vw;
        border-radius: 12px;
        box-shadow: none;
    }

    .share-card-preview figcaption {
        margin: 0;
        font-size: 0.78rem;
        line-height: 1.4;
    }

    .ad-card {
        min-height: 96px;
        padding: 16px;
        border-radius: 22px;
    }

    .share-link-row {
        grid-template-columns: 1fr;
    }

    .wechat-share-box img {
        width: 132px;
        height: 132px;
    }

    .score-row {
        grid-template-columns: 1fr 42px;
    }

    .score-track {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .integrity,
    .site-footer,
    .submit-dock {
        flex-direction: column;
        align-items: stretch;
    }

    .integrity,
    .page-hero {
        margin: 18px 0 28px;
    }

    .site-footer {
        padding-bottom: calc(42px + env(safe-area-inset-bottom));
        font-size: 0.9rem;
    }
}
