:root {
  --bg: #eefaf6;
  --bg-2: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f4fffb;
  --primary: #13b897;
  --primary-dark: #087d6b;
  --primary-deep: #063d37;
  --accent: #dff8f0;
  --danger: #e25555;
  --danger-dark: #b93636;
  --purple: #8055d9;
  --purple-dark: #663fbd;
  --text: #07342f;
  --muted: #5f7f78;
  --border: #d7eee8;
  --shadow: 0 30px 80px rgba(7, 52, 47, 0.16);
  --radius: 34px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
}

a {
  color: inherit;
}

button {
  font: inherit;
}

/* HOME */

.home-body {
  background:
    radial-gradient(circle at top left, rgba(19, 184, 151, 0.22), transparent 34%),
    linear-gradient(135deg, var(--bg), var(--bg-2));
}

.home-page {
  min-height: 100vh;
  padding: 18px;
}

.home-hero {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 34px 42px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 18%, rgba(19, 184, 151, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(244,255,251,0.92));
  border: 1px solid rgba(215, 238, 232, 0.95);
  box-shadow: 0 36px 90px rgba(7, 52, 47, 0.14);
  overflow: hidden;
  position: relative;
}

.home-hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(19, 184, 151, 0.10);
}

.home-hero::after {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(8, 125, 107, 0.08);
}

.home-hero > * {
  position: relative;
  z-index: 1;
}

.home-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  margin-bottom: 38px;
}

.home-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.home-brand-logo {
  width: 340px;
  min-width: 300px;
}

.brand-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 76px;
  object-fit: contain;
  object-position: left center;
}

.header-pill,
.brand-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 900;
}

.header-pill {
  padding: 11px 18px;
  background: rgba(223, 248, 240, 0.86);
  color: var(--primary-deep);
  border: 1px solid var(--border);
  white-space: nowrap;
  font-size: 15px;
}

.brand-pill {
  padding: 8px 15px;
  background: var(--accent);
  color: var(--primary-dark);
  margin-bottom: 18px;
  font-size: 14px;
}

.purple-pill {
  background: #efe7ff;
  color: var(--purple-dark);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 36px;
  align-items: center;
}

.hero-content h1,
.quiz-intro-grid h1,
.module-play h1,
.end-premium h1,
.feedback-premium h2 {
  letter-spacing: -0.06em;
}

.hero-content h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.92;
  color: var(--primary-deep);
}

.hero-subline {
  margin: 16px 0 12px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
  font-weight: 800;
  color: var(--primary);
}

.hero-text {
  max-width: 720px;
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
  color: var(--text);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.pigeon-card {
  width: min(250px, 100%);
  aspect-ratio: 1 / 1.1;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.84), rgba(223,248,240,0.85));
  border: 1px solid var(--border);
  box-shadow: 0 26px 70px rgba(7, 52, 47, 0.13);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
}

.pigeon {
  font-size: 105px;
  filter: drop-shadow(0 16px 24px rgba(7, 52, 47, 0.16));
}

.pigeon-card span {
  display: block;
  font-size: 21px;
  line-height: 1.15;
  font-weight: 900;
  color: var(--primary-deep);
}

.premium-modes {
  margin-top: 42px;
}

.mode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mode-card {
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 26px;
  text-align: left;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  box-shadow: 0 16px 46px rgba(7, 52, 47, 0.08);
  overflow: hidden;
  position: relative;
}

.mode-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(19, 184, 151, 0.08);
}

.mode-end::after {
  background: rgba(128, 85, 217, 0.10);
}

.mode-card:hover,
.module-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 70px rgba(7, 52, 47, 0.14);
  border-color: rgba(19, 184, 151, 0.45);
}

.mode-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.mode-icon,
.module-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  background: var(--accent);
  font-size: 31px;
}

