/* ============================================================
   Mastera - Style Quiz CSS (shared between landing + index)
   ============================================================ */

:root {
  --color-primary: #1C1C28;
  --color-accent: #C8A97E;
  --color-accent-light: #F1E8DC;
  --color-accent-dark: #A88B5E;
  --color-bg: #FAFAF7;
  --color-bg-alt: #F2F0EC;
  --color-white: #FFFFFF;
  --color-text: #1C1C28;
  --color-text-secondary: #6B6B7B;
  --color-text-tertiary: #9B9BAB;
  --color-border: #E5E5E5;
  --color-tag-bg: #F0EDE8;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --fs-xs:   13px;
  --fs-sm:   14px;
  --fs-base: 15px;
  --fs-md:   16px;
  --fs-lg:   18px;
}

/* ── Index Hero ── */
.idx-hero {
  background: linear-gradient(135deg, #1C1C28 0%, #2A2A3C 60%, #1C1C28 100%);
  border-radius: 16px;
  padding: 40px 40px 0;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.idx-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(200,169,126,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Top row: text left, CTA buttons right */
.idx-hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1;
  padding-bottom: 32px;
}
.idx-hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 18px;
}
.idx-hero-text h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.idx-hero-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.idx-hero-cta {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.idx-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 100px;
  white-space: nowrap;
  text-decoration: none;
}
.idx-btn-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.idx-hero-btn.active .idx-btn-arrow {
  transform: rotate(180deg);
}
.idx-hero-btn--light {
  background: #fff;
  color: #1C1C28;
  border-color: #fff;
}
.idx-hero-btn--light:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.idx-hero-btn--dark {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.idx-hero-btn--dark:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-1px);
}

/* Expandable section */
.idx-hero-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
  opacity: 0;
  position: relative;
  z-index: 1;
  padding: 0 0;
  border-top: 1px solid transparent;
}
.idx-hero-expand.open {
  max-height: 600px;
  opacity: 1;
  border-top-color: rgba(255,255,255,0.08);
  padding: 24px 0 40px;
}

/* Role selection cards */
.idx-hero-roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.idx-role-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  background: none;
  border: none;
  border-right: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: background 0.25s ease;
  font-family: inherit;
  text-align: left;
}
.idx-role-card:last-child {
  border-right: none;
}
.idx-role-card:hover {
  background: rgba(255,255,255,0.05);
}
.idx-role-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,169,126,0.15);
  border-radius: 12px;
  color: #C8A97E;
}
.idx-role-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.idx-role-text span {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* ── Demo Cards (inside hero) ── */
.idx-demo-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.idx-demo-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px 18px;
  text-align: center;
}
.idx-demo-card--accent {
  background: rgba(200,169,126,0.1);
  border-color: rgba(200,169,126,0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px;
}
.idx-demo-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}
.idx-demo-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.idx-demo-name span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}
.idx-demo-type {
  font-size: 17px;
  font-weight: 800;
  color: #C8A97E;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.idx-demo-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
/* Demo Mini Radar */
.idx-demo-radar {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: -4px 0;
}
.idx-mini-radar-svg {
  width: 100%;
  max-width: 260px;
  height: auto;
  overflow: visible;
}
.idx-mini-radar-data {
  animation: smRadarGrow 0.7s ease-out 0.3s both;
  transform-origin: 190px 190px;
}

.idx-demo-match {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.idx-demo-x {
  color: #C8A97E;
  margin: 0 4px;
  font-weight: 300;
}
.idx-demo-score {
  font-size: 48px;
  font-weight: 800;
  color: #C8A97E;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  line-height: 1;
}
.idx-demo-score-unit {
  font-size: 28px;
  font-weight: 700;
}
.idx-demo-score-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

/* Match breakdown bars */
.idx-match-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  text-align: left;
}
.idx-match-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.idx-match-bar-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  width: 72px;
  flex-shrink: 0;
  text-align: right;
}
.idx-match-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}
.idx-match-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #C8A97E, #D4B88E);
  border-radius: 4px;
  transition: width 0.8s ease-out;
}
.idx-match-bar-val {
  font-size: 12px;
  font-weight: 700;
  color: #C8A97E;
  width: 24px;
  flex-shrink: 0;
}
.idx-match-summary {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.idx-demo-footer {
  text-align: center;
  padding: 12px 0 8px;
}
.idx-demo-start {
  font-size: 14px !important;
  padding: 10px 24px !important;
}

@media (max-width: 768px) {
  .idx-demo-cards { grid-template-columns: 1fr; gap: 10px; }
  .idx-demo-card { padding: 16px 14px; }
}

/* Quiz area below hero */
.idx-quiz-area {
  margin-bottom: 28px;
}
.idx-quiz-area .sm-quiz-wrap {
  border-radius: 16px;
}

@media (max-width: 768px) {
  .idx-hero { padding: 32px 24px 0; border-radius: 12px; }
  .idx-hero-top { flex-direction: column; text-align: center; gap: 20px; padding-bottom: 24px; }
  .idx-hero-cta { width: 100%; justify-content: center; }
  .idx-hero-text p br { display: none; }
  .idx-role-card { padding: 20px 16px; gap: 12px; }
  .idx-role-text strong { font-size: 14px; }
  .idx-role-text span { font-size: 12px; }
}
@media (max-width: 480px) {
  .idx-hero { padding: 28px 20px 0; border-radius: 10px; }
  .idx-hero-btn { padding: 12px 22px; font-size: 14px; }
  .idx-hero-text h2 { font-size: 1.15rem; }
  .idx-hero-text p { font-size: 13px; }
  .idx-hero-roles { grid-template-columns: 1fr; }
  .idx-role-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .idx-role-card:last-child { border-bottom: none; }
  .idx-role-icon { width: 38px; height: 38px; border-radius: 10px; }
}

/* Quiz Wrapper */
.sm-quiz-wrap {
  margin: 0 auto;
  background: linear-gradient(145deg, #C8A97E 0%, #B8956A 40%, #C8A97E 70%, #D4B88E 100%);
  padding: 40px 40px;
  border-radius: 16px;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.sm-quiz-wrap.quiz-active {
  padding: 48px 40px;
}
.sm-quiz-wrap.quiz-active > .sm-state.active {
  max-width: 560px;
  margin: 0 auto;
}

/* Quiz Nav Header */
.sm-quiz-nav {
  display: none;
  align-items: center;
  justify-content: space-between;
  max-width: 560px;
  margin: 0 auto 20px;
}
.sm-quiz-nav.active { display: flex; }
.sm-back-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  font-size: var(--fs-sm);
  font-weight: 600;
  font-family: inherit;
  padding: 8px 18px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.sm-back-btn:hover {
  background: var(--color-primary);
  color: var(--color-accent);
}
.sm-back-btn svg { flex-shrink: 0; }
.sm-role-label {
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  padding: 6px 16px;
  border: 1.5px solid var(--color-primary);
}
.sm-quiz-heading {
  text-align: center;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-primary);
}

/* Role Cards */
.sm-role-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
.sm-role-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 40px 28px 36px;
  background: rgba(255,255,255,0.45);
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.sm-role-card:hover {
  background: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.8);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.sm-role-icon {
  padding: 8px 20px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  text-transform: uppercase;
}
.sm-role-card strong {
  font-size: var(--fs-lg);
  color: var(--color-primary);
}
.sm-role-card span {
  font-size: var(--fs-base);
  color: rgba(28,28,40,0.55);
  line-height: 1.6;
  margin-top: 2px;
}

/* Quiz States */
.sm-state { display: none; }
.sm-state.active { display: block; animation: smStateIn 0.45s cubic-bezier(0.4,0,0.2,1) both; }
@keyframes smStateIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Role card exit animation */
#smRole { transition: opacity 0.3s ease, transform 0.3s ease; }
#smRole.exit { opacity: 0; transform: translateY(-12px); }

.sm-state-text {
  text-align: center;
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--color-primary);
  animation: smPulse 1.2s ease infinite;
}
.sm-state-sub {
  text-align: center;
  margin-top: 8px;
  font-size: var(--fs-base);
  color: rgba(28,28,40,0.55);
}
@keyframes smPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
#smLoading, #smCalc, #smError {
  padding: 60px 20px;
  text-align: center;
}
#smError .btn { margin-top: 20px; color: var(--color-primary); border-color: rgba(28,28,40,0.25); }
#smError .btn:hover { border-color: var(--color-primary); background: rgba(255,255,255,0.3); }

/* Progress */
.sm-progress {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.sm-progress-bar {
  flex: 1;
  height: 5px;
  background: rgba(28,28,40,0.12);
  overflow: hidden;
}
.sm-progress-fill {
  height: 100%;
  background: var(--color-primary);
  transition: width 0.35s ease;
  width: 0;
}
.sm-progress-text {
  flex-shrink: 0;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: rgba(28,28,40,0.5);
  min-width: 48px;
  text-align: right;
}

/* Question Slide */
.sm-slide {
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.sm-slide.fade-out { opacity: 0; transform: translateX(-16px); }
.sm-slide.fade-in { opacity: 0; transform: translateX(16px); }
.sm-q-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-accent);
  font-size: var(--fs-sm);
  font-weight: 800;
  margin-bottom: 10px;
}
.sm-q-text {
  margin: 0 0 18px;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-primary);
}
.sm-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.sm-option {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.45);
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-md);
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--color-primary);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  text-align: left;
  line-height: 1.5;
}
.sm-option:hover {
  background: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.8);
  color: var(--color-primary);
}
.sm-option:active { transform: scale(0.98); }
.sm-option.selected {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
}

