* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #fafdfa; font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif; line-height: 1.5; color: #1e2f1e; min-height: 100vh; display: flex; flex-direction: column; }
:root { --primary: #5ca05c; --primary-light: #a5d296; --bg-white: #ffffff; --gray-soft: #f5f8f5; --border-light: #e2f0da; --text-secondary: #4a674a; }
.container { max-width: 780px; margin: 0 auto; padding: 20px 20px 32px; width: 100%; flex: 1; }
.brand { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border-light); }
.brand h1 { font-weight: 450; font-size: 1.8rem; letter-spacing: -0.3px; color: #1e3a1e; }
.brand h1 span { color: var(--primary); font-weight: 550; }
.official-link { color: #3a5e3a; text-decoration: none; font-size: 0.9rem; background: var(--gray-soft); padding: 6px 14px; border-radius: 40px; border: 1px solid var(--border-light); }
.card { background: var(--bg-white); border-radius: 32px; padding: 32px 24px; box-shadow: 0 8px 24px rgba(92,160,92,0.06); border: 1px solid #d9ebd3; margin-bottom: 24px; }
.view { display: none; } .view.active { display: block; }
.intro-title { font-size: 2.1rem; font-weight: 480; text-align: center; color: #1e3a1e; margin-bottom: 12px; }
.intro-sub { text-align: center; color: var(--text-secondary); margin-bottom: 32px; }
.btn { background: var(--primary); color: white; border: none; padding: 16px 26px; font-size: 1.15rem; font-weight: 500; border-radius: 48px; cursor: pointer; width: 100%; transition: 0.2s; box-shadow: 0 4px 12px rgba(92,160,92,0.2); border: 1px solid #4b8b4b; }
.btn-secondary { background: transparent; color: #2b532b; box-shadow: none; border: 1.5px solid var(--primary); margin-top: 12px; background: white; }
.progress-area { margin-bottom: 32px; }
.progress-text { display: flex; justify-content: space-between; margin-bottom: 10px; color: var(--text-secondary); }
.progress-bar-bg { height: 6px; background: #e2f0da; border-radius: 20px; }
.progress-fill { height: 6px; background: var(--primary); width: 0%; border-radius: 20px; }
.question-text { font-size: 1.5rem; font-weight: 480; margin-bottom: 32px; }
.options { display: flex; flex-direction: column; gap: 14px; }
.option-btn { background: #f9fff9; border: 1.5px solid #d0e6c8; border-radius: 28px; padding: 20px 22px; font-size: 1.1rem; text-align: left; cursor: pointer; transition: 0.15s; }
.option-btn.selected { background: #e1f2db; border-color: var(--primary); }
.nav-buttons { display: flex; margin-top: 36px; gap: 12px; }
.result-card { background: white; border-radius: 28px; padding: 24px 22px; border: 1px solid #d9ebd3; }
.type-header { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
.type-badge { background: var(--primary); color: white; font-weight: 550; padding: 8px 26px; border-radius: 40px; font-size: 2.2rem; letter-spacing: 3px; }
.type-name { font-size: 1.8rem; font-weight: 480; }
.type-desc { margin: 16px 0 12px; }
.dimension-section { margin: 28px 0 20px; }
.dimension-title { font-weight: 550; margin-bottom: 20px; font-size: 1.15rem; }
.dim-item { margin-bottom: 18px; }
.dim-meta { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 0.95rem; }
.bar-container { display: flex; align-items: center; gap: 10px; }
.bar-bg { flex: 1; height: 10px; background: #e2f0da; border-radius: 20px; display: flex; overflow: hidden; }
.bar-fill-left { height: 10px; background: var(--primary); }
.bar-fill-right { height: 10px; background: var(--primary-light); }
.insight-box { background: #f7fcf5; padding: 20px; border-radius: 24px; margin: 24px 0 12px; border: 1px solid #d0e6c8; }
.result-footer-link { margin-top: 18px; text-align: center; color: #3a663a; border-top: 1px dashed #a5d296; padding-top: 16px; }
.disclaimer { margin-top: 24px; font-size: 0.8rem; color: #5f7a5f; background: #f9fff9; padding: 16px; border-radius: 22px; border-left: 4px solid var(--primary-light); }
.footer { margin-top: 36px; text-align: center; font-size: 0.8rem; color: #6a7e6a; border-top: 1px dashed var(--primary-light); padding-top: 22px; }