:root {
  color-scheme: light;
  --paper: #fff6e8;
  --paper-deep: #f2dfc4;
  --paper-light: #fffdf8;
  --ink: #171717;
  --muted: #62584e;
  --coral: #ff5a4f;
  --coral-dark: #d83f38;
  --blue: #2457ff;
  --blue-dark: #1738a8;
  --blue-soft: #edf1ff;
  --yellow: #ffe45c;
  --mint: #bff3d0;
  --whatsapp: #25d366;
  --white: #ffffff;
  --line: #d8cec1;
  --border: 3px solid var(--ink);
  --shadow-small: 5px 5px 0 var(--ink);
  --shadow-large: 0 18px 0 rgba(23, 23, 23, 0.08);
  --radius-small: 14px;
  --radius-medium: 22px;
  --radius-large: 30px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 9%, rgba(255, 228, 92, 0.78) 0 4px, transparent 5px),
    radial-gradient(circle at 95% 24%, rgba(36, 87, 255, 0.14) 0 96px, transparent 97px),
    linear-gradient(135deg, var(--paper) 0%, #fffaf2 52%, var(--paper-deep) 100%);
  background-attachment: fixed;
  background-size: 46px 46px, auto, auto;
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
textarea,
select,
input {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

button,
select {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

/* Alleen voor schermlezers: statusaankondigingen mogen niet als dubbele grote
   kop boven de uitslag verschijnen, maar moeten wel in de toegankelijkheids-
   boom blijven staan. */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border: var(--border);
  border-radius: 10px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 900;
  transform: translateY(-160%);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.site-shell {
  width: min(100% - 32px, 1080px);
  margin: 0 auto;
  padding: calc(24px + env(safe-area-inset-top)) 0 42px;
}

.site-header {
  /* Android 7/WebView 53 begrijpt CSS Grid nog niet. Flex houdt logo en
     hoofdacties ook daar bruikbaar; moderne browsers nemen daarna Grid over. */
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 26px;
  margin-bottom: 34px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 44px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 0.98rem;
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 0.8;
  text-transform: uppercase;
  transform: rotate(-2.5deg);
}

.brand strong {
  display: block;
  margin-top: 5px;
  font-size: clamp(2.1rem, 5vw, 3.65rem);
}

.brand strong span {
  color: var(--coral);
}

.brand-link {
  width: fit-content;
  text-decoration: none;
}

.header-share {
  display: inline-flex;
  min-height: 52px;
  width: fit-content;
  align-items: center;
  justify-content: center;
  justify-self: start;
  gap: 9px;
  padding: 8px 14px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
  font: inherit;
  line-height: 1.05;
  transform: rotate(-1deg);
  transition: transform 150ms ease, background 150ms ease;
}

.header-share-icon {
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  padding: 4px;
  border-radius: 50%;
  background: var(--whatsapp);
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.header-share strong {
  font-size: 0.84rem;
  font-weight: 950;
  white-space: nowrap;
}

.header-share:hover:not(:disabled),
.header-share:focus-visible {
  background: var(--mint);
  transform: translateY(-2px);
}

.header-share:disabled {
  cursor: wait;
  opacity: 0.55;
}

.desktop-nav {
  display: flex;
  width: max-content;
  align-items: center;
  justify-self: end;
  gap: 5px;
  padding: 5px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 3px 3px 0 var(--ink);
}

.activity-button {
  position: relative;
  /* Veilige fallback voor oudere Android-WebViews zonder CSS Grid. */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: white;
  box-shadow: 3px 3px 0 var(--ink);
}

.activity-button:hover,
.activity-button:focus-visible,
.activity-button[aria-expanded="true"] {
  background: var(--mint);
}

.activity-button svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.activity-count {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  padding: 0 5px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: white;
  background: var(--coral);
  font-size: 0.72rem;
  font-weight: 950;
}

.activity-panel {
  position: fixed;
  top: max(16px, env(safe-area-inset-top));
  right: max(16px, calc((100vw - 1080px) / 2));
  z-index: 80;
  width: min(430px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  padding: 22px;
  border: 3px solid var(--ink);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--ink), 0 20px 70px rgba(23, 23, 23, 0.28);
}

.activity-panel-heading,
.activity-item,
.notification-actions,
.beta-entry-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.activity-panel-heading h2,
.jij-dashboard h2,
.group-card h2,
.account-card h2,
.beta-entry-card h2 {
  margin: 5px 0 0;
}

.icon-close {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: white;
  font-size: 1.8rem;
  line-height: 1;
}

.activity-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 14px;
}

.activity-panel-actions {
  display: grid;
  gap: 10px;
}

.activity-share {
  display: grid;
  width: 100%;
  min-height: 72px;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  text-align: left;
}

.activity-share:hover,
.activity-share:focus-visible {
  background: var(--mint);
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--ink);
}

.activity-share svg {
  width: 42px;
  height: 42px;
  padding: 7px;
  border-radius: 50%;
  color: white;
  background: var(--whatsapp);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.activity-share span,
.activity-share small,
.activity-share strong {
  display: block;
}

.activity-share small {
  margin-bottom: 2px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.activity-share strong {
  font-size: 0.9rem;
  line-height: 1.15;
}

.activity-settings {
  width: fit-content;
  min-height: 44px;
  padding: 8px 2px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.activity-settings:hover,
.activity-settings:focus-visible {
  color: var(--blue-dark);
}

.activity-item {
  width: 100%;
  min-height: 72px;
  padding: 13px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  color: var(--ink);
  background: white;
  text-align: left;
}

.activity-item.unread {
  background: var(--yellow);
}

.activity-item span {
  display: grid;
  gap: 3px;
}

.activity-item small {
  color: var(--muted);
  font-weight: 700;
}

.jij-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 20px;
  margin: 26px 0;
}

.jij-status-card,
.notification-card,
.together-start-card,
.group-card,
.general-group-card,
.friends-card,
.account-card,
.beta-entry-card {
  padding: clamp(20px, 4vw, 32px);
  border: 3px solid var(--ink);
  border-radius: 28px;
  background: white;
  box-shadow: 6px 6px 0 var(--ink);
}

.jij-status-card {
  min-width: 0;
  max-width: 100%;
  background: var(--yellow);
}

.jij-badge-list {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
  margin: 20px 0;
}

.jij-badge {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 7px 3px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.jij-badge strong {
  font-size: 1.2rem;
}

.jij-badge small {
  font-size: 0.64rem;
  font-weight: 850;
}

.jij-badge.earned {
  color: white;
  background: var(--blue);
}

.notification-card form,
.group-form,
.account-card form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.setting-row {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.setting-row span {
  display: grid;
  gap: 4px;
}

.setting-row small {
  color: var(--muted);
  font-weight: 650;
}

.setting-row input {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  accent-color: var(--blue);
}

.group-card,
.general-group-card,
.friends-card,
.account-card,
.beta-entry-card,
.together-start-card,
.social-follow-card {
  margin: 24px 0;
}

.together-start-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(270px, 0.85fr);
  align-items: center;
  gap: clamp(20px, 4vw, 42px);
  background: var(--blue);
  color: white;
}

.together-start-card .eyebrow {
  width: fit-content;
  color: var(--ink);
}

.together-start-card h2 {
  margin: 8px 0 12px;
  color: white;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.together-start-card p {
  margin: 0;
  font-weight: 720;
  line-height: 1.5;
}

.friends-card {
  display: grid;
  gap: 18px;
  background: var(--paper-light);
}

.friends-card-heading,
.friends-list > article > div,
.friends-pending > article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.friends-card-heading h2 {
  margin: 7px 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
}

.friends-card-heading p,
.friends-list small,
.friends-pending small {
  color: var(--muted);
}

.friends-account-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.62fr);
  gap: 16px;
}

.friends-profile-form,
.friends-invite-form,
.friend-code-panel {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: white;
}

.friends-profile-form > div,
.friends-invite-form > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.friends-card label,
.friend-code-panel > span {
  font-size: 0.7rem;
  font-weight: 900;
}

.friends-card input {
  min-width: 0;
  min-height: 46px;
  padding: 9px 12px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  font: inherit;
}

.friend-code-panel {
  grid-row: span 2;
  align-content: center;
  background: var(--yellow);
}

.friend-code-panel strong {
  font-size: 1.45rem;
  letter-spacing: 0.08em;
}

.friends-list,
.friends-pending {
  display: grid;
  grid-column: 1 / -1;
  gap: 10px;
}

.friends-list > article,
.friends-pending > article {
  padding: 14px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: white;
}

.friends-list span,
.friends-pending span {
  display: grid;
  gap: 3px;
}

.friends-pending > article > div {
  display: flex;
  gap: 8px;
}

.friends-list details {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.friends-list summary {
  cursor: pointer;
  font-weight: 850;
}

.friends-list ul {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.76rem;
}

.friend-remove-action {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.66rem;
}

@media (max-width: 700px) {
  .friends-card-heading,
  .friends-list > article > div,
  .friends-pending > article {
    align-items: stretch;
    flex-direction: column;
  }

  .friends-account-panel {
    grid-template-columns: 1fr;
  }

  .friend-code-panel {
    grid-row: auto;
  }

  .friends-profile-form > div,
  .friends-invite-form > div {
    grid-template-columns: 1fr;
  }

  .friends-list .primary-action,
  .friends-card-heading .secondary-action {
    width: 100%;
  }
}

.together-start-actions {
  display: grid;
  gap: 11px;
}

.together-start-actions button {
  width: 100%;
}

.together-start-actions .secondary-action {
  background: white;
}

.together-start-actions small {
  min-height: 2.7em;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.76rem;
  font-weight: 780;
  line-height: 1.35;
}

.together-start-actions .is-ready {
  box-shadow: 6px 6px 0 var(--ink);
}

.together-view {
  width: min(820px, 100%);
  margin: 0 auto;
}

.together-play-card {
  display: grid;
  gap: 24px;
  padding: clamp(22px, 5vw, 44px);
  border: 3px solid var(--ink);
  border-radius: 30px;
  background: white;
  box-shadow: 8px 8px 0 var(--ink);
}

.together-progress {
  display: grid;
  gap: 9px;
}

.together-progress > strong {
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.together-progress > span {
  overflow: hidden;
  height: 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
}

.together-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--coral);
  transition: width 220ms ease;
}

#together-question-panel {
  display: grid;
  gap: 18px;
}

#together-question-panel[hidden] {
  display: none;
}

#together-question-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.8rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

#together-question-panel > small {
  color: var(--muted);
  font-weight: 750;
}

.together-answer-list {
  display: grid;
  gap: 12px;
}

.together-answer-button {
  width: 100%;
  min-height: 70px;
  text-align: left;
}

.together-result {
  display: grid;
  gap: 16px;
}

.together-result[hidden] {
  display: none;
}

.together-result > strong {
  display: grid;
  width: 170px;
  aspect-ratio: 1;
  place-items: center;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 7px 7px 0 var(--ink);
  font-size: 3.4rem;
  letter-spacing: -0.07em;
}

.together-result h2,
.together-result p {
  margin: 0;
}

.together-comparisons {
  display: grid;
  gap: 10px;
}

.together-comparison {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: var(--paper);
}

.together-comparison > span {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--coral);
  font-weight: 950;
}

.together-comparison.same > span {
  background: var(--mint);
}

.together-comparison div,
.together-comparison strong,
.together-comparison small {
  display: block;
  min-width: 0;
}

.together-comparison small {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 750;
}

.together-affiliate-card {
  width: 100%;
  margin-top: 26px;
}

.group-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.general-group-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 24px;
  background: var(--mint);
}

.general-group-card h2,
.general-group-card p {
  margin-top: 8px;
}

.general-group-stats {
  font-weight: 900;
}

.general-group-form {
  display: grid;
  gap: 10px;
}

.general-group-form label {
  font-size: 0.75rem;
  font-weight: 900;
}

.general-group-form input {
  width: 100%;
  min-height: 52px;
  padding: 10px 13px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  font: inherit;
}

.group-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--mint);
}

.group-item > div {
  display: grid;
  gap: 4px;
}

.group-item small {
  color: var(--muted);
  font-weight: 750;
}

.group-same-score {
  width: fit-content;
  max-width: 100%;
  margin: 4px 0 0;
  padding: 5px 9px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.group-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.group-history {
  width: 100%;
  border-top: 2px dashed var(--ink);
  padding-top: 12px;
}

.group-history summary {
  min-height: 44px;
  font-weight: 900;
  cursor: pointer;
}

.group-history-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.group-history-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: white;
}

.group-history-list article > strong {
  display: grid;
  width: 52px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 0.82rem;
}

.group-history-list span,
.group-history-list small {
  display: block;
}

.group-form-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.group-form-panel {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--paper);
}

.group-form-panel summary {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 15px;
  font-weight: 900;
  list-style: none;
  cursor: pointer;
}

.group-form-panel summary::-webkit-details-marker {
  display: none;
}

.group-form-panel summary span {
  font-size: 1.25rem;
  transition: transform 160ms ease;
}

.group-form-panel[open] summary span {
  transform: rotate(45deg);
}

.group-form-panel .group-form {
  grid-template-columns: 1fr;
  margin: 0;
  padding: 16px;
  border-top: 2px solid var(--ink);
}

.group-form-panel .group-form button {
  grid-column: auto;
}

.group-form {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: end;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.group-form h3 {
  grid-column: 1 / -1;
  margin: 0;
}

.group-form label {
  align-self: end;
}

.group-form input,
.account-card input {
  width: 100%;
  min-height: 52px;
  padding: 10px 13px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  font: inherit;
}

.account-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: end;
  gap: 24px;
  background: var(--blue-soft);
}

.account-card:focus {
  outline: 4px solid var(--blue);
  outline-offset: 5px;
}

.account-card form {
  margin: 0;
}

.google-login-wrap {
  display: grid;
  gap: 10px;
  align-self: center;
}

.google-login-wrap[hidden],
.google-native-button[hidden],
.account-divider[hidden] {
  display: none;
}

.google-login-wrap small {
  color: var(--muted);
}

.google-native-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 10px 18px;
  border: 2px solid #747775;
  border-radius: 12px;
  background: #fff;
  color: #1f1f1f;
  font: 700 1rem/1.2 Arial, sans-serif;
}

.google-g {
  color: #4285f4;
  font-size: 1.25rem;
  font-weight: 900;
}

.account-divider {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--muted);
}

.account-divider::before,
.account-divider::after {
  content: "";
  flex: 1;
  border-top: 1px solid var(--line);
}

.account-card > .feedback-status,
.account-card > .text-action {
  grid-column: 1 / -1;
}

.beta-entry-card {
  background: var(--yellow);
}

.social-follow-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: 24px;
  margin: 24px 0;
  padding: clamp(20px, 4vw, 32px);
  border: 3px solid var(--ink);
  border-radius: 28px;
  background: var(--coral);
  box-shadow: 6px 6px 0 var(--ink);
}

.social-follow-card h2 {
  margin: 6px 0 10px;
  font-size: clamp(1.65rem, 4vw, 2.45rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.social-follow-card p:not(.eyebrow) {
  margin: 0;
  font-weight: 720;
  line-height: 1.5;
}

.social-follow-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.social-follow-link {
  display: grid;
  min-height: 132px;
  place-content: center;
  gap: 3px;
  padding: 14px;
  border: 3px solid var(--ink);
  border-radius: 22px;
  color: var(--ink);
  background: white;
  box-shadow: 4px 4px 0 var(--ink);
  text-align: center;
  text-decoration: none;
}

.social-follow-link:hover,
.social-follow-link:focus-visible {
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 var(--ink);
}

.social-follow-link span {
  font-size: 1.7rem;
  font-weight: 950;
}

.social-follow-link strong,
.social-follow-link small {
  display: block;
}

.social-follow-link small {
  font-size: 0.67rem;
  font-weight: 800;
}

.tiktok-link {
  color: white;
  background: var(--ink);
}

.desktop-nav button {
  position: relative;
  min-height: 44px;
  min-width: 44px;
  padding: 9px 13px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 850;
}

.nav-research-badge {
  position: absolute;
  top: -5px;
  right: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  box-shadow: 1px 1px 0 var(--ink);
}

.nav-research-badge[hidden] {
  display: none;
}

.serious-nav-link.research-ready:not([aria-current="page"]) {
  /* De badge meldt dat er nieuwe serieuze inhoud klaarstaat. Een tweede
     volledig gekleurde tab leek op mobiel ten onrechte óók geselecteerd. */
  color: var(--blue-dark);
  background: transparent;
  box-shadow: none;
}

.desktop-nav button[aria-current="page"] {
  color: white;
  background: var(--ink);
}

.desktop-nav .beta-nav-action {
  color: var(--blue-dark);
  background: var(--yellow);
}

.app-view {
  animation: view-in 260ms ease-out;
}

/* Productie verbergt tijdelijke bètatoegang; de testbuild toont die onderdelen
   via een afzonderlijke variant van de markup. */
[data-beta-only] {
  display: none !important;
}

@keyframes view-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  align-items: center;
  gap: 28px;
}

.question-card {
  position: relative;
  padding: clamp(26px, 6vw, 56px);
  overflow: hidden;
  border: var(--border);
  border-radius: var(--radius-large);
  background: var(--paper-light);
  box-shadow: var(--shadow-large);
}

.question-card::before {
  position: absolute;
  top: -30px;
  right: 34px;
  width: 105px;
  height: 58px;
  background: var(--yellow);
  content: "";
  opacity: 0.85;
  transform: rotate(12deg);
}

.question-card::after {
  position: absolute;
  right: -54px;
  bottom: -56px;
  width: 150px;
  height: 150px;
  border: 26px solid rgba(255, 90, 79, 0.14);
  border-radius: 50%;
  content: "";
}

.question-card[aria-busy="true"] .answer-list {
  min-height: 74px;
}

.loading-line {
  margin: 0;
  padding: 18px;
  border: 2px dashed var(--ink);
  border-radius: 14px;
  color: var(--muted);
  background: white;
  font-weight: 800;
}

.load-error {
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: #ffe8e5;
}

.load-error p {
  margin: 0 0 14px;
  font-weight: 750;
  line-height: 1.45;
}

.together-error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.together-error-actions button {
  min-height: 44px;
}

.card-topline,
.result-heading,
.research-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.eyebrow {
  display: inline-block;
  margin: 0;
  padding: 7px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.085em;
  line-height: 1.1;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.eyebrow-yellow {
  background: var(--yellow);
}

.eyebrow-blue {
  color: white;
  background: var(--blue);
}

.category-stamp {
  position: relative;
  z-index: 1;
  padding-top: 6px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

#question-kind[hidden] + .category-stamp {
  margin-left: auto;
}

.daily-meter {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) minmax(240px, auto) auto;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 10px 12px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: rgba(255, 228, 92, 0.28);
  font-size: 0.72rem;
  font-weight: 850;
}

.daily-dots {
  display: inline-flex;
  gap: 6px;
}

.streak-pill {
  min-width: 240px;
  padding: 6px 14px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--mint);
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
}

.streak-pill[hidden] {
  display: none;
}

.daily-dots i {
  display: block;
  width: 12px;
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: white;
}

.daily-dots i.filled {
  background: var(--coral);
}

.reward-banner {
  display: grid;
  gap: 3px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--mint);
  box-shadow: var(--shadow-small);
  line-height: 1.35;
}

.reward-banner strong {
  font-size: 0.9rem;
  font-weight: 950;
}

.reward-banner span {
  font-size: 0.78rem;
  font-weight: 720;
}

.reward-banner[hidden] {
  display: none;
}

.challenge-banner {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding: 14px 16px;
  border: 3px solid var(--ink);
  border-radius: 15px;
  background: var(--mint);
  box-shadow: 4px 4px 0 var(--ink);
}

.challenge-banner[hidden] {
  display: none;
}

.challenge-banner strong {
  flex: 0 0 auto;
  font-size: 0.9rem;
}

.challenge-banner span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 720;
  line-height: 1.35;
}

h1,
h2,
p {
  overflow-wrap: break-word;
}

.question-card h1,
.section-header h1 {
  max-width: 16ch;
  margin: 24px 0 0;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.99;
}

.question-intro,
.section-header > p:last-child {
  max-width: 52ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 2vw, 1.12rem);
  font-weight: 600;
  line-height: 1.55;
}

.question-attribution {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 780;
}

.question-attribution[hidden] {
  display: none;
}

.question-attribution a {
  color: var(--blue-dark);
  font-weight: 900;
  text-underline-offset: 3px;
}

.answer-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.answer-button {
  position: relative;
  width: 100%;
  min-height: 64px;
  padding: 15px 56px 15px 20px;
  border: var(--border);
  border-radius: 17px;
  color: var(--ink);
  box-shadow: var(--shadow-small);
  font-size: clamp(1rem, 2.4vw, 1.16rem);
  font-weight: 880;
  text-align: left;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    filter 150ms ease;
}

.answer-button[data-tone="mint"] {
  background: var(--mint);
}

.answer-button[data-tone="yellow"] {
  background: var(--yellow);
}

.answer-button[data-tone="coral"] {
  color: white;
  background: var(--coral);
}

.answer-button::after {
  position: absolute;
  top: 50%;
  right: 20px;
  content: "→";
  font-size: 1.5rem;
  line-height: 1;
  transform: translateY(-53%);
}

.answer-button:hover:not(:disabled) {
  filter: brightness(1.025);
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}

.answer-button:active:not(:disabled),
.answer-button.selected {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 var(--ink);
}

.answer-button:disabled {
  cursor: default;
  filter: grayscale(0.25);
  opacity: 0.58;
}

.answer-button.selected {
  filter: none;
  opacity: 1;
}

.privacy-nudge {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.45;
}

.report-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 9px;
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 850;
  text-underline-offset: 3px;
}

.side-note {
  position: relative;
  padding: 24px 10px;
  font-family: "Comic Sans MS", "Bradley Hand", cursive;
  text-align: center;
  transform: rotate(3deg);
}

.side-note p {
  margin: 5px 0;
  font-size: 1.18rem;
  font-weight: 800;
}

.scribble {
  display: inline-block;
  margin-bottom: 9px;
  padding: 8px 12px;
  border: 3px solid var(--coral);
  border-radius: 50%;
  color: var(--coral-dark);
  font-size: 1.5rem;
  font-weight: 900;
  transform: rotate(-8deg);
}

.side-arrow {
  display: block;
  margin-top: 8px;
  font-size: 3.4rem;
  line-height: 1;
  transform: rotate(12deg);
}

.result-card,
.research-card,
.province-teaser,
.test-panel {
  margin-top: 26px;
  padding: clamp(24px, 5vw, 42px);
  border: var(--border);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-large);
}

.result-card {
  color: white;
  background: var(--blue);
  animation: result-in 430ms cubic-bezier(0.2, 0.9, 0.25, 1);
}

/* Uitslag eerst: score, raarmeter, delen en de volgende vraag vormen één korte
   route. Extra uitleg en partnercontent komen pas daarna, zodat doorstemmen
   niet verstopt raakt onder informatieblokken. */
