/* ═══════════════════════════════════════════════════════════
   LUMEN — Centralizador de links
   Linguagem de design extraída do Electronic Materials Office
   (grid de pontos, pills, glow, transições, escala de espaço),
   com a paleta da loja: preto, cinza, branco e traços de ouro.

   Fontes: substitutas livres (Google Fonts) das originais
   GT Flexa (Grilli Type) e Tobias (Klim), que são licenciadas.
   ═══════════════════════════════════════════════════════════ */

:root {
  /* ── Neutros ── */
  --bg:           #000000;
  --bg-gray:      #111111;
  --gray-dark:    #2f2f2f;
  --gray:         #6d6d6d;
  --gray-light:   #cacaca;
  --gray-lighter: #e0e0e0;
  --white:        #ffffff;

  /* ── Ouro: usado só como acento ── */
  --gold:      #d4af37;
  --gold-soft: #e8c874;
  --gold-deep: #a8871f;
  --gold-dim:  #4a3a10;
  --on-gold:   #0d0a02;   /* texto sobre o ouro */

  /* ── Tipografia ── */
  --font-body:    'Archivo', system-ui, sans-serif;
  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-mono:    'DM Mono', 'SF Mono', monospace;

  /* ── Escala ── */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;

  --space-xs: 6px;
  --space-sm: 12px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 96px;

  --transition-fast:   0.2s ease;
  --transition-normal: 0.2s ease;
  --transition-slow:   0.3s ease;

  --pattern-dots: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  --pattern-dots-size: 12px 12px;

  --tap: 56px;   /* alvo mínimo de toque */

  color-scheme: dark;
}

/* Gama ampliada onde houver suporte */
@supports (color: color(display-p3 1 1 1)) {
  :root {
    --bg:         color(display-p3 0 0 0);
    --bg-gray:    color(display-p3 0.067 0.067 0.067);
    --gray-dark:  color(display-p3 0.184 0.184 0.184);
    --gray:       color(display-p3 0.427 0.427 0.427);
    --gray-light: color(display-p3 0.792 0.792 0.792);
    --white:      color(display-p3 1 1 1);
    --gold:       color(display-p3 0.831 0.686 0.216);
    --gold-soft:  color(display-p3 0.910 0.784 0.455);
  }
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ═══════════ FUNDO ═══════════ */

.backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

/* Brilhos dourados, bem discretos — "traços", não banho de cor */
.backdrop__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}

.backdrop__glow--a {
  top: -24vh;
  left: 50%;
  width: min(640px, 130vw);
  height: min(640px, 130vw);
  margin-left: calc(min(640px, 130vw) / -2);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.20) 0%, rgba(212, 175, 55, 0.05) 45%, transparent 70%);
  animation: drift-a 20s ease-in-out infinite alternate;
}

.backdrop__glow--b {
  bottom: -30vh;
  left: 50%;
  width: min(540px, 120vw);
  height: min(540px, 120vw);
  margin-left: calc(min(540px, 120vw) / -2);
  background: radial-gradient(circle, rgba(168, 135, 31, 0.16) 0%, transparent 68%);
  animation: drift-b 26s ease-in-out infinite alternate;
}

@keyframes drift-a {
  from { transform: translate3d(-7%, 0, 0) scale(1); }
  to   { transform: translate3d(7%, 5%, 0) scale(1.12); }
}

@keyframes drift-b {
  from { transform: translate3d(6%, 0, 0) scale(1.08); }
  to   { transform: translate3d(-6%, -4%, 0) scale(1); }
}

