/* ============================================================
 * Wordmark primitive — giant brand wordmark + eyebrow + sub + TAP pill
 * Used inside `.face-front` of a card.
 * ============================================================ */

.eyebrow-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  width: 100%;
}
.eyebrow-row .dot { width: 10px; height: 10px; border-radius: 50%; }

/* The + glyph (front of cards). Rotates 90deg per snap (cw on down,
 * ccw on up) — driven by engine.js. */
.eyebrow-row .arrow-flip {
  width: 14px;
  height: 14px;
  display: block;
  color: inherit;
  transition: transform 500ms cubic-bezier(0.65, 0, 0.35, 1);
}
.eyebrow-row .arrow-flip svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

/* The × glyph (back of cards). Static counterpart to arrow-flip. */
.eyebrow-row .close-x {
  width: 14px;
  height: 14px;
  display: block;
  color: rgba(255,255,255,0.5);
}
.eyebrow-row .close-x svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.center {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.giant {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(120px, 22vw, 320px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}
.giant-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.6px;
}

/* TAP TO REVEAL pill (front) */
.tap-pill {
  align-self: center;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-transform: uppercase;
  transition: transform 200ms ease, filter 200ms ease;
}
.tap-pill:hover { transform: scale(1.04); filter: brightness(1.05); }

/* Smaller pill / hint variants for backs */
.tap-pill-back {
  font-size: 11px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.14);
  color: var(--white);
  font-weight: 500;
  letter-spacing: 1.8px;
}
.close-hint {
  align-self: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  user-select: none;
}

@media (max-width: 900px) {
  .giant { font-size: clamp(96px, 22vw, 200px); }
}