.result-card:not(.daily-round-complete) {
  display: flex;
  flex-direction: column;
}

.result-card:not(.daily-round-complete) > .result-heading { order: 1; }
.result-card:not(.daily-round-complete) > .personal-result-score { order: 2; }
.result-card:not(.daily-round-complete) > .result-quick-percentages { order: 3; }
/* Na een stem is de volgende keuze de enige hoofdactie. Likes, delen en
   partnercontent blijven beschikbaar, maar mogen de dagelijkse ronde niet
   onderbreken of de knop naar vraag 2/3 naar beneden drukken. */
.result-card:not(.daily-round-complete) > .result-next-panel { order: 4; }
.result-card:not(.daily-round-complete) > .result-social-bar { order: 5; }
.result-card:not(.daily-round-complete) > .question-affiliate-card { order: 6; }
.result-card:not(.daily-round-complete) > .result-serious-shortcut { order: 7; }
.result-card:not(.daily-round-complete) > .result-statistics { order: 8; }
.result-card:not(.daily-round-complete) > .friend-comparison { order: 9; }
.result-card:not(.daily-round-complete) > .result-details { order: 10; }
.result-card:not(.daily-round-complete) > .result-ad-slot { order: 11; }

@keyframes result-in {
  from {
    opacity: 0;
    transform: translateY(18px) rotate(0.6deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

.result-heading h1,
.research-heading h2,
.province-teaser h2,
.test-panel h2 {
  max-width: 18ch;
  margin: 15px 0 0;
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.result-heading h1 {
  margin-top: 0;
}

.result-question-context {
  display: grid;
  gap: 3px;
  max-width: 48ch;
  margin: 9px 0 0;
  line-height: 1.2;
}

.result-question-context span {
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.result-question-context strong {
  font-size: clamp(0.92rem, 1.8vw, 1.12rem);
  overflow-wrap: anywhere;
}

.result-bubble {
  display: flex;
  flex: 0 0 116px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  padding: 12px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  text-align: center;
  transform: rotate(5deg);
}

.result-bubble strong {
  font-size: 2rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.result-bubble.small-sample strong {
  max-width: 92px;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.result-bubble span {
  margin-top: 5px;
  font-size: 0.7rem;
  font-weight: 850;
  line-height: 1.1;
}

.result-choice {
  margin-top: 24px;
  padding: 17px 19px;
  border: 3px solid var(--ink);
  border-radius: 16px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
}

.result-choice span {
  display: block;
  font-size: clamp(1rem, 2.6vw, 1.35rem);
  font-weight: 950;
  text-transform: uppercase;
}

.result-choice p {
  margin: 5px 0 0;
  font-size: 0.78rem;
  font-weight: 750;
}

.friend-comparison {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  padding: 16px 18px;
  border: 3px solid var(--ink);
  border-radius: 16px;
  color: var(--ink);
  background: var(--mint);
  box-shadow: 4px 4px 0 var(--ink);
}

.friend-comparison[hidden] {
  display: none;
}

.friend-comparison.different {
  background: var(--yellow);
}

.friend-comparison > span {
  display: grid;
  width: 44px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  color: white;
  background: var(--blue);
  font-size: 1.35rem;
  font-weight: 950;
}

.friend-comparison strong {
  display: block;
  font-size: 1.02rem;
}

.friend-comparison p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 720;
  line-height: 1.4;
}

.friend-comparison > div {
  flex: 1 1 auto;
}

.friend-revenge-button {
  min-height: 44px;
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: white;
  background: var(--blue);
  box-shadow: 2px 2px 0 var(--ink);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
}

.friend-revenge-button:hover,
.friend-revenge-button:focus-visible {
  transform: translateY(-2px);
}

.result-question-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
}

.result-question-summary > span {
  display: grid;
  gap: 4px;
}

.result-question-summary small {
  color: white;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-question-summary strong {
  max-width: 62ch;
  font-size: 0.86rem;
}

.text-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  flex: 0 0 auto;
  padding: 10px 0;
  border: 0;
  color: white;
  background: transparent;
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.result-bars {
  display: grid;
  gap: 14px;
  margin: 30px 0 24px;
}

.result-details[open] {
  margin-top: 18px;
  padding: 14px 16px 2px;
  border: 2px solid rgb(255 255 255 / 0.45);
  border-radius: 16px;
  background: rgb(255 255 255 / 0.08);
}

.result-details[open] > summary {
  color: white;
  font-size: 0.9rem;
}

.result-details[open] .result-bars {
  margin-top: 18px;
}

.bar-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
  font-size: 0.86rem;
  font-weight: 850;
}

.bar-track {
  display: block;
  width: 100%;
  height: 14px;
  overflow: hidden;
  padding: 0;
  border: 2px solid white;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  appearance: none;
}

.bar-track::-webkit-progress-bar {
  background: rgba(255, 255, 255, 0.15);
}

.bar-track::-webkit-progress-value {
  background: var(--yellow);
}

.bar-track::-moz-progress-bar {
  background: var(--yellow);
}

.result-conclusion {
  margin: 0;
  font-size: 1.04rem;
  font-weight: 780;
  line-height: 1.5;
}

.result-quick-percentages {
  display: flex;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 18px;
}

.result-quick-percentage {
  /* Flex is de veilige basis voor oudere Android-WebViews; moderne browsers
     behouden met het ouder-element de compacte drie-kolomsopmaak. */
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: 3px;
  padding: 12px 10px;
  border: 2px solid rgb(255 255 255 / 0.72);
  border-radius: 14px;
  color: white;
  background: rgb(255 255 255 / 0.1);
  text-align: center;
}

.result-quick-percentage.selected {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--ink);
}

.result-quick-percentage strong {
  font-size: clamp(1.25rem, 4vw, 1.8rem);
  line-height: 1;
}

.result-quick-percentage span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.result-quick-percentage small {
  display: block;
  max-width: 100%;
  font-size: 0.64rem;
  font-weight: 750;
  opacity: 0.82;
}

.result-quick-percentage.selected small {
  opacity: 0.68;
}

.question-reactions {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 14px;
  align-items: center;
  margin: 20px 0 14px;
  padding: 9px 2px;
  border-block: 1px solid rgba(23, 23, 23, 0.35);
  color: var(--ink);
  background: transparent;
}

.question-social-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  margin-top: 20px;
  padding-top: 9px;
  border-top: 1px solid rgba(23, 23, 23, 0.28);
}

.prompt-question-reactions {
  margin: 0;
  padding: 0;
  border: 0;
}

.prompt-question-reactions .reaction-summary {
  padding-left: 2px;
}

.question-share-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 12px;
  border: 0;
  border-radius: 12px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 0.76rem;
  cursor: pointer;
}

.question-share-action:hover,
.question-share-action:focus-visible {
  color: var(--blue-dark);
  background: rgba(37, 86, 255, 0.09);
}

.question-share-action:disabled {
  cursor: wait;
  opacity: 0.45;
}

.question-share-action svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.question-reactions[hidden] {
  display: none;
}

.result-card .question-reactions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  min-height: 72px;
  padding: 9px 12px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  color: var(--ink);
  background: white;
}

.result-card .reaction-summary,
.result-card .reaction-trigger {
  color: var(--ink);
}

.result-card .question-reactions .reaction-trigger {
  flex: 1 1 180px;
  justify-content: flex-start;
  min-height: 52px;
  padding-inline: 10px;
  text-align: left;
}

.result-card .question-reactions .reaction-trigger > span:first-child {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
}

.result-card .question-reactions .reaction-trigger small,
.result-card .question-reactions .reaction-trigger strong {
  display: block;
}

.result-card .question-reactions .reaction-trigger small {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.result-card .question-reactions .reaction-trigger strong {
  font-size: 0.94rem;
}

.result-card .question-reactions .reaction-summary {
  order: 2;
  min-height: 0;
  padding: 0 3px;
  white-space: nowrap;
}

.result-card .question-reactions .reaction-more {
  order: 3;
}

.result-card .question-reactions .reaction-options {
  width: 100%;
  flex: 1 0 100%;
}

.result-card .reaction-trigger:hover,
.result-card .reaction-trigger:focus-visible,
.result-card .reaction-trigger.selected {
  color: var(--ink);
  background: var(--yellow);
}

.result-card .reaction-preview-icon {
  color: var(--ink);
}

.reaction-summary {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

/* De teller moet in één oogopslag als sociale bevestiging herkenbaar zijn. */
.reaction-summary [data-reaction-total] {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 3px 8px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.reaction-preview {
  display: flex;
  flex: 0 0 auto;
  padding-left: 5px;
}

.reaction-preview[hidden] {
  display: none;
}

.reaction-preview-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  margin-left: -5px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: white;
  font-size: 0.78rem;
}

.reaction-trigger {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 10px;
  border: 0;
  border-radius: 12px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 0.76rem;
  cursor: pointer;
}

.reaction-trigger:hover,
.reaction-trigger:focus-visible,
.reaction-trigger.selected {
  color: var(--blue-dark);
  background: rgba(37, 86, 255, 0.09);
}

.reaction-trigger > span {
  font-size: 1rem;
  line-height: 1;
}

.reaction-more {
  display: inline-grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: white;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.reaction-more:hover,
.reaction-more:focus-visible,
.reaction-more[aria-expanded="true"] {
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-1px);
}

.reaction-options {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 6px;
  padding: 5px 0 2px;
}

.reaction-options[hidden] {
  display: none;
}

.reaction-option {
  display: inline-flex;
  width: auto;
  min-height: 44px;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: white;
  box-shadow: none;
  font: inherit;
  cursor: pointer;
}

.reaction-option:hover,
.reaction-option:focus-visible {
  transform: translateY(-2px) rotate(-1deg);
}

.reaction-option.selected {
  background: var(--yellow);
  box-shadow: 2px 2px 0 var(--ink);
}

.reaction-option:disabled {
  cursor: wait;
  opacity: 0.65;
}

.reaction-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.reaction-option strong {
  font-size: 0.7rem;
  line-height: 1.15;
}

.reaction-option small {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 900;
}

.history-question-reactions {
  margin: 13px 0 0;
}

.serious-reactions {
  margin-bottom: 12px;
}

.serious-reactions .reaction-option.selected {
  background: var(--blue-soft);
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  margin-top: 24px;
}

.share-cta {
  display: inline-grid;
  min-height: 64px;
  max-width: min(100%, 360px);
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  text-align: left;
}

.share-cta:hover,
.share-cta:focus-visible {
  transform: translate(-1px, -1px) rotate(-0.5deg);
  box-shadow: 6px 6px 0 var(--ink);
}

.share-cta svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.share-cta span,
.share-cta small,
.share-cta strong {
  display: block;
}

.share-cta small {
  margin-bottom: 2px;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.share-cta strong {
  font-size: 1rem;
  line-height: 1.15;
}

.share-dialog {
  width: min(92vw, 520px);
  max-width: 520px;
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 24px;
  color: var(--ink);
  background: transparent;
  overflow: visible;
}

.share-dialog::backdrop {
  background: rgba(15, 20, 43, 0.72);
  backdrop-filter: blur(4px);
}

.notification-dialog {
  width: min(94vw, 680px);
  max-height: min(90vh, 820px);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 24px;
  color: var(--ink);
  background: transparent;
  overflow: visible;
}

.notification-dialog::backdrop {
  background: rgba(15, 20, 43, 0.72);
  backdrop-filter: blur(4px);
}

.notification-sheet {
  position: relative;
  max-height: min(90vh, 820px);
  overflow-y: auto;
  padding: 30px;
  border: 4px solid var(--ink);
  border-radius: 24px;
  background: var(--paper-light);
  box-shadow: 8px 8px 0 var(--ink);
}

.notification-sheet > h2 {
  margin: 0 54px 8px 0;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  letter-spacing: -0.045em;
}

.notification-sheet > p:not(.share-sheet-eyebrow) {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.notification-sheet form {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.share-sheet {
  position: relative;
  padding: 30px;
  border: 4px solid var(--ink);
  border-radius: 24px;
  background: var(--paper-light);
  box-shadow: 8px 8px 0 var(--ink);
}

.share-dialog-close {
  position: absolute;
  top: 13px;
  right: 13px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: white;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.share-sheet-eyebrow {
  width: fit-content;
  margin: 0 0 14px;
  padding: 6px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: white;
  background: var(--blue);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.share-sheet h2 {
  max-width: calc(100% - 34px);
  margin: 0;
  font-size: clamp(1.65rem, 6vw, 2.3rem);
  line-height: 1;
}

.share-sheet > p:not(.share-sheet-eyebrow) {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 680;
  line-height: 1.45;
}

.share-sheet blockquote {
  margin: 20px 0;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 15px;
  background: var(--yellow);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.35;
  transform: rotate(-0.4deg);
}

.share-sheet-actions {
  display: grid;
  gap: 10px;
}

.share-option {
  display: grid;
  min-height: 54px;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 11px;
  padding: 10px 15px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  color: var(--ink);
  background: white;
  font-size: 0.9rem;
  font-weight: 900;
  text-align: left;
}

.share-option[hidden] {
  display: none;
}

.share-option:hover,
.share-option:focus-visible {
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
}

.share-option svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.platform-share-option {
  grid-template-columns: 54px 1fr;
}

.share-logo-pair {
  display: flex;
  width: 54px;
  align-items: center;
}

.share-logo-pair svg {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  padding: 4px;
  border: 2px solid var(--ink);
  border-radius: 9px;
}

.share-logo-pair svg + svg {
  margin-left: -8px;
}

.share-logo-pair .instagram-share-logo {
  position: relative;
  z-index: 1;
  color: white;
  background: linear-gradient(135deg, #7b2cff 4%, #e1306c 52%, #ffb340 100%);
  stroke: currentColor;
}

.share-logo-pair .instagram-share-logo .logo-dot {
  fill: currentColor;
  stroke: none;
}

.share-logo-pair .snapchat-share-logo {
  color: var(--ink);
  background: #fffc00;
  fill: white;
  stroke: currentColor;
  stroke-width: 1.45;
}

.whatsapp-share-option {
  background: #25d366;
}

.whatsapp-share-option:hover,
.whatsapp-share-option:focus-visible {
  background: #20c45d;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 11px 17px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-small);
  color: var(--ink);
  font-weight: 880;
  text-align: center;
  text-decoration: none;
}

.primary-action {
  background: var(--mint);
  box-shadow: 3px 3px 0 var(--ink);
}

.primary-action:disabled,
.secondary-action:disabled {
  cursor: wait;
  opacity: 0.62;
}

.secondary-action {
  background: white;
}

.coral-action {
  color: var(--ink);
  background: var(--coral);
}

.next-question-panel,
.daily-complete {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 24px;
  padding: 18px;
  border: 3px solid var(--ink);
  border-radius: 17px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
}

/* De tweede en derde vraag zijn de kern van de dagelijkse ronde. Geef die
   één rustige, herkenbare doorgang vóór delen, reacties en partnercontent. */
.next-question-panel.result-next-panel {
  position: relative;
  overflow: hidden;
  border-color: var(--ink);
  background: var(--paper-light);
}

.next-question-panel.result-next-panel::before {
  content: "JOUW DAGELIJKSE RONDE";
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 10px;
  color: white;
  background: var(--blue);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.next-question-panel.result-next-panel > div {
  padding-top: 30px;
}

.next-question-panel.result-next-panel .primary-action {
  min-height: 52px;
  padding-inline: 20px;
  font-size: 1rem;
}

.next-question-panel .primary-action {
  flex: 0 0 auto;
  font-size: 0.95rem;
}

.daily-complete .primary-action {
  flex: 0 0 auto;
  font-size: 0.9rem;
}

.next-question-panel strong,
.daily-complete strong {
  display: block;
  font-size: 1.05rem;
}

.next-question-panel span,
.daily-complete span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 680;
  line-height: 1.45;
}

.daily-complete {
  padding: 14px 16px;
  border-width: 2px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 3px 3px 0 var(--ink);
}

.daily-complete[hidden],
.next-question-panel[hidden] {
  display: none;
}

/* Na drie vragen: één rustig eindpunt met alleen afronden, delen en een relevante tip. */
.result-card.daily-round-complete {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
  color: var(--ink);
  background: var(--paper-light);
}

.result-card.daily-round-complete .result-quick-percentages,
.result-card.daily-round-complete .result-statistics,
.result-card.daily-round-complete .result-details,
.result-card.daily-round-complete .data-note,
.result-card.daily-round-complete .result-serious-shortcut {
  display: none;
}

.result-card.daily-round-complete > .result-heading {
  display: block;
  order: 0;
  width: 100%;
  margin: 0;
}

.result-card.daily-round-complete .result-heading h1,
.result-card.daily-round-complete .result-bubble {
  display: none;
}

.result-card.daily-round-complete .result-question-context {
  margin: 0;
  padding: 10px 13px;
  border-left: 5px solid var(--yellow);
  border-radius: 0 12px 12px 0;
  color: var(--ink);
  background: white;
}

/* De eindstaat blijft rustig, maar laat de persoonlijke score en de twee
   sociale acties staan. Dat zijn de feedback en deelprikkel waarvoor mensen
   de ronde hebben afgemaakt. */
.result-card.daily-round-complete > .personal-result-score {
  /* Gebruik dezelfde flexbasis als de gewone uitslag. Oudere Android-WebViews
     kunnen een opnieuw geactiveerde Grid hier anders samendrukken. */
  display: flex;
  flex-direction: column;
  gap: 10px;
  order: 1;
  width: 100%;
  margin-top: 0;
}

.result-card.daily-round-complete > .result-social-bar {
  /* Twee duidelijke sociale acties op brede schermen, gecontroleerd onder
     elkaar zodra de beschikbare breedte klein wordt. */
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  order: 2;
  width: 100%;
  margin-top: 0;
}

.result-card.daily-round-complete > .result-social-bar > * {
  min-width: 0;
  flex: 1 1 280px;
}

.result-card.daily-round-complete > .daily-complete {
  order: 3;
}

.result-card.daily-round-complete .daily-complete-share {
  display: none;
}

.result-card.daily-round-complete .daily-complete {
  display: grid;
  gap: 18px;
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.daily-complete-copy {
  display: grid;
  gap: 7px;
  max-width: 42ch;
}

.daily-complete-copy .eyebrow {
  margin: 0;
}

.daily-complete-copy .eyebrow-blue {
  color: white;
}

.daily-complete-copy strong {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  letter-spacing: -0.05em;
}

.daily-complete-copy > span:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.daily-complete-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.daily-complete-actions button {
  min-height: 50px;
}

.daily-complete-share {
  color: white;
  background: var(--blue);
}

.daily-complete-affiliate {
  display: flex;
  align-items: center;
  width: 100%;
  justify-self: stretch;
  margin: 0;
  padding: 14px 16px;
  border-width: 2px;
  border-radius: 14px;
  box-shadow: 3px 3px 0 var(--ink);
  background: linear-gradient(110deg, #fff 0%, #fffdf2 100%);
}

.daily-complete-affiliate .affiliate-card-media {
  flex-basis: 72px;
  width: 72px;
  min-height: 72px;
}

.daily-complete-affiliate .affiliate-card-media img {
  min-height: 72px;
}

.daily-complete-affiliate strong {
  margin-top: 5px;
  font-size: 1rem;
}

.daily-complete-affiliate .affiliate-label {
  color: var(--ink);
}

.daily-complete-affiliate p {
  max-width: 48ch;
  margin-top: 5px;
}

.daily-complete-affiliate .affiliate-link {
  min-height: 44px;
  padding: 9px 14px;
  color: var(--ink);
  background: var(--coral);
  white-space: nowrap;
}

.daily-complete-affiliate .affiliate-link:hover,
.daily-complete-affiliate .affiliate-link:focus-visible {
  background: var(--yellow);
}

.result-serious-shortcut {
  display: grid;
  width: 100%;
  min-height: 52px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px 12px;
  margin: 12px 0 18px;
  padding: 9px 12px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 230, 92, 0.96);
  box-shadow: 3px 3px 0 var(--ink);
  text-align: left;
}

.result-serious-shortcut[hidden] {
  display: none;
}

.result-serious-shortcut > span {
  padding: 4px 7px;
  border-radius: 999px;
  color: white;
  background: var(--blue);
  font-size: 0.58rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.result-serious-shortcut > strong {
  min-width: 0;
  font-size: 0.82rem;
}

.result-serious-shortcut > small {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 750;
  white-space: nowrap;
}

.result-serious-shortcut:hover,
.result-serious-shortcut:focus-visible {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--ink);
}

.research-teaser {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin-top: 16px;
  padding: 13px 15px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 14px;
  color: white;
  background: rgba(23, 23, 23, 0.2);
  text-align: left;
}

.research-teaser:hover,
.research-teaser:focus-visible {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--mint);
  box-shadow: 3px 3px 0 var(--ink);
}

.research-teaser > span {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.6rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.research-teaser > strong {
  font-size: 0.8rem;
}

.research-teaser > small {
  font-size: 0.7rem;
  font-weight: 720;
  white-space: nowrap;
}

.today-research-teaser {
  margin: 18px 0 0;
  border: 3px solid var(--ink);
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
}

.today-research-teaser > span {
  color: white;
  background: var(--blue);
}

.today-research-teaser[data-state="answered"] {
  background: var(--mint);
}

.today-research-teaser[data-state="skipped"] {
  background: rgba(255, 253, 248, 0.96);
}

.research-source {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 7px;
  margin: -6px 0 20px;
  padding: 11px 13px;
  border-left: 4px solid var(--blue);
  color: var(--muted);
  background: rgba(43, 88, 255, 0.07);
  font-size: 0.78rem;
  line-height: 1.45;
}

.research-source[hidden] {
  display: none;
}

.research-source span {
  color: var(--ink);
  font-weight: 900;
}

.research-source a {
  color: var(--blue-dark, #173aa8);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.research-source time {
  white-space: nowrap;
}

.serious-view {
  display: grid;
  gap: 22px;
}

.serious-view-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.research-category-picker {
  /* Android WebView 53 negeert Grid. Flex houdt de twee routes daar
     afzonderlijk en leesbaar; moderne browsers nemen de Grid-regels over. */
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.research-category {
  display: flex;
  flex: 1 1 240px;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  display: grid;
  gap: 4px;
  min-height: 128px;
  padding: 17px 19px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  color: var(--ink);
  background: var(--paper-light);
  box-shadow: 4px 4px 0 var(--ink);
  text-align: left;
}

.research-category:hover,
.research-category:focus-visible,
.research-category.active {
  background: var(--yellow);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.research-category[data-research-kind="research"].active {
  background: var(--mint);
}

.research-category.answered:not(.active) {
  background: rgba(183, 240, 207, 0.42);
}

.research-category > span {
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--blue-dark);
  font-size: 0.65rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.research-category > strong {
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: 1.14rem;
}

.research-category > small {
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 720;
  line-height: 1.35;
}

.research-category-action {
  width: fit-content;
  margin-top: 7px;
  padding: 5px 8px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: white;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
}

.research-category.active .research-category-action {
  color: white;
  background: var(--ink);
}

.research-disclosure {
  width: fit-content;
  margin: 13px 0 19px;
  padding: 7px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--mint);
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1.35;
}

.research-disclosure[data-tone="sponsored"] {
  background: var(--yellow);
}

.research-disclosure a {
  color: inherit;
  text-underline-offset: 2px;
}

.research-empty {
  padding: clamp(22px, 4vw, 32px);
  border: 3px solid var(--ink);
  border-radius: 20px;
  background: var(--paper-light);
  box-shadow: 5px 5px 0 var(--ink);
}

.research-empty[hidden] {
  display: none;
}

.research-empty > strong {
  font-size: 1.15rem;
}

.research-empty > p {
  max-width: 62ch;
  margin: 8px 0 18px;
  color: var(--muted);
  line-height: 1.5;
}

.serious-view > .research-card {
  margin-top: 0;
}

.daily-report {
  display: grid;
  gap: 18px;
  margin-top: 0;
  padding: clamp(20px, 4vw, 28px);
  border: 3px solid var(--ink);
  border-radius: 20px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--ink);
}

.daily-report[hidden] {
  display: none;
}

.daily-report .eyebrow {
  margin: 0 0 7px;
  color: var(--blue-dark);
}

.daily-report h2 {
  max-width: 24ch;
  margin: 0;
  font-size: clamp(1.4rem, 4vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.daily-report-intro {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 720;
  line-height: 1.45;
}

.daily-report-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: raar-report;
}

.daily-report-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 11px;
  align-items: start;
  padding: 12px 13px;
  border: 2px solid var(--ink);
  border-radius: 13px;
  background: var(--paper);
  counter-increment: raar-report;
}

.daily-report-list li::before {
  display: grid;
  width: 32px;
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: white;
  background: var(--blue);
  content: counter(raar-report);
  font-size: 0.78rem;
  font-weight: 950;
}

.daily-report-list span,
.daily-report-list strong {
  display: block;
}

.daily-report-list span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.35;
}

.daily-report-list strong {
  margin-top: 3px;
  font-size: 0.86rem;
  line-height: 1.3;
}

.week-summary {
  display: grid;
  gap: 13px;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 15px;
  background: var(--paper-light);
}

.week-summary-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.week-summary-heading span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.week-summary-heading h3 {
  margin: 2px 0 0;
  font-size: 1.08rem;
}

.week-summary-heading > strong {
  padding: 7px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--mint);
  font-size: 0.72rem;
  white-space: nowrap;
}

.week-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.week-day {
  display: grid;
  min-width: 0;
  gap: 6px;
  place-items: center;
  padding: 8px 3px;
  border: 2px solid rgba(23, 23, 23, 0.24);
  border-radius: 11px;
  color: var(--muted);
  background: var(--paper);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.week-day::after {
  width: 10px;
  aspect-ratio: 1;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.week-day.active {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--yellow);
}

.week-day.active::after {
  background: var(--blue);
  box-shadow: inset 0 0 0 2px white;
}

.week-day.today {
  box-shadow: inset 0 -4px 0 var(--coral);
}

.week-summary > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 720;
  line-height: 1.45;
}

.streak-rewards {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.55);
}

.streak-rewards-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.streak-rewards-heading span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.streak-rewards-heading h3 {
  margin: 3px 0 0;
  font-size: 1.08rem;
}

.streak-rewards-heading > strong {
  padding: 7px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.7rem;
  white-space: nowrap;
}

.streak-restore-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 2px solid var(--ink);
  border-radius: 13px;
  background: var(--mint);
}

.streak-restore-status[hidden] {
  display: none;
}

.streak-restore-status > span {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: white;
  font-size: 1.15rem;
}

.streak-restore-status p {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 720;
  line-height: 1.35;
}

.streak-restore-status strong {
  font-weight: 950;
}

.reward-milestones {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.reward-milestone {
  display: grid;
  min-width: 0;
  gap: 3px;
  padding: 9px;
  border: 2px solid rgba(23, 23, 23, 0.34);
  border-radius: 12px;
  background: var(--paper);
  opacity: 0.58;
}

.reward-milestone > strong {
  display: grid;
  width: 30px;
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: 3px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 0.75rem;
}

.reward-milestone > span {
  overflow: hidden;
  font-size: 0.7rem;
  font-weight: 850;
  line-height: 1.15;
  text-overflow: ellipsis;
}

.reward-milestone > small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 720;
}

.reward-milestone.earned {
  border-color: var(--ink);
  background: var(--mint);
  opacity: 1;
}

.reward-milestone.earned > strong {
  color: white;
  background: var(--blue);
}

.streak-rewards > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 720;
  line-height: 1.4;
}

.daily-report-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding-top: 2px;
}

.daily-report-sharing {
  display: grid;
  gap: 7px;
}

.daily-report-sharing > span,
.next-round-timer > span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.daily-report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.report-share-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: white;
  box-shadow: 2px 2px 0 var(--ink);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
}

.report-share-button svg {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
}

.whatsapp-action svg {
  padding: 4px;
  border-radius: 50%;
  background: var(--whatsapp);
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.more-share-action svg {
  padding: 4px;
  border-radius: 7px;
  background: linear-gradient(145deg, #7b2cff 5%, #f51f7a 48%, #ff9d24 92%);
  fill: none;
  stroke: white;
  stroke-width: 1.8;
}

.report-share-button:hover,
.report-share-button:focus-visible {
  transform: translateY(-1px);
}

.next-round-timer {
  display: grid;
  min-width: 190px;
  gap: 2px;
  padding: 11px 14px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--paper-light);
}

.next-round-timer strong {
  color: var(--blue-dark);
  font-size: 1.38rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.next-round-timer small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.reminder-button {
  width: fit-content;
  min-height: 48px;
  margin-top: 6px;
  padding: 4px 0;
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.daily-limit-lock {
  display: grid;
  gap: 10px;
  margin-top: 8px;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
}

.daily-limit-lock strong {
  font-size: 1.1rem;
}

.daily-limit-lock p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.daily-limit-lock .secondary-action {
  width: fit-content;
}

.beta-progress-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 10px 12px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
}

.beta-progress-chip[hidden] {
  display: none;
}

.beta-progress-chip > span {
  padding: 5px 8px;
  border-radius: 999px;
  color: white;
  background: var(--blue);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.beta-progress-chip > strong {
  font-size: 0.76rem;
}

.beta-progress-chip > button {
  margin-left: auto;
  padding: 3px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 0.7rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.beta-feedback {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 17px;
  margin-top: 24px;
  padding: clamp(20px, 4vw, 28px);
  border: 3px solid var(--ink);
  border-radius: 20px;
  color: var(--ink);
  background: var(--paper-light);
  box-shadow: 5px 5px 0 var(--ink);
}

.beta-feedback[hidden] {
  display: none;
}

.beta-feedback-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.beta-feedback .eyebrow {
  margin: 0 0 7px;
  color: var(--blue);
}

.beta-feedback h3 {
  margin: 0;
  font-size: clamp(1.35rem, 4vw, 1.9rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.beta-feedback h2 {
  margin: 0;
  font-size: clamp(1.35rem, 4vw, 1.9rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.beta-feedback-heading > span {
  padding: 6px 9px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--mint);
  font-size: 0.7rem;
  font-weight: 900;
  white-space: nowrap;
}

.beta-feedback > p,
.beta-feedback > small {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 680;
  line-height: 1.5;
}

.beta-feedback > small a {
  color: var(--blue-dark);
  font-weight: 850;
}

.beta-feedback form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.feedback-progress {
  display: grid;
  gap: 7px;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: #fff3bd;
}

.feedback-progress > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.74rem;
}

.feedback-progress progress {
  width: 100%;
  height: 12px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: white;
  accent-color: var(--blue);
}

.feedback-detected-device {
  margin: -2px 0 9px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.beta-feedback fieldset {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.beta-feedback legend {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
  font-size: 0.76rem;
  font-weight: 900;
}

.feedback-scale,
.feedback-options,
.feedback-score-options {
  display: grid;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
}

.feedback-options.three-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feedback-scale label,
.feedback-options label,
.feedback-score-options label {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.feedback-scale input,
.feedback-options input,
.feedback-score-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.feedback-scale label > span,
.feedback-options label > span,
.feedback-score-options label > span {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 8px 5px;
  border: 2px solid var(--ink);
  border-radius: 11px;
  background: white;
  overflow-wrap: anywhere;
  font-size: 0.72rem;
  font-weight: 850;
  text-align: center;
}

.feedback-scale label > span {
  font-size: 1.3rem;
}

.feedback-scale small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  text-align: center;
}

.feedback-scale input:checked + span,
.feedback-options input:checked + span,
.feedback-score-options input:checked + span {
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
  transform: translate(-1px, -1px);
}

.feedback-scale input:focus-visible + span,
.feedback-options input:focus-visible + span,
.feedback-score-options input:focus-visible + span {
  outline: 4px solid var(--blue);
  outline-offset: 3px;
}

.beta-feedback .primary-action {
  width: 100%;
}

.feedback-extras {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 15px;
  background: #fff6e8;
}

.feedback-extras > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  font-size: 0.8rem;
  font-weight: 900;
  cursor: pointer;
}

.feedback-extras > summary span {
  padding: 5px 8px;
  border-radius: 999px;
  color: white;
  background: var(--blue);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feedback-extras > p {
  margin: 0;
  padding: 0 14px 14px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.beta-feedback .feedback-extras > fieldset {
  padding: 14px;
  border-top: 1px solid #d7cfc3;
}

.feedback-open-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 9px;
  padding: 14px;
  border: 2px solid var(--ink);
  border-radius: 15px;
  background: var(--mint);
}

.feedback-open-field > label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
}

.feedback-open-field > label strong {
  font-size: 0.82rem;
  font-weight: 900;
}

.feedback-open-field > label span,
.feedback-open-meta {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
}

.feedback-open-field textarea {
  min-height: 84px;
  box-shadow: 3px 3px 0 var(--ink);
}

.feedback-counter {
  justify-self: end;
  margin-top: -5px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
}

.feedback-thanks {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--mint);
}

.feedback-thanks[hidden] {
  display: none;
}

.feedback-thanks > span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.feedback-open-meta {
  display: flex;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.feedback-open-meta small:first-child {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.feedback-open-meta small:last-child:not(:first-child) {
  white-space: nowrap;
}

.feedback-status {
  padding: 13px 15px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  color: var(--ink) !important;
  background: var(--mint);
  font-weight: 850 !important;
}

.install-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 24px;
  padding: 18px;
  border: 2px dashed rgba(255, 255, 255, 0.85);
  border-radius: 17px;
  background: rgba(23, 23, 23, 0.18);
}

.install-card[hidden] {
  display: none;
}

.install-card strong {
  display: block;
  margin-top: 7px;
  font-size: 1.06rem;
}

.install-card p {
  max-width: 48ch;
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.74rem;
  font-weight: 680;
  line-height: 1.45;
}

.install-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.affiliate-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 24px;
  padding: 18px;
  border: 3px solid var(--ink);
  border-radius: 17px;
  color: var(--ink);
  background: var(--paper-light);
  box-shadow: 4px 4px 0 var(--ink);
}

.affiliate-card-media {
  position: relative;
  display: grid;
  flex: 0 0 86px;
  width: 86px;
  min-height: 86px;
  place-items: center;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 14px;
  color: var(--ink);
  background: linear-gradient(145deg, #fff0b0 0%, #ffcf56 52%, #ff9e76 100%);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.7rem;
  font-weight: 950;
  line-height: 1.05;
}

.affiliate-card-media[hidden] {
  display: none;
}

.affiliate-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 86px;
  object-fit: cover;
  background: #fff;
}

.affiliate-card-media img[hidden],
.affiliate-image-fallback[hidden] {
  display: none;
}

.affiliate-image-fallback small {
  display: block;
  margin-top: 4px;
  font-size: 0.54rem;
  letter-spacing: 0.1em;
}

.affiliate-card strong {
  display: block;
  margin-top: 6px;
  font-size: 1.12rem;
}

.affiliate-card p {
  max-width: 60ch;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.45;
}

.affiliate-note {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 750;
  line-height: 1.35;
}

.partner-preview-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin-top: 4px;
  padding: 14px 16px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  color: var(--ink);
  background: #fffdf2;
  box-shadow: 3px 3px 0 var(--ink);
}

.guide-card-media {
  flex: 0 0 112px;
  width: 112px;
  height: 76px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--yellow-soft);
  object-fit: cover;
}

.partner-preview-card[hidden] {
  display: none;
}

.partner-preview-card strong,
.partner-preview-card p {
  display: block;
  margin-top: 5px;
}

.partner-preview-card p {
  max-width: 52ch;
  color: var(--muted);
  font-size: 0.76rem;
}

.partner-preview-card .secondary-action {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 9px 14px;
  color: var(--ink);
  background: var(--yellow);
}

.product-guide-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  padding: 16px 18px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  color: var(--ink);
  background: var(--paper-light);
  box-shadow: 3px 3px 0 var(--ink);
}

.product-guide-card > div,
.partner-preview-card > div {
  min-width: 0;
  flex: 1 1 auto;
}

.product-guide-card strong {
  display: block;
  margin-top: 5px;
  font-size: 1rem;
}

.product-guide-card p {
  max-width: 58ch;
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.45;
}

.product-guide-card .secondary-action {
  flex: 0 0 auto;
  text-decoration: none;
  white-space: nowrap;
}

.affiliate-label {
  display: inline-block;
  padding: 4px 7px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
}

.affiliate-link {
  flex: 0 0 auto;
  text-decoration: none;
}

.demographics-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 24px;
  margin-top: 24px;
  padding: 20px;
  border: 3px solid var(--ink);
  border-radius: 17px;
  color: var(--ink);
  background: var(--paper-light);
  box-shadow: 4px 4px 0 var(--ink);
}

.demographics-card[hidden] {
  display: none;
}

.demographics-card h3 {
  margin: 7px 0 0;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.demographics-card > div > p:last-child {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 680;
  line-height: 1.5;
}

.demographics-card form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 10px;
}

.demographics-card label {
  font-size: 0.72rem;
  font-weight: 900;
}

.demographics-card select {
  min-width: 0;
}

.demographics-actions {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.demographics-actions .text-button {
  margin-top: 0;
}

.demographics-card form > small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 650;
  line-height: 1.4;
}

.data-note,
.research-privacy,
.form-note {
  margin: 21px 0 0;
  font-size: 0.72rem;
  line-height: 1.5;
}

.data-note {
  color: white;
}

.research-card {
  background: var(--paper-light);
}

.ten-seconds {
  padding: 8px 10px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--mint);
  font-size: 0.72rem;
  font-weight: 900;
  transform: rotate(2deg);
}

.research-intro {
  margin: 15px 0 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.5;
}

.research-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.research-option {
  min-height: 62px;
  padding: 11px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  color: var(--ink);
  background: white;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 0.8rem;
  font-weight: 820;
}

.research-option:hover:not(:disabled),
.research-option.selected {
  background: var(--yellow);
}

.research-option:disabled {
  cursor: default;
  opacity: 0.58;
}

.research-option.selected {
  opacity: 1;
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}

.research-result {
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 8px solid var(--blue);
  background: rgba(36, 87, 255, 0.08);
  font-weight: 760;
  line-height: 1.5;
}

.research-result[data-status="pending"] {
  border-left-color: var(--yellow);
  background: rgba(255, 214, 0, 0.16);
}

.research-result[data-status="error"] {
  border-left-color: var(--coral);
  background: rgba(255, 90, 79, 0.12);
}

.research-options[aria-busy="true"] {
  opacity: 0.72;
}

.research-complete {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px 20px;
  align-items: start;
  padding: clamp(24px, 5vw, 38px);
  border: 3px solid var(--ink);
  border-radius: 22px;
  background: var(--mint);
  box-shadow: 6px 6px 0 var(--ink);
}

.research-complete[hidden] {
  display: none;
}

.research-complete:focus {
  outline: none;
}

.research-complete:focus-visible {
  outline: 4px solid var(--blue);
  outline-offset: 4px;
}

.research-complete-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  color: white;
  background: var(--blue);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 1.5rem;
  font-weight: 950;
}

.research-complete-copy h2 {
  margin-top: 6px;
  font-size: clamp(1.45rem, 4vw, 2.15rem);
}

.research-complete-question {
  max-width: 62ch;
  margin: 12px 0 0;
  padding: 11px 13px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
}

.research-complete-question span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.research-complete-copy > p:last-child {
  max-width: 62ch;
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 680;
  line-height: 1.55;
}

.research-complete-actions {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.text-button {
  margin-top: 19px;
  min-height: 44px;
  padding: 10px 4px;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--muted);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 780;
  line-height: 1.35;
}

.research-privacy {
  color: var(--muted);
}

.section-header {
  padding: 26px 0 18px;
}

.section-header h1 {
  max-width: 17ch;
}

.compact-header h1 {
  max-width: 18ch;
}

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

.archive-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.archive-toolbar button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  padding: 8px 15px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper-light);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 850;
}

.archive-toolbar button[aria-pressed="true"] {
  color: white;
  background: var(--blue);
  box-shadow: 3px 3px 0 var(--ink);
}

.archive-filter-count {
  display: inline-grid;
  min-width: 25px;
  min-height: 25px;
  place-items: center;
  padding: 2px 6px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(23, 23, 23, 0.1);
  font-size: 0.7rem;
  line-height: 1;
}

.archive-toolbar button[aria-pressed="true"] .archive-filter-count {
  color: var(--blue-dark);
  background: white;
}

.archive-summary {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.history-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.history-overview > div {
  display: grid;
  min-height: 104px;
  align-content: center;
  gap: 5px;
  padding: 17px 19px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  background: var(--paper-light);
  box-shadow: 4px 4px 0 var(--ink);
}

.history-overview > div:nth-child(2) {
  background: var(--mint);
}

.history-overview > div:nth-child(3) {
  background: var(--yellow);
}

.history-overview strong {
  font-size: clamp(1.25rem, 2.8vw, 1.9rem);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.history-overview span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 780;
}

.archive-complete-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 24px;
  padding: 22px 24px;
  border: var(--border);
  border-radius: var(--radius-medium);
  background: var(--yellow);
  box-shadow: var(--shadow-small);
}

.archive-complete-panel[hidden] {
  display: none;
}

.archive-complete-panel h2 {
  margin: 4px 0 7px;
  font-size: clamp(1.25rem, 3vw, 1.9rem);
}

.archive-complete-panel p:last-child {
  max-width: 65ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.5;
}

.archive-complete-actions {
  display: grid;
  min-width: 245px;
  gap: 10px;
  text-align: center;
}

.archive-complete-actions > span {
  font-size: 0.76rem;
  font-weight: 800;
}

.archive-complete-actions strong {
  display: block;
  margin-top: 2px;
  color: var(--blue);
  font-size: 1.35rem;
  font-variant-numeric: tabular-nums;
}

.archive-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: var(--border);
  border-radius: var(--radius-medium);
  background: var(--paper-light);
  box-shadow: var(--shadow-small);
  transition:
    transform 150ms ease,
    box-shadow 150ms ease;
  color: var(--ink);
  text-decoration: none;
}

.archive-card.answered {
  background: var(--mint);
}

.archive-card:nth-child(2) {
  background: var(--mint);
  transform: rotate(1deg);
}

.archive-card:nth-child(3) {
  background: var(--yellow);
  transform: rotate(-1deg);
}

.archive-card:hover {
  transform: translate(-2px, -2px) rotate(0);
  box-shadow: 8px 8px 0 var(--ink);
}

.archive-card.locked {
  cursor: not-allowed;
  background: #eee7dc;
  box-shadow: 3px 3px 0 rgba(23, 23, 23, 0.45);
  opacity: 0.82;
}

.archive-card.locked:hover {
  transform: none;
  box-shadow: 3px 3px 0 rgba(23, 23, 23, 0.45);
}

.archive-more-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

.archive-more-panel small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
}

