:root {
  --blue: #5b7fd6;
  --blue-dark: #2f3f66;
  --yellow: #f6c945;
  --bg: #eef3ff;
  --card: #ffffff;
  --text: #24304d;
  --text-soft: #5c6a8c;
  --radius: 22px;
  --shadow: 0 10px 30px rgba(47, 63, 102, 0.12);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #eef3ff 0%, #f7f9ff 40%, #ffffff 100%);
  color: var(--text);
  font-family: "Nunito", sans-serif;
}
/* faint repeated-bunny wallpaper */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("assets/mascot.png");
  background-size: 84px auto;
  background-repeat: space;
  opacity: 0.035;
}
.topbar, main, .site-footer, .play-fab { position: relative; z-index: 1; }

img { max-width: 100%; display: block; }

h1, h2, .brand-name {
  font-family: "Baloo 2", sans-serif;
}

a { color: inherit; text-decoration: none; }

/* ---- Topbar ---- */
.topbar {
  padding: 18px 24px;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(47, 63, 102, 0.08);
  z-index: 10;
}
.topbar-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.brand-name {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--blue-dark);
}
.twitter-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--blue-dark);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.twitter-link:hover { transform: translateY(-1px); opacity: 0.92; }

/* ---- Hero ---- */
.hero {
  padding: 56px 24px 24px;
}
.hero-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.mascot {
  width: 190px;
  margin: 0 auto 8px;
  filter: drop-shadow(0 12px 20px rgba(47, 63, 102, 0.18));
}
h1 {
  font-size: 2.6rem;
  color: var(--blue-dark);
  margin: 4px 0 12px;
}
.tagline {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0 auto 32px;
  max-width: 480px;
}
.tagline strong { color: var(--blue-dark); }

/* ---- Donations box ---- */
.donations-box {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 2px solid #e3ebff;
  padding: 28px 24px;
  margin-bottom: 24px;
}
.donations-label {
  font-weight: 800;
  font-family: "Baloo 2", sans-serif;
  color: var(--blue-dark);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.donations-value {
  font-family: "Baloo 2", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 2px;
}
.donations-gold {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-soft);
  margin-bottom: 8px;
}
.donations-sub {
  font-size: 0.88rem;
  color: var(--text-soft);
}

/* ---- Contract row ---- */
.ca-row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  background: #fff9e8;
  border: 1.5px solid #f4dfa0;
  border-radius: 14px;
  padding: 10px 14px;
  margin-bottom: 10px;
}
.ca-label {
  font-weight: 700;
  font-size: 0.82rem;
  color: #8a6d1f;
  white-space: nowrap;
}
.ca-value {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.82rem;
  color: var(--blue-dark);
  word-break: break-all;
}
.copy-btn {
  border: none;
  background: var(--yellow);
  color: #4a3b06;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.12s ease;
}
.copy-btn:hover { transform: translateY(-1px); }
.copy-btn.copied { background: #7fd67f; color: #1c3d1c; }

.explorer-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
.explorer-link:hover { text-decoration: underline; }

/* ---- Banner ---- */
.banner-section {
  max-width: 900px;
  margin: 16px auto 0;
  padding: 0 24px;
}
.banner-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---- Disclaimer ---- */
.disclaimer {
  max-width: 640px;
  margin: 36px auto 0;
  padding: 0 24px 8px;
}
.disclaimer p {
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-soft);
  text-align: center;
}

/* ---- Footer ---- */
.site-footer {
  max-width: 640px;
  margin: 24px auto 0;
  padding: 24px 24px 48px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-soft);
}
.site-footer a:hover { color: var(--blue); }

@media (max-width: 480px) {
  h1 { font-size: 2.1rem; }
  .donations-value { font-size: 1.9rem; }
}


/* ---- Game section ---- */
.game-section { padding: 10px 24px 30px; }
.game-heading {
  text-align: center; font-size: 1.7rem; color: var(--blue-dark); margin: 0 0 4px;
}
.game-lead { text-align: center; color: var(--text-soft); font-weight: 700; margin: 0 0 18px; }

