/* =====================================================
   MindType Pro — 全局样式
   参考：16Personalities.com 高端设计风格
   ===================================================== */

:root {
  --dark: #1a2e44;
  --dark-2: #0f1d2e;
  --gold: #f0c060;
  --gold-lt: #f7e0a0;
  --ivory: #f7f5f2;
  --text: #2c3e50;
  --text-muted: #7f8c8d;
  --text-light: #b0c4d8;
  --surface: #ffffff;
  --border: #e8ecf0;
  --accent: #3498db;
  --green: #27ae60;
  --radius: 12px;
  --radius-lg: 20px;
  --shd: 0 4px 24px rgba(26,46,68,.08);
  --shd-lg: 0 12px 48px rgba(26,46,68,.14);
  --f-serif: 'Playfair Display', 'Noto Serif SC', Georgia, serif;
  --f-sans: 'Inter', 'Noto Sans SC', -apple-system, sans-serif;
  --ease: .35s cubic-bezier(.4,0,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-sans);
  color: var(--text);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--gold-lt); color: var(--dark); }

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--text-muted); border-radius: 3px; }

/* ===================== LAYOUT ===================== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }

/* ===================== NAV ===================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 2rem;
  transition: background var(--ease), box-shadow var(--ease);
}
.nav.scrolled { background: rgba(26,46,68,.95); backdrop-filter: blur(12px); box-shadow: var(--shd); }
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { font-family: var(--f-serif); font-size: 1.4rem; font-weight: 700; color: white; text-decoration: none; }
.nav-logo em { color: var(--gold); font-style: normal; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: var(--text-light); text-decoration: none; font-size: .9rem; transition: color var(--ease); }
.nav-links a:hover { color: white; }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, #0f1d2e 0%, #1a2e44 50%, #1e3a5f 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 8rem 2rem 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(240,192,96,.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(52,152,219,.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(240,192,96,.12); border: 1px solid rgba(240,192,96,.25);
  color: var(--gold); padding: .4rem 1.2rem; border-radius: 999px;
  font-size: .8rem; font-weight: 500; letter-spacing: .08em;
  margin-bottom: 2rem; animation: fadeUp .7s ease both;
}
.hero-title {
  font-family: var(--f-serif); font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 900; color: white; letter-spacing: -.03em; line-height: 1.05;
  margin-bottom: 1.5rem; animation: fadeUp .8s .1s ease both;
}
.hero-title em { font-style: normal; color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-light);
  max-width: 580px; margin: 0 auto 2.5rem;
  line-height: 1.7; animation: fadeUp .8s .2s ease both;
}
.hero-type-grid {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: .5rem;
  max-width: 640px; margin: 0 auto 2.5rem; animation: fadeUp .8s .3s ease both;
}
.hero-type-chip {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: .5rem .2rem; font-size: .7rem; font-weight: 700;
  color: rgba(255,255,255,.7); cursor: default; transition: var(--ease);
}
.hero-type-chip:hover { background: rgba(240,192,96,.15); border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.hero-type-chip .d { color: rgba(255,255,255,.4); font-weight: 400; display: block; font-size: .6rem; margin-top: 2px; }
.hero-actions { display: flex; gap: 1rem; align-items: center; justify-content: center; flex-wrap: wrap; animation: fadeUp .8s .4s ease both; }
.btn-primary {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--gold); color: var(--dark); font-weight: 700;
  padding: 1rem 2.5rem; border-radius: 999px; font-size: 1rem;
  font-family: var(--f-sans); border: none; cursor: pointer;
  transition: var(--ease); text-decoration: none; letter-spacing: .02em;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(240,192,96,.35); }
.btn-primary:active { transform: translateY(-1px); }
.btn-ghost-white {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: rgba(255,255,255,.7);
  padding: .8rem 1.5rem; border-radius: 999px; font-size: .9rem;
  font-family: var(--f-sans); border: 1.5px solid rgba(255,255,255,.2);
  cursor: pointer; transition: var(--ease); text-decoration: none;
}
.btn-ghost-white:hover { border-color: rgba(255,255,255,.5); color: white; }
.hero-stats { display: flex; gap: 3rem; justify-content: center; margin-top: 3rem; animation: fadeUp .8s .5s ease both; }
.hero-stat { text-align: center; }
.hero-stat-num { font-family: var(--f-serif); font-size: 2rem; font-weight: 700; color: var(--gold); }
.hero-stat-label { font-size: .8rem; color: var(--text-light); margin-top: .2rem; }

/* ===================== HOW IT WORKS ===================== */
.how { background: var(--surface); }
.section-eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.section-title { font-family: var(--f-serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--dark); letter-spacing: -.02em; margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 500px; line-height: 1.7; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.step-card { background: var(--ivory); border-radius: var(--radius-lg); padding: 2rem; position: relative; transition: var(--ease); }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shd-lg); }
.step-num {
  font-family: var(--f-serif); font-size: 4rem; font-weight: 900;
  color: rgba(26,46,68,.06); position: absolute; top: .5rem; right: 1.5rem; line-height: 1;
}
.step-icon { width: 52px; height: 52px; background: var(--dark); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.2rem; }
.step-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.step-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* ===================== FEATURES ===================== */
.features { background: var(--dark); color: white; }
.features .section-title { color: white; }
.features .section-sub { color: var(--text-light); }
.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
.feat-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: var(--ease); cursor: default;
}
.feat-card:hover { background: rgba(255,255,255,.08); border-color: rgba(240,192,96,.2); }
.feat-icon { font-size: 2rem; margin-bottom: 1rem; }
.feat-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.feat-card p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ===================== PRICING ===================== */
.pricing { background: var(--ivory); }
.price-card {
  max-width: 480px; margin: 3rem auto 0; background: var(--surface);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shd-lg);
}
.price-card-header { background: var(--dark); padding: 2.5rem; text-align: center; }
.price-card-header h3 { font-family: var(--f-serif); font-size: 1.5rem; color: white; margin-bottom: .5rem; }
.price-amount { font-family: var(--f-serif); font-size: 3.5rem; font-weight: 900; color: var(--gold); }
.price-amount small { font-size: 1rem; color: var(--text-light); font-weight: 400; }
.price-tagline { font-size: .85rem; color: var(--text-light); margin-top: .3rem; }
.price-card-body { padding: 2rem; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: .8rem; margin-bottom: 1.5rem; }
.price-features li { display: flex; align-items: center; gap: .75rem; font-size: .92rem; color: var(--text); }
.price-check { width: 22px; height: 22px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: .7rem; flex-shrink: 0; }
.btn-price {
  width: 100%; background: var(--gold); color: var(--dark); font-weight: 700;
  padding: 1rem; border-radius: 999px; font-size: 1rem;
  font-family: var(--f-sans); border: none; cursor: pointer;
  transition: var(--ease); text-decoration: none; text-align: center; display: block;
}
.btn-price:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,192,96,.3); }

