/* ═══════════════════════════════════════════
   MIN KOLLEGA · KARRIEREPROFIL
   Design system v3 · Premium career guidance
═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Design tokens ── */
:root {
  /* Brand */
  --primary:       #06564B;
  --primary-dark:  #044038;
  --primary-mid:   #2D7A6E;
  --primary-pale:  #EAF3F1;

  /* Neutrals */
  --dark:          #323830;
  --dark-mid:      #4B5048;
  --muted:         #7A7F77;
  --faint:         #A8ACA4;

  /* Palette */
  --light-green:   #C9E2C8;
  --mid-green:     #8AB5AF;
  --light-blue:    #DAE9FB;

  /* Surfaces */
  --bg:            #EFEDE8;
  --bg-warm:       #F5F3EF;
  --card:          #FFFFFF;
  --border:        #E3E0D9;
  --border-light:  #ECE9E3;

  /* Semantic text */
  --text:          #323830;
  --text-mid:      #4B5048;
  --text-muted:    #7A7F77;
  --text-faint:    #A8ACA4;

  /* Radii */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-xl:   28px;

  /* Shadows — deliberately subtle */
  --shadow-xs: 0 1px 2px rgba(50,56,48,.04);
  --shadow-sm: 0 1px 4px rgba(50,56,48,.05), 0 4px 16px rgba(50,56,48,.06);
  --shadow-md: 0 2px 8px rgba(50,56,48,.05), 0 12px 36px rgba(50,56,48,.08);

  /* Typography */
  --serif: 'Instrument Serif', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing scale */
  --space-xs:  8px;
  --space-sm:  12px;
  --space-md:  20px;
  --space-lg:  32px;
  --space-xl:  48px;
  --space-2xl: 64px;
}

/* ── Base ── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

/* ── Screens ── */
.screen {
  display: none;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.screen.active { display: flex; flex-direction: column; }

/* ── Logo mark ── */
.logo { display: flex; align-items: center; gap: 10px; }

.logo-mark {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--primary);
  color: #fff;
  font-family: var(--sans);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .2px;
  flex-shrink: 0;
}
.logo-mark.small { width: 28px; height: 28px; font-size: 9.5px; border-radius: 7px; }

.logo-text {
  font-family: var(--sans);
  font-size: 15px; font-weight: 600;
  color: var(--dark);
  letter-spacing: -.1px;
}

/* ── Shared: decorative brand circles ── */
/* Slightly larger and more present than before – still subtle */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  pointer-events: none;
  z-index: 0;
}
.deco-tl {
  width: 580px; height: 580px;
  top: -280px; left: -180px;
  opacity: .065;
}
.deco-br {
  width: 460px; height: 460px;
  bottom: -200px; right: -140px;
  opacity: .05;
}


/* ═══════════════════════════════════════════════
   WELCOME SCREEN
   Compact hero – premium but not oversized
═══════════════════════════════════════════════ */
#screen-welcome {
  background: var(--bg);
  align-items: center;
  justify-content: center;
  padding: 44px 20px;
  min-height: 100vh;
}

.welcome-inner {
  position: relative; z-index: 1;
  width: 100%; max-width: 460px;
  display: flex; flex-direction: column;
  align-items: center;
}

.welcome-inner .logo { margin-bottom: 28px; }

.welcome-content {
  width: 100%;
  background: var(--card);
  border-radius: var(--r-xl);
  padding: 40px 40px 32px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

/* Eyebrow */
.welcome-eyebrow {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

/* Hero heading — strong but compact */
.welcome-title {
  font-family: var(--serif);
  font-size: 32px; font-weight: 400;
  line-height: 1.16;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -.3px;
}
.welcome-title em {
  font-style: italic;
  color: var(--primary);
}

/* Descriptor */
.welcome-desc {
  font-size: 14px; font-weight: 400;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 340px;
  margin-left: auto; margin-right: auto;
}

/* Feature list — check-icon rows */
.welcome-list {
  list-style: none;
  text-align: left;
  margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.welcome-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 400;
  color: var(--text-mid);
  line-height: 1.45;
}
.check-icon {
  display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--light-green);
  color: var(--primary);
  flex-shrink: 0;
}

/* CTA — premium, auto-width, centered */
.cta-row {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}
.btn-hero {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: var(--r-md);
  font-family: var(--sans);
  font-size: 14.5px; font-weight: 600;
  cursor: pointer;
  letter-spacing: .05px;
  transition: background .15s, transform .15s, box-shadow .15s;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}
.btn-hero:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(6,86,75,.22);
}
.btn-hero:active { transform: translateY(0); box-shadow: none; }