/* ---- Donation counter count-up pop ---- */
.donations-value.landed { animation: donation-pop 0.55s cubic-bezier(0.3, 1.6, 0.5, 1); }
@keyframes donation-pop { 0% { transform: scale(1); } 45% { transform: scale(1.08); } 100% { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .donations-value.landed { animation: none; } }


/* ---- Donation fireworks ---- */
.donations-box { position: relative; overflow: hidden; }
.fw-p {
  position: absolute; left: var(--x); top: var(--y);
  width: var(--s); height: var(--s); border-radius: 50%;
  background: var(--c); pointer-events: none;
  animation: fw-fly var(--t) cubic-bezier(0.16, 0.8, 0.4, 1) forwards;
  box-shadow: 0 0 14px var(--c);
}
.fw-star {
  position: absolute; left: var(--x); top: var(--y);
  font-size: 22px; color: var(--c); pointer-events: none;
  animation: fw-fly var(--t) ease-out forwards;
}
@keyframes fw-fly {
  0% { opacity: 1; transform: translate(0, 0) scale(1); }
  70% { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(0.35); }
}
@media (prefers-reduced-motion: reduce) { .fw-p, .fw-star { animation: none; display: none; } }


/* ---- Floating "play the game" star button ---- */
.play-fab {
  position: fixed; left: 16px; top: 50%; transform: translateY(-50%);
  z-index: 50; display: flex; align-items: center; gap: 10px;
  background: var(--card); border-radius: 999px; padding: 10px 18px 10px 12px;
  box-shadow: var(--shadow); border: 2px solid rgba(91, 127, 214, 0.25);
  text-decoration: none; cursor: pointer;
  animation: fab-float 3.2s ease-in-out infinite;
  transition: transform 0.15s, box-shadow 0.2s, opacity 0.4s;
}
.play-fab:hover {
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 14px 34px rgba(47, 63, 102, 0.2);
}
.play-fab:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.play-fab.hidden { opacity: 0; pointer-events: none; }
.play-fab-star {
  font-size: 1.9rem; line-height: 1;
  animation: fab-star-spin 5s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(246, 201, 69, 0.8));
}
.play-fab-text {
  font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 0.85rem;
  line-height: 1.2; color: var(--blue-dark); text-align: left;
}
@keyframes fab-float {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 8px)); }
}
@keyframes fab-star-spin {
  0%, 100% { transform: rotate(-8deg) scale(1); }
  50% { transform: rotate(8deg) scale(1.12); }
}
@media (max-width: 640px) {
  .play-fab { left: 10px; top: auto; bottom: 14px; transform: none; padding: 8px 14px 8px 10px; }
  .play-fab:hover { transform: scale(1.05); }
  .play-fab-star { font-size: 1.5rem; }
  .play-fab-text { font-size: 0.75rem; }
  @keyframes fab-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }
}
@media (prefers-reduced-motion: reduce) {
  .play-fab, .play-fab-star { animation: none; }
}


