.gcqa {
    --paper: #F3F6FA;
    --card: #FFFFFF;
    --ink: #1C2B39;
    --ink-soft: #4B5C6E;
    --ink-faint: #8695A6;
    --grid-line: rgba(28,74,120,0.09);
    --red-pen: #C0392B;
    --red-pen-soft: rgba(192,57,43,0.10);
    --green-ok: #3F8F5F;
    --green-ok-soft: rgba(63,143,95,0.10);
    --radius: 14px;
    --shadow: 0 1px 2px rgba(20,30,45,0.05), 0 10px 30px rgba(20,30,45,0.07);
    --font-display: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
    --font-body: 'Spectral', Georgia, 'Times New Roman', serif;
    --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

    position: relative;
    max-width: 640px;
    margin: 2rem auto;
    padding: 0 16px 16px;
    font-family: var(--font-body);
    color: var(--ink);
    background:
      repeating-linear-gradient(0deg, var(--grid-line) 0 1px, transparent 1px 28px),
      repeating-linear-gradient(90deg, var(--grid-line) 0 1px, transparent 1px 28px),
      var(--paper);
    border-radius: 18px;
    box-sizing: border-box;
  }
  .gcqa, .gcqa * { box-sizing: border-box; }
  .gcqa h1, .gcqa h2, .gcqa h3, .gcqa button, .gcqa .gcqa-mono {
    font-family: var(--font-display);
    letter-spacing: -0.01em;
  }
  .gcqa button { cursor: pointer; }
  .gcqa button:disabled { cursor: not-allowed; opacity: 0.45; }
  .gcqa :focus-visible {
    outline: 3px solid var(--red-pen);
    outline-offset: 2px;
  }

  /* Ruled margin line — runs down the left of the whole widget,
     like the red rule on a school exercise book page. */
  .gcqa-margin {
    position: absolute;
    top: 0; bottom: 0; left: 34px;
    width: 2px;
    background: rgba(192,57,43,0.28);
    pointer-events: none;
  }

  .gcqa-header {
    padding: 22px 8px 6px 52px;
    position: relative;
  }
  .gcqa-brand {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-soft);
  }

  .gcqa-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 10px 8px 0 44px;
    padding: 28px 24px 26px;
  }

  .gcqa-screen { display: none; }
  .gcqa-screen.active { display: block; animation: gcqa-fade 0.35s ease; }
  @media (prefers-reduced-motion: reduce) {
    .gcqa-screen.active { animation: none; }
  }
  @keyframes gcqa-fade { from { opacity: 0; transform: translateY(4px);} to { opacity: 1; transform: none; } }

  .gcqa-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--red-pen);
    margin: 0 0 8px;
  }
  .gcqa h1 {
    font-size: 1.55rem;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.2;
  }
  .gcqa-sub {
    font-size: 1rem;
    color: var(--ink-soft);
    margin: 0 0 22px;
    line-height: 1.5;
  }

  /* Tier picker */
  .gcqa-tiers {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 22px;
  }
  .gcqa-tier {
    flex: 1 1 180px;
    text-align: left;
    background: var(--paper);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 16px 16px 14px;
    font-family: var(--font-body);
    color: var(--ink);
  }
  .gcqa-tier strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.02rem;
    margin-bottom: 3px;
  }
  .gcqa-tier span { font-size: 0.86rem; color: var(--ink-soft); }
  .gcqa-tier.gcqa-selected {
    border-color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .gcqa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    background: var(--ink);
    color: #fff;
    transition: transform 0.15s ease, background 0.15s ease;
  }
  .gcqa-btn:hover:not(:disabled) { background: #10202f; }
  .gcqa-btn:active:not(:disabled) { transform: scale(0.99); }
  .gcqa-btn-ghost {
    background: transparent;
    color: var(--ink-soft);
    border: 1.5px solid var(--grid-line);
    font-weight: 500;
  }
  .gcqa-btn-ghost:hover { border-color: var(--ink-soft); color: var(--ink); }

  .gcqa-footnote {
    font-size: 0.78rem;
    color: var(--ink-faint);
    margin-top: 14px;
    line-height: 1.5;
  }

  /* Topic list (Change 1) */
  .gcqa-topic-list {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
  }
  .gcqa-topic-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    font-size: 1rem;
    color: var(--ink);
  }
  .gcqa-topic-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red-pen);
  }

  .gcqa-time-limit-msg {
    text-align: center;
    margin: 14px 0 0;
  }
  .gcqa-time-limit-line {
    font-family: var(--font-mono);
    font-size: 1.275rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--red-pen);
    margin: 0 0 6px;
  }
  .gcqa-calculator-line {
    font-family: var(--font-body);
    font-size: 1.275rem;
    font-weight: 500;
    font-style: italic;
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.4;
  }
  .gcqa-calculator-warn {
    color: var(--red-pen);
    font-weight: 700;
    font-style: normal;
  }

  /* Timer (Change 5) */
  .gcqa-timer-wrap { margin-bottom: 18px; }
  .gcqa-timer-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
  }
  .gcqa-timer-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-soft);
  }
  .gcqa-timer-value {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
  }
  .gcqa-timer-track {
    height: 8px;
    border-radius: 4px;
    background: var(--grid-line);
    overflow: hidden;
  }
  .gcqa-timer-fill {
    height: 100%;
    width: 0%;
    background: var(--green-ok);
    border-radius: 4px;
    transition: width 1s linear, background 0.3s ease;
  }
  .gcqa-timer-fill.over-time { background: var(--red-pen); }
  @media (prefers-reduced-motion: reduce) {
    .gcqa-timer-fill { transition: background 0.3s ease; }
  }

  /* Progress ruler */
  .gcqa-progress-wrap { margin-bottom: 20px; }
  .gcqa-progress-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--ink-soft);
    margin-bottom: 8px;
  }
  .gcqa-ruler {
    display: flex;
    gap: 4px;
  }
  .gcqa-tick {
    height: 6px;
    flex: 1;
    background: var(--grid-line);
    border-radius: 2px;
  }
  .gcqa-tick.done { background: var(--ink); }
  .gcqa-tick.current { background: var(--red-pen); }

  .gcqa-qnum {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--red-pen);
    font-weight: 600;
    margin: 0 0 6px;
  }
  .gcqa-question {
    font-size: 1.18rem;
    line-height: 1.4;
    margin: 0 0 18px;
  }

  .gcqa-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
  }
  .gcqa-option {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    background: var(--paper);
    border: 1.5px solid var(--grid-line);
    border-radius: 10px;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ink);
  }
  .gcqa-option:hover { border-color: var(--ink-soft); }
  .gcqa-option .gcqa-tickbox {
    flex: 0 0 20px;
    width: 20px; height: 20px;
    border-radius: 5px;
    border: 1.5px solid var(--ink-faint);
    background: #fff;
    position: relative;
  }
  .gcqa-option.gcqa-selected {
    border-color: var(--ink);
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
  }
  .gcqa-option.gcqa-selected .gcqa-tickbox {
    background: var(--ink);
    border-color: var(--ink);
  }
  .gcqa-option.gcqa-selected .gcqa-tickbox::after {
    content: "";
    position: absolute;
    left: 6px; top: 2px;
    width: 6px; height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(40deg);
  }

  /* Gate form */
  .gcqa-field { margin-bottom: 14px; }
  .gcqa-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 5px;
  }
  .gcqa-field input,
  .gcqa-field select {
    width: 100%;
    padding: 11px 12px;
    border-radius: 8px;
    border: 1.5px solid var(--grid-line);
    background: var(--paper);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ink);
  }
  .gcqa-field input:focus,
  .gcqa-field select:focus { border-color: var(--ink); outline: none; }

  /* Results */
  .gcqa-score-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 22px;
    flex-wrap: wrap;
  }
  .gcqa-score-circle {
    position: relative;
    width: 120px;
    height: 90px;
    flex: 0 0 120px;
  }
  .gcqa-score-circle svg { position: absolute; inset: 0; width: 100%; height: 100%; }
  .gcqa-score-circle path {
    fill: none;
    stroke: var(--red-pen);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 620;
    stroke-dashoffset: 620;
    transition: stroke-dashoffset 1s ease 0.15s;
  }
  .gcqa-score-circle.drawn path { stroke-dashoffset: 0; }
  @media (prefers-reduced-motion: reduce) {
    .gcqa-score-circle path { transition: none; stroke-dashoffset: 0; }
  }
  .gcqa-score-num {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 1.7rem;
    font-weight: 600;
  }
  .gcqa-score-text strong { display: block; font-family: var(--font-display); font-size: 1.1rem; }
  .gcqa-score-text span { color: var(--ink-soft); font-size: 0.9rem; }

  .gcqa-topics { margin-bottom: 20px; }
  .gcqa-topic-row { margin-bottom: 12px; }
  .gcqa-topic-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.88rem;
    margin-bottom: 5px;
  }
  .gcqa-topic-name { font-weight: 600; }
  .gcqa-topic-pct { font-family: var(--font-mono); color: var(--ink-soft); }
  .gcqa-topic-track {
    height: 8px;
    border-radius: 4px;
    background: var(--grid-line);
    overflow: hidden;
  }
  .gcqa-topic-fill { height: 100%; background: var(--ink); border-radius: 4px; }
  .gcqa-topic-row.weak .gcqa-topic-fill { background: var(--red-pen); }
  .gcqa-topic-row.weak .gcqa-topic-pct { color: var(--red-pen); }
  .gcqa-topic-row.strong .gcqa-topic-fill { background: var(--green-ok); }
  .gcqa-badge {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 2px 7px;
    border-radius: 5px;
    margin-left: 8px;
  }
  .gcqa-badge.focus { background: var(--red-pen-soft); color: var(--red-pen); }
  .gcqa-badge.strength { background: var(--green-ok-soft); color: var(--green-ok); }

  .gcqa-diagnosis {
    background: var(--paper);
    border-radius: 10px;
    padding: 16px 16px;
    font-size: 0.96rem;
    line-height: 1.55;
    margin-bottom: 20px;
  }
  .gcqa-cta-row { display: flex; flex-direction: column; gap: 10px; }
  .gcqa-restart { text-align: center; margin-top: 14px; }
  .gcqa-restart button {
    background: none; border: none; font-family: var(--font-body);
    font-size: 0.85rem; color: var(--ink-faint); text-decoration: underline;
  }

  /* Scroll cue + post-completion promo reveal (Option B) */
  .gcqa-scroll-cue {
    text-align: center;
    margin: 32px 0 16px;
    color: var(--red-pen);
  }
  .gcqa-scroll-arrow {
    font-size: 1.4rem;
    line-height: 1;
    animation: gcqa-bounce 1.6s ease-in-out infinite;
  }
  .gcqa-scroll-cue p {
    margin: 4px 0 0;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  @keyframes gcqa-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
  }
  @media (prefers-reduced-motion: reduce) {
    .gcqa-scroll-arrow { animation: none; }
  }

  .gcqa-promo-below {
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius);
    padding: 24px 22px;
    text-align: center;
  }
  .gcqa-promo-below-eyebrow {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.65);
    margin: 0 0 10px;
  }
  .gcqa-promo-below-message {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 18px;
  }
  .gcqa-promo-below-message p { margin: 0 0 10px; }
  .gcqa-promo-below-message p:last-child { margin-bottom: 0; }
  .gcqa-promo-below-message a { color: #fff; }
  .gcqa-promo-below-code-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.65);
    margin: 0 0 4px;
  }
  .gcqa-promo-below-code {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.1;
    color: #fff;
    margin: 0;
    word-break: break-all;
  }

  .gcqa-visually-hidden {
    position: absolute; width: 1px; height: 1px; overflow: hidden;
    clip: rect(0 0 0 0); white-space: nowrap;
  }

  @media (max-width: 420px) {
    .gcqa-card { padding: 22px 16px 20px; margin-left: 36px; }
    .gcqa-header { padding-left: 44px; }
    .gcqa-margin { left: 26px; }
  }