.btn-arrow {
  display: flex; align-items: center;
  transition: transform .15s;
}
.btn-hero:hover .btn-arrow { transform: translateX(3px); }

/* Footnote */
.welcome-note {
  margin-top: 18px;
  font-size: 11px; color: var(--text-faint);
  letter-spacing: .15px;
}


/* ═══════════════════════════════════════════════
   QUIZ SCREEN
   This is the core experience — make it spacious
═══════════════════════════════════════════════ */
#screen-quiz { background: var(--bg); }

/* Razor-thin progress at very top */
.quiz-progress-bar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; background: var(--border);
  z-index: 100;
}
.quiz-progress-fill {
  height: 100%;
  background: var(--primary);
  transition: width .5s cubic-bezier(.4,0,.2,1);
  width: 0%;
}

/* Header bar */
.quiz-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px 0;
  max-width: 600px; margin: 0 auto; width: 100%;
}
.quiz-counter {
  font-size: 12px; font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .3px;
}

/* Body wrapper */
.quiz-body {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center;
  padding: 32px 20px 52px;
  max-width: 600px;
  width: 100%; margin: 0 auto;
}

/* Section label */
.section-label {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
  align-self: flex-start;
}

/* ── Question card — the main event ── */
.question-card {
  background: var(--card);
  border-radius: var(--r-xl);
  padding: 52px 44px 44px;
  width: 100%;
  box-shadow: var(--shadow-sm);
  animation: cardIn .32s cubic-bezier(.22,1,.36,1);
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(22px) scale(.986); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
@keyframes cardOut {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to   { opacity: 0; transform: translateY(-18px) scale(.986); }
}
.question-card.exiting { animation: cardOut .22s cubic-bezier(.4,0,1,1) forwards; }

/* Question text — large, serif, reads like a reflection prompt */
.question-text {
  font-family: var(--serif);
  font-size: 25px; font-weight: 400;
  color: var(--dark);
  line-height: 1.42;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -.2px;
}

/* Scale */
.scale-wrap { width: 100%; }

.scale-edge-labels {
  display: flex; justify-content: space-between;
  font-size: 10px; font-weight: 500;
  color: var(--text-faint);
  margin-bottom: 10px;
  padding: 0 2px;
  letter-spacing: .1px;
}

.scale-buttons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

/* Scale button — tall, spacious, inviting */
.scale-btn {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 22px 6px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg-warm);
  cursor: pointer;
  min-height: 86px;
  transition: border-color .14s, background .14s, transform .14s, box-shadow .14s;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.scale-btn:hover {
  border-color: var(--primary);
  background: var(--primary-pale);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(6,86,75,.12);
}
.scale-btn:active { transform: translateY(-1px); }
.scale-btn.selected {
  border-color: var(--primary);
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(6,86,75,.26);
}
/* Prevent hover lifting a selected button */
.scale-btn.selected:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 22px rgba(6,86,75,.30);
}

.scale-num {
  font-family: var(--sans);
  font-size: 18px; font-weight: 600;
  color: var(--text-mid);
  line-height: 1;
  transition: color .14s;
}
.scale-btn:hover .scale-num { color: var(--primary); }
.scale-btn.selected .scale-num { color: #fff; }

/* Navigation row */
.quiz-nav {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; margin-top: 24px;
  padding: 0 2px;
}
.btn-back {
  background: none; border: none;
  font-family: var(--sans);
  font-size: 13px; font-weight: 500;
  color: var(--text-muted);
  cursor: pointer; padding: 10px 0;
  transition: color .14s;
}
.btn-back:hover { color: var(--dark); }

/* Progress dots */
.dot-indicators { display: flex; gap: 5px; align-items: center; }
.dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--border);
  transition: all .2s;
}
.dot.active { background: var(--primary); width: 16px; border-radius: 3px; }
.dot.done { background: var(--light-green); }