.archive-card small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.archive-card h2 {
  margin: 18px 0;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.history-card {
  min-height: 330px;
}

.history-result {
  display: grid;
  gap: 5px;
  padding-top: 17px;
  border-top: 2px solid var(--ink);
}

.history-result strong {
  font-size: 0.95rem;
  line-height: 1.25;
}

.history-result span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 720;
  line-height: 1.35;
}

.history-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
}

.history-share-action {
  min-height: 44px;
  padding: 10px 13px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: white;
  background: var(--blue);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 0.72rem;
  font-weight: 880;
}

.history-actions .text-action {
  color: var(--ink);
  font-size: 0.7rem;
}

.history-empty {
  grid-column: 1 / -1;
  display: grid;
  justify-items: start;
  gap: 12px;
  padding: clamp(24px, 5vw, 46px);
  border: var(--border);
  border-radius: var(--radius-medium);
  background: var(--yellow);
  box-shadow: var(--shadow-small);
}

.history-empty h2,
.history-empty p {
  margin: 0;
}

.history-empty p {
  max-width: 60ch;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.discover-affiliate-card {
  margin-top: 30px;
}

.discover-story {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(300px, 1.3fr);
  gap: 28px;
  margin-top: 30px;
  padding: 24px;
  border: var(--border);
  border-radius: var(--radius-medium);
  background: var(--paper-light);
  box-shadow: var(--shadow-small);
}

.discover-story h2,
.discover-story p {
  margin: 0;
}

.discover-story h2 {
  margin-top: 6px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.discover-story > p {
  align-self: center;
  color: var(--muted);
  font-weight: 680;
  line-height: 1.55;
}

.discover-story > .text-action,
.discover-story > small {
  grid-column: 2;
  justify-self: start;
}

.discover-story > small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.creator-wall {
  margin-top: 30px;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 24px;
  background: var(--paper-light);
  box-shadow: 5px 5px 0 var(--ink);
}

.creator-wall summary {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  list-style: none;
  cursor: pointer;
}

.creator-wall summary::-webkit-details-marker {
  display: none;
}

.creator-wall summary > span:first-child {
  display: grid;
  gap: 3px;
}

.creator-wall summary small {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.creator-wall summary strong {
  font-size: 1.35rem;
}

.creator-wall[open] summary > span:last-child {
  transform: rotate(45deg);
}

.creator-wall-intro,
.creator-method {
  margin: 0;
  padding: 18px 24px;
  border-top: 2px solid var(--ink);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 680;
  line-height: 1.5;
}

.creator-wall-intro a {
  color: var(--blue-dark);
  font-weight: 850;
}

.creator-ranking > header {
  display: grid;
  gap: 3px;
  padding: 18px 24px 0;
  border-top: 1px solid var(--line);
}

.creator-ranking > header small {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.creator-ranking > header h3 {
  margin: 0;
  font-size: 1.15rem;
}

.creator-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 20px 24px;
  border-top: 1px solid var(--line);
}

.creator-item {
  display: grid;
  gap: 11px;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: white;
}

.creator-leader-item {
  position: relative;
  padding-top: 22px;
}

.creator-rank {
  position: absolute;
  top: -10px;
  right: 14px;
  display: grid;
  min-width: 44px;
  min-height: 34px;
  place-items: center;
  padding: 3px 9px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 2px 2px 0 var(--ink);
  font-size: 0.78rem;
  transform: rotate(2deg);
}

.creator-leader-item:nth-child(2n) .creator-rank {
  background: var(--mint);
  transform: rotate(-2deg);
}

.creator-question-item:first-child {
  background: #fff8cf;
}

.creator-question-item:first-child .creator-rank {
  min-width: 58px;
  background: var(--coral);
}

.creator-leader-item .creator-score {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 950;
}

.creator-leader-item > small {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 750;
}

.creator-leader-item .text-action {
  min-height: 42px;
  justify-self: start;
  color: var(--blue-dark);
}

.creator-item h3,
.creator-item p {
  margin: 0;
}

.creator-item h3 {
  font-size: 1.05rem;
  line-height: 1.15;
}

.creator-meta,
.creator-score {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 780;
}

.creator-meta a {
  color: var(--blue-dark);
}

.creator-rating-form {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.creator-rating-form label {
  display: grid;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 850;
}

.creator-rating-form select {
  min-width: 90px;
}

.archive-score {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  padding-top: 18px;
  border-top: 2px solid var(--ink);
}

.archive-score strong {
  font-size: 2.2rem;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.archive-score strong.new-label {
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.archive-score span {
  max-width: 11ch;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 780;
  line-height: 1.2;
  text-align: right;
}

.archive-author {
  display: block;
  margin-top: 10px;
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 850;
}

.province-teaser {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 34px;
  background: var(--coral);
}

.province-teaser p {
  max-width: 48ch;
  font-weight: 650;
  line-height: 1.5;
}

.province-ranking {
  display: grid;
  align-content: center;
  gap: 10px;
}

.province-ranking span {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--paper-light);
  font-size: 0.84rem;
  font-weight: 850;
}

.province-ranking strong {
  display: grid;
  width: 27px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--ink);
}

.province-ranking em {
  color: var(--muted);
  font-size: 0.7rem;
  font-style: normal;
  text-transform: uppercase;
}

.form-layout {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: start;
  gap: 46px;
  padding-top: 26px;
}

.submit-card {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 5vw, 38px);
  border: var(--border);
  border-radius: var(--radius-large);
  background: var(--paper-light);
  box-shadow: var(--shadow-large);
}

.submit-card label:not(.check-row) {
  margin-top: 5px;
  font-size: 0.82rem;
  font-weight: 900;
}

textarea,
select,
.submit-card input[type="text"],
.contact-form input[type="text"],
.contact-form input[type="email"] {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 13px;
  color: var(--ink);
  background: white;
  outline: 0;
}

textarea {
  min-height: 130px;
  padding: 15px;
  line-height: 1.5;
  resize: vertical;
}

select {
  min-height: 49px;
  padding: 10px 13px;
}

.submit-card input[type="text"] {
  width: 100%;
  min-height: 49px;
  padding: 10px 13px;
  border: 2px solid var(--ink);
  border-radius: 13px;
  color: var(--ink);
  background: white;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
  min-height: 49px;
  padding: 10px 13px;
}

.contact-form label span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

textarea:focus,
select:focus,
.submit-card input[type="text"]:focus,
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus {
  box-shadow: 0 0 0 4px rgba(36, 87, 255, 0.25);
}

.social-attribution {
  display: grid;
  gap: 11px;
  margin: 8px 0 0;
  padding: 16px;
  border: 2px dashed var(--ink);
  border-radius: 14px;
}

.social-attribution legend {
  padding: 0 7px;
  font-size: 0.78rem;
  font-weight: 900;
}

.social-choice {
  margin: 0;
}

.social-fields {
  display: grid;
  gap: 9px;
  padding-top: 10px;
  border-top: 1px solid rgba(23, 23, 23, 0.22);
}

.social-fields[hidden] {
  display: none;
}

.social-fields > label:not(.check-row) {
  margin-top: 4px;
  font-size: 0.76rem;
  font-weight: 900;
}

.field-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: -4px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 680;
}

.check-row {
  display: grid;
  grid-template-columns: auto 1fr;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  margin: 7px 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 680;
  line-height: 1.45;
}

.check-row input {
  width: 19px;
  height: 19px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.check-row a,
.footer-links a,
.legal-page a:not(.secondary-action) {
  color: var(--blue-dark);
  font-weight: 850;
  text-underline-offset: 3px;
}

.form-note {
  margin: 0;
  color: var(--muted);
}

.form-success {
  padding: 14px 16px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--mint);
  font-size: 0.8rem;
  font-weight: 820;
  line-height: 1.45;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.report-view {
  width: min(100%, 900px);
  margin: 0 auto;
}

.test-view {
  display: flex;
  width: min(100%, 960px);
  flex-direction: column;
  margin: 0 auto;
}

.test-view-header {
  order: 0;
}

.test-view > .tester-route {
  order: 1;
}

.test-view > .beta-feedback {
  order: 2;
}

.test-view > .beta-help-actions {
  order: 3;
}

.test-view > .research-introduction {
  order: 4;
}

.test-view > .research-card {
  order: 5;
}

.test-view > .bug-report-panel {
  order: 6;
}

.report-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.report-header > div {
  max-width: 650px;
}

.report-header .secondary-action {
  flex: 0 0 auto;
}

.report-view > .affiliate-card,
.report-view > .demographics-card,
.report-view > .install-card {
  margin-top: 24px;
}

.test-view-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.test-view-header > div {
  max-width: 690px;
}

.test-badge {
  display: grid;
  width: 92px;
  aspect-ratio: 1;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 0.9rem;
  font-weight: 950;
  transform: rotate(5deg);
}

.beta-trust-strip {
  display: flex;
  width: fit-content;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.beta-trust-strip > * {
  padding: 7px 11px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--mint);
  font-size: 0.7rem;
  font-weight: 850;
}

.tester-route,
.research-introduction {
  margin-top: 24px;
  padding: clamp(20px, 4vw, 28px);
  border: 3px solid var(--ink);
  border-radius: 20px;
  color: var(--ink);
  background: var(--paper-light);
  box-shadow: 5px 5px 0 var(--ink);
}

.tester-route-heading,
.research-introduction {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.tester-route h2,
.research-introduction h2 {
  margin: 0;
  font-size: clamp(1.35rem, 4vw, 1.9rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.tester-route-heading > strong {
  padding: 7px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--mint);
  font-size: 0.7rem;
  white-space: nowrap;
}

.tester-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.tester-steps button {
  display: grid;
  min-width: 0;
  min-height: 132px;
  align-content: start;
  gap: 5px;
  padding: 13px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  color: var(--ink);
  background: white;
  text-align: left;
}

.tester-steps button:hover,
.tester-steps button:focus-visible {
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
  transform: translate(-1px, -1px);
}

.tester-steps button > span {
  display: grid;
  width: 28px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  font-size: 0.7rem;
  font-weight: 950;
}

.tester-steps button > strong {
  margin-top: 5px;
  font-size: 0.82rem;
}

.tester-steps button > small,
.tester-route > p,
.research-introduction > p {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 680;
  line-height: 1.45;
}

.tester-route > p {
  margin: 16px 0 0;
}

.tester-route-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.beta-help-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}

.beta-help-actions .text-action {
  color: var(--blue-dark);
}

.compact-action {
  min-height: 48px;
  padding: 8px 13px;
  font-size: 0.76rem;
}

.bug-report-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 1.25fr);
  gap: 24px;
  margin-top: 24px;
  padding: clamp(20px, 4vw, 28px);
  border: 3px solid var(--ink);
  border-radius: 20px;
  background: #fff3bd;
  box-shadow: 5px 5px 0 var(--ink);
}

.bug-report-panel[hidden] {
  display: none;
}

.bug-report-panel h2,
.bug-report-panel p {
  margin: 0;
}

.bug-report-panel form {
  display: grid;
  gap: 9px;
}

.bug-report-panel label {
  font-size: 0.74rem;
  font-weight: 900;
}

.bug-report-panel select,
.bug-report-panel textarea {
  width: 100%;
}

.bug-report-panel small,
.bug-report-panel > div > p:last-child {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.45;
}

.research-introduction {
  align-items: center;
  color: white;
  background: var(--blue);
}

.research-introduction > div {
  max-width: 520px;
}

.research-introduction > p {
  max-width: 310px;
  margin: 0;
  color: white;
}

.test-view > .research-card,
.test-view > .beta-feedback {
  margin-top: 24px;
}


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

.personal-profile {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1.2fr);
  margin: 24px 0 30px;
  overflow: hidden;
  border: var(--border);
  border-radius: var(--radius-large);
  background: var(--paper-light);
  box-shadow: var(--shadow-large);
}

.personal-profile > div {
  min-width: 0;
  padding: clamp(24px, 4vw, 36px);
}

.data-portability {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  padding: clamp(22px, 5vw, 34px);
  border: var(--border);
  border-radius: var(--radius-large);
  background: var(--mint);
  box-shadow: var(--shadow-large);
}

.data-portability h2 {
  margin: 14px 0 8px;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  letter-spacing: -0.045em;
}

.data-portability p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-weight: 680;
  line-height: 1.55;
}