/* ===================== PERSONALITY TYPES ===================== */
.types-section { background: var(--surface); }
.types-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem; }
.type-card {
  border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.2rem;
  cursor: default; transition: var(--ease); background: var(--ivory);
}
.type-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shd); }
.type-code { font-family: var(--f-serif); font-size: 1.4rem; font-weight: 900; color: var(--dark); }
.type-name { font-size: .8rem; color: var(--gold); font-weight: 600; margin-top: .2rem; }
.type-desc { font-size: .75rem; color: var(--text-muted); margin-top: .5rem; line-height: 1.5; }

/* ===================== FOOTER ===================== */
.footer { background: var(--dark-2); padding: 3rem 0; text-align: center; }
.footer-logo { font-family: var(--f-serif); font-size: 1.2rem; color: white; margin-bottom: .5rem; }
.footer-logo em { color: var(--gold); font-style: normal; }
.footer p { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer a:hover { color: var(--gold); }

/* ===================== CTA BANNER ===================== */
.cta-banner { background: linear-gradient(135deg, var(--dark) 0%, #1e4a7a 100%); padding: 5rem 2rem; text-align: center; }
.cta-banner h2 { font-family: var(--f-serif); font-size: clamp(2rem, 4vw, 3rem); color: white; font-weight: 700; margin-bottom: 1rem; }
.cta-banner p { color: var(--text-light); font-size: 1.05rem; margin-bottom: 2rem; }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0%, 100% { opacity: .4; } 50% { opacity: 1; } }

.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .hero-type-grid { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 1.5rem; }
  .nav-links { display: none; }
}

/* =====================================================
   QUIZ PAGE
   ===================================================== */
.quiz-page { background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%); min-height: 100vh; padding-top: 70px; }
.quiz-container { max-width: 680px; margin: 0 auto; padding: 2rem; }
.quiz-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.quiz-logo { font-family: var(--f-serif); font-size: 1.2rem; color: white; font-weight: 700; }
.quiz-logo em { color: var(--gold); font-style: normal; }
.quiz-step-label { font-size: .8rem; color: var(--text-light); font-weight: 500; }
.prog-wrap { margin-bottom: 2rem; }
.prog-bar { height: 6px; background: rgba(255,255,255,.1); border-radius: 999px; overflow: hidden; }
.prog-fill { height: 100%; background: linear-gradient(90deg, var(--gold), #f5d78e); border-radius: 999px; transition: width .6s cubic-bezier(.4,0,.2,1); }
.prog-label { display: flex; justify-content: space-between; font-size: .78rem; color: var(--text-light); margin-top: .5rem; font-weight: 500; }
.q-card { background: var(--surface); border-radius: var(--radius-lg); padding: 2.5rem 2rem; box-shadow: var(--shd-lg); animation: fadeUp .4s ease both; }
.q-tag { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.q-tag::before { content: ''; display: inline-block; width: 16px; height: 2px; background: var(--gold); }
.q-text { font-family: var(--f-serif); font-size: 1.25rem; font-weight: 700; line-height: 1.5; color: var(--dark); margin-bottom: 1.5rem; }
.opts { display: flex; flex-direction: column; gap: .7rem; }
.opt { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 1.25rem; border: 2px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: var(--ease); background: var(--ivory); text-align: left; font-family: var(--f-sans); font-size: .95rem; color: var(--text); width: 100%; }
.opt:hover { border-color: var(--gold); background: rgba(240,192,96,.05); transform: translateX(4px); }
.opt.sel { border-color: var(--gold); background: rgba(240,192,96,.1); }
.opt-num { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; color: var(--text-muted); flex-shrink: 0; margin-top: 1px; transition: var(--ease); }
.opt.sel .opt-num { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.opt:hover .opt-num { border-color: var(--gold); color: var(--gold); }
.quiz-ftr { display: flex; justify-content: space-between; align-items: center; margin-top: 1.5rem; }
.btn-back { background: transparent; border: none; color: var(--text-light); cursor: pointer; font-family: var(--f-sans); font-size: .9rem; display: flex; align-items: center; gap: .4rem; padding: .5rem; border-radius: 8px; transition: var(--ease); }
.btn-back:hover { color: white; background: rgba(255,255,255,.05); }
.btn-next { display: inline-flex; align-items: center; gap: .5rem; background: var(--gold); color: var(--dark); font-weight: 700; padding: .75rem 1.8rem; border-radius: 999px; font-size: .95rem; font-family: var(--f-sans); border: none; cursor: pointer; transition: var(--ease); opacity: .3; pointer-events: none; }
.btn-next.on { opacity: 1; pointer-events: all; }
.btn-next.on:hover { background: var(--gold-lt); transform: translateX(2px); }

/* =====================================================
   RESULT PAGE
   ===================================================== */
.result-page { background: var(--dark); min-height: 100vh; padding-top: 70px; }
.result-container { max-width: 700px; margin: 0 auto; padding: 2rem; }
.res-hero { text-align: center; padding: 3rem 0 2rem; animation: fadeUp .6s ease both; }
.res-type-code { font-family: var(--f-serif); font-size: 6rem; font-weight: 900; color: var(--gold); line-height: 1; }
.res-type-name { font-size: 1.4rem; font-weight: 700; color: white; margin-top: .5rem; }
.res-type-role { font-size: .9rem; color: var(--text-light); margin-top: .3rem; }
.res-dims { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 2rem 0; }
.dim-card { background: rgba(255,255,255,.05); border-radius: var(--radius); padding: 1.2rem; }
.dim-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: .8rem; }
.dim-label { font-size: .8rem; color: rgba(255,255,255,.6); font-weight: 500; }
.dim-val { font-size: .8rem; font-weight: 700; color: var(--gold); }
.dim-bar-wrap { display: flex; align-items: center; gap: .5rem; }
.dim-bar { flex: 1; height: 8px; background: rgba(255,255,255,.1); border-radius: 999px; overflow: hidden; }
.dim-bar-fill { height: 100%; border-radius: 999px; transition: width 1.2s cubic-bezier(.4,0,.2,1); }
.dim-p { font-size: .68rem; color: rgba(255,255,255,.4); width: 18px; text-align: center; }
.res-desc-box { background: rgba(255,255,255,.06); border-radius: var(--radius-lg); padding: 2rem; margin: 1.5rem 0; animation: fadeUp .7s .1s ease both; }
.res-desc-box p { color: rgba(255,255,255,.75); font-size: .95rem; line-height: 1.8; text-align: center; }
.res-cta-card {
  background: linear-gradient(135deg, rgba(240,192,96,.1) 0%, rgba(240,192,96,.05) 100%);
  border: 1.5px solid rgba(240,192,96,.25); border-radius: var(--radius-lg);
  padding: 2rem; text-align: center; margin: 2rem 0; animation: fadeUp .7s .2s ease both;
}
.res-cta-card h3 { font-family: var(--f-serif); font-size: 1.3rem; color: white; margin-bottom: .5rem; }
.res-cta-card p { color: var(--text-light); font-size: .88rem; margin-bottom: 1.5rem; }

/* =====================================================
   PAYMENT PAGE
   ===================================================== */
.pay-page { background: var(--ivory); min-height: 100vh; padding-top: 70px; }
.pay-container { max-width: 500px; margin: 0 auto; padding: 3rem 2rem; text-align: center; }
.pay-card { background: var(--surface); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shd-lg); }
.pay-type { font-family: var(--f-serif); font-size: 3rem; font-weight: 900; color: var(--dark); }
.pay-name { font-size: 1rem; color: var(--gold); font-weight: 600; margin-top: .3rem; }
.pay-divider { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }
.pay-amount { font-size: 1rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.pay-amount strong { font-size: 1.8rem; color: var(--dark); font-weight: 700; }
.pay-qr { background: var(--ivory); border-radius: var(--radius); padding: 1rem; margin: 1.5rem 0; }
.pay-qr img { max-width: 200px; display: block; margin: 0 auto; }
.pay-tip { font-size: .8rem; color: var(--text-muted); margin-top: .5rem; }
.btn-wechat { width: 100%; background: #07c160; color: white; font-weight: 700; padding: .9rem; border-radius: 999px; font-size: 1rem; font-family: var(--f-sans); border: none; cursor: pointer; transition: var(--ease); margin-top: 1rem; }
.btn-wechat:hover { background: #06a855; transform: translateY(-2px); }
.pay-status { margin-top: 1rem; font-size: .85rem; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: .5rem; }
.pay-dot { width: 8px; height: 8px; border-radius: 50%; background: #f39c12; animation: pulse 1.5s ease infinite; }
.pay-dot.done { background: var(--green); animation: none; }

/* =====================================================
   LOGIN PAGE
   ===================================================== */
.login-page { background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%); min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.login-card { background: var(--surface); border-radius: var(--radius-lg); padding: 3rem; max-width: 400px; width: 100%; box-shadow: var(--shd-lg); text-align: center; }
.login-logo { font-family: var(--f-serif); font-size: 1.6rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.login-logo em { color: var(--gold); font-style: normal; }
.login-sub { font-size: .88rem; color: var(--text-muted); margin-bottom: 2rem; }
.btn-wechat-login { width: 100%; background: #07c160; color: white; font-weight: 700; padding: 1rem; border-radius: 999px; font-size: 1rem; font-family: var(--f-sans); border: none; cursor: pointer; transition: var(--ease); display: flex; align-items: center; justify-content: center; gap: .6rem; }
.btn-wechat-login:hover { background: #06a855; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(7,193,96,.3); }
.login-tips { margin-top: 1.5rem; font-size: .78rem; color: var(--text-muted); line-height: 1.6; }

/* =====================================================
   FULL REPORT PAGE
   ===================================================== */
.report-page { background: var(--ivory); min-height: 100vh; }
.report-nav { background: var(--dark); padding: 1rem 0; position: sticky; top: 0; z-index: 50; }
.report-nav-inner { max-width: 900px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; }
.report-nav-logo { font-family: var(--f-serif); color: white; font-weight: 700; font-size: 1.2rem; }
.report-nav-logo em { color: var(--gold); font-style: normal; }
.btn-download { display: inline-flex; align-items: center; gap: .5rem; background: var(--gold); color: var(--dark); font-weight: 700; padding: .6rem 1.4rem; border-radius: 999px; font-size: .88rem; font-family: var(--f-sans); border: none; cursor: pointer; text-decoration: none; transition: var(--ease); }
.btn-download:hover { background: var(--gold-lt); transform: translateY(-2px); }
.report-body { max-width: 900px; margin: 0 auto; padding: 3rem 2rem; }
.report-hero { text-align: center; padding: 3rem 0; }
.report-type { font-family: var(--f-serif); font-size: 5rem; font-weight: 900; color: var(--dark); }
.report-type-name { font-size: 1.3rem; color: var(--gold); font-weight: 700; margin-top: .3rem; }
.report-type-role { font-size: .9rem; color: var(--text-muted); }
.report-desc { max-width: 640px; margin: 2rem auto 0; font-size: 1rem; color: var(--text); line-height: 1.8; background: var(--surface); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shd); }
.report-section { margin: 3rem 0; }
.report-section-title { font-family: var(--f-serif); font-size: 1.6rem; font-weight: 700; color: var(--dark); margin-bottom: 1.2rem; padding-bottom: .8rem; border-bottom: 2px solid var(--border); }
.dim-section { background: var(--surface); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shd); margin-bottom: 1.5rem; }
.dim-section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.dim-section-label { font-weight: 700; font-size: 1rem; color: var(--dark); }
.dim-section-score { font-weight: 700; font-size: .95rem; }
.report-list { display: flex; flex-direction: column; gap: .6rem; }
.report-list-item { display: flex; align-items: flex-start; gap: .75rem; padding: .8rem; background: var(--ivory); border-radius: var(--radius); }
.report-list-icon { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .7rem; color: white; flex-shrink: 0; margin-top: 1px; }
.report-list-text { font-size: .92rem; color: var(--text); line-height: 1.6; }
.report-text-box { background: var(--surface); border-radius: var(--radius); padding: 1.5rem; font-size: .95rem; color: var(--text); line-height: 1.8; box-shadow: var(--shd); }
.careers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.career-tag { background: var(--dark); color: white; padding: .6rem 1rem; border-radius: 999px; font-size: .85rem; font-weight: 500; text-align: center; }