/* ============================================================
   PROMO BANNER — rendered as a sibling above the .gcqa widget
   (not inside it), so it uses its own explicit values rather
   than the var(--...) tokens scoped to .gcqa.
   ============================================================ */
.gcqa-promo {
  max-width: 640px;
  margin: 0 auto 16px;
  border-radius: 14px;
  overflow: hidden;
  background: #1C2B39;
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(20,30,45,0.05), 0 10px 30px rgba(20,30,45,0.07);
}
.gcqa-promo-image img {
  width: 100%;
  height: auto;
  display: block;
}
.gcqa-promo-body {
  padding: 20px 22px 22px;
}
.gcqa-promo-eyebrow {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  margin: 0 0 8px;
}
.gcqa-promo-message {
  font-family: 'Spectral', Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  line-height: 1.6;
}
.gcqa-promo-message p { margin: 0 0 10px; }
.gcqa-promo-message p:last-child { margin-bottom: 0; }
.gcqa-promo-message a { color: #ffffff; }
.gcqa-promo-teaser-note {
  margin: 14px 0 0;
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   KS3 THEME — re-skins the shared component system via the same
   CSS custom properties the GCSE styles already use, then adds
   a handful of KS3-only components (characters, hourglass, the
   interstitial screens, and the certificate).
   ============================================================ */
.gcqa.gcqa-ks3 {
  --paper: #FFF8EC;
  --card: #FFF8EC;
  --ink: #3A2E23;
  --ink-soft: #7A6A58;
  --ink-faint: #A69787;
  --grid-line: rgba(122,106,88,0.15);
  --red-pen: #FF6B5B;
  --red-pen-soft: rgba(255,107,91,0.12);
  --green-ok: #3DBFB0;
  --green-ok-soft: rgba(61,191,176,0.12);
  --radius: 26px;
  --shadow: 0 4px 0 rgba(58,46,35,0.10), 0 14px 34px rgba(58,46,35,0.12);
  --font-display: 'Chewy', cursive;
  --font-body: 'Quicksand', ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'Baloo 2', ui-sans-serif, system-ui, sans-serif;
  background: #E8E4FF;
}
.gcqa-ks3 .gcqa-margin { display: none; }
.gcqa-ks3 .gcqa-header { padding-left: 8px; }
.gcqa-ks3 h1 { font-weight: 400; letter-spacing: 0.01em; }
.gcqa-ks3 .gcqa-btn {
  background: var(--red-pen);
  border-radius: 18px;
  box-shadow: 0 5px 0 #D8503F;
  font-family: var(--font-mono);
  font-weight: 700;
}
.gcqa-ks3 .gcqa-btn:hover:not(:disabled) { background: var(--red-pen); }
.gcqa-ks3 .gcqa-btn:active:not(:disabled) { box-shadow: 0 1px 0 #D8503F; }
.gcqa-ks3 .gcqa-btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  box-shadow: none;
  border: 2px solid var(--grid-line);
}
.gcqa-ks3 .gcqa-tier,
.gcqa-ks3 .gcqa-option {
  border-radius: 16px;
}
.gcqa-ks3 .gcqa-tier.gcqa-selected,
.gcqa-ks3 .gcqa-option.gcqa-selected {
  border-color: var(--red-pen);
}
.gcqa-ks3 .gcqa-option.gcqa-selected .gcqa-tickbox {
  background: var(--red-pen);
  border-color: var(--red-pen);
}
.gcqa-ks3 .gcqa-topic-list li::before { background: var(--red-pen); }

/* Character row (used on Ready and Break/Celebrate screens) */
.gcqa-char-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 14px;
  margin: 4px 0 18px;
}
.gcqa-char-row .gcqa-char {
  width: 30%;
  max-width: 110px;
  height: auto;
  animation: gcqaCharBounce 1.8s ease-in-out infinite;
}
.gcqa-char-row .gcqa-char:nth-child(2) { animation-delay: 0.2s; }
.gcqa-char-row .gcqa-char:nth-child(3) { animation-delay: 0.4s; }
@keyframes gcqaCharBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .gcqa-char-row .gcqa-char { animation: none; }
}