/* Grid de pontos — assinatura da EMO */
.backdrop__grid {
  position: absolute;
  inset: 0;
  background-image: var(--pattern-dots);
  background-size: var(--pattern-dots-size);
  /* apaga nas bordas pra não competir com o conteúdo */
  -webkit-mask-image: radial-gradient(ellipse 75% 55% at 50% 40%, #000 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 75% 55% at 50% 40%, #000 30%, transparent 100%);
  opacity: 0.6;
}

/* Granulado sutil por cima */
.backdrop__grain {
  position: absolute;
  inset: -50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.42'/%3E%3C/svg%3E");
  opacity: 0.12;
  mix-blend-mode: overlay;
}

/* ═══════════ ACESSIBILIDADE ═══════════ */

.skip-link {
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translate(-50%, -200%);
  padding: 10px 16px;
  background: var(--gold);
  color: var(--on-gold);
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  z-index: 10;
}
.skip-link:focus-visible { transform: translate(-50%, 0); }

/* ═══════════ LAYOUT ═══════════ */

.page {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin-inline: auto;
  padding: var(--space-xl) var(--space-md)
           calc(var(--space-lg) + env(safe-area-inset-bottom));

  /* coluna de altura cheia: o espaço livre sobra no meio, empurrando
     botões e rodapé pra baixo em vez de amontoar tudo no topo */
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

/* ═══════════ PERFIL ═══════════ */

.hero {
  text-align: center;
  margin-bottom: var(--space-lg);   /* vão antes dos botões */
}

/* Título real da página, lido por leitores de tela e buscadores.
   Visualmente a capa já mostra o nome, então ele fica oculto. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Lettering vetorial da marca */
.wordmark {
  display: block;
  width: min(300px, 80%);
  height: auto;
  margin: 0 auto;
  /* halo dourado de leve, pra separar do fundo sem moldura */
  filter: drop-shadow(0 6px 34px rgba(212, 175, 55, 0.18));
}

.wordmark__name {
  font-family: 'Poppins', 'Archivo', system-ui, sans-serif;
  font-weight: 700;
  font-size: 84px;
  fill: url(#cromo);
}

.wordmark__sub {
  font-family: 'Poppins', 'Archivo', system-ui, sans-serif;
  font-weight: 300;
  font-size: 25px;
  fill: #cfcfcf;
}

.location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: var(--space-md) 0 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Frase de perfil — no máximo 2 linhas */
.bio {
  margin: var(--space-lg) auto 0;
  max-width: 21ch;
  font-family: var(--font-heading);
  font-size: clamp(22px, 6.2vw, 27px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.025em;
  color: var(--gray-lighter);
  text-wrap: balance;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Pills de confiança */
.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xs);
  margin: var(--space-md) 0 0;
  padding: 0;
  list-style: none;
}

.badges li {
  padding: 6px 12px;
  border: 2px solid var(--gray-dark);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
}

/* ═══════════ BOTÕES ═══════════ */

.actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.btn {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: var(--tap);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background-color: transparent;
  color: var(--white);
  text-decoration: none;
  transition: transform var(--transition-fast);
  will-change: transform;
}

.btn:hover  { transform: translateZ(0) scale(1.03); }
.btn:active { transform: translateZ(0) scale(0.98); }

.btn:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

.btn__icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn__icon svg.is-solid { fill: currentColor; stroke: none; }

.btn__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;   /* deixa o texto truncar em vez de estourar */
  text-align: left;
}

.btn__text strong {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.btn__text small {
  font-size: 11.5px;
  line-height: 1.3;
  opacity: 0.7;
}

.btn__arrow {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.btn__arrow svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn:hover .btn__arrow { transform: translateX(3px); }

/* ── Primário: ouro com glow (a assinatura da EMO, na cor da loja) ── */

/* camada do brilho, atrás do preenchimento */
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 26px rgba(212, 175, 55, 0.55), 0 0 9px rgba(212, 175, 55, 0.45);
  z-index: -2;
}

/* preenchimento */
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 52%, var(--gold-deep) 100%);
  z-index: -1;
}

.btn--primary { color: var(--on-gold); }
.btn--primary .btn__text small { opacity: 0.78; }

/* ── Secundário: contorno ── */
.btn--ghost {
  border: 2px solid var(--gray-dark);
  color: var(--gray-light);
  transition: transform var(--transition-fast),
              border-color var(--transition-fast),
              color var(--transition-fast);
}

.btn--ghost:hover {
  border-color: var(--gold-deep);
  color: var(--white);
}

/* ═══════════ RODAPÉ ═══════════ */

.footer {
  /* auto engole toda a sobra vertical, prendendo o rodapé embaixo;
     o padding garante o vão mínimo quando a tela é curta */
  margin-top: auto;
  padding-top: var(--space-xl);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

.footer p { margin: 0 0 6px; }
.hours strong { color: var(--gray-light); font-weight: 400; }
.legal { opacity: 0.6; }

/* ═══════════ PREFERÊNCIAS DO USUÁRIO ═══════════ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .backdrop__glow { animation: none; }
}

@media (prefers-contrast: more) {
  :root {
    --gray:       #9a9a9a;
    --gray-dark:  #5a5a5a;
    --gray-light: #e8e8e8;
  }
  .backdrop__grain { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   PÁGINA DE AVALIAÇÃO (avaliar.html)
   ═══════════════════════════════════════════════════════════ */

.page--quiz { padding-top: var(--space-md); }
.page--quiz .footer { padding-top: var(--space-lg); }

/* ─────────── topo e progresso ─────────── */

.quiz-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.quiz-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px 8px 8px;
  margin-left: -8px;
  border-radius: var(--radius-sm);
  color: var(--gray-light);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.quiz-back:hover { color: var(--white); }
.quiz-back:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }

.quiz-back svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quiz-step-count {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
}

.quiz-progress {
  height: 2px;
  margin-top: var(--space-sm);
  border-radius: 2px;
  background: var(--gray-dark);
  overflow: hidden;
}

.quiz-progress__fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft));
  transition: width var(--transition-slow);
}

.quiz-title {
  margin: var(--space-lg) 0 0;
  font-family: var(--font-heading);
  font-size: clamp(28px, 7.4vw, 35px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.quiz-lead {
  margin: var(--space-sm) 0 0;
  max-width: 38ch;
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-light);
}

/* ─────────── perguntas ─────────── */

.q {
  margin: var(--space-lg) 0 0;
  padding: 0;
  border: 0;
}

.q__title {
  padding: 0;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--white);
}

.q__help {
  margin: var(--space-xs) 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--gray);
}