/* ═══════════════════════════════════════════════
   EMAIL SCREEN
═══════════════════════════════════════════════ */
#screen-email {
  background: var(--bg);
  align-items: center; justify-content: center;
  padding: 48px 20px;
}

.email-inner {
  position: relative; z-index: 1;
  width: 100%; max-width: 440px;
  display: flex; flex-direction: column;
  align-items: center;
}
.email-inner .logo { margin-bottom: 32px; }

.email-content {
  width: 100%;
  background: var(--card);
  border-radius: var(--r-xl);
  padding: 44px 40px 36px;
  box-shadow: var(--shadow-md);
}

.email-mark {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--light-green);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin: 0 auto 22px;
}

.email-title {
  font-family: var(--serif);
  font-size: 30px; font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: -.3px;
}
.email-title em { font-style: italic; color: var(--primary); }

.email-desc {
  font-size: 13.5px; color: var(--text-muted);
  line-height: 1.65;
  text-align: center;
  margin-bottom: 28px;
}

.email-form { display: flex; flex-direction: column; gap: 14px; }

.form-field { display: flex; flex-direction: column; gap: 5px; }
.field-label {
  font-size: 11.5px; font-weight: 600;
  color: var(--dark-mid);
  letter-spacing: .2px;
}

.email-form input[type="text"],
.email-form input[type="email"] {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--sans);
  font-size: 14.5px; color: var(--text);
  background: var(--bg-warm);
  outline: none;
  transition: border-color .14s, background .14s;
}
.email-form input:focus {
  border-color: var(--primary);
  background: #fff;
}
.email-form input::placeholder { color: var(--text-faint); }

.consent-label {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: 11.5px; color: var(--text-muted);
  cursor: pointer; line-height: 1.55;
  padding: 2px 0;
}
.consent-label input {
  margin-top: 2px; flex-shrink: 0;
  accent-color: var(--primary);
}

/* Full-width in forms */
.btn-primary {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: var(--r-md);
  font-family: var(--sans);
  font-size: 14.5px; font-weight: 600;
  cursor: pointer;
  letter-spacing: .05px;
  transition: background .15s, transform .15s, box-shadow .15s;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(6,86,75,.22);
}
.btn-primary:active { transform: none; box-shadow: none; }
.btn-primary .btn-arrow { display: flex; align-items: center; transition: transform .15s; }
.btn-primary:hover .btn-arrow { transform: translateX(3px); }

.btn-skip {
  background: none; border: none;
  font-family: var(--sans);
  font-size: 12.5px; color: var(--text-faint);
  cursor: pointer; margin-top: 14px;
  text-align: center; width: 100%;
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 3px;
  transition: color .14s;
}
.btn-skip:hover { color: var(--text-muted); }


/* ═══════════════════════════════════════════════
   RESULTS SCREEN
   Premium career guidance — not a dashboard
═══════════════════════════════════════════════ */
#screen-results { background: var(--bg); }

/* Minimal sticky header */
.results-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  background: var(--card);
  border-bottom: 1px solid var(--border-light);
  position: sticky; top: 0; z-index: 10;
}

.btn-restart {
  font-family: var(--sans);
  background: none;
  border: 1.5px solid var(--border);
  color: var(--text-faint);
  padding: 6px 13px;
  border-radius: var(--r-sm);
  font-size: 11.5px; font-weight: 500;
  cursor: pointer;
  transition: border-color .14s, color .14s;
}
.btn-restart:hover {
  border-color: var(--dark-mid);
  color: var(--dark);
}

/* Results layout */
.results-body {
  max-width: 660px; margin: 0 auto;
  padding: 48px 20px 100px;
  display: flex; flex-direction: column; gap: 14px;
}