/* Result */
.sm-result-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 32px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(16px);
  animation: smFadeIn 0.5s ease 0.1s forwards;
  max-width: 560px;
  margin: 0 auto;
}
@keyframes smFadeIn {
  to { opacity: 1; transform: translateY(0); }
}
.sm-result-header {
  text-align: center;
  margin-bottom: 20px;
}
.sm-result-badge {
  display: inline-flex;
  padding: 5px 14px;
  background: var(--color-tag-bg);
  color: var(--color-accent-dark);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sm-result-title {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--color-text);
}
.sm-result-desc {
  margin: 0 auto;
  max-width: 480px;
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: var(--color-text-secondary);
}
.sm-result-body {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}
.sm-result-chart {
  display: flex;
  justify-content: center;
  padding: 12px 0 20px;
  margin-bottom: 20px;
}
.sm-radar-svg {
  width: 100%;
  max-width: 340px;
  height: auto;
}
.sm-radar-data {
  animation: smRadarGrow 0.7s ease-out 0.3s both;
  transform-origin: 220px 220px;
}
.sm-radar-dot {
  opacity: 0;
  animation: smRadarDotIn 0.3s ease 0.8s forwards;
}
@keyframes smRadarGrow {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@keyframes smRadarDotIn { to { opacity: 1; } }
.sm-radar-label {
  font-size: 14px;
  font-weight: 700;
  fill: #1C2340;
  font-family: inherit;
}
.sm-radar-value {
  font-size: 13px;
  font-weight: 600;
  fill: #6B7094;
  font-family: inherit;
}
.sm-result-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  background: #1C2340;
  padding: 24px 24px;
  color: #fff;
  border-radius: var(--radius-md);
}
.sm-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.sm-tag {
  display: inline-flex;
  padding: 8px 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}
.sm-strengths {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  width: 100%;
}
.sm-strengths strong {
  color: var(--color-accent);
  font-weight: 700;
  margin-right: 8px;
}
.sm-result-match {
  font-size: var(--fs-base);
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.sm-result-match strong {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: var(--fs-lg);
  margin-top: 6px;
  letter-spacing: 0.01em;
}
.sm-result-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.sm-result-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: var(--fs-md);
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.sm-result-actions .btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.sm-result-actions .btn-primary:hover {
  opacity: 0.85;
}
.sm-result-actions .btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
}
.sm-result-actions .btn-outline:hover {
  border-color: var(--color-primary);
}

/* Responsive */
@media (max-width: 768px) {
  .sm-quiz-wrap { padding: 48px 24px; }
  .sm-quiz-wrap.quiz-active { padding: 64px 24px; }
  .sm-role-cards {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 20px auto 0;
  }
  .sm-options { grid-template-columns: 1fr; }
  .sm-option { min-height: 60px; font-size: var(--fs-sm); }
  .sm-q-text { font-size: 1.2rem; }
  .sm-result-card { padding: 28px 18px; }
  .sm-result-header { margin-bottom: 20px; }
  .sm-result-badge { padding: 5px 12px; font-size: var(--fs-xs); margin-bottom: 10px; }
  .sm-result-title { font-size: 1.5rem; margin-bottom: 10px; }
  .sm-result-desc { font-size: var(--fs-sm); line-height: 1.65; }
  .sm-result-chart { padding: 8px 0 16px; margin-bottom: 16px; }
  .sm-radar-svg { max-width: 300px; }
  .sm-result-body { margin-bottom: 20px; padding-bottom: 0; border-bottom: none; }
  .sm-result-detail { padding: 24px 18px; }
  .sm-tags { gap: 8px; margin-bottom: 16px; }
  .sm-tag { padding: 8px 14px; font-size: var(--fs-sm); }
  .sm-strengths { font-size: var(--fs-sm); margin-bottom: 14px; padding-bottom: 14px; }
  .sm-result-match { font-size: var(--fs-sm); }
  .sm-result-match strong { font-size: var(--fs-base); }
  .sm-result-actions { flex-direction: column; align-items: center; gap: 10px; margin-top: 4px; }
  .sm-result-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
}

@media (max-width: 480px) {
  .sm-quiz-wrap { padding: 40px 18px; }
  .sm-quiz-wrap.quiz-active { padding: 52px 18px; }
  .sm-q-text { font-size: 1.1rem; }
  .sm-option { min-height: 56px; padding: 14px 16px; font-size: var(--fs-sm); }

  .sm-result-card { padding: 20px 14px; }
  .sm-result-header { margin-bottom: 14px; }
  .sm-result-title { font-size: 1.3rem; margin-bottom: 8px; }
  .sm-result-desc { font-size: var(--fs-xs); line-height: 1.6; }
  .sm-result-chart { padding: 4px 0 10px; margin-bottom: 10px; }
  .sm-radar-svg { max-width: 260px; }
  .sm-result-detail { padding: 18px 14px; }
  .sm-tags { gap: 6px; margin-bottom: 12px; }
  .sm-tag { padding: 6px 12px; font-size: var(--fs-xs); }
  .sm-strengths { font-size: var(--fs-xs); margin-bottom: 10px; padding-bottom: 10px; }
  .sm-result-match { font-size: var(--fs-xs); }
  .sm-result-match strong { font-size: var(--fs-sm); }
  .sm-result-actions .btn { font-size: var(--fs-sm); padding: 12px 20px; }
}