/* ---- Hero bunny constellation ---- */
.hero { position: relative; overflow: visible; }
.hero-deco { position: absolute; inset: -20px 0 0 0; pointer-events: none; z-index: 0; }
.hero-inner { position: relative; z-index: 1; }
.mini-bunny {
  position: absolute; width: 54px; opacity: 0.9;
  filter: drop-shadow(0 6px 10px rgba(47, 63, 102, 0.15));
  animation: mini-float 4.5s ease-in-out infinite;
}
.mb1 { left: 6%;  top: 8%;  width: 62px; transform: rotate(-14deg); animation-delay: -0.4s; }
.mb2 { right: 7%; top: 5%;  width: 48px; transform: rotate(11deg);  animation-delay: -1.6s; }
.mb3 { left: 13%; top: 62%; width: 44px; transform: rotate(9deg);   animation-delay: -2.4s; opacity: 0.75; }
.mb4 { right: 12%; top: 55%; width: 58px; transform: rotate(-8deg); animation-delay: -3.1s; }
.mb5 { left: 25%; top: 24%; width: 36px; transform: rotate(18deg);  animation-delay: -1.1s; opacity: 0.6; }
.mb6 { right: 24%; top: 30%; width: 34px; transform: rotate(-19deg); animation-delay: -2.9s; opacity: 0.6; }
@keyframes mini-float {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -12px; }
}
.hero-spark { position: absolute; font-size: 1.2rem; animation: spark-tw 2.8s ease-in-out infinite; }
.s1 { left: 18%; top: 10%; animation-delay: -0.5s; }
.s2 { right: 17%; top: 18%; font-size: 1rem; animation-delay: -1.4s; }
.s3 { right: 28%; top: 70%; animation-delay: -2s; }
.s4 { left: 28%; top: 76%; font-size: 1rem; animation-delay: -0.9s; }
@keyframes spark-tw { 0%,100% { opacity: 0.35; transform: scale(0.9) rotate(-6deg); } 50% { opacity: 1; transform: scale(1.15) rotate(6deg); } }

/* ---- Bunny peeking over the donations box ---- */
.donations-peek-wrap { position: relative; }
.donations-peek {
  position: absolute; top: -44px; right: 46px; width: 92px; z-index: 0;
  transform: rotate(7deg);
  animation: peek-bob 3.8s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(47, 63, 102, 0.14));
}
.donations-peek-wrap .donations-box { position: relative; z-index: 1; }
@keyframes peek-bob {
  0%, 100% { transform: rotate(7deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-7px); }
}

@media (max-width: 700px) {
  .mb3, .mb5, .mb6, .s3, .s4 { display: none; }
  .mb1 { width: 44px; left: 3%; }
  .mb2 { width: 38px; right: 4%; }
  .mb4 { width: 42px; right: 5%; top: 60%; }
  .donations-peek { width: 70px; top: -33px; right: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .mini-bunny, .hero-spark, .donations-peek { animation: none; }
}


/* ---- How it works ---- */
.how-section { padding: 34px 24px 10px; max-width: 1020px; margin: 0 auto; }
.how-heading { text-align: center; font-size: 1.7rem; color: var(--blue-dark); margin: 0 0 22px; }
.how-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.how-card {
  position: relative; background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 26px 20px 22px; text-align: center;
  transition: transform 0.18s ease;
}
.how-card:hover { transform: translateY(-5px); }
.how-card:not(:last-child)::after {
  content: "→"; position: absolute; right: -17px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 800; color: var(--blue); z-index: 1;
}
.how-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%; font-size: 1.9rem;
  background: var(--bg); margin-bottom: 12px;
  box-shadow: inset 0 0 0 3px rgba(91, 127, 214, 0.18);
}
.how-card h3 { margin: 0 0 8px; font-family: "Baloo 2", sans-serif; font-size: 1.1rem; color: var(--blue-dark); }
.how-card p { margin: 0; font-size: 0.9rem; font-weight: 600; color: var(--text-soft); line-height: 1.55; }
@media (max-width: 760px) {
  .how-cards { grid-template-columns: 1fr; }
  .how-card:not(:last-child)::after { content: "↓"; right: 50%; top: auto; bottom: -21px; transform: translateX(50%); }
}