.data-portability-actions {
  display: grid;
  min-width: 230px;
  gap: 10px;
}

.file-action {
  position: relative;
  justify-content: center;
  overflow: hidden;
}

.file-action input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.data-portability-status {
  grid-column: 1 / -1;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: white;
}

.profile-score-panel {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border-right: 3px solid var(--ink);
  color: white;
  background: var(--blue);
  text-align: center;
}

.profile-score-panel .eyebrow {
  color: white;
}

.profile-score-ring {
  position: relative;
  display: grid;
  width: min(190px, 100%);
  margin: 20px auto 16px;
  aspect-ratio: 1;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.profile-score-ring.profile-score-10 { background: conic-gradient(var(--yellow) 10%, rgba(255, 255, 255, 0.22) 0); }
.profile-score-ring.profile-score-20 { background: conic-gradient(var(--yellow) 20%, rgba(255, 255, 255, 0.22) 0); }
.profile-score-ring.profile-score-30 { background: conic-gradient(var(--yellow) 30%, rgba(255, 255, 255, 0.22) 0); }
.profile-score-ring.profile-score-40 { background: conic-gradient(var(--yellow) 40%, rgba(255, 255, 255, 0.22) 0); }
.profile-score-ring.profile-score-50 { background: conic-gradient(var(--yellow) 50%, rgba(255, 255, 255, 0.22) 0); }
.profile-score-ring.profile-score-60 { background: conic-gradient(var(--yellow) 60%, rgba(255, 255, 255, 0.22) 0); }
.profile-score-ring.profile-score-70 { background: conic-gradient(var(--yellow) 70%, rgba(255, 255, 255, 0.22) 0); }
.profile-score-ring.profile-score-80 { background: conic-gradient(var(--yellow) 80%, rgba(255, 255, 255, 0.22) 0); }
.profile-score-ring.profile-score-90 { background: conic-gradient(var(--yellow) 90%, rgba(255, 255, 255, 0.22) 0); }
.profile-score-ring.profile-score-100 { background: var(--yellow); }

.profile-score-ring::before {
  position: absolute;
  width: 74%;
  aspect-ratio: 1;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--paper-light);
  content: "";
}

.profile-score-ring > span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  color: var(--ink);
}

.profile-score-ring strong {
  font-size: clamp(3.2rem, 8vw, 5rem);
  letter-spacing: -0.09em;
  line-height: 1;
}

.profile-score-ring small {
  font-size: 0.75rem;
  font-weight: 900;
}

.profile-score-panel > strong {
  font-size: 1.05rem;
}