/* ── Intro ── */
.results-intro { text-align: center; margin-bottom: 10px; }

.results-eyebrow {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 10px;
}
.results-title {
  font-family: var(--serif);
  font-size: 40px; font-weight: 400;
  color: var(--dark); line-height: 1.12;
  letter-spacing: -.5px;
}
.results-title em { font-style: italic; color: var(--primary); }

/* ── Primary profile card — the hero moment ── */
.primary-profile-card {
  background: var(--primary);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 40px rgba(6,86,75,.22);
}

/* Concentric ring decorations (brand circle motif) */
.primary-deco-circle {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.1);
  top: -170px; right: -100px;
  pointer-events: none;
}
.primary-deco-circle::after {
  content: '';
  position: absolute;
  inset: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
}
.primary-deco-circle::before {
  content: '';
  position: absolute;
  inset: -52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
}

.primary-profile-inner {
  position: relative; z-index: 1;
  padding: 44px 40px 40px;
}

.profile-tag-primary {
  font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 22px;
}

.primary-badge-row {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 18px;
}

.profile-monogram {
  width: 50px; height: 50px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: 14px; font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  background: rgba(255,255,255,.16);
}
.profile-monogram.small {
  width: 38px; height: 38px;
  border-radius: 9px;
  font-size: 11.5px;
}

.primary-profile-name {
  font-family: var(--serif);
  font-size: 36px; font-weight: 400;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -.4px;
}

.primary-profile-desc {
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,.78);
  line-height: 1.72;
  max-width: 480px;
}

/* ── Secondary profile card — toned down ── */
.secondary-profile-card {
  background: var(--card);
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-xs);
}
.secondary-profile-inner { padding: 26px 28px; }

.profile-tag-secondary {
  font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 14px;
}

.secondary-badge-row {
  display: flex; align-items: center; gap: 13px;
  margin-bottom: 10px;
}

.secondary-profile-name {
  font-family: var(--serif);
  font-size: 21px; font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
}

.secondary-profile-desc {
  font-size: 13.5px; color: var(--text-muted);
  line-height: 1.68;
}

/* ── Shared section cards ── */
.results-section {
  background: var(--card);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  box-shadow: var(--shadow-xs);
}

/* Section heading — editorial, not dashboard */
.section-heading {
  font-family: var(--serif);
  font-size: 21px; font-weight: 400;
  color: var(--dark);
  margin-bottom: 4px;
  letter-spacing: -.1px;
}

.section-intro {
  font-size: 12.5px; color: var(--text-muted);
  margin-bottom: 22px; line-height: 1.5;
}

.section-text {
  font-size: 13.5px; color: var(--text-mid);
  line-height: 1.72;
  margin-top: 8px;
}

/* ── Dimension chart ── */
/* Score-based colors set via JS. This is calm, not a dashboard. */
.dimension-chart { display: flex; flex-direction: column; gap: 13px; }

.dimension-row { display: flex; align-items: center; gap: 12px; }

.dim-label {
  font-size: 12.5px; font-weight: 500;
  color: var(--text-mid);
  width: 108px; flex-shrink: 0;
}

.dim-track {
  flex: 1; height: 8px;
  background: var(--bg);
  border-radius: 4px;
  overflow: hidden;
}

.dim-fill {
  height: 100%;
  border-radius: 4px;
  transition: width .95s cubic-bezier(.4,0,.2,1);
}

.dim-score {
  font-size: 12.5px; font-weight: 600;
  color: var(--text-muted);
  width: 26px; text-align: right;
  flex-shrink: 0;
}

/* ── Strengths ── */
.strengths-grid {
  display: flex; flex-wrap: wrap; gap: 7px;
  margin-top: 16px;
}
.strength-chip {
  background: var(--bg-warm);
  color: var(--dark-mid);
  border: 1px solid var(--border);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12.5px; font-weight: 500;
}