/* ---- Gold milestone bar ---- */
.milestone { margin-top: 18px; text-align: left; }
.milestone-row { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.milestone-title { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.02em; color: var(--text-soft); }
.milestone-title b { color: var(--blue-dark); }
.milestone-count { font-size: 0.85rem; font-weight: 800; color: #b8860b; }
.milestone-bar { height: 14px; background: var(--bg); border-radius: 999px; overflow: hidden; box-shadow: inset 0 2px 4px rgba(47,63,102,0.08); }
.milestone-fill {
  position: relative; height: 100%; width: 0%; border-radius: 999px;
  background: linear-gradient(90deg, #f6c945, #e8b429 60%, #d99a06);
  transition: width 1.4s cubic-bezier(0.25, 1, 0.4, 1);
  overflow: hidden;
}
.milestone-fill::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  animation: gold-shimmer 2.6s linear infinite;
}
@keyframes gold-shimmer { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
@media (prefers-reduced-motion: reduce) { .milestone-fill { transition: none; } .milestone-fill::after { animation: none; } }


/* ---- Gold ticker strip ---- */
.ticker {
  position: relative; z-index: 1; overflow: hidden;
  background: linear-gradient(90deg, #fff6d8, #fff1c4);
  border-bottom: 1px solid rgba(214, 164, 19, 0.25);
  padding: 7px 0; white-space: nowrap;
}
.ticker-track {
  display: inline-flex; gap: 48px; padding-right: 48px;
  animation: ticker-scroll 26s linear infinite;
  will-change: transform;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item { font-size: 0.82rem; font-weight: 800; color: #7a6420; }
.ticker-item b { color: #b8860b; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ---- Scroll reveal (only applies once JS tags elements) ---- */
.reveal-init { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-init.revealed { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal-init { opacity: 1; transform: none; transition: none; } }

/* ---- 3D tilt ---- */
.tiltable { transform-style: preserve-3d; will-change: transform; }
.how-card.tiltable:hover { transform: none; } /* tilt JS takes over from the hover-lift */

/* ---- Sparkle cursor trail ---- */
.sparkle-dot {
  position: fixed; z-index: 90; pointer-events: none;
  font-size: 12px; color: #e8b429;
  animation: sparkle-fall 0.7s ease-out forwards;
}
@keyframes sparkle-fall {
  0% { opacity: 0.9; transform: translate(-50%, -50%) scale(1) rotate(0deg); }
  100% { opacity: 0; transform: translate(-50%, 6px) scale(0.4) rotate(40deg); }
}


/* ---- Interactive hero Max ---- */
.hero-max { display: inline-block; position: relative; }
.hero-max-btn {
  background: none; border: none; padding: 0; cursor: pointer; display: block;
  position: relative; transition: transform 0.25s ease; -webkit-tap-highlight-color: transparent;
}
.hero-max-btn:focus-visible { outline: 3px dashed var(--yellow); outline-offset: 8px; border-radius: 20px; }
.hero-max-btn .mascot { margin: 0 auto 8px; }
.hero-max-btn.hm-bounce .mascot { animation: hm-bounce 0.55s cubic-bezier(0.28, 2.2, 0.5, 1); }
@keyframes hm-bounce {
  0% { transform: scale(1, 1); } 30% { transform: scale(1.1, 0.88) translateY(4px); }
  60% { transform: scale(0.95, 1.06) translateY(-9px); } 100% { transform: scale(1, 1); }
}
.hm-eyelid {
  position: absolute; width: 14.5%; height: 9%; background: #bcc3ee; border-radius: 50%;
  transform: scaleY(0); transform-origin: center top; transition: transform 0.09s ease; pointer-events: none;
}
.hm-l { left: 32.5%; top: 34.5%; }
.hm-r { right: 32.5%; top: 34.5%; }
.hero-max.blink .hm-eyelid { transform: scaleY(1); }
.hm-heart {
  position: absolute; font-size: 1.4rem; pointer-events: none; z-index: 3;
  animation: hm-heart 1s ease-out forwards;
}
@keyframes hm-heart {
  0% { opacity: 1; transform: translate(-50%, 0) scale(0.7); }
  100% { opacity: 0; transform: translate(-50%, -80px) scale(1.35); }
}
.pet-count { margin: 0 0 4px; font-size: 0.85rem; font-weight: 800; color: var(--text-soft); }
.pet-count b { color: var(--blue-dark); }
@media (prefers-reduced-motion: reduce) {
  .hero-max-btn, .hm-heart { animation: none; transition: none; }
}

/* ---- Gold Vault ---- */
.vault {
  background: linear-gradient(180deg, #fffdf4, #fff7dd);
  border: 2px solid rgba(214, 164, 19, 0.3); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 20px 22px 22px; margin: 18px 0 0;
}
.vault-title { margin: 0 0 2px; font-family: "Baloo 2", sans-serif; font-size: 1.25rem; color: #7a6420; text-align: center; }
.vault-sub { margin: 0 0 16px; font-size: 0.8rem; font-weight: 700; color: #a58a3a; text-align: center; }
.vault-shelf { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; align-items: flex-end; }
.gold-bar {
  width: 78px; height: 42px; position: relative;
  background: linear-gradient(180deg, #ffe9a8 0%, #f6c945 45%, #d99a06 100%);
  clip-path: polygon(12% 0, 88% 0, 100% 100%, 0 100%);
  box-shadow: 0 3px 6px rgba(122, 100, 32, 0.3);
  animation: bar-pop 0.5s cubic-bezier(0.3, 1.6, 0.5, 1) backwards;
}
.gold-bar::after {
  content: "1 oz"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800; color: rgba(122, 100, 32, 0.75);
}
.gold-bar.partial { background: #f3ead0; box-shadow: inset 0 0 0 2px rgba(214, 164, 19, 0.4); overflow: hidden; }
.gold-bar.partial::before {
  content: ""; position: absolute; left: 0; bottom: 0; top: 0;
  width: var(--fill); background: linear-gradient(180deg, #ffe9a8, #f6c945 45%, #d99a06);
}
.gold-bar.partial::after { content: attr(data-label); z-index: 1; }
@keyframes bar-pop { from { opacity: 0; transform: translateY(14px) scale(0.6); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .gold-bar { animation: none; } }

/* ---- Share button ---- */
.max-game-endbtns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.max-game-sharebtn { background: #1d9bf0; color: #fff; box-shadow: 0 6px 0 rgba(13, 199, 240, 0.35); }


/* ---- Milestone medals ---- */
.medals { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.medal {
  font-size: 0.72rem; font-weight: 800; color: #7a6420;
  background: linear-gradient(180deg, #ffe9a8, #f6c945);
  border: 1.5px solid rgba(214, 164, 19, 0.5); border-radius: 999px;
  padding: 3px 10px; box-shadow: 0 2px 4px rgba(122, 100, 32, 0.2);
  animation: medal-pop 0.5s cubic-bezier(0.3, 1.6, 0.5, 1) backwards;
}
@keyframes medal-pop { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }

/* ---- Milestone crossing banner ---- */
.milestone-banner {
  position: absolute; inset: 0; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 249, 224, 0.94); border-radius: inherit;
  animation: mb-in 0.5s cubic-bezier(0.3, 1.6, 0.5, 1);
}
.mb-text {
  font-family: "Baloo 2", sans-serif; font-weight: 800;
  font-size: clamp(1.1rem, 3.5vw, 1.7rem); color: #b8860b; text-align: center; padding: 0 18px;
  animation: mb-pulse 1s ease-in-out infinite;
}
@keyframes mb-in { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
@keyframes mb-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@media (prefers-reduced-motion: reduce) { .mb-text, .milestone-banner, .medal { animation: none; } }

/* ---- FAQ ---- */
.faq-section { max-width: 720px; margin: 0 auto; padding: 30px 24px 26px; }
.faq-title { text-align: center; font-size: 1.7rem; color: var(--blue-dark); margin: 0 0 18px; }
.faq-item {
  background: var(--card); border-radius: 16px; box-shadow: var(--shadow);
  margin-bottom: 10px; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 15px 18px;
  font-weight: 800; color: var(--blue-dark); font-size: 0.98rem;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: "Baloo 2", sans-serif; font-size: 1.3rem; color: var(--blue); transition: transform 0.25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0; padding: 0 18px 16px; font-size: 0.9rem; font-weight: 600; color: var(--text-soft); line-height: 1.6; }
.faq-item a { color: var(--blue); font-weight: 800; text-decoration: underline; }
.faq-item summary:focus-visible { outline: 3px solid var(--blue); outline-offset: -3px; border-radius: 16px; }

/* hidden attribute always wins, regardless of any display rule */
[hidden] { display: none !important; }