.profile-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.profile-copy h2 {
  margin: 17px 0 12px;
  font-size: clamp(1.75rem, 3.4vw, 2.7rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.profile-copy > p:last-of-type {
  margin: 0 0 20px;
  font-weight: 650;
  line-height: 1.5;
}

.profile-copy > small {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.4;
}

.info-grid article {
  min-height: 245px;
  padding: 25px;
  border: var(--border);
  border-radius: var(--radius-medium);
  background: var(--paper-light);
}

.info-grid article:nth-child(2) {
  background: var(--yellow);
}

.info-grid article:nth-child(3) {
  color: white;
  background: var(--blue);
}

.info-number {
  display: inline-grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 900;
}

.info-grid h2 {
  margin: 34px 0 12px;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.info-grid p {
  margin: 0;
  font-weight: 600;
  line-height: 1.55;
}

.test-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--mint);
}

.test-panel p {
  max-width: 52ch;
  font-weight: 650;
  line-height: 1.5;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.legal-grid article {
  padding: clamp(24px, 5vw, 38px);
  border: var(--border);
  border-radius: var(--radius-large);
  background: var(--paper-light);
  box-shadow: var(--shadow-large);
}

.legal-grid article:last-child {
  background: var(--yellow);
}

.legal-grid h2 {
  margin: 24px 0 14px;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.legal-grid p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.6;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  text-decoration: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding: 24px 2px 10px;
  border-top: 2px solid var(--ink);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 680;
  line-height: 1.45;
}

.site-footer div {
  display: flex;
  flex-direction: column;
}

.site-footer strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-links a,
.footer-test-link,
.footer-preferences {
  display: inline-flex;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
}

.footer-test-link {
  position: relative;
  padding: 0;
  border: 0;
  color: var(--blue-dark);
  background: transparent;
  font-size: inherit;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-site-header {
  grid-template-columns: 1fr auto;
}

.legal-page {
  max-width: 840px;
  margin: 0 auto;
}

.legal-hero {
  padding: clamp(28px, 6vw, 56px);
  border: var(--border);
  border-radius: var(--radius-large);
  background: var(--paper-light);
  box-shadow: var(--shadow-large);
}

.legal-hero h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  font-size: clamp(2.35rem, 7vw, 5.2rem);
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.legal-hero > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 680;
  line-height: 1.6;
}

.legal-content {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.legal-card {
  padding: clamp(22px, 5vw, 36px);
  border: 2px solid var(--ink);
  border-radius: var(--radius-medium);
  background: rgba(255, 253, 248, 0.82);
}

.legal-card:nth-child(3n + 2) {
  background: rgba(255, 228, 92, 0.25);
}

.legal-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  letter-spacing: -0.035em;
}

.legal-card h3 {
  margin: 22px 0 8px;
  font-size: 1rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.65;
}

.legal-card p:last-child,
.legal-card ul:last-child {
  margin-bottom: 0;
}

.legal-card li + li {
  margin-top: 8px;
}

.legal-note {
  padding: 16px 18px;
  border-left: 6px solid var(--coral);
  border-radius: 8px;
  background: var(--paper-light);
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.mobile-nav {
  display: none;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  max-width: min(360px, calc(100% - 36px));
  padding: 13px 16px;
  border: 2px solid var(--ink);
  border-radius: 13px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: var(--shadow-small);
  font-size: 0.8rem;
  font-weight: 850;
}

.cookie-consent {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 200;
  display: grid;
  width: min(760px, calc(100% - 40px));
  grid-template-columns: 1fr;
  gap: 16px;
  margin-inline: auto;
  padding: 22px;
  border: 3px solid var(--ink);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent-copy {
  max-width: none;
}

.cookie-consent-copy .eyebrow {
  width: fit-content;
  margin: 0 0 7px;
}

.cookie-consent-copy h2 {
  margin: 0 0 7px;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
}

.cookie-consent-copy p:last-of-type {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.cookie-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.cookie-trust-list li {
  padding: 5px 9px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: white;
  font-size: 0.68rem;
  font-weight: 850;
}

.cookie-consent-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.cookie-consent-actions button {
  width: 100%;
}

.cookie-consent-choice {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 66px;
  gap: 2px;
  padding: 10px 15px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: left;
}

.cookie-consent-choice small {
  display: block;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 750;
}

.cookie-consent-accept {
  background: var(--yellow);
}

.cookie-consent-deny {
  background: var(--yellow);
}

.cookie-consent-customize {
  grid-column: 1 / -1;
  width: fit-content !important;
  min-height: 38px;
  justify-self: center;
  padding: 5px 7px;
  border: 0;
  color: var(--blue-dark);
  background: transparent;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 850;
  text-decoration: underline;
}

.cookie-consent-choice:hover,
.cookie-consent-choice:focus-visible,
.cookie-consent-customize:hover,
.cookie-consent-customize:focus-visible {
  transform: translateY(-1px);
  box-shadow: 2px 2px 0 var(--ink);
}

.cookie-custom-panel {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.cookie-detail-card {
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: white;
}

.cookie-detail-card strong {
  font-size: 0.78rem;
  font-weight: 900;
}

.cookie-detail-card span,
.cookie-detail-note,
.cookie-current-choice {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.4;
}

.cookie-detail-note,
.cookie-current-choice {
  grid-column: 1 / -1;
}

.cookie-current-choice {
  color: var(--ink);
  font-weight: 850;
}

.footer-preferences {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
textarea:focus-visible,
select:focus-visible,
input:focus-visible {
  outline: 4px solid var(--blue);
  outline-offset: 4px;
}

@media (max-width: 840px) {
  body {
    /* Een vaste meerlaagse achtergrond houdt op oude Android-WebViews een
       onnodig groot grafisch vlak in het geheugen. Scrollen oogt hetzelfde,
       maar voorkomt tile-memorydruk op kleine toestellen. */
    background-attachment: scroll;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .desktop-nav {
    display: none;
  }

  .header-share {
    justify-self: end;
  }

  .activity-button {
    justify-self: end;
  }

  .jij-dashboard,
  .together-start-card,
  .account-card,
  .general-group-card,
  .social-follow-card {
    grid-template-columns: 1fr;
  }

  .group-form {
    grid-template-columns: 1fr 1fr;
  }

  .group-form button {
    grid-column: 1 / -1;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .side-note {
    display: none;
  }

  .archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .history-overview {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    overflow-x: auto;
    padding: 2px 4px 8px;
    scrollbar-width: none;
  }

  .history-overview::-webkit-scrollbar {
    display: none;
  }

  .archive-card:last-child {
    grid-column: 1 / -1;
    min-height: 230px;
  }

  .form-layout {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .personal-profile {
    grid-template-columns: minmax(210px, 0.75fr) minmax(300px, 1.25fr);
  }

  .profile-copy {
    border-right: 0;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .info-grid article {
    min-height: auto;
  }

  .mobile-nav {
    position: fixed;
    right: 10px;
    bottom: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    z-index: 50;
    /* WebView 53 (Android 7) kent CSS Grid nog niet. Flex is de veilige
       fallback; moderne browsers nemen daarna de vijfkoloms-grid over. */
    display: flex;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 5px;
    border: 2px solid var(--ink);
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.96);
    box-shadow: 0 7px 24px rgba(23, 23, 23, 0.24);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .mobile-nav button {
    position: relative;
    display: flex;
    flex: 1 1 0;
    min-height: 58px;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 6px 3px;
    border: 0;
    border-radius: 12px;
    color: var(--muted);
    background: transparent;
    font-size: 0.7rem;
    font-weight: 850;
  }

  .mobile-nav button .nav-research-badge {
    position: absolute;
    top: 1px;
    right: calc(50% - 23px);
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    color: var(--ink);
    background: var(--yellow);
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 950;
    line-height: 1;
    box-shadow: 1px 1px 0 var(--ink);
  }

  .mobile-nav button .nav-research-badge[hidden] {
    display: none;
  }

  .mobile-nav button span {
    display: grid;
    width: 27px;
    aspect-ratio: 1;
    place-items: center;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-size: 0.9rem;
    line-height: 1;
  }

  .mobile-nav button[aria-current="page"] {
    color: var(--ink);
    background: var(--yellow);
  }

  .mobile-nav .serious-nav-link.research-ready:not([aria-current="page"]) {
    color: var(--blue-dark);
    background: transparent;
    box-shadow: none;
  }

  .mobile-nav .beta-nav-action {
    color: var(--blue-dark);
  }

  .site-shell {
    /* Ruimte voor de vaste navigatie plus een comfortabele scrollbuffer. */
    padding-bottom: calc(168px + env(safe-area-inset-bottom));
    scroll-padding-bottom: calc(168px + env(safe-area-inset-bottom));
  }

  main {
    padding-bottom: calc(28px + env(safe-area-inset-bottom));
  }

  .toast {
    right: 12px;
    bottom: calc(91px + env(safe-area-inset-bottom));
    left: 12px;
    max-width: none;
  }

  .cookie-consent {
    bottom: calc(96px + env(safe-area-inset-bottom));
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    margin-bottom: 24px;
  }

  .brand strong {
    font-size: 2.15rem;
  }

  .header-share {
    min-height: 48px;
    padding: 7px 10px;
  }

  .header-share strong {
    display: none;
  }

  .activity-button {
    width: 48px;
    height: 48px;
  }

  .activity-panel {
    top: max(8px, env(safe-area-inset-top));
    right: 8px;
    width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px);
    padding: 18px;
  }

  .jij-badge-list {
    grid-template-columns: repeat(5, minmax(54px, 1fr));
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .group-form,
  .account-card,
  .general-group-card,
  .social-follow-card {
    grid-template-columns: 1fr;
  }

  .social-follow-actions {
    grid-template-columns: 1fr 1fr;
  }

  .group-form-panels {
    grid-template-columns: 1fr;
  }

  .group-item,
  .beta-entry-card,
  .notification-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .creator-list {
    grid-template-columns: 1fr;
  }

  .question-reactions {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px 8px;
    padding: 8px 0;
  }

  .reaction-options {
    gap: 5px;
  }

  .reaction-option {
    padding-inline: 8px;
  }

  .discover-story {
    grid-template-columns: 1fr;
  }

  .discover-story > .text-action,
  .discover-story > small {
    grid-column: 1;
  }

  .group-item-actions {
    width: 100%;
  }

  .group-item-actions button {
    flex: 1;
  }

  .history-overview {
    grid-template-columns: 1fr 1fr;
    overflow: visible;
    padding: 0;
  }

  .history-overview > div {
    min-height: 90px;
    padding: 14px;
  }

  .history-overview > div:nth-child(3) {
    grid-column: 1 / -1;
  }

  .friend-comparison,
  .archive-complete-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .friend-revenge-button,
  .archive-complete-actions {
    width: 100%;
  }

  .site-shell {
    width: min(100% - 22px, 1080px);
    padding-top: calc(17px + env(safe-area-inset-top));
  }

  .site-header {
    gap: 12px;
    margin-bottom: 20px;
  }

  .beta-progress-chip {
    flex-wrap: wrap;
  }

  .beta-progress-chip > strong {
    flex: 1 1 180px;
  }

  .beta-progress-chip > button {
    width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .header-share {
    max-width: 178px;
    padding: 7px 10px;
  }

  .header-share-icon {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
  }

  .header-share strong {
    font-size: 0.72rem;
  }

  .question-card {
    border-radius: 23px;
  }

  .question-card h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .card-topline {
    align-items: center;
  }

  .category-stamp {
    font-size: 0.7rem;
  }

  .daily-meter {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 9px 12px;
  }

  .streak-pill {
    grid-row: 2;
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    padding: 7px 10px;
  }

  .daily-dots {
    grid-row: 1;
    grid-column: 2;
  }

  .result-heading,
  .research-heading {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .result-bubble {
    flex-basis: auto;
    width: 88px;
  }

  .result-bubble strong {
    font-size: 1.55rem;
  }

  .result-question-summary,
  .next-question-panel,
  .daily-complete,
  .report-header,
  .test-view-header,
  .tester-route-heading,
  .research-introduction {
    align-items: stretch;
    flex-direction: column;
  }

  .test-badge {
    display: none;
  }

  .research-teaser {
    grid-template-columns: auto 1fr;
  }

  .research-teaser > small {
    grid-column: 2;
    white-space: normal;
  }

  .tester-steps {
    grid-template-columns: 1fr 1fr;
  }

  .tester-steps button:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .bug-report-panel {
    grid-template-columns: 1fr;
  }

  .tester-steps button {
    min-height: 118px;
  }

  .research-introduction > p {
    max-width: none;
  }

  .report-header .secondary-action,
  .daily-complete .primary-action {
    width: 100%;
  }

  .week-summary-heading,
  .streak-rewards-heading,
  .beta-feedback-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .week-summary-heading > strong {
    align-self: flex-start;
  }

  .daily-report-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .next-round-timer {
    min-width: 0;
  }

  .reward-milestones {
    grid-template-columns: 1fr 1fr;
  }

  .feedback-options {
    grid-template-columns: 1fr 1fr;
  }

  .feedback-options.three-options {
    grid-template-columns: 1fr 1fr;
  }

  .feedback-options.three-options label:last-child {
    grid-column: 1 / -1;
  }

  .feedback-options:not(.three-options) label:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .feedback-open-field > label,
  .feedback-open-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .feedback-extras > summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .demographics-card,
  .demographics-card form {
    grid-template-columns: 1fr;
  }

  .demographics-actions {
    grid-column: auto;
    align-items: stretch;
    flex-direction: column;
  }

  .text-action {
    align-self: flex-start;
  }

  .research-options {
    grid-template-columns: 1fr 1fr;
  }

  .research-complete {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 18px;
  }

  .research-complete-icon {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }

  .research-complete-actions {
    display: grid;
  }

  .research-complete-actions .primary-action,
  .research-complete-actions .secondary-action {
    width: 100%;
  }

  .archive-grid,
  .province-teaser,
  .discover-story {
    grid-template-columns: 1fr;
  }

  .archive-toolbar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 2px 3px 7px;
    scrollbar-width: none;
  }

  .archive-toolbar::-webkit-scrollbar {
    display: none;
  }

  .archive-toolbar button {
    flex: 0 0 auto;
  }

  .personal-profile {
    grid-template-columns: 1fr;
  }

  .data-portability {
    grid-template-columns: 1fr;
  }

  .data-portability-actions {
    min-width: 0;
  }

  .archive-more-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .profile-score-panel {
    border-right: 0;
    border-bottom: 3px solid var(--ink);
  }

  .profile-copy {
    border: 0;
  }

  .archive-card:last-child {
    grid-column: auto;
  }

  .history-card {
    min-height: 0;
  }

  .history-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .history-actions .text-action {
    align-self: flex-start;
  }

  .province-teaser {
    gap: 18px;
  }

  .test-panel,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .test-panel {
    display: flex;
  }

  .site-footer {
    display: flex;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .affiliate-card {
    align-items: stretch;
    flex-direction: column;
  }

  .install-card,
  .install-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .install-actions .secondary-action,
  .install-actions .text-action {
    width: 100%;
    justify-content: center;
  }

  .affiliate-link {
    align-self: flex-start;
  }

  .next-question-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .next-question-panel .primary-action {
    width: 100%;
  }

  .result-actions,
  .share-cta {
    width: 100%;
    max-width: none;
  }

  .share-dialog {
    width: 100%;
    max-width: none;
    margin: auto 0 0;
    border-radius: 24px 24px 0 0;
  }

  .share-sheet {
    padding: 26px 20px calc(24px + env(safe-area-inset-bottom));
    border-width: 3px 3px 0;
    border-radius: 24px 24px 0 0;
    box-shadow: none;
  }

  .notification-dialog {
    width: 100%;
    max-width: none;
    max-height: calc(100vh - env(safe-area-inset-top));
    margin: auto 0 0;
    border-radius: 24px 24px 0 0;
  }

  .notification-sheet {
    max-height: calc(100vh - env(safe-area-inset-top));
    padding: 26px 20px calc(24px + env(safe-area-inset-bottom));
    border-width: 3px 3px 0;
    border-radius: 24px 24px 0 0;
    box-shadow: none;
  }

  .share-sheet h2 {
    font-size: 1.75rem;
  }

  .cookie-consent {
    right: 12px;
    bottom: calc(92px + env(safe-area-inset-bottom));
    left: 12px;
    display: grid;
    width: auto;
    max-height: calc(100vh - 112px);
    gap: 11px;
    overflow-y: auto;
    padding: 14px;
    border-radius: 18px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .cookie-consent-actions {
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cookie-consent-copy h2 {
    margin-bottom: 4px;
    font-size: 1.45rem;
  }

  .cookie-consent-copy p:last-of-type {
    font-size: 0.78rem;
    line-height: 1.42;
  }

  .cookie-trust-list {
    gap: 5px;
    margin-top: 8px;
  }

  .cookie-trust-list li {
    padding: 4px 7px;
    font-size: 0.62rem;
  }

  .cookie-consent-choice {
    min-height: 58px;
    padding: 8px 13px;
  }

  .cookie-custom-panel {
    grid-template-columns: 1fr;
  }

  .cookie-detail-note,
  .cookie-current-choice {
    grid-column: auto;
  }
}

/* 0.27.21-43 — Raad-mij delen en het privé Raarpuntenklassement. */
.guess-share-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  color: var(--ink);
  background: white;
  box-shadow: 0 7px 0 var(--ink);
}

.guess-share-panel[hidden] {
  display: none;
}

.guess-share-panel h3 {
  margin: 4px 0 0;
  font-size: 1.15rem;
}

.guess-share-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.guess-share-channel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 9px;
  border: 2px solid var(--ink);
  border-radius: 13px;
  color: var(--ink);
  background: white;
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.1;
  box-shadow: 0 3px 0 var(--ink);
}

.guess-share-channel span {
  font-size: 1.25rem;
}

.guess-share-channel.whatsapp { background: #b9f7d1; }
.guess-share-channel.instagram { background: #ffd1e8; }
.guess-share-channel.snapchat { background: var(--yellow); }
.guess-share-channel.more { background: #dfe7ff; }

.guess-share-copy {
  justify-self: center;
}

.raar-progress-card,
.friends-ranking-card {
  grid-column: 1 / -1;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: white;
}

.raar-progress-card {
  display: grid;
  grid-template-columns: minmax(112px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
}

.raar-progress-card > div:first-child {
  display: grid;
  align-content: center;
  min-height: 104px;
  padding: 12px;
  border: 2px solid var(--ink);
  border-radius: 15px;
  background: var(--yellow);
  text-align: center;
}

.raar-progress-card > div:first-child strong {
  font-size: clamp(2.3rem, 7vw, 4rem);
  line-height: 0.9;
}

.raar-progress-card h3,
.friends-ranking-card h3 {
  margin: 4px 0 10px;
}

.raar-progress-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 750;
}

.raar-level-track {
  height: 17px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #f0ede7;
}

.raar-level-track span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--yellow));
  transition: width 260ms ease;
}

.friends-ranking-card {
  padding: 16px;
  background: #edf1ff;
}

.friends-ranking-card ol {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.friends-ranking-card li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 9px 11px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: white;
}

.friends-ranking-card li > strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--yellow);
}

.friends-ranking-card li span {
  display: grid;
}

.friends-ranking-card li small { color: var(--muted); }
.friends-ranking-card li em { font-style: normal; font-weight: 900; }

@media (max-width: 620px) {
  .raar-progress-card {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 11px;
    padding: 11px;
  }

  .raar-progress-card > div:first-child {
    min-height: 92px;
    padding: 7px;
  }

  .raar-progress-card h3 { font-size: 0.95rem; }
  .raar-progress-card p { font-size: 0.7rem; }
}

/* De reactieknop is bewust pictografisch: de toegankelijke naam blijft voor
   schermlezers beschikbaar, terwijl tekst nooit meer tussen like en delen kan
   overlopen. */
.question-social-bar .reaction-more strong,
.result-card .result-social-bar .question-reactions .reaction-more strong {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.question-social-bar .reaction-more,
.result-card .result-social-bar .question-reactions .reaction-more {
  min-width: 44px;
  overflow: hidden;
}

/* 0.27.21-43 — Keuzetips blijft een herkenbaar onderdeel van de app.
   De gids gebruikt dezelfde navigatie, een rustige kop en altijd zichtbare
   eerste-partijillustraties; de commerciële link wordt daarna veilig geladen. */
.guide-shell .legal-site-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.guide-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.guide-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  text-decoration: none;
}

.guide-nav a:hover,
.guide-nav a:focus-visible {
  background: var(--yellow);
}

.guide-page .guide-hero {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 42px);
}

.guide-page .guide-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.2rem, 5.2vw, 4.65rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.guide-page .guide-hero > p:not(.eyebrow) {
  margin: 0;
}

.guide-page .guide-trust-note {
  padding-block: 5px;
  font-size: 0.72rem;
  line-height: 1.4;
}

.guide-featured-ad {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding: 14px;
  border: 3px solid var(--ink);
  border-radius: 20px;
  background: #fff;
  box-shadow: 5px 5px 0 var(--ink);
}

.guide-featured-media {
  width: 118px;
  height: 86px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 13px;
  background: var(--paper-light);
}

.guide-featured-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-featured-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.guide-featured-copy strong {
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  line-height: 1.08;
}

.guide-featured-copy small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.guide-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-content: start;
  column-gap: 16px;
}

.guide-card .guide-card-media {
  grid-row: 1 / span 5;
  width: 150px;
  height: 150px;
  margin: 0;
}

.guide-card .eyebrow,
.guide-card h2,
.guide-card > p:not(.eyebrow),
.guide-card .guide-partner-link,
.guide-card .guide-disclosure {
  grid-column: 2;
}

.guide-card .guide-partner-link {
  justify-self: start;
}

@media (max-width: 900px) {
  .guide-shell .legal-site-header {
    grid-template-columns: auto 1fr auto;
  }

  .guide-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .guide-nav::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 700px) {
  .guide-shell {
    padding-bottom: 24px;
  }

  .guide-shell .legal-site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    margin: 0 -10px 14px;
    padding: 8px 10px;
    border-bottom: 2px solid var(--ink);
    background: rgb(255 250 241 / 0.96);
    backdrop-filter: blur(10px);
  }

  .guide-today-action {
    min-height: 42px;
    padding: 8px 11px;
    font-size: 0.68rem;
  }

  .guide-nav {
    gap: 3px;
  }

  .guide-nav a {
    min-height: 40px;
    padding: 7px 10px;
    font-size: 0.68rem;
    white-space: nowrap;
  }

  .guide-page .guide-hero {
    gap: 10px;
    padding: 20px;
  }

  .guide-page .guide-hero h1 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .guide-page .guide-hero > p:not(.eyebrow) {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .guide-page .guide-trust-note {
    padding-block: 3px;
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .guide-featured-ad {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 10px;
    margin-top: 12px;
    padding: 10px;
  }

  .guide-featured-media {
    width: 82px;
    height: 74px;
  }

  .guide-featured-copy strong {
    font-size: 0.98rem;
  }

  .guide-featured-copy small {
    display: none;
  }

  .guide-featured-ad .guide-partner-link {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 42px;
    margin-top: 0;
    justify-content: center;
  }

  .guide-card {
    grid-template-columns: 104px minmax(0, 1fr);
    column-gap: 12px;
  }

  .guide-card .guide-card-media {
    width: 104px;
    height: 104px;
  }

  .guide-card h2 {
    margin-top: 5px;
    font-size: 1.16rem;
  }

  .guide-card > p:not(.eyebrow) {
    grid-column: 1 / -1;
    margin-top: 12px;
  }

  .guide-card .guide-partner-link,
  .guide-card .guide-disclosure {
    grid-column: 1 / -1;
  }

  .guide-card .guide-partner-link {
    width: 100%;
    justify-content: center;
  }
}

/* 0.27.21-43 — rustige merktoestemming, LinkedIn-achtige Raarlikes en een
   beeldrijke Amazon-rij. Acceptatie en weigering blijven even gemakkelijk. */
.cookie-consent {
  top: 50%;
  right: 20px;
  bottom: auto;
  left: 20px;
  width: min(680px, calc(100% - 40px));
  max-height: calc(100vh - 40px);
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 14px 18px;
  overflow-y: auto;
  padding: 22px;
  border-radius: 24px;
  transform: translateY(-50%);
  box-shadow: 0 0 0 100vmax rgb(23 23 23 / 0.58), 8px 8px 0 var(--ink);
  clip-path: inset(-100vmax);
}

.cookie-brand {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 6px;
  padding-top: 3px;
  text-align: center;
}

.cookie-brand img {
  width: 58px;
  height: 58px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: var(--coral);
  box-shadow: 2px 2px 0 var(--ink);
}

.cookie-brand span {
  display: grid;
  line-height: 0.92;
}

.cookie-brand small {
  font-size: 0.48rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.cookie-brand strong {
  font-size: 0.85rem;
  font-weight: 1000;
}

.cookie-consent-copy h2 {
  max-width: 520px;
  margin-bottom: 7px;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.cookie-consent-copy p:last-of-type {
  max-width: 560px;
  font-size: 0.78rem;
  line-height: 1.45;
}

.cookie-consent-actions,
.cookie-custom-panel {
  grid-column: 1 / -1;
}

.cookie-consent-choice {
  min-height: 62px;
  border-radius: 14px;
  box-shadow: 2px 2px 0 var(--ink);
}

.cookie-consent-accept {
  background: var(--yellow);
}

/* Samen blijft een optionele sociale verdieping ná de dagelijkse kernronde. */
.daily-complete-together {
  color: var(--ink);
  background: var(--mint) !important;
}

.together-affiliate-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: white;
  box-shadow: 4px 4px 0 var(--ink);
}

.together-affiliate-card .affiliate-card-media {
  width: 112px;
  height: 82px;
  min-height: 82px;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: #f4f0ea;
}

.together-affiliate-card .affiliate-card-media img {
  width: 100%;
  height: 82px;
  object-fit: cover;
}

.together-affiliate-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.together-affiliate-copy strong,
.together-affiliate-copy p,
.together-affiliate-copy small {
  margin: 0;
}

.together-affiliate-copy strong {
  font-size: 1.05rem;
  line-height: 1.1;
}

.together-affiliate-copy p,
.together-affiliate-copy small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.together-affiliate-card .affiliate-link {
  min-height: 44px;
  padding: 9px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--coral);
  box-shadow: 2px 2px 0 var(--ink);
  font-size: 0.72rem;
  font-weight: 950;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .daily-complete-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .daily-complete-actions #open-report-button {
    grid-column: 1 / -1;
  }

  .together-affiliate-card {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 10px;
  }

  .together-affiliate-card .affiliate-card-media {
    width: 76px;
    height: 76px;
    min-height: 76px;
  }

  .together-affiliate-card .affiliate-card-media img {
    height: 76px;
  }

  .together-affiliate-card .affiliate-link {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
  }
}

.cookie-consent-deny {
  background: var(--mint);
}

.cookie-consent-customize {
  min-height: 44px;
  text-underline-offset: 3px;
}

.cookie-trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-color: #d8d0c6;
  background: #fff;
}

.cookie-trust-list li span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  font-size: 0.62rem;
  line-height: 1;
}

.result-card .result-social-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  overflow: visible;
  border: 2px solid var(--ink);
  border-radius: 16px;
  color: var(--ink);
  background: #fff;
  box-shadow: 3px 3px 0 var(--ink);
}

.result-card .result-social-bar .question-reactions {
  display: contents;
}

.result-card .result-social-bar .question-reactions[hidden] {
  display: none;
}

.result-card .result-social-bar .question-reactions .reaction-summary {
  display: flex;
  grid-column: 1 / -1;
  min-height: 39px;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-bottom: 1px solid var(--line);
  color: #5f584f;
  font-size: 0.7rem;
  font-weight: 800;
}

.result-card .result-social-bar .question-reactions .reaction-trigger,
.result-card .result-social-bar .question-reactions .reaction-more,
.result-card .result-social-bar .share-cta {
  display: flex;
  width: 100%;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 6px;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  font: inherit;
}

.result-card .result-social-bar .question-reactions .reaction-trigger,
.result-card .result-social-bar .question-reactions .reaction-more {
  border-right: 1px solid var(--line);
}

.result-card .result-social-bar .question-reactions .reaction-trigger > span:first-child,
.result-card .result-social-bar .question-reactions .reaction-more > span:first-child {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1;
}

.result-card .result-social-bar .question-reactions .reaction-trigger > span:nth-child(2),
.result-card .result-social-bar .share-cta > span {
  display: block;
}

.result-card .result-social-bar .question-reactions .reaction-trigger strong,
.result-card .result-social-bar .question-reactions .reaction-more strong,
.result-card .result-social-bar .share-cta strong {
  font-size: 0.76rem;
  line-height: 1.05;
}

.result-card .result-social-bar .question-reactions .reaction-trigger.selected {
  color: #c52b22;
  background: #fff0ee;
}

.result-card .result-social-bar .question-reactions .reaction-options {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
  padding: 10px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.result-card .result-social-bar .result-actions {
  display: contents;
}

.result-card .result-social-bar .share-cta svg {
  width: 26px;
  height: 26px;
}

.question-social-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  overflow: visible;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: #fff;
  box-shadow: 3px 3px 0 var(--ink);
}

.question-social-bar .prompt-question-reactions {
  display: contents;
}

.question-social-bar .prompt-question-reactions[hidden] {
  display: none;
}

.question-social-bar .reaction-summary {
  display: flex;
  grid-column: 1 / -1;
  min-height: 36px;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-bottom: 1px solid var(--line);
  color: #5f584f;
  font-size: 0.68rem;
  font-weight: 800;
}

.question-social-bar .reaction-trigger,
.question-social-bar .reaction-more,
.question-social-bar .question-share-action {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 5px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  font: inherit;
}

.question-social-bar .question-share-action {
  border-right: 0;
}

.question-social-bar .reaction-trigger > span:first-child,
.question-social-bar .reaction-more > span:first-child {
  font-size: 1.25rem;
}

.question-social-bar .reaction-trigger strong,
.question-social-bar .reaction-more strong,
.question-social-bar .question-share-action strong {
  font-size: 0.72rem;
}

.question-social-bar .reaction-options {
  grid-column: 1 / -1;
  width: 100%;
  padding: 10px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.affiliate-shelf {
  display: grid;
  width: 100%;
  flex: 1 0 100%;
  gap: 12px;
  margin-top: 8px;
  padding: 14px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: #fff;
  box-shadow: 3px 3px 0 var(--ink);
}

.affiliate-shelf[hidden] {
  display: none;
}

.affiliate-shelf-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.affiliate-shelf-heading > div {
  display: grid;
  gap: 3px;
}

.affiliate-shelf-heading strong {
  font-size: 1.08rem;
  line-height: 1.08;
}

.affiliate-shelf-heading small {
  max-width: 430px;
  color: var(--muted);
  font-size: 0.6rem;
  line-height: 1.35;
}

.affiliate-shelf-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.affiliate-product-tile {
  display: grid;
  grid-template-rows: 112px 1fr;
  min-width: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 14px;
  color: var(--ink);
  background: #fffaf2;
  text-decoration: none;
}

.affiliate-product-tile:hover,
.affiliate-product-tile:focus-visible {
  transform: translateY(-2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.affiliate-product-media {
  display: block;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: #f4f0ea;
}

.affiliate-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.affiliate-product-copy {
  display: grid;
  align-content: space-between;
  gap: 10px;
  padding: 10px;
}

.affiliate-product-copy strong {
  font-size: 0.78rem;
  line-height: 1.15;
}

.affiliate-product-copy small {
  color: #9a3412;
  font-size: 0.64rem;
  font-weight: 950;
}

@media (max-width: 620px) {
  .cookie-consent {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: calc(100vh - env(safe-area-inset-top) - 8px);
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px 12px;
    padding: 14px 14px calc(14px + env(safe-area-inset-bottom));
    border-width: 3px 3px 0;
    border-radius: 22px 22px 0 0;
    transform: none;
    box-shadow: 0 0 0 100vmax rgb(23 23 23 / 0.58), 0 -4px 0 var(--ink);
  }

  .cookie-brand {
    justify-items: start;
  }

  .cookie-brand img {
    width: 50px;
    height: 50px;
    border-radius: 13px;
  }

  .cookie-brand span {
    display: none;
  }

  .cookie-consent-copy h2 {
    font-size: 1.32rem;
  }

  .cookie-consent-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cookie-consent-choice {
    min-height: 64px;
    padding: 8px 9px;
    font-size: 0.74rem;
  }

  .cookie-consent-choice small {
    font-size: 0.58rem;
  }

  .cookie-trust-list {
    display: none;
  }

  .affiliate-shelf-heading {
    display: grid;
    gap: 7px;
  }

  .affiliate-shelf-grid {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    padding: 0 2px 5px;
    scroll-snap-type: x mandatory;
  }

  .affiliate-product-tile {
    width: min(68vw, 220px);
    min-width: min(68vw, 220px);
    grid-template-rows: 104px 1fr;
    scroll-snap-align: start;
  }

  .result-card .result-social-bar .question-reactions .reaction-trigger,
  .result-card .result-social-bar .question-reactions .reaction-more,
  .result-card .result-social-bar .share-cta,
  .question-social-bar .reaction-trigger,
  .question-social-bar .reaction-more,
  .question-social-bar .question-share-action {
    flex-direction: column;
    gap: 3px;
  }

  .result-card .result-social-bar .question-reactions .reaction-trigger strong,
  .result-card .result-social-bar .question-reactions .reaction-more strong,
  .result-card .result-social-bar .share-cta strong,
  .question-social-bar .reaction-trigger strong,
  .question-social-bar .reaction-more strong,
  .question-social-bar .question-share-action strong {
    font-size: 0.64rem;
    text-align: center;
  }
}

/* Android toegankelijkheid: behoud 200% tekst zonder overlappende bediening. */
html.native-large-text .research-teaser,
html.native-large-text .today-research-teaser {
  grid-template-columns: 1fr;
  align-items: stretch;
}

html.native-large-text .research-teaser > small {
  white-space: normal;
}

html.native-large-text .next-question-panel,
html.native-large-text .daily-complete,
html.native-large-text .result-card .result-heading {
  flex-direction: column;
  align-items: stretch;
}

html.native-large-text .result-next-panel .primary-action,
html.native-large-text .result-next-panel .secondary-action {
  width: 100%;
  white-space: normal;
}

html.native-large-text .result-bubble {
  width: 100%;
  min-height: 92px;
  flex-basis: auto;
  aspect-ratio: auto;
  border-radius: 24px;
  transform: none;
}

html.native-large-text .result-statistics {
  grid-template-columns: 1fr;
}

html.native-large-text .result-stat strong {
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
}

html.native-large-text .mobile-nav button {
  gap: 1px;
  padding: 4px 2px;
  overflow: hidden;
  font-size: 0.5rem;
  line-height: 1;
  text-align: center;
}

html.native-large-text .mobile-nav button span {
  width: 24px;
  font-size: 0.72rem;
}

/* Dezelfde veilige stapeling bij 200% browserzoom op een smal scherm. */
@media (max-width: 360px) {
  .research-teaser,
  .today-research-teaser {
    grid-template-columns: 1fr;
  }

  .research-teaser > small {
    white-space: normal;
  }

  .next-question-panel,
  .daily-complete,
  .result-card .result-heading {
    flex-direction: column;
    align-items: stretch;
  }

  .result-next-panel .primary-action,
  .result-next-panel .secondary-action {
    width: 100%;
    white-space: normal;
  }

  .result-bubble {
    width: 100%;
    min-height: 92px;
    flex-basis: auto;
    aspect-ratio: auto;
    border-radius: 24px;
    transform: none;
  }

  .result-statistics {
    grid-template-columns: 1fr;
  }

  .mobile-nav button {
    min-height: 52px;
    gap: 2px;
    padding: 5px 2px;
    overflow: hidden;
    font-size: 0.58rem;
    line-height: 1;
    text-align: center;
  }

  .mobile-nav button span {
    width: 24px;
    font-size: 0.76rem;
  }

  .result-card .result-heading h1 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .personal-score-value strong {
    font-size: 1.85rem;
  }
}

/* 0.27.21-25 — rustig resultaat, beeldrijke partnerstrook en een sociale
   raarlike-bediening volgens het vertrouwde patroon: teller boven de acties,
   één hartknop, delen ernaast en extra reacties achter het menu. */
.result-card:not(.daily-round-complete) > .question-affiliate-card {
  width: 100%;
  margin: 0 0 14px;
}

.question-affiliate-card,
.daily-complete-affiliate {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  color: var(--ink);
  background: #fff;
  box-shadow: 3px 3px 0 var(--ink);
}

.question-affiliate-card .affiliate-card-media,
.daily-complete-affiliate .affiliate-card-media {
  width: 128px;
  min-height: 72px;
  height: 72px;
  overflow: hidden;
  border: 0;
  border-radius: 11px;
  background: #f4f0ea;
}

.question-affiliate-card .affiliate-card-media img,
.daily-complete-affiliate .affiliate-card-media img {
  width: 100%;
  height: 72px;
  min-height: 72px;
  object-fit: cover;
}

.question-affiliate-card .affiliate-label,
.daily-complete-affiliate .affiliate-label {
  padding: 0;
  border: 0;
  color: #5f584f;
  background: transparent;
  font-size: 0.56rem;
  letter-spacing: 0.07em;
}

.question-affiliate-card strong,
.daily-complete-affiliate strong {
  margin-top: 3px;
  font-size: 0.98rem;
  line-height: 1.12;
}

.question-affiliate-card .affiliate-link,
.daily-complete-affiliate .affiliate-link {
  min-height: 44px;
  padding: 9px 13px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: #ffad42;
  box-shadow: 2px 2px 0 var(--ink);
  font-size: 0.68rem;
  font-weight: 950;
  white-space: nowrap;
}

.question-affiliate-card .affiliate-link:hover,
.question-affiliate-card .affiliate-link:focus-visible,
.daily-complete-affiliate .affiliate-link:hover,
.daily-complete-affiliate .affiliate-link:focus-visible {
  background: #ff9900;
  transform: translateY(-1px);
}

.result-card.daily-round-complete > .daily-complete {
  order: 3;
  width: 100%;
  max-width: none;
}

.result-card.daily-round-complete .daily-complete {
  gap: 10px;
}

.result-card.daily-round-complete .daily-complete-affiliate {
  order: initial;
  margin: 0;
}

.daily-complete-copy {
  max-width: none;
}

.daily-complete-copy strong {
  font-size: 1.12rem;
  letter-spacing: -0.025em;
}

.daily-complete-actions {
  margin-top: 0;
}

.daily-complete-actions .secondary-action {
  min-height: 44px;
  padding: 8px 13px;
  border-width: 2px;
  background: white;
  font-size: 0.72rem;
}

.result-card .result-social-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  overflow: visible;
  padding: 8px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  color: var(--ink);
  background: #fff;
  box-shadow: 3px 3px 0 var(--ink);
}

.result-card .result-social-bar .question-reactions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 2px 4px;
  min-height: 0;
  padding: 0 8px 0 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.result-card .result-social-bar .question-reactions .reaction-summary {
  display: flex;
  grid-column: 1 / -1;
  order: -1;
  min-height: 25px;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  padding: 0 8px;
  color: #5f584f;
  font-size: 0.65rem;
  white-space: normal;
}

.reaction-preview {
  display: inline-flex;
  align-items: center;
  padding-left: 5px;
}

.reaction-preview-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  margin-left: -5px;
  border: 2px solid white;
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint);
  box-shadow: 0 0 0 1px rgb(23 23 23 / 0.14);
  font-size: 0.72rem;
}

.reaction-preview-icon[data-reaction="raar"] { background: var(--yellow); }
.reaction-preview-icon[data-reaction="heerlijk_raar"] { background: var(--coral); }
.reaction-preview-icon[data-reaction="geniaal"] { color: white; background: var(--blue); }

.result-card .result-social-bar .question-reactions .reaction-trigger {
  width: 100%;
  min-height: 48px;
  justify-content: flex-start;
  gap: 8px;
  padding: 6px 9px;
  border: 0;
  border-radius: 10px;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.result-card .result-social-bar .question-reactions .reaction-trigger > span:first-child {
  width: auto;
  height: auto;
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  color: #57524c;
  font-size: 1.5rem;
}

.result-card .result-social-bar .question-reactions .reaction-trigger small {
  display: none;
}

.result-card .result-social-bar .question-reactions .reaction-trigger strong {
  font-size: 0.78rem;
}

.result-card .result-social-bar .question-reactions .reaction-trigger:hover,
.result-card .result-social-bar .question-reactions .reaction-trigger:focus-visible {
  background: #f4f0ea;
}

.result-card .result-social-bar .question-reactions .reaction-trigger.selected {
  color: #d92d20;
  background: #fff1f0;
}

.result-card .result-social-bar .question-reactions .reaction-more {
  width: 44px;
  height: 44px;
  align-self: center;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.result-card .result-social-bar .question-reactions .reaction-more:hover,
.result-card .result-social-bar .question-reactions .reaction-more:focus-visible,
.result-card .result-social-bar .question-reactions .reaction-more[aria-expanded="true"] {
  background: #f4f0ea;
}

.result-card .result-social-bar .question-reactions .reaction-options {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 4px;
  padding: 8px 0 0;
  border-top: 1px solid var(--line);
  background: white;
}

.result-card .result-social-bar .result-actions {
  min-height: 0;
  padding-left: 8px;
  border-left: 1px solid var(--line);
}

.result-card .result-social-bar .share-cta {
  min-height: 73px;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 8px;
  padding: 8px 11px;
  border: 0;
  border-radius: 10px;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.result-card .result-social-bar .share-cta:hover,
.result-card .result-social-bar .share-cta:focus-visible {
  color: var(--blue);
  background: #eef2ff;
}

.result-card .result-social-bar .share-cta small {
  display: none;
}

.result-card .result-social-bar .share-cta strong {
  font-size: 0.78rem;
}

@media (max-width: 620px) {
  .question-affiliate-card,
  .daily-complete-affiliate {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 9px;
  }

  .question-affiliate-card .affiliate-card-media,
  .daily-complete-affiliate .affiliate-card-media {
    width: 92px;
    height: 64px;
    min-height: 64px;
  }

  .question-affiliate-card .affiliate-card-media img,
  .daily-complete-affiliate .affiliate-card-media img {
    height: 64px;
    min-height: 64px;
  }

  .question-affiliate-card .affiliate-link,
  .daily-complete-affiliate .affiliate-link {
    width: 100%;
    min-height: 42px;
    grid-column: 1 / -1;
    text-align: center;
  }

  .result-card .result-social-bar {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  }

  .result-card .result-social-bar .question-reactions {
    grid-template-columns: minmax(0, 1fr) 38px;
    padding-right: 5px;
  }

  .result-card .result-social-bar .question-reactions .reaction-more {
    width: 38px;
  }

  .result-card .result-social-bar .share-cta {
    min-height: 71px;
    grid-template-columns: 20px minmax(0, 1fr);
    padding-inline: 7px;
  }
}

/* Definitieve sociale actiebalk: tekst van de compacte reactiepicker blijft
   semantisch aanwezig maar kan visueel nooit meer uit zijn kolom lopen. */
.question-social-bar .reaction-more strong,
.result-card .result-social-bar .question-reactions .reaction-more strong {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.question-social-bar .reaction-more,
.result-card .result-social-bar .question-reactions .reaction-more {
  min-width: 0;
  overflow: hidden;
}

/* De kernuitslag blijft altijd vóór commerciële en vervolgstappen staan.
   Oudere optimalisaties plaatsten het afgeronde-dagblok te vroeg. */
.result-card.daily-round-complete > div.daily-complete {
  order: 3;
}

.result-card.daily-round-complete .daily-complete.daily-complete-affiliate {
  order: initial;
}

@media (max-width: 360px) {
  .header-share {
    width: 46px;
    min-height: 46px;
    padding: 7px;
  }

  .header-share strong {
    display: none;
  }

  .streak-pill {
    font-size: 0.66rem;
    white-space: normal;
  }
}

/* Versie 0.25: de vraag eerst, uitleg pas daarna. */
.site-shell {
  padding-top: calc(16px + env(safe-area-inset-top));
}

.site-header {
  gap: 14px;
  margin-bottom: 18px;
}

.brand {
  font-size: 0.82rem;
}

.brand strong {
  margin-top: 3px;
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
}

.header-share {
  min-height: 46px;
  padding: 7px 12px;
}

.activity-button {
  width: auto;
  min-width: 46px;
  height: 46px;
  grid-template-columns: 22px auto;
  gap: 7px;
  padding: 0 13px;
  border-width: 2px;
  border-radius: 999px;
}

.activity-button svg {
  width: 22px;
}

.activity-button-copy {
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.side-note {
  display: none;
}

.question-card {
  padding: clamp(22px, 4vw, 34px);
}

.question-card::before,
.question-card::after {
  display: none;
}

.daily-meter {
  display: flex;
  min-height: 44px;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 14px;
  padding: 7px 10px;
}

.daily-meter > span:first-child {
  margin-right: auto;
}

.streak-pill {
  width: auto;
  min-width: 0;
  padding: 5px 10px;
}

.question-card h1 {
  max-width: 21ch;
  margin-top: 17px;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: 1.01;
}

.answer-list {
  gap: 10px;
  margin-top: 22px;
}

.answer-button {
  min-height: 58px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.question-support {
  margin: 14px 2px 0;
  color: var(--muted);
  font-size: 0.74rem;
}

.question-support summary {
  width: fit-content;
  min-height: 44px;
  padding: 12px 0;
  color: var(--blue-dark);
  font-weight: 850;
  cursor: pointer;
}

.question-support p {
  max-width: 68ch;
  margin: 5px 0 0;
  line-height: 1.5;
}

.question-support .report-link {
  margin-top: 2px;
}

.section-header {
  padding: 6px 0 12px;
}

.section-header h1,
.compact-header h1 {
  max-width: 21ch;
  margin-top: 10px;
  font-size: clamp(2rem, 4.5vw, 3.3rem);
}

.section-header > p:last-child,
.section-header > div > p:last-child {
  margin-top: 10px;
  line-height: 1.45;
}

.form-layout {
  gap: 28px;
  padding-top: 6px;
}

.result-card,
.research-card,
.province-teaser,
.test-panel {
  padding: clamp(22px, 4vw, 34px);
}

.result-actions {
  margin-top: 18px;
}

.share-cta {
  max-width: min(100%, 420px);
}

.result-details {
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.result-details > summary {
  min-height: 50px;
  padding: 15px 0;
  color: white;
  font-weight: 900;
  cursor: pointer;
}

.result-details-content {
  padding-bottom: 18px;
}

.result-details .result-question-summary {
  margin-top: 0;
}

.research-support {
  display: block;
  margin-top: 0;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  box-shadow: none;
}

.research-support > p {
  max-width: 68ch;
  color: var(--muted);
}

.mobile-nav {
  transition: transform 180ms ease, opacity 180ms ease;
  will-change: transform;
}

.mobile-nav.is-hidden {
  pointer-events: none;
  opacity: 0;
  transform: translateY(calc(100% + 28px));
}

@media (max-width: 840px) {
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    width: 100%;
    flex-wrap: wrap;
  }

  .activity-button {
    width: 46px;
    padding: 0;
    border-radius: 50%;
  }

  .activity-button-copy {
    display: none;
  }
}

@media (max-width: 620px) {
  .site-shell {
    padding-top: calc(10px + env(safe-area-inset-top));
  }

  .site-header {
    margin-bottom: 12px;
  }

  .brand {
    font-size: 0.7rem;
  }

  .brand strong {
    font-size: 1.8rem;
  }

  .header-share,
  .activity-button {
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    height: 44px;
  }

  .header-share-icon {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
  }

  .question-card {
    padding: 19px;
    border-radius: 21px;
  }

  .daily-meter {
    margin-top: 10px;
  }

  .streak-pill {
    grid-row: auto;
    grid-column: auto;
    width: auto;
    margin-left: auto;
    padding: 4px 8px;
    white-space: nowrap;
  }

  .daily-dots {
    display: none;
  }

  .question-card h1 {
    margin-top: 14px;
    font-size: clamp(1.75rem, 8.7vw, 2.45rem);
    line-height: 1.02;
  }

  .answer-list {
    margin-top: 18px;
  }

  .answer-button {
    min-height: 54px;
    padding: 11px 48px 11px 15px;
  }

  .section-header {
    padding-top: 2px;
  }

  .serious-view {
    gap: 10px;
  }

  .serious-view-header {
    display: block;
  }

  .serious-view-header > .ten-seconds {
    display: none;
  }

  .serious-view-header h1 {
    margin-top: 4px;
    max-width: none;
    font-size: clamp(1.55rem, 7.2vw, 2rem);
    line-height: 1.02;
  }

  .serious-view-header > div > p {
    max-width: 34ch;
    margin-top: 3px;
    font-size: 0.76rem;
    line-height: 1.2;
  }

  .section-header h1,
  .compact-header h1 {
    font-size: clamp(1.8rem, 8.5vw, 2.45rem);
  }

  .research-category-picker {
    /* Houd beide serieuze keuzes tegelijk in beeld; de actieve vraag start
       daardoor boven de vaste mobiele navigatie. */
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .research-category {
    flex: 1 1 calc(50% - 8px);
    min-height: 66px;
    padding: 8px 9px;
    border-width: 2px;
    border-radius: 14px;
    box-shadow: 3px 3px 0 var(--ink);
  }

  .research-category > span {
    display: none;
  }

  .research-category > strong {
    font-size: 0.9rem;
    line-height: 1.05;
  }

  .research-category > small {
    display: none;
  }

  .research-category-action {
    margin-top: 2px;
    padding: 3px 5px;
    font-size: 0.56rem;
    line-height: 1.1;
  }

  .serious-view > .research-card {
    padding: 18px 14px;
  }

  .serious-view .research-heading h2 {
    margin-top: 10px;
    font-size: clamp(1.5rem, 7.1vw, 1.9rem);
    line-height: 1.02;
  }

  .serious-view .research-source {
    margin: 10px 0 0;
    padding: 7px 9px;
    font-size: 0.66rem;
    line-height: 1.25;
  }

  .serious-view .research-options {
    margin-top: 12px;
  }

  .form-layout {
    gap: 16px;
    padding-top: 0;
  }

  .result-heading h1 {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  .result-choice {
    margin-top: 18px;
  }

  .next-question-panel {
    margin-top: 16px;
  }
}

/* Version 0.26.5: raarlikes mogen vóór stemmen; uitslagreacties hebben hoog contrast op blauw. */
.brand-watermark {
  position: absolute;
  top: 22px;
  left: 50%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  color: var(--ink);
  opacity: 0.11;
  pointer-events: none;
  transform: translateX(-50%) rotate(-4deg);
  user-select: none;
}

.brand-watermark small {
  font-size: 0.48rem;
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-watermark strong {
  font-size: 1.2rem;
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.9;
  text-transform: uppercase;
}

.brand-watermark strong span,
.report-brand-signature strong span {
  color: var(--coral);
}

.result-card {
  position: relative;
  overflow: hidden;
}

.brand-watermark-light {
  top: auto;
  right: 22px;
  bottom: 18px;
  left: auto;
  color: white;
  opacity: 0.15;
  transform: rotate(-4deg);
}

.answer-button {
  /* Eén pijl is genoeg als keuzehint. Een tweede los vraagteken maakte de
     drie primaire knoppen onrustig, vooral op 390px brede telefoons. */
  padding-right: 56px;
}

/* Version 0.26.7: compacte uitslagstatistieken zonder herhaling van de gekozen optie. */
.result-next-panel {
  margin: 0 0 24px;
  padding: 13px 14px;
  border-width: 2px;
  background: white;
  box-shadow: 3px 3px 0 var(--ink);
}

.result-next-panel > div {
  min-width: 0;
}

.result-next-panel > div > strong {
  font-size: 0.9rem;
}

.result-next-panel > div > .next-question-step {
  display: inline-block;
  width: fit-content;
  margin: 0 0 5px;
  padding: 4px 8px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--mint);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.result-next-panel > div > span {
  margin-top: 2px;
  font-size: 0.7rem;
}

.result-next-panel > div > .next-question-step + strong {
  margin-top: 0;
}

.result-next-panel .primary-action,
.result-next-panel .secondary-action {
  min-height: 46px;
  white-space: nowrap;
}

.result-next-panel .coral-action {
  background: var(--coral);
}

.result-next-panel .coral-action[data-ready="true"] {
  background: var(--mint);
}

.result-card .result-heading {
  align-items: center;
}

.result-card .result-heading h1 {
  max-width: none;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.045em;
}

.result-statistics {
  display: grid;
  grid-template-columns: minmax(150px, 0.55fr) minmax(220px, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.result-stat {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 13px 16px;
  border: 2px solid rgb(255 255 255 / 0.5);
  border-radius: 15px;
  background: rgb(255 255 255 / 0.1);
}

.result-stat strong {
  overflow: hidden;
  font-size: 1.2rem;
  font-weight: 950;
  letter-spacing: -0.025em;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.result-stat span {
  margin-top: 3px;
  color: rgb(255 255 255 / 0.78);
  font-size: 0.67rem;
  font-weight: 800;
}

.result-social-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
  padding: 10px 12px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  color: var(--ink);
  background: white;
  box-shadow: 4px 4px 0 var(--ink);
}

.result-card .result-social-bar .question-reactions {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.result-social-bar .result-actions {
  margin: 0;
}

.result-social-bar .share-cta {
  min-height: 50px;
  max-width: 310px;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 9px;
  padding: 7px 12px;
  border-width: 2px;
  border-radius: 13px;
  box-shadow: 2px 2px 0 var(--ink);
}

.result-social-bar .share-cta svg {
  width: 23px;
  height: 23px;
}

.result-social-bar .share-cta small {
  font-size: 0.58rem;
}

.result-social-bar .share-cta strong {
  font-size: 0.78rem;
}

.result-ad-slot[hidden] {
  display: none;
}

@media (max-width: 700px) {
  .result-card.daily-round-complete {
    padding: 22px 18px 24px;
  }

  .daily-complete-actions,
  .daily-complete-actions button,
  .daily-complete-affiliate .affiliate-link {
    width: 100%;
  }

  .daily-complete-actions {
    display: grid;
  }

  .daily-complete-affiliate {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .result-next-panel {
    gap: 10px;
    margin-bottom: 18px;
  }

  .next-question-panel.result-next-panel > div {
    display: block;
  }

  .next-question-panel.result-next-panel > div > strong,
  .next-question-panel.result-next-panel > div > span {
    display: block;
  }

  .next-question-panel.result-next-panel > div > span {
    line-height: 1.35;
  }

  .result-next-panel .primary-action,
  .result-next-panel .secondary-action {
    width: 100%;
  }

  .result-serious-shortcut {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .result-serious-shortcut > small {
    grid-column: 2;
    white-space: normal;
  }

  .result-social-bar {
    grid-template-columns: 1fr;
    padding: 9px;
  }

  .result-social-bar .share-cta {
    width: 100%;
    max-width: none;
  }

  .result-card .result-heading {
    grid-template-columns: minmax(0, 1fr) 82px;
    gap: 12px;
  }

  .result-card .result-heading h1 {
    font-size: clamp(1.55rem, 8vw, 2.1rem);
  }

  .result-statistics {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 8px;
    margin-top: 14px;
  }

  .result-stat {
    padding: 11px 12px;
  }

  .result-stat strong {
    font-size: 0.93rem;
  }

  .result-card:not(.daily-round-complete) > .result-heading,
  .result-card:not(.daily-round-complete) > .personal-result-score,
  .result-card:not(.daily-round-complete) > .result-social-bar,
  .result-card:not(.daily-round-complete) > .question-affiliate-card,
  .result-card:not(.daily-round-complete) > .result-details,
  .result-card:not(.daily-round-complete) > .result-statistics,
  .result-card:not(.daily-round-complete) > .friend-comparison,
  .result-card:not(.daily-round-complete) > .result-next-panel,
  .result-card:not(.daily-round-complete) > .result-serious-shortcut {
    width: 100%;
  }

  .result-details[open] {
    padding-inline: 12px;
  }

  .partner-preview-card {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
  }

  .partner-preview-card .secondary-action {
    grid-column: 1 / -1;
    width: 100%;
  }

  .partner-preview-card .guide-card-media {
    width: 82px;
    height: 72px;
  }
}

/* Volgende lokale UX-pass: de raarlike moet op het vraagkaartje net zo
   direct herkenbaar zijn als een sociale like. De teller blijft echt en
   optioneel; dit verandert geen data of tracking. */
.question-social-bar .prompt-question-reactions .reaction-trigger {
  min-height: 48px;
  gap: 8px;
  padding: 7px 13px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--coral);
  box-shadow: 2px 2px 0 var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
}

.question-social-bar .prompt-question-reactions .reaction-trigger > span:first-child {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
}

.question-social-bar .prompt-question-reactions .reaction-trigger:hover,
.question-social-bar .prompt-question-reactions .reaction-trigger:focus-visible,
.question-social-bar .prompt-question-reactions .reaction-trigger.selected {
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-1px);
}

.question-social-bar .prompt-question-reactions .reaction-summary [data-reaction-total] {
  min-height: 27px;
  padding: 4px 9px;
  color: var(--ink);
  background: var(--paper-light);
  font-size: 0.68rem;
}

@media (max-width: 620px) {
  .question-social-bar .prompt-question-reactions .reaction-trigger {
    min-height: 46px;
    padding: 6px 10px;
    font-size: 0.72rem;
  }

  .question-social-bar .prompt-question-reactions .reaction-trigger > span:first-child {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
  }
}

.reward-milestone,
.jij-badge {
  position: relative;
  overflow: hidden;
}

.badge-brand-mark {
  position: absolute;
  top: 4px;
  right: 7px;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 950;
  opacity: 0.58;
  transform: rotate(8deg);
}

.reward-milestone.earned .badge-brand-mark,
.jij-badge.earned .badge-brand-mark {
  opacity: 1;
}

.loading-line::before,
.empty-state::before,
.history-empty::before {
  width: 44px;
  height: 16px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 20'%3E%3Ctext x='0' y='16' font-family='Arial,sans-serif' font-size='16' font-weight='900' fill='%23ff5a4f'%3ERAAR%3F%3C/text%3E%3C/svg%3E");
  content: "";
}

.loading-line::before {
  display: inline-block;
  margin-right: 8px;
  vertical-align: -3px;
}

.empty-state::before,
.history-empty::before {
  display: block;
  margin-bottom: 6px;
}

.report-brand-signature {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
}

.report-brand-signature strong {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: -0.05em;
  transform: rotate(-2deg);
}

/* Verzamelbare reeksbadges */
.reward-milestones {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.reward-badge {
  --badge-accent: #2ecf9b;
  --badge-deep: #08735c;
  --badge-light: #dffff4;
  --badge-progress: 0%;
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 3px solid var(--ink);
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.92) 0 5px, transparent 6px),
    radial-gradient(circle at 75% 20%, rgba(255, 255, 255, 0.65) 0 2px, transparent 3px),
    linear-gradient(145deg, white 0 36%, var(--badge-light) 100%);
  box-shadow: 6px 6px 0 var(--ink);
  isolation: isolate;
  opacity: 1;
}

.reward-milestone.reward-badge {
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: 1fr;
  align-items: center;
  gap: 10px;
  min-height: 138px;
  padding: 16px 14px 20px;
  border-color: var(--ink);
  border-radius: 22px;
}

.reward-badge::before {
  position: absolute;
  z-index: -1;
  top: -38px;
  right: -28px;
  width: 100px;
  height: 100px;
  border: 17px solid color-mix(in srgb, var(--badge-accent) 24%, transparent);
  border-radius: 50%;
  content: "";
}

.reward-badge::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8px;
  border-top: 2px solid var(--ink);
  background:
    linear-gradient(90deg, var(--badge-accent) 0 var(--badge-progress), rgba(23, 23, 23, 0.12) var(--badge-progress) 100%);
  content: "";
}

.reward-badge .badge-crest {
  position: relative;
  display: grid;
  width: 72px;
  aspect-ratio: 1;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50% 50% 47% 53% / 46% 48% 52% 54%;
  color: white;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.78) 0 3px, transparent 4px),
    linear-gradient(145deg, color-mix(in srgb, var(--badge-accent) 74%, white), var(--badge-deep));
  box-shadow:
    inset 0 0 0 5px color-mix(in srgb, var(--badge-accent) 68%, white),
    3px 4px 0 var(--ink);
  transform: rotate(-4deg);
}

.reward-badge .badge-crest::before,
.reward-badge .badge-crest::after {
  position: absolute;
  z-index: -1;
  bottom: -20px;
  width: 24px;
  height: 32px;
  border: 3px solid var(--ink);
  background: var(--badge-accent);
  content: "";
}

.reward-badge .badge-crest::before {
  left: 8px;
  clip-path: polygon(0 0, 100% 0, 82% 100%, 50% 72%, 8% 100%);
  transform: rotate(8deg);
}

.reward-badge .badge-crest::after {
  right: 8px;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 50% 72%, 18% 100%);
  transform: rotate(-8deg);
}

.reward-badge .badge-symbol {
  position: absolute;
  top: 7px;
  font-size: 1.45rem;
  font-weight: 950;
  line-height: 1;
  text-shadow: 1px 2px 0 var(--badge-deep);
}

.reward-badge .badge-days {
  align-self: end;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1;
}

.reward-badge .badge-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.reward-badge .badge-tier {
  color: var(--badge-deep);
  font-size: 0.58rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.reward-badge .badge-name {
  overflow: visible;
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: -0.025em;
  line-height: 1.12;
  text-overflow: clip;
  white-space: normal;
}

.reward-badge .badge-state {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1.2;
}

.reward-badge .badge-status-icon {
  position: absolute;
  top: 9px;
  right: 10px;
  display: grid;
  width: 25px;
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: white;
  font-size: 0.68rem;
  font-weight: 950;
  line-height: 1;
}

.reward-badge .badge-share-button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: white;
  box-shadow: 2px 3px 0 var(--ink);
  font: inherit;
  font-size: 0.68rem;
  font-weight: 950;
  cursor: pointer;
}

.reward-badge .badge-share-button:hover,
.reward-badge .badge-share-button:focus-visible {
  background: var(--badge-accent);
  transform: translateY(-1px);
}

.reward-milestone.reward-badge .badge-share-button {
  grid-column: 1 / -1;
  justify-self: stretch;
  margin-top: 5px;
}

.reward-badge:not(.earned) {
  filter: saturate(0.64);
}

.reward-badge:not(.earned) .badge-crest {
  opacity: 0.72;
}

.reward-badge.earned {
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.98) 0 5px, transparent 6px),
    radial-gradient(circle at 72% 25%, rgba(255, 255, 255, 0.74) 0 3px, transparent 4px),
    linear-gradient(145deg, white 0 27%, var(--badge-light) 100%);
}

.reward-badge.earned .badge-status-icon {
  color: white;
  background: var(--badge-deep);
}

.reward-starter {
  --badge-accent: #39dfa8;
  --badge-deep: #08735c;
  --badge-light: #d8fff1;
}

.reward-weekwonder {
  --badge-accent: #ffd83d;
  --badge-deep: #9b5d00;
  --badge-light: #fff4b6;
}

.reward-ritme {
  --badge-accent: #6f7cff;
  --badge-deep: #2833a7;
  --badge-light: #e5e7ff;
}

.reward-legendarisch {
  --badge-accent: #ff655c;
  --badge-deep: #a41d31;
  --badge-light: #ffdcd7;
}

.reward-icoon {
  --badge-accent: #ffce39;
  --badge-deep: #171717;
  --badge-light: #fff1a5;
  color: white;
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 214, 61, 0.95) 0 4px, transparent 5px),
    radial-gradient(circle at 74% 24%, rgba(255, 255, 255, 0.8) 0 2px, transparent 3px),
    linear-gradient(145deg, #373737, #101010 66%);
}

.reward-icoon.earned {
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 214, 61, 0.95) 0 4px, transparent 5px),
    radial-gradient(circle at 74% 24%, rgba(255, 255, 255, 0.8) 0 2px, transparent 3px),
    linear-gradient(145deg, #4b411d, #101010 66%);
}

.reward-icoon .badge-tier,
.reward-icoon .badge-state {
  color: #ffe673;
}

.reward-icoon .badge-status-icon {
  color: var(--ink);
}

.jij-badge-list {
  gap: 12px;
}

.jij-badge.reward-badge {
  grid-template-rows: auto minmax(0, 1fr);
  justify-items: center;
  gap: 10px;
  min-height: 218px;
  padding: 15px 8px 18px;
  border-width: 3px;
  border-radius: 20px;
  text-align: center;
}

.jij-badge.reward-badge .badge-crest {
  width: 66px;
}

.jij-badge.reward-badge .badge-copy {
  justify-items: center;
}

.jij-badge.reward-badge .badge-name {
  font-size: 0.72rem;
}

.jij-badge.reward-badge .badge-state {
  font-size: 0.6rem;
}

.jij-badge.reward-badge .badge-share-button {
  align-self: end;
  width: 100%;
}

.badge-swipe-hint {
  display: none;
}

@media (prefers-reduced-motion: no-preference) {
  .reward-badge.earned .badge-crest {
    animation: badge-proud-pop 520ms cubic-bezier(0.2, 0.9, 0.2, 1.15) both;
  }

  .reward-badge.earned .badge-symbol {
    animation: badge-shine 2.8s ease-in-out infinite;
  }
}

@keyframes badge-proud-pop {
  0% {
    transform: scale(0.72) rotate(-12deg);
  }
  70% {
    transform: scale(1.08) rotate(1deg);
  }
  100% {
    transform: scale(1) rotate(-4deg);
  }
}

@keyframes badge-shine {
  0%,
  70%,
  100% {
    transform: scale(1) rotate(0);
  }
  78% {
    transform: scale(1.18) rotate(-8deg);
  }
  86% {
    transform: scale(1.08) rotate(8deg);
  }
}

@media (max-width: 1120px) {
  .reward-milestones {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reward-milestone.reward-badge:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .brand-watermark {
    top: 19px;
    opacity: 0.09;
  }

  .brand-watermark-light {
    top: auto;
    right: 16px;
    bottom: 14px;
    left: auto;
    opacity: 0.13;
  }

  .answer-button {
    padding-right: 67px;
  }

  .answer-brand-mark {
    right: 42px;
  }

  .reward-milestones {
    grid-template-columns: 1fr;
  }

  .reward-milestone.reward-badge:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .reward-milestone.reward-badge {
    min-height: 128px;
  }

  .jij-badge-list {
    grid-template-columns: repeat(5, minmax(126px, 1fr));
    gap: 10px;
    scroll-snap-type: x mandatory;
  }

  .badge-swipe-hint {
    display: block;
    margin: 8px 0 -8px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 850;
  }

  .jij-badge.reward-badge {
    min-height: 206px;
    scroll-snap-align: start;
  }
}

/* Version 0.27.14: persoonlijke raarmeter en opvallende sociale hoofdacties. */
.personal-result-score {
  /* Flex is the robust fallback for older Android-WebViews that do not lay
     out CSS Grid consistently. The desktop proportions remain equivalent. */
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  align-items: stretch;
  margin-top: 16px;
  padding: 12px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  color: var(--ink);
  background: white;
  box-shadow: 4px 4px 0 var(--ink);
}

.personal-score-value {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 104px;
  flex: 0 1 34%;
  padding: 10px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--yellow);
  text-align: center;
  transform: rotate(-1deg);
}

.personal-score-value > span:first-child {
  font-size: 0.64rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.personal-score-value strong {
  margin-top: 2px;
  font-size: clamp(2rem, 5.2vw, 2.85rem);
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.personal-score-value strong small {
  margin-left: 2px;
  font-size: 0.72rem;
  letter-spacing: 0;
}

.personal-score-value > span:last-child {
  margin-top: 5px;
  font-size: 0.72rem;
  font-weight: 900;
}

.personal-score-meter {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  min-width: 0;
}

.personal-score-scale {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 850;
}

.personal-score-meter progress {
  display: block;
  width: 100%;
  height: 19px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  appearance: none;
}

.personal-score-meter progress::-webkit-progress-bar {
  background: var(--cream);
}

.personal-score-meter progress::-webkit-progress-value {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mint), var(--yellow) 52%, var(--coral));
}

.personal-score-meter progress::-moz-progress-bar {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mint), var(--yellow) 52%, var(--coral));
}

.personal-score-meter p {
  margin: 9px 0 0;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.35;
}

.result-card .result-social-bar {
  display: flex;
  flex-wrap: nowrap;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.result-card .result-social-bar > * {
  flex: 1 1 0;
  min-width: 0;
}

.result-card .result-social-bar .question-reactions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-content: start;
  min-height: 78px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 16px;
  background: var(--coral);
  box-shadow: 4px 4px 0 var(--ink);
}

.result-card .result-social-bar .question-reactions[hidden] {
  display: none;
}

.result-card .result-social-bar .reaction-trigger {
  width: 100%;
  min-height: 52px;
  justify-content: flex-start;
  gap: 10px;
  padding: 9px 13px 4px;
  border-radius: 0;
  color: var(--ink);
  text-align: left;
}

.result-card .result-social-bar .reaction-trigger:hover,
.result-card .result-social-bar .reaction-trigger:focus-visible,
.result-card .result-social-bar .reaction-trigger.selected {
  color: var(--ink);
  background: var(--yellow);
}

.result-card .result-social-bar .reaction-trigger > span:first-child {
  font-size: 1.65rem;
}

.result-card .result-social-bar .reaction-trigger > span:last-child,
.result-card .result-social-bar .reaction-trigger small,
.result-card .result-social-bar .reaction-trigger strong {
  display: block;
}

.result-card .result-social-bar .reaction-trigger small,
.result-card .result-social-bar .share-cta small {
  margin-bottom: 1px;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.result-card .result-social-bar .reaction-trigger strong,
.result-card .result-social-bar .share-cta strong {
  font-size: 0.9rem;
  line-height: 1.1;
}

.result-card .result-social-bar .reaction-summary {
  min-height: 22px;
  padding: 0 13px 8px;
  color: var(--ink);
  font-size: 0.62rem;
}

.result-card .result-social-bar .reaction-options {
  padding: 9px;
  border-top: 2px solid var(--ink);
  background: white;
}

.result-card .result-social-bar .result-actions,
.result-card .result-social-bar .share-cta {
  width: 100%;
  height: 100%;
  min-height: 78px;
  margin: 0;
  max-width: none;
}

.result-card .result-social-bar .share-cta {
  grid-template-columns: 29px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 13px;
  border-radius: 16px;
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
}

.result-card .result-social-bar .share-cta svg {
  width: 27px;
  height: 27px;
}

.result-statistics {
  display: none;
  margin-top: 16px;
}

@media (max-width: 700px) {
  .result-card .result-heading {
    display: block;
    position: static;
    width: 100%;
    height: auto;
    overflow: visible;
    padding: 0;
    margin: 0;
    border: 0;
    clip: auto;
    clip-path: none;
    white-space: normal;
  }

  .result-card .result-heading h1,
  .result-card .result-heading .result-bubble {
    display: none;
  }

  .result-card:not(.daily-round-complete) .result-question-context {
    margin: 0 0 10px;
    padding: 9px 11px;
    border-left: 5px solid var(--yellow);
    border-radius: 0 12px 12px 0;
    background: rgba(255, 255, 255, 0.12);
  }

  .personal-result-score {
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
    padding: 7px;
  }

  .personal-score-value {
    width: 100%;
    flex: 0 0 auto;
    min-height: 78px;
    padding: 6px;
    transform: none;
  }

  .personal-score-meter {
    width: 100%;
    flex: 0 0 auto;
    padding-top: 6px;
  }

  .personal-score-value strong {
    font-size: 1.55rem;
  }

  .personal-score-value > span:first-child {
    font-size: 0.53rem;
  }

  .personal-score-value > span:last-child {
    margin-top: 3px;
    font-size: 0.62rem;
  }

  .personal-score-scale {
    font-size: 0.54rem;
  }

  .personal-score-meter p {
    margin-top: 6px;
    font-size: 0.63rem;
  }

  .result-card .result-social-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-card .result-social-bar .reaction-trigger,
  .result-card .result-social-bar .share-cta {
    padding-inline: 10px;
  }

  .result-card .result-social-bar .reaction-trigger strong,
  .result-card .result-social-bar .share-cta strong {
    font-size: 0.78rem;
  }

  .result-card .result-social-bar .reaction-trigger small,
  .result-card .result-social-bar .share-cta small {
    font-size: 0.51rem;
  }

  body.showing-vote-result .app-shell {
    /* De vaste navigatie blijft op het uitslagscherm zichtbaar. Bewaar daarom
       dezelfde veilige scrollruimte als op de rest van de app: anders valt de
       onderste partner-CTA gedeeltelijk achter het menu. */
    padding-bottom: calc(168px + env(safe-area-inset-bottom));
  }

  body.showing-vote-result .mobile-nav {
    display: none;
  }

  body.showing-vote-result .result-social-bar {
    /* Keep raarlike/share actions in the result flow. A fixed bar covered
       the next-question panel and could disappear behind the mobile nav. */
    position: static;
    z-index: auto;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    filter: none;
  }
}

@media (max-width: 350px), (min-resolution: 1dppx) and (max-width: 430px) and (min-height: 1px) {
  html.native-large-text .result-card .result-social-bar {
    grid-template-columns: 1fr;
  }
}

/* Korte Android-schermen kunnen door hun hoge pixeldichtheid een CSS-viewport
   van circa 411 × 731 krijgen. Houd daar raarlike én delen boven het vaste menu. */
@media (max-width: 430px) and (max-height: 760px) {
  body:not(.showing-vote-result) .site-shell {
    padding-top: calc(4px + env(safe-area-inset-top));
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  body:not(.showing-vote-result) .site-header {
    margin-bottom: 5px;
  }

  body:not(.showing-vote-result) .brand {
    font-size: 0.58rem;
  }

  body:not(.showing-vote-result) .brand strong {
    margin-top: 1px;
    font-size: 1.42rem;
  }

  body:not(.showing-vote-result) .question-card {
    padding: 11px 12px 9px;
    border-radius: 18px;
  }

  body:not(.showing-vote-result) .daily-meter {
    min-height: 34px;
    flex-wrap: nowrap;
    gap: 4px;
    margin-top: 4px;
    padding: 3px 6px;
    font-size: 0.61rem;
  }

  body:not(.showing-vote-result) .daily-meter > span:first-child {
    white-space: nowrap;
  }

  body:not(.showing-vote-result) .streak-pill {
    padding: 3px 5px;
    font-size: 0.56rem;
    white-space: nowrap;
  }

  body:not(.showing-vote-result) .question-card h1 {
    max-width: none;
    margin-top: 8px;
    font-size: clamp(1.35rem, 7.3vw, 1.7rem);
    line-height: 1;
  }

  body:not(.showing-vote-result) .answer-list {
    gap: 6px;
    margin-top: 10px;
  }

  body:not(.showing-vote-result) .answer-button {
    min-height: 46px;
    padding: 7px 42px 7px 12px;
    font-size: 0.86rem;
    line-height: 1.08;
  }

  body:not(.showing-vote-result) .answer-brand-mark {
    right: 36px;
    font-size: 0.8rem;
  }

  body:not(.showing-vote-result) .question-social-bar {
    gap: 4px;
    margin-top: 0;
    padding-top: 3px;
  }

  body:not(.showing-vote-result) .question-share-action {
    min-height: 44px;
    gap: 4px;
    padding: 4px 7px;
    font-size: 0.64rem;
  }

  body:not(.showing-vote-result) .prompt-question-reactions .reaction-summary {
    font-size: 0.58rem;
  }

  body:not(.showing-vote-result) .prompt-question-reactions .reaction-trigger {
    min-height: 44px;
    padding-inline: 5px;
    font-size: 0.66rem;
  }

  body:not(.showing-vote-result) .mobile-nav {
    right: 6px;
    bottom: 6px;
    bottom: max(6px, env(safe-area-inset-bottom));
    left: 6px;
    padding: 3px;
    border-radius: 15px;
  }

  body:not(.showing-vote-result) .mobile-nav button {
    min-height: 48px;
    gap: 1px;
    padding: 3px 2px;
    font-size: 0.48rem;
  }

  body:not(.showing-vote-result) .mobile-nav button span {
    width: 23px;
    font-size: 0.72rem;
  }

  .together-view .section-header {
    display: none;
  }

  .together-play-card {
    gap: 10px;
    padding: 11px 12px 9px;
    border-radius: 18px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .together-progress {
    gap: 4px;
  }

  .together-progress > strong {
    font-size: 0.66rem;
  }

  .together-progress > span {
    height: 10px;
  }

  #together-question-panel {
    gap: 7px;
  }

  #together-question-panel .category-stamp {
    margin-top: 2px;
    font-size: 0.6rem;
  }

  #together-question-panel h2 {
    font-size: clamp(1.32rem, 7.3vw, 1.58rem);
    line-height: 1;
  }

  .together-answer-list {
    gap: 6px;
  }

  .together-answer-button {
    min-height: 46px;
  }

  #together-question-panel > small {
    font-size: 0.58rem;
    line-height: 1.15;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Systeemhoogcontrast: behoud betekenis zonder afhankelijk te zijn van de
   gele, blauwe of koraalkleur. Dit is aanvullend op de gewone AA-contrasten. */
@media (forced-colors: active) {
  .site-header,
  .question-card,
  .result-card,
  .mobile-nav,
  .affiliate-card,
  .cookie-consent-card,
  .share-dialog-card,
  .activity-panel {
    border-color: CanvasText;
    color: CanvasText;
    background: Canvas;
    box-shadow: none;
  }

  .answer-button,
  .reaction-trigger,
  .reaction-more,
  .question-share-action,
  .share-cta,
  .primary-action,
  .secondary-action,
  .mobile-nav button,
  .header-login,
  .activity-button {
    border: 2px solid ButtonText;
    color: ButtonText;
    background: ButtonFace;
    box-shadow: none;
  }

  .answer-button:focus-visible,
  .reaction-trigger:focus-visible,
  .reaction-more:focus-visible,
  .question-share-action:focus-visible,
  .share-cta:focus-visible,
  .primary-action:focus-visible,
  .secondary-action:focus-visible,
  .mobile-nav button:focus-visible,
  .header-login:focus-visible,
  .activity-button:focus-visible {
    outline: 4px solid Highlight;
    outline-offset: 3px;
  }

  .reaction-trigger[aria-pressed="true"],
  .mobile-nav button.active,
  .answer-button[aria-pressed="true"] {
    border-color: Highlight;
    color: HighlightText;
    background: Highlight;
  }

  .result-question-context,
  .result-card.daily-round-complete .result-question-context {
    border-left-color: Highlight;
    color: CanvasText;
    background: Canvas;
  }
}

/* Sociale uitslagactie: één herkenbare like, een teller en extra reacties achter •••. */
.result-card .result-social-bar .question-reactions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  min-height: 78px;
  padding: 5px;
  border: 3px solid var(--ink);
  border-radius: 16px;
  color: var(--ink);
  background: var(--paper-light);
  box-shadow: 4px 4px 0 var(--ink);
}

.result-card .result-social-bar .question-reactions .reaction-trigger {
  width: auto;
  flex: 1 1 150px;
  min-height: 60px;
  justify-content: flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
}

.result-card .result-social-bar .question-reactions .reaction-trigger > span:first-child {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
}

.result-card .result-social-bar .question-reactions .reaction-trigger {
  min-height: 66px;
  padding: 9px 12px;
}

.result-card .result-social-bar .question-reactions .reaction-trigger small,
.result-card .result-social-bar .question-reactions .reaction-trigger strong {
  display: block;
}

.result-card .result-social-bar .question-reactions .reaction-trigger small {
  color: var(--muted);
}

.result-card .result-social-bar .question-reactions .reaction-summary {
  order: 2;
  min-height: 0;
  padding: 0 3px;
  color: var(--muted);
  white-space: nowrap;
}

.result-card .result-social-bar .question-reactions .reaction-more {
  order: 3;
}

.result-card .result-social-bar .question-reactions .reaction-options {
  width: 100%;
  flex: 1 0 100%;
  padding: 8px 4px 3px;
  border-top: 2px solid var(--line);
  background: transparent;
}

/* 0.27.15-11: account, menu en affiliate-acties blijven ook op het resultaatscherm vindbaar. */
.site-header {
  grid-template-columns: auto auto auto 1fr auto;
}

.header-login {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--mint);
  box-shadow: 3px 3px 0 var(--ink);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 950;
  white-space: nowrap;
}

.header-login > span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
}

.header-login:hover,
.header-login:focus-visible {
  background: var(--yellow);
  transform: translateY(-2px);
}

.account-card > #account-logout {
  width: fit-content;
  min-height: 46px;
  padding: 9px 15px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
  text-decoration: none;
}

.account-card > #account-logout:hover,
.account-card > #account-logout:focus-visible {
  color: var(--ink);
  background: var(--coral);
}

.question-affiliate-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 14px 0 0;
  padding: 11px 13px;
  border-width: 2px;
  border-radius: 15px;
  box-shadow: 3px 3px 0 var(--ink);
}

.question-affiliate-card .affiliate-card-media {
  flex-basis: 58px;
  width: 58px;
  min-height: 58px;
  border-radius: 11px;
}

.question-affiliate-card .affiliate-card-media img {
  min-height: 58px;
}

.question-affiliate-card strong {
  margin-top: 4px;
  font-size: 0.92rem;
}

.question-affiliate-card p {
  margin-top: 3px;
  font-size: 0.66rem;
}

.question-affiliate-card .affiliate-label {
  padding: 3px 6px;
  font-size: 0.58rem;
}

.question-affiliate-card .affiliate-link {
  min-height: 40px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.7rem;
  white-space: nowrap;
}

.question-affiliate-card .affiliate-link:hover,
.question-affiliate-card .affiliate-link:focus-visible {
  background: var(--coral);
}

@media (max-width: 620px) {
  .product-guide-card {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
  }

  .product-guide-card .secondary-action {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
  }

  .product-guide-card .guide-card-media {
    width: 82px;
    height: 72px;
  }
}

@media (max-width: 840px) {
  .site-header {
    grid-template-columns: auto auto 1fr auto;
  }
}

@media (max-width: 620px) {
  .header-login {
    width: auto;
    min-width: 78px;
    min-height: 44px;
    height: 44px;
    padding: 6px 9px;
    gap: 5px;
    font-size: 0.64rem;
  }

  .header-login strong {
    display: inline;
  }

  .question-affiliate-card {
    align-items: stretch;
    flex-direction: column;
    gap: 9px;
  }

  .question-affiliate-card .affiliate-card-media,
  .daily-complete-affiliate .affiliate-card-media {
    align-self: flex-start;
  }

  .question-affiliate-card .affiliate-link {
    width: 100%;
  }
}

/* 0.27.20: de primaire account- en meldingsacties blijven ook op kleine telefoons
   herkenbaar. Het bel-icoon krijgt één vaste box zodat het optisch niet scheef
   uitlijnt naast de deel- en accountknop. */
.activity-button {
  align-items: center;
  justify-items: center;
  line-height: 0;
  transform: rotate(0deg);
}

.activity-button svg {
  display: block;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  margin: 0;
  transform: translate(0, 0);
  transform-origin: center;
}

@media (max-width: 620px) {
  .header-login {
    justify-self: stretch;
    min-width: 78px;
    max-width: 94px;
    overflow: visible;
  }

  .header-login > span {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    font-size: 0.86rem;
  }

  .header-login strong {
    display: inline;
    overflow: visible;
    white-space: nowrap;
  }

  .activity-button {
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    padding: 0;
    border-radius: 50%;
  }

  .activity-button svg {
    width: 23px;
    height: 23px;
    min-width: 23px;
    min-height: 23px;
  }
}

@media (max-width: 340px) {
  .header-login {
    min-width: 72px;
    max-width: 82px;
    padding-inline: 6px;
    font-size: 0.58rem;
  }

  .header-login > span {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }
}

/* 0.27.20-13: ook oudere Android WebViews met een smalle CSS-viewport houden
   logo, account, delen en meldingen volledig binnen het scherm. */
@media (max-width: 480px) {
  .site-header {
    grid-template-columns: minmax(0, auto) auto auto auto;
    gap: 6px;
  }

  .brand {
    min-width: 0;
    margin-inline-start: 4px;
    font-size: 0.62rem;
    transform: none;
  }

  .brand strong {
    font-size: 1.65rem;
  }

  .header-login {
    min-width: 72px;
    max-width: 76px;
    padding-inline: 5px;
  }

  .header-share,
  .activity-button {
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
  }
}

/* Het resultaatscherm hield de navigatie eerder verborgen; daardoor ontbrak het menu op foto's en kleine telefoons. */
@media (max-width: 700px) {
  body.showing-vote-result .mobile-nav {
    display: grid;
    z-index: 30;
  }

  body.showing-vote-result .result-social-bar {
    margin-bottom: 0;
  }
}

.guide-page {
  max-width: 1180px;
}

.guide-hero {
  background: var(--paper-light);
}

.guide-trust-note {
  max-width: 70ch;
  padding: 12px 14px;
  border-left: 4px solid var(--yellow);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.guide-card {
  padding: 20px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  background: var(--paper-light);
  box-shadow: 4px 4px 0 var(--ink);
}

.guide-card-media {
  width: 100%;
  height: 132px;
  margin: -4px 0 16px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 13px;
  background: #fff;
}

.guide-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-card h2 {
  margin: 8px 0 8px;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.08;
}

.guide-card > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.55;
}

.guide-partner-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 16px;
  padding: 9px 13px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 2px 2px 0 var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.guide-partner-link:hover,
.guide-partner-link:focus-visible {
  background: var(--coral);
}

.guide-disclosure {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1.35;
}

.guide-footer-note {
  margin-top: 28px;
  padding: 24px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  background: var(--mint);
  box-shadow: 4px 4px 0 var(--ink);
}

.guide-footer-note h2 {
  margin: 0 0 7px;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.guide-footer-note p {
  max-width: 70ch;
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 680;
  line-height: 1.5;
}

/* 0.27.20 UX-polish (final cascade): bevestig de stem op mobiel zichtbaar. */
@media (max-width: 700px) {
  .result-card .result-heading {
    position: relative;
    width: 100%;
    height: auto;
    overflow: visible;
    margin: 0 0 8px;
    padding: 0;
    border: 0;
    clip: auto;
    clip-path: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    white-space: normal;
  }

  .result-card .result-heading h1 {
    margin: 0;
    color: white;
    font-size: clamp(1.35rem, 6vw, 1.8rem);
    line-height: 1.05;
  }

  .result-card .result-bubble {
    width: 74px;
    min-height: 74px;
    padding: 8px;
    border-width: 2px;
  }

  .result-card .result-bubble strong {
    font-size: 1.28rem;
  }

  .result-card .result-bubble span {
    margin-top: 3px;
    font-size: 0.56rem;
  }
}

@media (max-width: 700px) {
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .guide-card,
  .guide-footer-note {
    padding: 16px;
  }
}

/* 0.27.21 toegankelijkheid: Android kan de WebView-tekst tot 200% vergroten.
   Bediening mag dan groter worden, maar nooit over elkaar heen vallen. */
html.native-large-text .site-header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

html.native-large-text .site-header .brand {
  grid-column: 1 / -1;
  flex: 1 0 100%;
  justify-self: start;
  width: auto;
  min-height: 0;
  font-size: 0.52rem;
}

html.native-large-text .site-header .brand strong {
  margin-top: 2px;
  font-size: 1.45rem;
}

html.native-large-text .header-login,
html.native-large-text .header-share,
html.native-large-text .activity-button {
  flex: 1 1 calc((100% - 16px) / 3);
  justify-self: stretch;
  width: auto;
  min-width: 0;
  max-width: none;
  height: auto;
  min-height: 48px;
}

html.native-large-text .header-login {
  padding-inline: 7px;
  font-size: 0.52rem;
}

html.native-large-text .header-login > span {
  display: none;
}

html.native-large-text .header-login strong {
  min-width: 0;
  overflow-wrap: anywhere;
  white-space: normal;
}

html.native-large-text .header-share strong,
html.native-large-text .activity-button-copy {
  display: none;
}

html.native-large-text .result-card .result-social-bar {
  grid-template-columns: 1fr;
}

html.native-large-text .result-card .result-social-bar .question-reactions,
html.native-large-text .result-card .result-social-bar .result-actions,
html.native-large-text .result-card .result-social-bar .share-cta {
  min-height: 72px;
}

html.native-large-text .result-card .result-social-bar .reaction-trigger {
  padding-block: 10px 6px;
}

html.native-large-text .result-card .result-social-bar .reaction-trigger strong,
html.native-large-text .result-card .result-social-bar .share-cta strong {
  overflow-wrap: anywhere;
}

/* De sociale bediening onder een onbeantwoorde vraag heeft op 200% tekst
   meer ruimte nodig dan één horizontale rij. Teller, raarlike en delen blijven
   hierdoor ieder afzonderlijk leesbaar en minimaal 44px hoog. */
html.native-large-text .question-social-bar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

html.native-large-text .question-social-bar .prompt-question-reactions {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

html.native-large-text .question-social-bar .prompt-question-reactions .reaction-summary {
  order: 1;
  width: 100%;
  flex: 1 0 100%;
  white-space: normal;
}

/* Android WebView 53 ondersteunt flex-gap nog niet. De expliciete marges
   voorkomen dat het reactie-icoon bij 200% tekst tegen de teller of tekst
   aan schuift; moderne WebViews houden daarnaast gewoon de bestaande gap. */
html.native-large-text .question-social-bar .prompt-question-reactions .reaction-summary > :first-child:not(:last-child),
html.native-large-text .question-social-bar .prompt-question-reactions .reaction-trigger > span:first-child {
  margin-right: 10px;
}

html.native-large-text .question-social-bar .prompt-question-reactions .reaction-trigger {
  order: 2;
  flex: 1 1 calc(100% - 54px);
  min-width: 0;
  justify-content: flex-start;
  padding-inline: 10px;
  white-space: normal;
}

html.native-large-text .question-social-bar .prompt-question-reactions .reaction-more {
  order: 3;
}

html.native-large-text .question-social-bar .prompt-question-reactions .reaction-options {
  order: 4;
  width: 100%;
  flex: 1 0 100%;
}

html.native-large-text .question-social-bar .question-share-action {
  width: 100%;
  justify-content: flex-start;
  white-space: normal;
}

html.native-large-text .mobile-nav button {
  font-size: 0.44rem;
}

html.native-large-text .question-card h1,
html.native-large-text .question-card .question-text {
  font-size: 1.7rem;
  line-height: 1.06;
  overflow-wrap: anywhere;
}

html.native-large-text .question-card .answer-button,
html.native-large-text .answer-button {
  white-space: normal;
}

/* Op de kleinste ondersteunde telefoon blijft ieder uitslaglabel volledig
   leesbaar. De sociale acties houden hun betekenis zonder onrustige bijtekst. */
@media (max-width: 360px) {
  .result-quick-percentage {
    padding-inline: 3px;
  }

  .result-quick-percentage span {
    min-height: 1.35rem;
    overflow: visible;
    font-size: 0.64rem;
    line-height: 1.05;
    text-overflow: clip;
    white-space: normal;
  }

  .result-card .result-social-bar {
    gap: 6px;
  }

  .result-card .result-social-bar .question-reactions {
    padding: 3px;
  }

  .result-card .result-social-bar .question-reactions .reaction-trigger {
    gap: 5px;
    min-height: 56px;
    padding-inline: 5px;
  }

  .result-card .result-social-bar .question-reactions .reaction-trigger > span:first-child {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    font-size: 1.2rem;
  }

  .result-card .result-social-bar .reaction-trigger small,
  .result-card .result-social-bar .share-cta small {
    display: none;
  }

  .result-card .result-social-bar .reaction-trigger strong,
  .result-card .result-social-bar .share-cta strong {
    overflow: visible;
    font-size: 0.72rem;
    line-height: 1.05;
    text-overflow: clip;
    white-space: normal;
  }

  .result-card .result-social-bar .question-reactions .reaction-summary {
    flex: 1 1 55px;
    padding: 0 2px;
    font-size: 0.54rem;
    line-height: 1;
    white-space: normal;
  }

  .result-card .result-social-bar .question-reactions .reaction-summary [data-reaction-total] {
    min-height: 0;
    padding: 4px 5px;
    line-height: 1;
    white-space: normal;
  }

  .result-card .result-social-bar .question-reactions .reaction-more {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .result-card .result-social-bar .share-cta {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 5px;
    padding-inline: 6px;
  }

  .result-card .result-social-bar .share-cta svg {
    width: 22px;
    height: 22px;
  }
}

/* 0.27.21-25 final cascade: latere compatibiliteitsregels mogen de rustige
   partnerstrook en herkenbare sociale actiebalk niet opnieuw verzwaren. */
.result-card:not(.daily-round-complete) > .question-affiliate-card {
  width: 100%;
  margin: 0 0 14px;
}

.question-affiliate-card,
.daily-complete-affiliate {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  color: var(--ink);
  background: #fff;
  box-shadow: 3px 3px 0 var(--ink);
}

.question-affiliate-card .affiliate-card-media,
.daily-complete-affiliate .affiliate-card-media {
  align-self: center;
  width: 128px;
  min-height: 72px;
  height: 72px;
  overflow: hidden;
  border: 0;
  border-radius: 11px;
  background: #f4f0ea;
}

.question-affiliate-card .affiliate-card-media img,
.daily-complete-affiliate .affiliate-card-media img {
  width: 100%;
  height: 72px;
  min-height: 72px;
  object-fit: cover;
}

.question-affiliate-card .affiliate-label,
.daily-complete-affiliate .affiliate-label {
  padding: 0;
  border: 0;
  color: #5f584f;
  background: transparent;
  font-size: 0.56rem;
  letter-spacing: 0.07em;
}

.question-affiliate-card strong,
.daily-complete-affiliate strong {
  margin-top: 3px;
  font-size: 0.98rem;
  line-height: 1.12;
}

.question-affiliate-card .affiliate-link,
.daily-complete-affiliate .affiliate-link {
  width: auto;
  min-height: 44px;
  padding: 9px 13px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: #ffad42;
  box-shadow: 2px 2px 0 var(--ink);
  font-size: 0.68rem;
  font-weight: 950;
  white-space: nowrap;
}

.result-card.daily-round-complete > .daily-complete {
  order: -1;
  width: 100%;
  max-width: none;
}

.result-card.daily-round-complete .daily-complete {
  gap: 10px;
}

.result-card.daily-round-complete .daily-complete-affiliate {
  order: -1;
  margin: 0;
}

.daily-complete-copy strong {
  font-size: 1.12rem;
  letter-spacing: -0.025em;
}

.daily-complete-actions .secondary-action {
  min-height: 44px;
  padding: 8px 13px;
  border-width: 2px;
  background: white;
  font-size: 0.72rem;
}

.result-card .result-social-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  overflow: visible;
  padding: 8px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  color: var(--ink);
  background: #fff;
  box-shadow: 3px 3px 0 var(--ink);
}

.result-card .result-social-bar .question-reactions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 2px 4px;
  min-height: 0;
  padding: 0 8px 0 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.result-card .result-social-bar .question-reactions .reaction-summary {
  display: flex;
  grid-column: 1 / -1;
  order: -1;
  min-height: 25px;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  padding: 0 8px;
  color: #5f584f;
  font-size: 0.65rem;
  white-space: normal;
}

.reaction-preview {
  display: inline-flex;
  align-items: center;
  padding-left: 5px;
}

.reaction-preview-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  margin-left: -5px;
  border: 2px solid white;
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint);
  box-shadow: 0 0 0 1px rgb(23 23 23 / 0.14);
  font-size: 0.72rem;
}

.reaction-preview-icon[data-reaction="raar"] { background: var(--yellow); }
.reaction-preview-icon[data-reaction="heerlijk_raar"] { background: var(--coral); }
.reaction-preview-icon[data-reaction="geniaal"] { color: white; background: var(--blue); }

.result-card .result-social-bar .question-reactions .reaction-trigger {
  width: 100%;
  min-height: 48px;
  justify-content: flex-start;
  gap: 8px;
  padding: 6px 9px;
  border: 0;
  border-radius: 10px;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.result-card .result-social-bar .question-reactions .reaction-trigger > span:first-child {
  width: auto;
  height: auto;
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  color: #57524c;
  font-size: 1.5rem;
}

.result-card .result-social-bar .question-reactions .reaction-trigger small,
.result-card .result-social-bar .share-cta small {
  display: none;
}

.result-card .result-social-bar .question-reactions .reaction-trigger strong,
.result-card .result-social-bar .share-cta strong {
  font-size: 0.78rem;
}

.result-card .result-social-bar .question-reactions .reaction-trigger:hover,
.result-card .result-social-bar .question-reactions .reaction-trigger:focus-visible,
.result-card .result-social-bar .question-reactions .reaction-more:hover,
.result-card .result-social-bar .question-reactions .reaction-more:focus-visible,
.result-card .result-social-bar .question-reactions .reaction-more[aria-expanded="true"] {
  background: #f4f0ea;
}

.result-card .result-social-bar .question-reactions .reaction-trigger.selected {
  color: #d92d20;
  background: #fff1f0;
}

.result-card .result-social-bar .question-reactions .reaction-more {
  width: 44px;
  height: 44px;
  align-self: center;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.result-card .result-social-bar .question-reactions .reaction-options {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 4px;
  padding: 8px 0 0;
  border-top: 1px solid var(--line);
  background: white;
}

.result-card .result-social-bar .result-actions {
  min-height: 0;
  padding-left: 8px;
  border-left: 1px solid var(--line);
}

.result-card .result-social-bar .share-cta {
  min-height: 73px;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 8px;
  padding: 8px 11px;
  border: 0;
  border-radius: 10px;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.result-card .result-social-bar .share-cta:hover,
.result-card .result-social-bar .share-cta:focus-visible {
  color: var(--blue);
  background: #eef2ff;
}

/* Houd de drie primaire sociale acties altijd als één herkenbare actiebalk.
   De uitgeklapte reactiepicker komt eronder; anders schoof 'Deel vraag' op
   mobiel naar een losse, moeilijk vindbare rij. */
.question-social-bar .reaction-summary {
  order: 0;
}

.question-social-bar .reaction-trigger,
.question-social-bar .reaction-more,
.question-social-bar .question-share-action {
  order: 1;
}

.question-social-bar .reaction-options {
  order: 2;
}

@media (max-width: 620px) {
  .question-affiliate-card,
  .daily-complete-affiliate {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 9px;
  }

  .question-affiliate-card .affiliate-card-media,
  .daily-complete-affiliate .affiliate-card-media {
    width: 92px;
    height: 64px;
    min-height: 64px;
  }

  .question-affiliate-card .affiliate-card-media img,
  .daily-complete-affiliate .affiliate-card-media img {
    height: 64px;
    min-height: 64px;
  }

  .question-affiliate-card .affiliate-link,
  .daily-complete-affiliate .affiliate-link {
    width: 100%;
    min-height: 42px;
    grid-column: 1 / -1;
    text-align: center;
  }

  .result-card .result-social-bar {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  }

  .result-card .result-social-bar .question-reactions {
    grid-template-columns: minmax(0, 1fr) 38px;
    padding-right: 5px;
  }

  .result-card .result-social-bar .question-reactions .reaction-more {
    width: 38px;
  }

  .result-card .result-social-bar .share-cta {
    min-height: 71px;
    grid-template-columns: 20px minmax(0, 1fr);
    padding-inline: 7px;
  }
}

/* Mobiele kernacties volgen de Android-richtlijn van minimaal 48 dp. Houd
   deze slotregel bewust na oudere compacte overrides, zodat delen, meldingen,
   reacties en partnerlinks ook in de WebView betrouwbaar tikbaar blijven. */
@media (max-width: 620px) {
  .header-share,
  .activity-button {
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
  }

  .result-card .result-social-bar .question-reactions {
    grid-template-columns: minmax(0, 1fr) 48px;
  }

  .result-card .result-social-bar .question-reactions .reaction-more {
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
  }

  .question-affiliate-card .affiliate-link,
  .daily-complete-affiliate .affiliate-link {
    min-height: 48px;
  }
}

/* 0.27.21-43 — echte Android-test op 200% tekst. De eerdere toegankelijke
   stapeling maakte de kop onnodig twee rijen hoog en drukte het derde antwoord
   achter de vaste navigatie. Houd alle kernacties leesbaar, maar geef de vraag
   en drie antwoorden opnieuw de eerste viewport. */
@media (max-width: 620px) {
  html.native-large-text .site-header {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    align-items: center;
  }

  html.native-large-text .site-header .brand {
    width: 94px;
    flex: 0 0 94px;
    margin-right: 6px;
    font-size: 0.42rem;
  }

  html.native-large-text .site-header .brand strong {
    font-size: 0.92rem;
  }

  html.native-large-text .header-login {
    min-width: 0;
    flex: 1 1 auto;
    margin-right: 6px;
    font-size: 0.48rem;
  }

  html.native-large-text .header-share,
  html.native-large-text .activity-button {
    width: 48px;
    min-width: 48px;
    max-width: 48px;
    height: 48px;
    min-height: 48px;
    flex: 0 0 48px;
  }

  html.native-large-text .header-share {
    margin-right: 6px;
  }

  html.native-large-text .daily-meter {
    gap: 4px;
    font-size: 0.52rem;
  }

  html.native-large-text .daily-meter > span:first-child {
    min-width: 0;
    white-space: normal;
  }

  html.native-large-text .streak-pill {
    min-width: 0;
    padding-inline: 5px;
    font-size: 0.46rem;
    line-height: 1.08;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  html.native-large-text .question-card h1,
  html.native-large-text .question-card .question-text {
    max-width: none;
    font-size: 1.35rem;
    line-height: 1.02;
  }

  html.native-large-text .question-card .answer-button,
  html.native-large-text .answer-button {
    min-height: 52px;
    padding-block: 7px;
    font-size: 0.98rem;
    line-height: 1.08;
  }
}