/* ── Career tags ── */
.career-tags {
  display: flex; flex-wrap: wrap; gap: 7px;
  margin-top: 16px;
}
.career-tag {
  background: var(--light-blue);
  color: #1B4778;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12.5px; font-weight: 500;
}

/* ── Reflection — dark card, editorial feel ── */
.reflection-section {
  background: var(--dark);
  border-radius: var(--r-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(50,56,48,.14);
}
.reflection-inner { padding: 36px 30px; }

.reflection-eyebrow {
  font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 8px;
}

.reflection-heading {
  font-family: var(--serif);
  font-size: 23px; font-weight: 400;
  color: #fff;
  margin-bottom: 26px;
}

.reflection-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 18px;
}
.reflection-list li {
  display: flex; gap: 14px;
  font-size: 13.5px; color: rgba(255,255,255,.68);
  line-height: 1.65; align-items: flex-start;
}
.reflection-list li::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--light-green);
  flex-shrink: 0; margin-top: 7px;
}

/* ── Disclaimer ── */
.disclaimer { padding: 6px 2px 0; }
.disclaimer p {
  font-size: 11.5px; color: var(--text-faint);
  line-height: 1.68;
}
.disclaimer-brand {
  margin-top: 8px;
  font-size: 11px; color: var(--text-faint);
}


/* ═══════════════════════════════════════════════
   RESPONSIVE  —  mobile-first
═══════════════════════════════════════════════ */

/* ── Small phones (≤ 380px) ── */
@media (max-width: 380px) {
  .welcome-title { font-size: 26px; }
  .question-text { font-size: 20px; }
  .scale-btn { min-height: 68px; padding: 16px 4px 14px; }
  .scale-num { font-size: 15px; }
}

/* ── Mobile (≤ 540px) ── */
@media (max-width: 540px) {
  /* Welcome */
  .welcome-inner .logo { margin-bottom: 20px; }
  .welcome-content { padding: 32px 26px 28px; border-radius: var(--r-lg); }
  .welcome-title { font-size: 28px; }
  .welcome-desc { font-size: 13.5px; }
  .welcome-list { gap: 10px; margin-bottom: 24px; }

  /* Decorative circles — smaller on mobile */
  .deco-tl { width: 360px; height: 360px; top: -200px; left: -140px; }
  .deco-br { width: 280px; height: 280px; bottom: -130px; right: -100px; }

  /* Quiz */
  .quiz-header { padding: 20px 16px 0; }
  .quiz-body { padding: 24px 14px 44px; }
  .question-card { padding: 40px 22px 36px; border-radius: var(--r-lg); }
  .question-text { font-size: 21px; margin-bottom: 40px; }
  .scale-edge-labels { font-size: 9.5px; }
  .scale-buttons { gap: 6px; }
  .scale-btn { min-height: 74px; padding: 18px 4px 16px; border-radius: var(--r-sm); }
  .scale-num { font-size: 16px; }

  /* Results */
  .results-header { padding: 14px 16px; }
  .results-body { padding: 36px 14px 80px; gap: 10px; }
  .results-title { font-size: 32px; }

  .primary-profile-inner { padding: 34px 24px 30px; }
  .primary-profile-name { font-size: 30px; }
  .primary-deco-circle { width: 260px; height: 260px; top: -120px; right: -60px; }

  .secondary-profile-inner { padding: 20px 20px; }
  .secondary-profile-name { font-size: 19px; }

  .results-section { padding: 22px 18px; }
  .section-heading { font-size: 19px; }
  .dim-label { width: 86px; font-size: 11.5px; }
  .dim-track { height: 7px; }

  .reflection-inner { padding: 28px 20px; }
  .reflection-heading { font-size: 20px; }

  /* Email */
  .email-content { padding: 36px 24px 28px; border-radius: var(--r-lg); }
  .email-title { font-size: 26px; }

  .dot-indicators { display: none; }
}

/* ── Tablet (540–768px) ── */
@media (min-width: 541px) and (max-width: 768px) {
  .welcome-title { font-size: 30px; }
  .question-text { font-size: 23px; }
  .primary-profile-name { font-size: 33px; }
}