.mode-card span {
  color: var(--primary-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
}

.mode-end .mode-top span {
  color: var(--purple-dark);
}

.mode-card strong {
  display: block;
  max-width: 480px;
  font-size: clamp(30px, 3vw, 42px);
  color: var(--primary-deep);
  line-height: 1.02;
  margin-bottom: 12px;
}

.mode-card p {
  max-width: 470px;
  font-size: 19px;
  color: var(--muted);
  line-height: 1.42;
  margin: 0 0 22px;
}

.mode-action {
  width: fit-content;
  min-width: 220px;
  display: inline-flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 15px 19px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(19, 184, 151, 0.28);
}

.mode-action.purple {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  box-shadow: 0 14px 34px rgba(128, 85, 217, 0.25);
}

.mode-action span {
  color: white;
  font-size: 24px;
}

/* MODULE SECTION */

.module-section {
  margin-top: 48px;
}

.module-section-headline {
  margin-bottom: 24px;
}

.module-section-headline span {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.module-section-headline h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary-deep);
}

.module-section-headline p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.module-card {
  display: block;
  text-decoration: none;
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
  transition: 0.2s ease;
  box-shadow: 0 14px 36px rgba(7,52,47,0.08);
}

.module-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  color: var(--primary-deep);
}

.module-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

/* BENEFITS */

.benefit-strip {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(7, 52, 47, 0.08);
  overflow: hidden;
}

.benefit-strip div {
  padding: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 3px;
  align-items: start;
}

.benefit-strip div:not(:last-child) {
  border-right: 1px solid var(--border);
}

.benefit-strip span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--accent);
  font-size: 22px;
}

.benefit-strip strong {
  font-size: 16px;
  color: var(--primary-deep);
}

.benefit-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
  font-size: 14px;
}

.home-footer-note {
  margin: 28px 0 0;
  text-align: center;
  color: var(--primary-dark);
  font-weight: 900;
}

/* QUIZ PAGES */

.quiz-body {
  min-height: 100vh;
  padding: 18px;
  background:
    radial-gradient(circle at 15% 10%, rgba(19, 184, 151, 0.20), transparent 34%),
    radial-gradient(circle at 85% 18%, rgba(8, 125, 107, 0.10), transparent 30%),
    linear-gradient(135deg, #eefaf6, #ffffff);
}

.quiz-body-end {
  background:
    radial-gradient(circle at 15% 10%, rgba(128, 85, 217, 0.16), transparent 34%),
    radial-gradient(circle at 85% 18%, rgba(19, 184, 151, 0.14), transparent 30%),
    linear-gradient(135deg, #f5f1ff, #ffffff);
}

.quiz-premium {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.quiz-shell {
  display: none;
  min-height: auto;
  padding: 34px 42px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(244,255,251,0.92));
  border: 1px solid rgba(215, 238, 232, 0.95);
  box-shadow: 0 36px 90px rgba(7, 52, 47, 0.14);
  position: relative;
  overflow: hidden;
}

.quiz-shell::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(19, 184, 151, 0.10);
}

.quiz-body-end .quiz-shell::before {
  background: rgba(128, 85, 217, 0.12);
}

.quiz-shell::after {
  content: "";
  position: absolute;
  left: -130px;
  bottom: -150px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(8, 125, 107, 0.07);
}

.quiz-shell > * {
  position: relative;
  z-index: 1;
}

.quiz-shell.active {
  display: block;
}

/* TOOL TOPBAR */

.tool-topbar,
.quiz-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.tool-brand,
.tool-home,
.quiz-topbar a,
.quiz-topbar span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
  color: var(--primary-dark);
  font-weight: 900;
  text-decoration: none;
}

.tool-brand {
  color: var(--primary-deep);
}

.tool-home,
.quiz-topbar span {
  color: var(--primary-dark);
}

.quiz-intro-grid {
  min-height: auto;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 44px;
  align-items: center;
}

.quiz-intro-grid h1 {
  max-width: 780px;
  margin: 0 0 18px;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.92;
  color: var(--primary-deep);
}