.q__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: var(--space-md);
}

/* cartão de opção */
.opt {
  position: relative;
  display: block;
  cursor: pointer;
}

/* o input continua no fluxo de foco, só não aparece */
.opt input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.opt__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-height: var(--tap);
  padding: 12px 48px 12px 16px;
  border: 2px solid var(--gray-dark);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast),
              background-color var(--transition-fast),
              transform var(--transition-fast);
}

.opt:hover .opt__box { border-color: var(--gray); }
.opt:active .opt__box { transform: scale(0.99); }

.opt input:checked + .opt__box {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.opt input:focus-visible + .opt__box {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.opt__label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.opt__desc {
  font-size: 12.5px;
  line-height: 1.35;
  color: var(--gray);
}

.opt__check {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%) scale(0.7);
  width: 20px;
  height: 20px;
  opacity: 0;
  color: var(--gold);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.opt__check svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.opt input:checked ~ .opt__check {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/* ─────────── select ─────────── */

.select-wrap {
  position: relative;
  margin-top: var(--space-md);
}

.select {
  width: 100%;
  min-height: var(--tap);
  padding: 12px 46px 12px 16px;
  border: 2px solid var(--gray-dark);
  border-radius: var(--radius-sm);
  background: var(--bg-gray);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  appearance: none;
  transition: border-color var(--transition-fast);
}

.select:hover { border-color: var(--gray); }
.select:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }

.select option { background: #111111; color: #ffffff; }

.select__chevron {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  pointer-events: none;
  fill: none;
  stroke: var(--gray);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─────────── navegação ─────────── */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.nav__back {
  padding: 12px 4px;
  border: 0;
  background: none;
  color: var(--gray);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.nav__back:hover { color: var(--white); }
.nav__back:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }

.nav__next {
  min-height: 50px;
  padding: 0 28px;
  border: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 52%, var(--gold-deep) 100%);
  color: var(--on-gold);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
  will-change: transform;
}

.nav__next:hover:not(:disabled)  { transform: translateZ(0) scale(1.03); }
.nav__next:active:not(:disabled) { transform: translateZ(0) scale(0.98); }
.nav__next:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }

.nav__next:disabled {
  background: var(--gray-dark);
  color: var(--gray);
  cursor: not-allowed;
}

/* ─────────── resultado ─────────── */

.result { margin-top: var(--space-lg); }

.result__eyebrow {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.result__value {
  margin: var(--space-sm) 0 0;
  font-family: var(--font-heading);
  font-size: clamp(31px, 8.4vw, 41px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.result__note {
  margin: var(--space-sm) 0 0;
  max-width: 40ch;
  font-size: 13px;
  line-height: 1.5;
  color: var(--gray);
}

/* ─────────── ficha técnica ─────────── */

.ficha {
  margin: var(--space-lg) 0 0;
  padding: 4px 16px 6px;
  border: 1px solid var(--gray-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
}

.ficha__titulo {
  margin: 0;
  padding: 12px 0 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.ficha__linha {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 9px 0;
  border-top: 1px solid var(--gray-dark);
}

.ficha__linha dt {
  flex-shrink: 0;
  font-size: 13px;
  color: var(--gray);
}

.ficha__linha dd {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 0;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-lighter);
  text-align: right;
}

.ficha__ajuste {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}

.ficha__ajuste.is-down { color: #e06a5a; }
.ficha__ajuste.is-up   { color: #6ec08a; }

.ficha__linha--total dt { color: var(--gray-light); }
.ficha__linha--total dd { color: var(--white); }
.ficha__linha--total strong { color: var(--gold-soft); font-weight: 600; }

/* ─────────── aviso das fotos ─────────── */

.aviso-fotos {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: var(--space-lg);
  padding: var(--space-md);
  border: 1px dashed var(--gold-dim);
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.05);
}

.aviso-fotos svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 1px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.aviso-fotos div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.aviso-fotos strong { font-size: 14.5px; font-weight: 600; }

.aviso-fotos span {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--gray-light);
}

/* escolha do upgrade *//* escolha do upgrade */
.upgrade { margin-top: var(--space-lg); }

.upgrade__label {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.diff {
  margin-top: var(--space-sm);
  padding: var(--space-md);
  border: 2px solid var(--gold-dim);
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.06);
  text-align: center;
}

.diff--credito { border-color: #2f5a3d; background: rgba(110, 192, 138, 0.07); }

.diff__label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
}

.diff__value {
  margin: 4px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(29px, 7.6vw, 36px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--gold-soft);
}

.diff--credito .diff__value { color: #8fd5a8; }

.diff__note {
  margin: 6px 0 0;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--gray);
}

.result__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.result__actions .btn { width: 100%; }

.linkish {
  padding: 8px;
  border: 0;
  background: none;
  color: var(--gray);
  font-family: var(--font-body);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.linkish:hover { color: var(--white); }
.linkish:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }

/* o bloco recebe foco ao trocar de passo, mas sem anel visível:
   quem está no teclado já vê o anel na opção em que vai navegar */
.q:focus, .result:focus { outline: none; }