/* Ready / Steady / Go */
.gcqa-readytext { text-align: center; margin-bottom: 6px; }
.gcqa-readytext span {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  opacity: 0;
  transform: scale(0.5);
  animation: gcqaReadyPop 0.5s ease forwards;
}
.gcqa-readytext span:nth-child(1) { animation-delay: 0.1s; color: var(--red-pen); }
.gcqa-readytext span:nth-child(2) { animation-delay: 1.4s; color: var(--green-ok); }
.gcqa-readytext span:nth-child(3) { animation-delay: 2.7s; color: #7C83FD; font-size: 2.2rem; }
@keyframes gcqaReadyPop { to { opacity: 1; transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .gcqa-readytext span { animation: none; opacity: 1; transform: none; }
}

.gcqa-break-title {
  text-align: center;
  font-size: 1.5rem;
  margin: 0 0 6px;
  color: var(--ink);
}
.gcqa-center { text-align: center; }

/* Auto-advance countdown bar, shared by Ready/Break/Celebrate */
.gcqa-autobar {
  height: 6px;
  background: var(--grid-line);
  border-radius: 4px;
  margin-top: 16px;
  overflow: hidden;
}
.gcqa-autobar-fill {
  height: 100%;
  width: 0%;
  background: #7C83FD;
  border-radius: 4px;
}
.gcqa-autobar-fill.run { animation: gcqaFillBar 5s linear forwards; }
@keyframes gcqaFillBar { to { width: 100%; } }
@media (prefers-reduced-motion: reduce) {
  .gcqa-autobar-fill.run { animation-duration: 0.01s; }
}

/* Hourglass timer (KS3 only — replaces the GCSE bar timer) */
.gcqa-hourglass-wrap { text-align: center; margin: 4px 0 16px; }
.gcqa-hourglass-svg { width: 70px; height: auto; }
.gcqa-sand-top { transform-origin: top center; animation: gcqaSandDrain 6s ease-in-out infinite alternate; }
.gcqa-sand-bottom { transform-origin: bottom center; animation: gcqaSandFill 6s ease-in-out infinite alternate; }
@keyframes gcqaSandDrain { from { transform: scaleY(1); } to { transform: scaleY(0); } }
@keyframes gcqaSandFill { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@media (prefers-reduced-motion: reduce) {
  .gcqa-sand-top, .gcqa-sand-bottom { animation: none; }
}
.gcqa-timer-readout {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin-top: 2px;
}

/* Confetti (Celebrate screen) */
.gcqa-confetti-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: var(--radius);
}
.gcqa-confetto {
  position: absolute;
  top: -16px;
  width: 9px;
  height: 14px;
  opacity: 0.9;
  animation: gcqaConfettiFall 2.6s ease-in forwards;
}
@keyframes gcqaConfettiFall { to { transform: translateY(420px) rotate(400deg); opacity: 0.2; } }
@media (prefers-reduced-motion: reduce) {
  .gcqa-confetto { display: none; }
}

/* Certificate (Results screen, above the score) */
.gcqa-cert {
  position: relative;
  background: #fff;
  border: 4px dashed #E8A317;
  border-radius: 20px;
  padding: 22px 18px 18px;
  text-align: center;
  margin-bottom: 22px;
}
.gcqa-cert-star {
  width: 50px; height: 50px; margin: 0 auto 8px;
  fill: #FFC844; stroke: var(--ink); stroke-width: 2;
  transform: scale(0) rotate(-30deg);
}
.gcqa-cert.gcqa-cert-drawn .gcqa-cert-star,
.gcqa-cert-drawn .gcqa-cert-star {
  animation: gcqaStarPop 0.6s cubic-bezier(.34,1.56,.64,1) forwards;
  animation-delay: 0.2s;
}
@keyframes gcqaStarPop { to { transform: scale(1) rotate(0deg); } }
@media (prefers-reduced-motion: reduce) {
  .gcqa-cert-star { animation: none !important; transform: scale(1) rotate(0deg); }
}
.gcqa-cert-title { font-family: var(--font-display); font-size: 1.4rem; color: var(--red-pen); margin: 0 0 4px; font-weight: 400; }
.gcqa-cert-sub { font-family: var(--font-mono); font-weight: 700; color: var(--ink-soft); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }
