/* ============================================================
   Bootcamp Presença 365 · eFounder
   Cockpit estático. Estado em localStorage.
   Paleta: creme + dourado eFounder.
   ============================================================ */

:root {
  --ed-gold: #BA7517;
  --ed-amber: #EF9F27;
  --ed-ink: #2C2C2A;
  --ed-muted: #888780;
  --ed-caption: #b4b2a9;
  --ed-cream-1: #FEF9F3;
  --ed-cream-2: #FDF5EB;
  --ed-cream-card: #FFF5E6;
  --ed-cream-highlight: #FFEBCC;
  --ed-neutral: #D3D1C7;
  --ed-success-bg: #F0FAF0;
  --ed-success-text: #4A9E4A;

  --ed-gradient: linear-gradient(135deg, #BA7517 0%, #EF9F27 100%);
  --ed-bg: linear-gradient(135deg, #FEF9F3 0%, #FDF5EB 100%);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(44, 44, 42, 0.04), 0 1px 3px rgba(44, 44, 42, 0.06);
  --shadow-md: 0 4px 12px rgba(44, 44, 42, 0.06), 0 2px 4px rgba(44, 44, 42, 0.04);
  --shadow-lg: 0 12px 32px rgba(186, 117, 23, 0.12), 0 4px 12px rgba(44, 44, 42, 0.08);

  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'SF Mono', ui-monospace, 'JetBrains Mono', Menlo, Consolas, monospace;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-system);
  color: var(--ed-ink);
  background: var(--ed-bg);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.5;
  padding-bottom: 80px;
}

h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.01em; color: var(--ed-ink); }
p { margin: 0; }
a { color: var(--ed-gold); text-decoration: none; }
a:hover, a:focus-visible { color: var(--ed-amber); }

:focus-visible { outline: 3px solid var(--ed-amber); outline-offset: 2px; border-radius: 6px; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

.hidden { display: none !important; }

.skip-link { position: absolute; left: -9999px; top: 8px; background: var(--ed-ink); color: #fff; padding: 10px 16px; border-radius: var(--radius-sm); z-index: 999; }
.skip-link:focus { left: 12px; }

/* ============================================================ TOPBAR ============================================================ */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(254, 249, 243, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(211, 209, 199, 0.6);
}
.topbar__inner {
  max-width: 1100px; margin: 0 auto;
  padding: 12px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}
.topbar__brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.topbar__crown {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--ed-gradient);
  border-radius: 12px;
  font-size: 22px;
  box-shadow: var(--shadow-md);
}
.topbar__logo {
  width: 44px; height: 44px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-md);
}
.topbar__titles { display: flex; flex-direction: column; line-height: 1.1; }
.topbar__brandname { font-size: 11px; color: var(--ed-muted); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }
.topbar__title { font-family: var(--font-serif); font-size: 18px; font-weight: 600; letter-spacing: 0; }

.topbar__level { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.level-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ed-cream-card);
  border: 1px solid var(--ed-cream-highlight);
  padding: 6px 12px; border-radius: 999px;
  font-weight: 600; font-size: 13px;
  color: var(--ed-ink); align-self: flex-start;
}
.level-chip__icon { font-size: 16px; }
.level-bar { width: 100%; height: 8px; background: var(--ed-neutral); border-radius: 999px; overflow: hidden; margin-top: 2px; }
.level-bar__fill { height: 100%; width: 0%; background: var(--ed-gradient); border-radius: 999px; transition: width 600ms var(--ease); }
.level-bar__next { font-size: 11px; color: var(--ed-muted); }

.topbar__badges { display: grid; grid-template-columns: repeat(3, auto); gap: 6px; justify-content: end; }
.topbar__badge {
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center; font-size: 16px;
  background: rgba(255,255,255,0.4);
  border: 1px dashed var(--ed-neutral);
  color: var(--ed-caption);
  transition: transform 200ms var(--ease), background 200ms var(--ease), opacity 200ms var(--ease);
  filter: grayscale(1); opacity: 0.28;
}
.topbar__badge.is-unlocked {
  filter: none; opacity: 1;
  background: var(--ed-cream-highlight);
  border: 1px solid var(--ed-amber);
  box-shadow: 0 0 0 2px rgba(239, 159, 39, 0.15);
}
.topbar__badge.is-just-unlocked { animation: pop 700ms var(--ease); }

@media (max-width: 880px) {
  .topbar__inner { grid-template-columns: 1fr auto; gap: 12px; }
  .topbar__level { grid-column: 1 / -1; order: 3; }
  .topbar__badges { grid-column: 1 / -1; order: 4; justify-content: flex-start; }
}

/* ============================================================ HERO ============================================================ */
.hero { max-width: 1100px; margin: 28px auto 8px; padding: 0 20px; }
.hero__inner {
  position: relative;
  background: linear-gradient(135deg, rgba(186, 117, 23, 0.06) 0%, rgba(239, 159, 39, 0.10) 100%);
  border: 1px solid var(--ed-cream-highlight);
  border-radius: var(--radius-xl);
  padding: 32px 36px;
  overflow: hidden;
}
.hero__inner::before {
  content: ''; position: absolute;
  inset: -40% -10% auto auto;
  width: 260px; height: 260px;
  background: var(--ed-gradient);
  filter: blur(80px); opacity: 0.35;
  pointer-events: none;
}
.hero__eyebrow { text-transform: uppercase; font-size: 12px; letter-spacing: 0.16em; color: var(--ed-gold); font-weight: 700; margin-bottom: 12px; }
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 600; letter-spacing: -0.01em;
  max-width: 780px; line-height: 1.2;
}
.hero__accent {
  background: var(--ed-gradient);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero__lead { margin-top: 14px; font-size: 15px; color: var(--ed-muted); max-width: 720px; line-height: 1.55; }
.hero__dismiss {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ed-ink);
  padding: 6px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  border: 1px solid var(--ed-cream-highlight);
}
.hero__dismiss:hover { background: #fff; }

.hero.is-collapsed .hero__inner { padding: 14px 20px; }
.hero.is-collapsed .hero__title { font-size: 15px; font-weight: 600; }
.hero.is-collapsed .hero__eyebrow, .hero.is-collapsed .hero__lead, .hero.is-collapsed .hero__dismiss { display: none; }

/* ============================================================ AGENDA ============================================================ */
.agenda { max-width: 1100px; margin: 22px auto 0; padding: 0 20px; }
.agenda__inner {
  background: #fff;
  border: 1px solid var(--ed-cream-highlight);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.agenda__head { margin-bottom: 18px; }
.agenda__title {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--ed-gold); margin: 0;
}
.agenda__slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.agenda__slots--3 { grid-template-columns: repeat(3, 1fr); }
.agenda__slot {
  display: flex; align-items: center; gap: 12px;
  background: var(--ed-cream-1);
  border: 1px solid var(--ed-cream-highlight);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}
.agenda__slot-icon {
  font-size: 22px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: #fff; border-radius: 12px; flex-shrink: 0;
}
.agenda__slot-text { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.agenda__slot-text strong { font-size: 13.5px; font-weight: 700; color: var(--ed-ink); }
.agenda__slot-text span { font-size: 12.5px; color: var(--ed-muted); font-variant-numeric: tabular-nums; margin-top: 2px; }

@media (max-width: 960px) { .agenda__slots { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .agenda__slots { grid-template-columns: 1fr; } }

/* ============================================================ DAY PROGRESS ============================================================ */
.dayprogress { max-width: 1100px; margin: 18px auto 0; padding: 0 20px; }
.dayprogress__inner { display: flex; align-items: center; gap: 14px; }
.dayprogress__label { font-size: 12px; font-weight: 600; color: var(--ed-muted); text-transform: uppercase; letter-spacing: 0.12em; white-space: nowrap; }
.dayprogress__bar { flex: 1; height: 10px; background: var(--ed-neutral); border-radius: 999px; overflow: hidden; }
.dayprogress__fill { height: 100%; width: 0%; background: var(--ed-gradient); border-radius: 999px; transition: width 600ms var(--ease); }
.dayprogress__count { font-size: 13px; font-weight: 700; color: var(--ed-gold); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* ============================================================ JORNADA ============================================================ */
.jornada { max-width: 1100px; margin: 32px auto 0; padding: 0 20px; display: flex; flex-direction: column; gap: 18px; }

/* Block card */
.block {
  background: #fff;
  border: 1px solid var(--ed-cream-highlight);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 240ms var(--ease), box-shadow 240ms var(--ease), transform 240ms var(--ease);
}
.block.is-current { border-color: var(--ed-amber); box-shadow: var(--shadow-lg); }
.block.is-done { background: linear-gradient(180deg, #ffffff 0%, var(--ed-cream-1) 100%); }
.block.is-done .block__number { background: var(--ed-success-text); color: #fff; }
.block.is-locked { background: rgba(255, 255, 255, 0.5); border-style: dashed; border-color: var(--ed-neutral); box-shadow: none; opacity: 0.6; }
.block.is-locked:hover { opacity: 0.75; }
.block.is-locked .block__head { cursor: pointer; }
.block.is-locked .block__number { background: var(--ed-neutral); color: #fff; border-color: transparent; box-shadow: none; }
.block.is-locked .block__title { color: var(--ed-muted); }
.block.is-locked .block__objective { font-style: italic; }
.block.is-locked .block__status { color: var(--ed-caption); }

.block__head {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 24px; cursor: pointer; user-select: none;
  width: 100%; text-align: left; background: transparent;
}
.block__number {
  position: relative; flex: 0 0 auto;
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 16px;
  background: var(--ed-cream-card);
  color: var(--ed-gold);
  border: 1px solid var(--ed-cream-highlight);
  transition: all 240ms var(--ease);
}
.block__number-check, .block__number-lock {
  position: absolute; bottom: -4px; right: -4px;
  width: 18px; height: 18px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
  background: #fff; border: 1.5px solid var(--ed-neutral);
  box-shadow: var(--shadow-sm);
}
.block__number-check { background: var(--ed-success-text); color: #fff; border-color: #fff; }
.block__number-lock { background: #fff; border-color: var(--ed-neutral); font-size: 10px; }
.block.is-current .block__number {
  background: var(--ed-gradient); color: #fff;
  border-color: transparent;
  box-shadow: 0 0 0 4px rgba(239, 159, 39, 0.18);
}
.block__head-text { flex: 1; min-width: 0; }
.block__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.block__hour { font-size: 12px; font-weight: 700; color: var(--ed-gold); text-transform: uppercase; letter-spacing: 0.1em; font-variant-numeric: tabular-nums; }
.block__title { font-family: var(--font-serif); font-size: 20px; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.005em; }
.block__objective { font-size: 14.5px; color: var(--ed-muted); line-height: 1.5; }
.block__status { flex: 0 0 auto; display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--ed-muted); }
.block.is-current .block__status { color: var(--ed-gold); }
.block.is-done .block__status { color: var(--ed-success-text); }
.block__chevron { width: 20px; height: 20px; display: grid; place-items: center; transition: transform 240ms var(--ease); color: var(--ed-muted); }
.block.is-open .block__chevron { transform: rotate(180deg); }

.block__body { padding: 0 24px 26px 24px; display: none; }
.block.is-open .block__body { display: block; }

/* Steps within a block */
.step { padding: 18px 0; border-top: 1px solid var(--ed-cream-highlight); }
.step:first-child { border-top: 0; padding-top: 6px; }
.step__head { display: flex; align-items: flex-start; gap: 12px; }
.step__num {
  flex: 0 0 auto;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--ed-cream-card);
  color: var(--ed-gold);
  display: grid; place-items: center;
  font-size: 13px; font-weight: 800;
  border: 1px solid var(--ed-cream-highlight);
  margin-top: 1px;
}
.step__main { flex: 1; min-width: 0; }
.step__title { font-size: 15.5px; font-weight: 700; color: var(--ed-ink); }
.step__body { font-size: 14px; color: var(--ed-ink); line-height: 1.55; margin-top: 4px; }
.step__body strong { font-weight: 700; }
.step__body code {
  background: var(--ed-cream-card);
  padding: 1px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ed-gold);
}
.step__list {
  margin: 12px 0 0;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ed-ink);
}
.step__list li { padding-left: 4px; }
.step__list li::marker { color: var(--ed-gold); font-weight: 700; }

/* Command/prompt boxes */
.codebox {
  position: relative;
  margin-top: 12px;
  background: #1a1917;
  color: #f5f0e6;
  border-radius: var(--radius-md);
  padding: 14px 46px 14px 16px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.55;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
}
.codebox--prompt {
  background: var(--ed-cream-card);
  color: var(--ed-ink);
  border: 1px solid var(--ed-cream-highlight);
  font-family: var(--font-system);
  font-size: 14px;
  padding: 16px 46px 16px 18px;
}
.codebox__copy {
  position: absolute;
  top: 8px; right: 8px;
  background: rgba(255,255,255,0.08);
  color: #f5f0e6;
  border: 1px solid rgba(255,255,255,0.16);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background 200ms var(--ease);
}
.codebox--prompt .codebox__copy {
  background: #fff;
  color: var(--ed-gold);
  border-color: var(--ed-cream-highlight);
}
.codebox__copy:hover { background: rgba(255,255,255,0.16); }
.codebox--prompt .codebox__copy:hover { background: var(--ed-cream-card); }
.codebox__copy.is-copied { background: var(--ed-success-text); color: #fff; border-color: var(--ed-success-text); }

.step__hint {
  margin-top: 10px;
  background: var(--ed-cream-1);
  border-left: 3px solid var(--ed-amber);
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  font-size: 13.5px;
  color: var(--ed-ink);
  line-height: 1.5;
}
.step__hint strong { color: var(--ed-gold); }

/* Checkpoint checkbox */
.checkpoint {
  margin-top: 14px;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border: 1.5px dashed var(--ed-cream-highlight);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 200ms var(--ease);
}
.checkpoint:hover { border-color: var(--ed-amber); background: var(--ed-cream-1); }
.checkpoint__box {
  flex: 0 0 auto;
  width: 24px; height: 24px;
  border-radius: 7px;
  border: 2px solid var(--ed-neutral);
  background: #fff;
  display: grid; place-items: center;
  transition: all 200ms var(--ease);
}
.checkpoint.is-done { border-color: var(--ed-success-text); background: var(--ed-success-bg); border-style: solid; }
.checkpoint.is-done .checkpoint__box { background: var(--ed-success-text); border-color: var(--ed-success-text); }
.checkpoint.is-done .checkpoint__box::after { content: '✓'; color: #fff; font-size: 14px; font-weight: 700; }
.checkpoint__label { font-size: 14.5px; font-weight: 600; color: var(--ed-ink); }
.checkpoint.is-done .checkpoint__label { color: var(--ed-success-text); }

/* ============================================================ DIAGNOSTIC (Bloco 1) ============================================================ */
.diag { margin-top: 8px; }
.diag__intro {
  font-size: 14.5px; color: var(--ed-muted); line-height: 1.6; margin-bottom: 20px;
  background: var(--ed-cream-1); border-left: 3px solid var(--ed-amber);
  padding: 12px 16px; border-radius: 0 8px 8px 0;
}
.diag__questions { display: flex; flex-direction: column; gap: 22px; }
.diag__q { display: flex; gap: 14px; padding: 18px; background: #fff; border: 1px solid var(--ed-cream-highlight); border-radius: var(--radius-md); }
.diag__q-num {
  flex: 0 0 auto;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--ed-cream-card); color: var(--ed-gold);
  display: grid; place-items: center;
  font-weight: 800; font-size: 14px;
  border: 1px solid var(--ed-cream-highlight);
}
.diag__q-main { flex: 1; min-width: 0; }
.diag__q-text {
  font-family: var(--font-serif);
  font-size: 18px; font-weight: 600;
  color: var(--ed-ink); line-height: 1.35;
  margin-bottom: 12px;
}
.diag__q-opts { display: flex; flex-wrap: wrap; gap: 8px; }
.diag__opt {
  padding: 10px 16px;
  background: #fff;
  border: 1.5px solid var(--ed-cream-highlight);
  color: var(--ed-ink);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  transition: all 200ms var(--ease);
  text-align: left;
}
.diag__opt:hover { border-color: var(--ed-amber); background: var(--ed-cream-1); }
.diag__opt.is-selected {
  background: var(--ed-gradient); color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.diag--result { animation: fadeInUp 500ms var(--ease); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.diag__score {
  background: linear-gradient(135deg, rgba(186, 117, 23, 0.05) 0%, rgba(239, 159, 39, 0.10) 100%);
  border: 1px solid var(--ed-cream-highlight);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  text-align: center;
  margin-bottom: 22px;
}
.diag__score-label {
  font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--ed-gold); margin-bottom: 10px;
}
.diag__score-num {
  font-family: var(--font-serif);
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ed-ink);
  font-variant-numeric: tabular-nums;
  display: inline-block;
}
.diag__score-max {
  font-size: 22px;
  color: var(--ed-muted);
  font-weight: 500;
  margin-left: 2px;
}
.diag__score-bar {
  max-width: 320px;
  height: 8px;
  background: rgba(211, 209, 199, 0.6);
  border-radius: 999px;
  margin: 14px auto 10px;
  overflow: hidden;
}
.diag__score-fill {
  height: 100%; width: 0%;
  background: var(--ed-gradient);
  border-radius: 999px;
  transition: width 900ms var(--ease);
}
.diag__score-tag {
  font-family: var(--font-serif);
  font-size: 20px; font-weight: 600;
  color: var(--ed-ink);
  margin-top: 4px;
}

.diag__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}
@media (max-width: 720px) { .diag__cards { grid-template-columns: 1fr; } }

.diag__card {
  background: #fff;
  border: 1px solid var(--ed-cream-highlight);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.diag__card--next {
  background: linear-gradient(180deg, #fff 0%, var(--ed-cream-1) 100%);
  border-color: var(--ed-amber);
  box-shadow: var(--shadow-md);
}
.diag__card-icon { font-size: 22px; }
.diag__card-title {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ed-gold);
}
.diag__card-body { font-size: 13.5px; color: var(--ed-ink); line-height: 1.55; }
.diag__redo {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--ed-muted);
  background: transparent; padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--ed-cream-highlight);
  margin-top: 4px;
  transition: all 200ms var(--ease);
}
.diag__redo:hover { color: var(--ed-gold); border-color: var(--ed-amber); background: var(--ed-cream-1); }

/* Block footer / mark done */
.block__foot {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--ed-cream-highlight);
  display: flex;
  justify-content: flex-end;
}
.block__done-btn {
  background: var(--ed-gradient);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.block__done-btn:hover, .block__done-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.block__done-btn:disabled {
  background: var(--ed-neutral);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.block.is-done .block__done-btn { display: none; }
.block__done-msg {
  font-size: 13.5px;
  color: var(--ed-success-text);
  font-weight: 600;
  display: none;
  align-items: center;
  gap: 8px;
}
.block.is-done .block__done-msg { display: flex; }

/* ============================================================ BADGES PANEL ============================================================ */
.badges-panel {
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 0 20px;
}
.badges-panel__header { margin-bottom: 16px; }
.badges-panel__title { font-family: var(--font-serif); font-size: 22px; font-weight: 600; }
.badges-panel__sub { font-size: 13.5px; color: var(--ed-muted); margin-top: 4px; }
.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.badge-card {
  background: #fff;
  border: 1px solid var(--ed-cream-highlight);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  text-align: center;
  transition: all 240ms var(--ease);
  filter: grayscale(1);
  opacity: 0.55;
}
.badge-card.is-unlocked {
  filter: none;
  opacity: 1;
  background: linear-gradient(180deg, #fff 0%, var(--ed-cream-1) 100%);
  border-color: var(--ed-amber);
  box-shadow: var(--shadow-md);
}
.badge-card__icon { font-size: 32px; margin-bottom: 8px; }
.badge-card__name { font-size: 14px; font-weight: 700; color: var(--ed-ink); }
.badge-card__desc { font-size: 12.5px; color: var(--ed-muted); margin-top: 4px; line-height: 1.4; }
@media (max-width: 720px) { .badges-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================ FOOTER ============================================================ */
.footer { max-width: 1100px; margin: 40px auto 0; padding: 24px 20px; }
.footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer__credit { font-size: 12px; color: var(--ed-caption); letter-spacing: 0.04em; }
.footer__reset {
  font-size: 12px; color: var(--ed-muted);
  background: transparent; border: 1px solid var(--ed-cream-highlight);
  padding: 6px 12px; border-radius: 999px;
  transition: all 200ms var(--ease);
}
.footer__reset:hover { background: var(--ed-cream-card); color: var(--ed-gold); }

/* ============================================================ TOASTS ============================================================ */
.toast-stack {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; gap: 8px;
  z-index: 200;
  pointer-events: none;
}
.toast {
  background: var(--ed-ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  animation: slideup 300ms var(--ease);
  display: flex; align-items: center; gap: 10px;
}
.toast--success { background: var(--ed-success-text); }
.toast--badge { background: var(--ed-gradient); }
.toast__icon { font-size: 18px; }
@keyframes slideup {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

/* ============================================================ FINAL SCREEN ============================================================ */
.finalscreen {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(44, 44, 42, 0.75);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  padding: 24px;
  animation: fadein 400ms var(--ease);
}
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.confetti { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.finalscreen__card {
  position: relative;
  background: var(--ed-bg);
  border-radius: var(--radius-xl);
  padding: 48px 40px 40px;
  max-width: 640px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(44,44,42,0.3);
  animation: popin 500ms var(--ease);
}
@keyframes popin {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.finalscreen__close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.6);
  color: var(--ed-ink);
  font-size: 14px;
}
.finalscreen__close:hover { background: #fff; }
.finalscreen__crown { font-size: 56px; margin-bottom: 12px; }
.finalscreen__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.grad-text {
  background: var(--ed-gradient);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.finalscreen__lead { font-size: 16px; color: var(--ed-ink); line-height: 1.55; max-width: 540px; margin: 0 auto; }
.finalscreen__lead--soft { margin-top: 12px; color: var(--ed-muted); font-style: italic; }
.finalscreen__summary {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.finalscreen__summary-item {
  background: #fff;
  border: 1px solid var(--ed-cream-highlight);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  font-size: 12.5px;
  color: var(--ed-ink);
  font-weight: 600;
}
.finalscreen__summary-item span { display: block; font-size: 22px; margin-bottom: 4px; }
@media (max-width: 560px) { .finalscreen__summary { grid-template-columns: 1fr 1fr; } }

/* ============================================================ MODAL ============================================================ */
.modal {
  position: fixed; inset: 0; z-index: 250;
  background: rgba(44, 44, 42, 0.6);
  display: grid; place-items: center;
  padding: 24px;
}
.modal__card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 420px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.modal__title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.modal__body { font-size: 14.5px; color: var(--ed-muted); margin-bottom: 20px; line-height: 1.5; }
.modal__actions { display: flex; justify-content: flex-end; gap: 10px; }

.btn {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: all 200ms var(--ease);
}
.btn--ghost { background: transparent; color: var(--ed-muted); border: 1px solid var(--ed-cream-highlight); }
.btn--ghost:hover { background: var(--ed-cream-card); color: var(--ed-ink); }
.btn--danger { background: #E85A4F; color: #fff; }
.btn--danger:hover { background: #d94c41; }

/* ============================================================ DIAGNÓSTICO FULL (Bloco 1) ============================================================ */
.diagf { margin-top: 8px; }
.diagf__intro {
  font-size: 14.5px; color: var(--ed-muted); line-height: 1.6; margin-bottom: 28px;
  background: var(--ed-cream-1); border-left: 3px solid var(--ed-amber);
  padding: 14px 18px; border-radius: 0 8px 8px 0;
}
.diagf__part {
  background: #fff;
  border: 1px solid var(--ed-cream-highlight);
  border-radius: var(--radius-md);
  padding: 26px 26px;
  margin-bottom: 20px;
  position: relative;
}
.diagf__part-num {
  position: absolute; top: 20px; right: 24px;
  font-family: var(--font-serif);
  font-size: 32px; font-weight: 600;
  color: var(--ed-gold); opacity: 0.35;
  line-height: 1;
}
.diagf__part-title {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 600;
  margin-bottom: 6px;
}
.diagf__part-sub {
  font-size: 13.5px; color: var(--ed-muted);
  margin-bottom: 18px;
}

.diagf__sliders { display: flex; flex-direction: column; gap: 14px; }
.diag-slider {
  background: var(--ed-cream-1);
  border: 1px solid var(--ed-cream-highlight);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: all 200ms var(--ease);
}
.diag-slider.is-lowest {
  border-color: var(--ed-amber);
  background: var(--ed-cream-card);
  box-shadow: 0 0 0 3px rgba(239, 159, 39, 0.12);
}
.diag-slider__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 4px;
}
.diag-slider__label { font-size: 14px; font-weight: 700; color: var(--ed-ink); }
.diag-slider__val {
  font-family: var(--font-serif); font-size: 24px; font-weight: 600;
  color: var(--ed-gold); font-variant-numeric: tabular-nums;
  line-height: 1;
}
.diag-slider__q { font-size: 12.5px; color: var(--ed-muted); margin-bottom: 10px; line-height: 1.4; }
.diag-slider__input {
  width: 100%; height: 4px;
  -webkit-appearance: none; appearance: none;
  background: var(--ed-neutral);
  border-radius: 999px;
  outline: none;
}
.diag-slider__input::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px;
  background: var(--ed-gradient);
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 200ms var(--ease);
}
.diag-slider__input::-webkit-slider-thumb:hover { transform: scale(1.15); }
.diag-slider__input::-moz-range-thumb {
  width: 20px; height: 20px;
  background: var(--ed-gold);
  border: 2px solid #fff;
  border-radius: 50%; cursor: pointer;
}
.diag-slider__scale {
  display: flex; justify-content: space-between;
  font-size: 10.5px; color: var(--ed-caption);
  margin-top: 6px; letter-spacing: 0.08em;
}

.diagf__lowest {
  margin-top: 18px; padding: 14px 18px;
  background: var(--ed-cream-card);
  border: 1px solid var(--ed-cream-highlight);
  border-radius: var(--radius-sm);
  font-size: 14px; color: var(--ed-ink);
}
.diagf__lowest-label { color: var(--ed-muted); margin-right: 6px; }
.diagf__lowest strong { color: var(--ed-gold); font-weight: 700; }
.diagf__lowest-val { color: var(--ed-muted); font-size: 13px; margin-left: 4px; }

.diagf__questions { display: flex; flex-direction: column; gap: 14px; }
.diag-q__label {
  display: block; font-size: 13.5px; color: var(--ed-ink);
  margin-bottom: 6px; line-height: 1.4;
}
.diag-q__field {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--ed-cream-highlight);
  border-radius: var(--radius-sm);
  background: #fff; font: inherit; font-size: 14px;
  color: var(--ed-ink); resize: vertical; min-height: 44px;
  transition: border-color 200ms var(--ease);
  font-family: inherit;
}
.diag-q__field:focus {
  outline: none; border-color: var(--ed-amber);
  box-shadow: 0 0 0 3px rgba(239, 159, 39, 0.18);
}

.diagf__niveis { display: flex; flex-direction: column; gap: 8px; }
.diag-nivel {
  display: flex; align-items: center; gap: 14px;
  background: var(--ed-cream-1);
  border: 1.5px solid var(--ed-cream-highlight);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  cursor: pointer; text-align: left;
  transition: all 200ms var(--ease);
  width: 100%; font-family: inherit;
}
.diag-nivel:hover { border-color: var(--ed-amber); background: var(--ed-cream-card); }
.diag-nivel.is-selected {
  background: var(--ed-cream-card); border-color: var(--ed-gold);
  box-shadow: 0 0 0 3px rgba(186, 117, 23, 0.12);
}
.diag-nivel__num {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  background: #fff; border: 1.5px solid var(--ed-cream-highlight);
  display: grid; place-items: center;
  font-family: var(--font-serif); font-size: 15px; font-weight: 600;
  color: var(--ed-gold);
}
.diag-nivel.is-selected .diag-nivel__num {
  background: var(--ed-gradient); color: #fff; border-color: transparent;
}
.diag-nivel__label { font-size: 14.5px; color: var(--ed-ink); font-weight: 500; }

.diagf__niveis-note {
  margin-top: 14px; padding: 12px 14px;
  background: var(--ed-cream-1); border-left: 3px solid var(--ed-amber);
  border-radius: 0 6px 6px 0;
  font-size: 13px; color: var(--ed-muted); line-height: 1.5; font-style: italic;
}

.diagf__save {
  margin-top: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ed-gradient); color: #fff;
  padding: 14px 24px; border-radius: 999px;
  font-size: 14px; font-weight: 700;
  box-shadow: var(--shadow-md);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.diagf__save:hover:not(:disabled) { transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.diagf__save:disabled { background: var(--ed-neutral); cursor: not-allowed; box-shadow: none; }

.diagf__saved {
  background: linear-gradient(180deg, #fff 0%, var(--ed-cream-1) 100%);
  border: 1px solid var(--ed-amber);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  box-shadow: var(--shadow-md);
}
.diagf__saved-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.diagf__saved-title { font-family: var(--font-serif); font-size: 22px; font-weight: 600; }
.diagf__saved-line { font-size: 14px; margin-bottom: 8px; line-height: 1.5; }
.diagf__saved-line strong { color: var(--ed-gold); font-weight: 700; }
.diagf__saved-note { margin-top: 12px; font-size: 13px; color: var(--ed-muted); font-style: italic; }
.diagf__reset-btn {
  font-size: 12px; color: var(--ed-muted);
  background: transparent; padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--ed-cream-highlight);
  transition: all 200ms var(--ease);
}
.diagf__reset-btn:hover { border-color: var(--ed-amber); color: var(--ed-gold); }

/* ============================================================ FUNIL BUILDER (Bloco 3) ============================================================ */
.funnb { margin-top: 8px; }
.funnb__intro {
  font-size: 14.5px; color: var(--ed-muted); line-height: 1.6; margin-bottom: 28px;
  background: var(--ed-cream-1); border-left: 3px solid var(--ed-amber);
  padding: 14px 18px; border-radius: 0 8px 8px 0;
}

.funnb__field {
  display: flex; gap: 18px; align-items: flex-start;
  background: #fff;
  border: 1px solid var(--ed-cream-highlight);
  border-radius: var(--radius-md);
  padding: 24px 24px;
  margin-bottom: 16px;
}
.funnb__field-num {
  flex: 0 0 auto; width: 36px; height: 36px; border-radius: 50%;
  background: var(--ed-cream-card); color: var(--ed-gold);
  display: grid; place-items: center;
  font-family: var(--font-serif); font-size: 15px; font-weight: 700;
  border: 1px solid var(--ed-cream-highlight);
}
.funnb__field-body { flex: 1; min-width: 0; }
.funnb__label {
  display: block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ed-gold); margin-bottom: 12px;
}
.funnb__input {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--ed-cream-highlight);
  border-radius: var(--radius-sm);
  background: var(--ed-cream-1);
  font: inherit; font-size: 14.5px; color: var(--ed-ink);
  transition: all 200ms var(--ease);
  margin-bottom: 8px;
  font-family: inherit;
}
.funnb__input:last-child { margin-bottom: 0; }
.funnb__input:focus {
  outline: none; border-color: var(--ed-amber);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(239, 159, 39, 0.18);
}

.funnb__radios { display: flex; flex-direction: column; gap: 8px; margin-bottom: 10px; }
.funnb__radio {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--ed-cream-1);
  border: 1.5px solid var(--ed-cream-highlight);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  transition: all 200ms var(--ease);
}
.funnb__radio:hover { border-color: var(--ed-amber); background: var(--ed-cream-card); }
.funnb__radio.is-selected {
  background: var(--ed-cream-card); border-color: var(--ed-gold);
  box-shadow: 0 0 0 3px rgba(186, 117, 23, 0.12);
}
.funnb__radio input[type="radio"] { margin-top: 4px; accent-color: var(--ed-gold); }
.funnb__radio-title { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.funnb__radio-desc { font-size: 12.5px; color: var(--ed-muted); }

/* ESCADA */
.funnb__ladder-title {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ed-gold);
  margin: 28px 0 12px;
}
.funnb__ladder {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 10px; align-items: stretch;
  background: linear-gradient(135deg, rgba(186, 117, 23, 0.06), rgba(239, 159, 39, 0.10));
  border: 1px solid var(--ed-cream-highlight);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
}
@media (max-width: 720px) {
  .funnb__ladder {
    grid-template-columns: 1fr;
  }
  .funnb__ladder .ladder-arrow { transform: rotate(90deg); padding: 4px 0; }
}
.ladder-step {
  background: #fff;
  border: 1px solid var(--ed-cream-highlight);
  border-radius: var(--radius-md);
  padding: 16px 16px;
  text-align: center;
  display: flex; flex-direction: column; justify-content: center;
  min-height: 100px;
}
.ladder-step__label {
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ed-gold); font-weight: 700; margin-bottom: 6px;
}
.ladder-step__name {
  font-family: var(--font-serif); font-size: 16px; font-weight: 600;
  color: var(--ed-ink); margin-bottom: 4px; line-height: 1.25;
  word-break: break-word;
}
.ladder-step__desc { font-size: 12px; color: var(--ed-muted); font-style: italic; line-height: 1.4; }
.ladder-arrow {
  display: grid; place-items: center;
  color: var(--ed-gold); font-size: 22px; opacity: 0.7;
  font-weight: 700;
}

/* TESTE */
.funnb__test {
  background: #fff; border: 1px solid var(--ed-cream-highlight);
  border-radius: var(--radius-md); padding: 22px 24px; margin-bottom: 20px;
}
.funnb__test-title {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ed-gold); margin-bottom: 14px;
}
.funnb__check {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; margin-bottom: 6px;
  background: var(--ed-cream-1);
  border: 1.5px dashed var(--ed-cream-highlight);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 200ms var(--ease);
}
.funnb__check:hover { border-color: var(--ed-amber); background: var(--ed-cream-card); }
.funnb__check-box {
  flex: 0 0 auto;
  width: 20px; height: 20px; border-radius: 6px;
  border: 2px solid var(--ed-neutral); background: #fff;
  display: grid; place-items: center;
  transition: all 200ms var(--ease);
}
.funnb__check.is-done { border-color: var(--ed-success-text); background: var(--ed-success-bg); border-style: solid; }
.funnb__check.is-done .funnb__check-box { background: var(--ed-success-text); border-color: var(--ed-success-text); }
.funnb__check.is-done .funnb__check-box::after { content: '✓'; color: #fff; font-size: 12px; font-weight: 700; }
.funnb__check-label { font-size: 13.5px; color: var(--ed-ink); }
.funnb__check.is-done .funnb__check-label { color: var(--ed-success-text); font-weight: 600; }

/* REF AUTORIDADE 30 */
.funnb__ref {
  background: linear-gradient(180deg, #fff 0%, var(--ed-cream-1) 100%);
  border: 1px solid var(--ed-cream-highlight);
  border-radius: var(--radius-md);
  padding: 22px 24px; margin-bottom: 20px;
}
.funnb__ref-label {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ed-gold); margin-bottom: 14px;
}
.funnb__ref-arc {
  display: flex; align-items: center; justify-content: space-between;
  gap: 6px; flex-wrap: wrap;
  padding: 14px 12px; background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--ed-cream-highlight);
}
.funnb__ref-week {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--ed-ink);
}
.funnb__ref-week-num {
  display: inline-grid; place-items: center;
  min-width: 26px; height: 26px; padding: 0 8px;
  background: var(--ed-cream-card);
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  color: var(--ed-gold);
}
.funnb__ref-arrow { color: var(--ed-gold); font-weight: 700; opacity: 0.6; }
.funnb__ref-note {
  margin-top: 12px; font-size: 12.5px; color: var(--ed-muted);
  font-style: italic; line-height: 1.5;
}

.funnb__save {
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ed-gradient); color: #fff;
  padding: 14px 24px; border-radius: 999px;
  font-size: 14px; font-weight: 700;
  box-shadow: var(--shadow-md);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.funnb__save:hover:not(:disabled) { transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.funnb__save:disabled { background: var(--ed-neutral); cursor: not-allowed; box-shadow: none; }

.funnb__saved {
  background: linear-gradient(180deg, #fff 0%, var(--ed-cream-1) 100%);
  border: 1px solid var(--ed-amber);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  box-shadow: var(--shadow-md);
}
.funnb__saved-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.funnb__saved-title { font-family: var(--font-serif); font-size: 22px; font-weight: 600; }
.funnb__saved-line { font-size: 14px; margin-bottom: 8px; line-height: 1.5; }
.funnb__saved-line strong { color: var(--ed-gold); font-weight: 700; }
.funnb__saved-note { margin-top: 12px; font-size: 13px; color: var(--ed-muted); font-style: italic; }
.funnb__reset-btn {
  font-size: 12px; color: var(--ed-muted);
  background: transparent; padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--ed-cream-highlight);
  transition: all 200ms var(--ease);
}
.funnb__reset-btn:hover { border-color: var(--ed-amber); color: var(--ed-gold); }

/* Diagnóstico Parte 2 · Quiz opções */
.diagf__quiz { display: flex; flex-direction: column; gap: 22px; }
.diag-quiz-q {
  background: var(--ed-cream-1);
  border: 1px solid var(--ed-cream-highlight);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.diag-quiz-q__head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.diag-quiz-q__num {
  flex: 0 0 auto;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--ed-cream-card); color: var(--ed-gold);
  display: grid; place-items: center;
  font-weight: 800; font-size: 13px;
  border: 1px solid var(--ed-cream-highlight);
  margin-top: 1px;
}
.diag-quiz-q__text {
  font-family: var(--font-serif);
  font-size: 17px; font-weight: 600; line-height: 1.35;
  color: var(--ed-ink);
}
.diag-quiz-q__opts { display: flex; flex-direction: column; gap: 8px; }
.diag-quiz-opt {
  background: #fff;
  border: 1.5px solid var(--ed-cream-highlight);
  color: var(--ed-ink);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  transition: all 200ms var(--ease);
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}
.diag-quiz-opt:hover { border-color: var(--ed-amber); background: var(--ed-cream-1); }
.diag-quiz-opt.is-selected {
  background: var(--ed-cream-card);
  border-color: var(--ed-gold);
  color: var(--ed-gold);
  font-weight: 600;
  box-shadow: 0 0 0 3px rgba(186, 117, 23, 0.10);
}