.lead {
  max-width: 800px;
  margin: 0 0 22px;
  font-size: 22px;
  line-height: 1.35;
  color: var(--muted);
}

.primary-btn,
.answer-btn,
.choice-btn,
.ampel-btn,
.secondary-reset {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.primary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 230px;
  border-radius: 19px;
  padding: 17px 28px;
  font-size: 22px;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 16px 36px rgba(19, 184, 151, 0.32);
  text-decoration: none;
}

.purple-btn {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  box-shadow: 0 16px 36px rgba(128, 85, 217, 0.28);
}

.primary-btn:hover,
.answer-btn:hover,
.choice-btn:hover,
.ampel-btn:hover,
.secondary-reset:hover {
  transform: translateY(-2px);
}

.intro-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0;
  max-width: 760px;
}

.intro-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
}

.intro-points span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent);
}

.intro-points strong {
  font-size: 15px;
  line-height: 1.2;
}

.quiz-visual-card {
  min-height: 300px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 20%, rgba(19,184,151,0.20), transparent 38%),
    rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  box-shadow: 0 28px 70px rgba(7, 52, 47, 0.12);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 32px;
}

.quiz-visual-card.purple-card {
  background:
    radial-gradient(circle at 50% 20%, rgba(128,85,217,0.18), transparent 38%),
    rgba(255,255,255,0.84);
}

.big-emoji {
  font-size: 96px;
  margin-bottom: 14px;
}

.quiz-visual-card strong {
  font-size: 36px;
  color: var(--primary-deep);
  line-height: 1;
  margin-bottom: 14px;
}

.quiz-visual-card p {
  max-width: 360px;
  margin: 0 auto;
  font-size: 19px;
  color: var(--muted);
  line-height: 1.35;
}

.quiz-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  margin-bottom: 16px;
}

.quiz-header > div {
  flex: 1;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 12px 30px rgba(7, 52, 47, 0.06);
}

.label {
  display: block;
  color: var(--primary-dark);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.quiz-header strong {
  font-size: clamp(20px, 3vw, 28px);
  color: var(--primary-deep);
}

.progress-wrap {
  height: 12px;
  background: rgba(223, 244, 238, 0.9);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 18px;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: inherit;
  transition: width 0.3s ease;
}

.purple-progress .progress-bar {
  background: linear-gradient(90deg, var(--purple), var(--purple-dark));
}

.question-card {
  margin: 24px 0;
  padding: 28px 34px;
  border-radius: 28px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  box-shadow: 0 18px 48px rgba(7, 52, 47, 0.08);
  text-align: center;
}

.question-kicker {
  display: inline-flex;
  padding: 9px 15px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.question-card h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--primary-deep);
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 940px;
  margin: 24px auto 0;
}

.choice-btn {
  width: 100%;
  border-radius: 22px;
  padding: 18px 22px;
  font-size: 25px;
  color: var(--primary-deep);
  background: rgba(255,255,255,0.86);
  border: 2px solid var(--border);
  text-align: center;
  box-shadow: 0 16px 36px rgba(7, 52, 47, 0.08);
}

.choice-btn:hover {
  background: #f4fffb;
  border-color: var(--primary);
}

.answer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 900px;
  margin: 24px auto 0;
}

.answer-btn {
  min-height: 125px;
  border-radius: 28px;
  padding: 22px;
  font-size: 32px;
  color: white;
  box-shadow: 0 18px 42px rgba(7, 52, 47, 0.16);
}

.answer-btn span {
  display: block;
  font-size: 36px;
  margin-bottom: 6px;
}

.answer-btn.yes {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.answer-btn.no {
  background: linear-gradient(135deg, var(--danger), var(--danger-dark));
}

.premium-count {
  text-align: center;
  margin-top: 10px;
  color: var(--primary-dark);
  font-size: 18px;
  font-weight: 900;
}

.feedback-premium,
.end-premium,
.module-play {
  text-align: center;
}

.feedback-icon,
.end-badge {
  font-size: 64px;
  margin-bottom: 12px;
}

.feedback-premium h2,
.end-premium h1,
.module-play h1 {
  margin: 0 0 22px;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 0.95;
  color: var(--primary-deep);
}

#feedbackText,
#endText,
.module-play p,
#discussionQuestion {
  max-width: 780px;
  margin: 0 auto 28px;
  font-size: 22px;
  line-height: 1.4;
  color: var(--muted);
}

.fact-box,
.score-card {
  max-width: 760px;
  margin: 22px auto;
  text-align: left;
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 18px 48px rgba(7, 52, 47, 0.08);
}

.fact-box span,
.score-card span {
  display: block;
  color: var(--primary-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.04em;
  margin-bottom: 7px;
}

.fact-box strong,
.score-card strong {
  display: block;
  font-size: 26px;
  line-height: 1.25;
  color: var(--primary-deep);
}

.end-actions {
  display: grid;
  justify-content: center;
  gap: 10px;
}

.secondary-link {
  display: block;
  margin-top: 22px;
  color: var(--primary-dark);
  font-weight: 900;
  text-decoration: none;
}

/* DISCUSSION CARDS */

.discussion-stage {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.discussion-label {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 22px;
}

.discussion-question {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(34px, 5vw, 70px);
  margin-bottom: 32px;
  border-radius: 38px;
  background:
    radial-gradient(circle at top left, rgba(19, 184, 151, 0.18), transparent 34%),
    linear-gradient(135deg, #ffffff, #f4fffb);
  border: 2px solid rgba(19, 184, 151, 0.28);
  box-shadow: 0 30px 80px rgba(7, 52, 47, 0.14);
  color: var(--primary-deep);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.045em;
}

/* TEAM */

.team-score-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 28px;
}

.team-card {
  text-align: center;
  padding: 34px;
  border-radius: 32px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.84);
  box-shadow: 0 20px 50px rgba(7,52,47,0.10);
}

.team-card span {
  display: block;
  color: var(--primary-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.team-card strong {
  display: block;
  margin: 14px 0 22px;
  font-size: 78px;
  line-height: 1;
  color: var(--primary-deep);
}

.team-purple strong {
  color: var(--purple-dark);
}

.secondary-reset {
  display: block;
  margin: 24px auto 0;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  color: var(--primary-dark);
  border: 1px solid var(--border);
}

/* AMPEL */

.ampel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.ampel-btn {
  min-height: 140px;
  border-radius: 28px;
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--border);
  box-shadow: 0 16px 36px rgba(7,52,47,0.08);
  font-size: 44px;
}

.ampel-btn strong {
  display: block;
  margin-top: 10px;
  font-size: 25px;
  color: var(--primary-deep);
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .hero-grid,
  .mode-grid,
  .benefit-strip,
  .quiz-intro-grid,
  .intro-points,
  .module-grid,
  .team-score-grid,
  .ampel-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .benefit-strip div:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .home-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-brand-logo {
    width: min(420px, 100%);
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .home-page,
  .quiz-body {
    padding: 14px;
  }

  .home-hero,
  .quiz-shell {
    border-radius: 26px;
    padding: 26px;
  }

  .home-header {
    margin-bottom: 44px;
  }

  .home-brand-logo {
    width: 100%;
  }

  .brand-image {
    max-height: 74px;
  }

  .header-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .tool-topbar,
  .quiz-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .tool-brand,
  .tool-home,
  .quiz-topbar a,
  .quiz-topbar span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-content h1,
  .quiz-intro-grid h1 {
    font-size: clamp(46px, 15vw, 72px);
  }

  .hero-subline {
    font-size: clamp(28px, 9vw, 42px);
  }

  .mode-action,
  .primary-btn {
    width: 100%;
  }

  .quiz-header,
  .answer-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .answer-btn {
    min-height: 120px;
  }

  .discussion-question {
    min-height: 240px;
    font-size: clamp(32px, 10vw, 48px);
  }
}