
.lang-bar {
  width: min(100% - 1.5rem, var(--w, 34rem));
  margin: 0.85rem auto 0;
  display: flex;
  justify-content: flex-end;
}
.lang-switch {
  display: inline-flex;
  gap: 0.3rem;
  padding: 0.22rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.22);
}
.lang-switch__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 1.85rem;
  padding: 0.2rem 0.55rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--faint);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), box-shadow var(--ease);
}
.lang-switch__flag {
  width: 1.15rem;
  height: 0.9rem;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
}
.lang-switch__btn:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.lang-switch__btn.is-active {
  color: var(--text);
  background: rgba(30,79,214,0.28);
  box-shadow: inset 0 0 0 1px rgba(30,79,214,0.55);
}
.page {
  padding-top: 0.75rem;
}
/* Medal — thin Mini App funnel landing */

:root {
  --ink: #061018;
  --text: #f4f7fb;
  --soft: rgba(232, 240, 248, 0.86);
  --faint: rgba(200, 218, 232, 0.58);
  --blue: #1e4fd6;
  --blue-deep: #163db0;
  --blue-hover: #2a5de8;
  --blue-soft: #6b8cff;
  --blue-soft-hover: #8aa4ff;
  --glass: rgba(8, 18, 28, 0.48);
  --glass-strong: rgba(10, 22, 34, 0.62);
  --border: rgba(255, 255, 255, 0.16);
  --border-hi: rgba(255, 255, 255, 0.3);
  --radius: 8px;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  --font: "Figtree", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: 160ms ease;
  --w: 34rem;
  --space: 1.2rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-weight: 450;
  color: var(--text);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  letter-spacing: 0.01em;
  overscroll-behavior-y: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
}

a { color: var(--blue-soft); }
a:hover { color: var(--blue-soft-hover); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

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

.skip-link {
  position: absolute; left: 1rem; top: -100%; z-index: 30;
  padding: 0.55rem 0.9rem; background: var(--text); color: var(--ink);
  border-radius: var(--radius); font-weight: 650; text-decoration: none;
}
.skip-link:focus { top: 1rem; }

.page-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  z-index: -1;
  overflow: hidden;
  background: var(--ink);
  pointer-events: none;
  /* Isolate from mobile scroll compositing glitches */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  contain: paint;
}
.page-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.page-bg__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 46% 80% at 50% 42%, rgba(4,12,20,0.58) 0%, rgba(4,12,20,0.28) 52%, rgba(4,12,20,0.06) 78%, transparent 100%),
    linear-gradient(180deg, rgba(4,10,16,0.4) 0%, transparent 16%, transparent 78%, rgba(4,10,16,0.72) 100%);
}

/* Subtle night-sky twinkles — hero band only, theme-matched */
.page-bg__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.72;
  -webkit-mask-image: radial-gradient(ellipse 58% 52% at 50% 24%, #000 0%, #000 48%, transparent 76%);
  mask-image: radial-gradient(ellipse 58% 52% at 50% 24%, #000 0%, #000 48%, transparent 76%);
}
.star {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  margin: 0;
  border-radius: 50%;
  background: rgba(232, 240, 255, 0.92);
  box-shadow:
    0 0 3px 0.5px rgba(170, 198, 255, 0.45),
    0 0 8px 1px rgba(30, 79, 214, 0.22);
  opacity: 0.22;
  transform: translate(-50%, -50%) scale(0.85);
  animation: star-twinkle var(--dur) ease-in-out var(--d) infinite;
  will-change: opacity, transform;
}
.star--soft {
  background: rgba(210, 225, 255, 0.88);
  box-shadow:
    0 0 4px 1px rgba(140, 180, 255, 0.35),
    0 0 10px 2px rgba(30, 79, 214, 0.18);
}
.star--spark::before,
.star--spark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(220, 235, 255, 0.55);
  border-radius: 1px;
  transform: translate(-50%, -50%);
  opacity: 0.55;
  pointer-events: none;
}
.star--spark::before {
  width: calc(var(--s) * 4.2);
  height: 1px;
  box-shadow: 0 0 4px rgba(30, 79, 214, 0.35);
}
.star--spark::after {
  width: 1px;
  height: calc(var(--s) * 4.2);
  box-shadow: 0 0 4px rgba(30, 79, 214, 0.35);
}
@keyframes star-twinkle {
  0%, 100% { opacity: 0.14; transform: translate(-50%, -50%) scale(0.75); }
  40% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
  55% { opacity: 0.32; transform: translate(-50%, -50%) scale(0.9); }
  70% { opacity: 0.62; transform: translate(-50%, -50%) scale(1.05); }
}
@media (prefers-reduced-motion: reduce) {
  .star {
    animation: none;
    opacity: 0.28;
    transform: translate(-50%, -50%) scale(0.9);
  }
}
@media (max-width: 640px) {
  .page-bg__stars { opacity: 0.55; }
}


.page {
  width: min(100% - 1.5rem, var(--w));
  margin: 0 auto;
  padding: clamp(1.75rem, 5vh, 3.25rem) 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: var(--space);
}

/* Hero */
.hero {
  text-align: center;
  padding: 0.15rem 0 0.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.hero__logo {
  width: min(100%, 18.5rem);
  margin: 0 auto;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.45));
}
.hero__sentence {
  margin: 0;
  max-width: 28rem;
  font-size: clamp(1.05rem, 2.8vw, 1.2rem);
  color: var(--soft);
  text-shadow: 0 2px 14px rgba(0,0,0,0.55);
}
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--soft);
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.status-chip__dot {
  width: 0.45rem; height: 0.45rem; border-radius: 50%;
  background: #e63946;
  box-shadow: 0 0 0 3px rgba(230,57,70,0.28);
  flex-shrink: 0;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center;
  width: 100%;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 3rem; padding: 0.7rem 1.25rem;
  border-radius: var(--radius); font: inherit; font-weight: 700;
  text-decoration: none; border: 1.5px solid transparent;
  transition: transform var(--ease), background var(--ease), border-color var(--ease), box-shadow var(--ease), color var(--ease);
  flex: 1 1 10rem;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--blue);
  color: #f4f7fb;
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 8px 22px rgba(22, 61, 176, 0.35);
}
.btn--primary:hover {
  color: #ffffff;
  background: var(--blue-hover);
}
.btn--secondary {
  background: var(--glass);
  color: var(--text);
  border-color: var(--border-hi);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn--secondary:hover { background: var(--glass-strong); color: var(--text); }

/* QR — no card / no frame, sits on the art */
.hero__fallback {
  width: 100%;
  margin-top: 0.1rem;
  padding: 0.35rem 0 0.15rem;
  background: none;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.hero__fallback p {
  margin: 0 0 0.7rem;
  font-size: 0.88rem;
  color: var(--faint);
  text-shadow: 0 1px 10px rgba(0,0,0,0.55);
}
.hero__qr-link {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
  border-radius: 0;
}
.hero__qr {
  margin: 0 auto;
  width: 160px;
  height: 160px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  filter:
    drop-shadow(0 0 14px rgba(30, 79, 214, 0.35))
    drop-shadow(0 0 28px rgba(30, 79, 214, 0.18));
  transition: opacity var(--ease), transform var(--ease), filter var(--ease);
}
.hero__qr-link:hover .hero__qr {
  filter:
    drop-shadow(0 0 16px rgba(30, 79, 214, 0.48))
    drop-shadow(0 0 32px rgba(30, 79, 214, 0.25));
}
.hero__qr-link:hover .hero__qr {
  opacity: 0.96;
  transform: translateY(-1px);
}
.hero__qr-link:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Panels */
.panel {
  padding: 1.2rem 1.2rem 1.25rem;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.panel h2 {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 600;
}


.steps {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.9rem;
}
.steps li {
  display: grid; grid-template-columns: 2.5rem 1fr; gap: 0.85rem; align-items: start;
}
.steps__icon {
  display: grid; place-items: center;
  width: 2.5rem; height: 2.5rem;
  flex-shrink: 0;
}
.steps__icon img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.35));
}
.steps strong { display: block; font-size: 0.98rem; }
.steps p { margin: 0.25rem 0 0; color: var(--faint); font-size: 0.9rem; }

/* What’s live — status board */
.liveboard {
  display: grid;
  gap: 0.9rem;
}
@media (min-width: 560px) {
  .liveboard { grid-template-columns: 1fr 1fr; gap: 1rem; align-items: stretch; }
}
.liveboard__col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.05rem 1rem 1.1rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  min-height: 100%;
}
.liveboard__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}
.liveboard__head h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 750;
  letter-spacing: -0.01em;
}
.liveboard__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.22);
  color: var(--soft);
}
.liveboard__pill--live {
  border-color: rgba(60,184,106,0.35);
  background: rgba(60,184,106,0.1);
  color: #9be4b4;
}
.liveboard__pill--soon {
  border-color: rgba(240,162,2,0.35);
  background: rgba(240,162,2,0.1);
  color: #ffd27a;
}
.liveboard__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.live-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 2.85rem;
  padding: 0.55rem 0.7rem;
  border-radius: calc(var(--radius) - 2px);
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.06);
}
.live-item__copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}
.live-item__name {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.25;
}
.live-item__note {
  color: var(--faint);
  font-size: 0.78rem;
  line-height: 1.3;
}
.live-item__chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.6rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
}
.live-item__chip--live {
  color: #9be4b4;
  background: rgba(60,184,106,0.14);
  border-color: rgba(60,184,106,0.28);
}
.live-item__chip--soon {
  color: #ffd27a;
  background: rgba(240,162,2,0.14);
  border-color: rgba(240,162,2,0.28);
}
.live-item__chip--off {
  color: #ff9aa5;
  background: rgba(230,57,70,0.14);
  border-color: rgba(230,57,70,0.28);
}

.economy { margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.economy > div {
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
}
.economy dt { font-weight: 800; letter-spacing: 0.02em; }
.economy dd { margin: 0.25rem 0 0; color: var(--faint); font-size: 0.92rem; }
.economy__note { margin: 0.9rem 0 0; font-size: 0.9rem; color: var(--soft); }

.glass-link {
  display: flex; align-items: center; justify-content: center;
  min-height: 2.85rem; padding: 0.65rem 1rem;
  border-radius: var(--radius);
  text-decoration: none; color: var(--text); font-weight: 700;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid var(--border);
  transition: background var(--ease), border-color var(--ease), transform var(--ease), color var(--ease);
}
.glass-link:hover {
  color: var(--text);
  background: rgba(255,255,255,0.09);
  border-color: var(--border-hi);
  transform: translateY(-1px);
}
.glass-link--quiet { font-weight: 600; color: var(--soft); }

.site-footer {
  width: min(100% - 1.5rem, var(--w));
  margin: 0 auto 0;
  padding: 0.85rem 0.5rem 1.35rem;
  text-align: center;
  color: var(--faint);
  font-size: 0.85rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.65rem;
}
.site-footer__mark-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 10px;
  text-decoration: none;
  transition: transform var(--ease), opacity var(--ease), filter var(--ease);
}
.site-footer__mark-link:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 0 10px rgba(30, 79, 214, 0.35));
}
.site-footer__mark-link:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}
.site-footer__mark {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  opacity: 0.92;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
}
.site-footer__links {
  display: flex; flex-wrap: wrap; gap: 0.45rem; justify-content: center;
}
.site-footer__links a {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 2.3rem; padding: 0.3rem 0.8rem;
  border-radius: var(--radius); text-decoration: none; color: var(--soft);
  border: 1px solid var(--border); background: var(--glass);
  font-weight: 600; font-size: 0.82rem;
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}
.site-footer__links a:hover {
  border-color: rgba(30,79,214,0.55);
  color: var(--text);
  background: var(--glass-strong);
}
.site-footer__copy { margin: 0; }
.site-footer__copy a { color: var(--faint); }
.site-footer__copy a:hover { color: var(--blue-soft); }




/* Medal / Gram interactive cards */
.currency-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 560px) {
  .currency-grid { grid-template-columns: 1fr 1fr; gap: 1.1rem; }
}
.currency-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.95rem;
  padding: 1.35rem 1.15rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  cursor: default;
  min-height: 100%;
  transition: transform var(--ease), border-color var(--ease), background var(--ease), box-shadow var(--ease);
}
.currency-card:hover,
.currency-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(30,79,214,0.55);
  background: rgba(30,79,214,0.12);
  box-shadow: 0 12px 28px rgba(0,0,0,0.28);
  outline: none;
}
.currency-card__mark {
  flex: 0 0 auto;
  width: 3.75rem;
  height: 3.75rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform var(--ease), border-color var(--ease);
}
.currency-card:hover .currency-card__mark,
.currency-card:focus-visible .currency-card__mark {
  transform: scale(1.05);
  border-color: rgba(30,79,214,0.45);
}
.currency-card__mark img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}
.currency-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
}
.currency-card__body h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 750;
  letter-spacing: 0.01em;
}
.currency-card__tag {
  display: inline-block;
  margin: 0.15rem 0 0.35rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue-soft);
  background: rgba(30,79,214,0.18);
  border: 1px solid rgba(30,79,214,0.35);
}
.currency-card__body p:last-child {
  margin: 0.15rem 0 0;
  color: var(--faint);
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 16rem;
}

/* FAQ accordion in Docs */
.faq {
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: rgba(255,255,255,0.05);
  overflow: hidden;
}
.faq__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 2.85rem;
  padding: 0.65rem 1rem;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}
.faq__toggle:hover { background: rgba(255,255,255,0.06); }
.faq__plus {
  width: 1.5rem;
  height: 1.5rem;
  display: grid;
  place-items: center;
  border-radius: 6px;
  border: 1px solid var(--border-hi);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1;
  color: var(--blue-soft);
  transition: transform var(--ease), background var(--ease), color var(--ease);
}
.faq.is-open .faq__plus {
  transform: rotate(45deg);
  background: rgba(30,79,214,0.2);
  color: var(--text);
}
.faq__panel {
  padding: 0 0.85rem 0.9rem;
  border-top: 1px solid var(--border);
}
.faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.55rem 0;
}
.faq__item:last-of-type { border-bottom: 0; }
.faq__item summary {
  cursor: pointer;
  font-weight: 650;
  color: var(--text);
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::before {
  content: "›";
  display: inline-block;
  margin-right: 0.45rem;
  color: var(--blue-soft);
  transition: transform var(--ease);
}
.faq__item[open] summary::before { transform: rotate(90deg); }
.faq__item p {
  margin: 0.45rem 0 0.15rem 1rem;
  color: var(--faint);
  font-size: 0.9rem;
  line-height: 1.5;
}
.faq__pdf {
  display: inline-flex;
  margin-top: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
}


.goal {
  position: relative;
}
.goal__clip {
  position: relative;
  max-height: 11.5rem;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.goal.is-open .goal__clip {
  max-height: 80rem;
}
.goal__clip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4.5rem;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8,18,28,0), rgba(8,18,28,0.92) 70%, rgba(8,18,28,0.98));
  opacity: 1;
  transition: opacity 0.25s ease;
}
.goal.is-open .goal__clip::after {
  opacity: 0;
}
.goal__body {
  padding: 0;
  color: var(--soft);
  font-size: 0.96rem;
  line-height: 1.65;
}
.goal__lede {
  color: var(--text);
  font-weight: 650;
  font-size: 1.02rem;
  line-height: 1.5;
}
.goal__body p {
  margin: 0 0 0.9rem;
}
.goal__body p:last-child {
  margin-bottom: 0.25rem;
}
.goal__more {
  margin-top: 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font: inherit;
  font-weight: 650;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease);
}
.goal__more:hover {
  background: rgba(30,79,214,0.14);
  border-color: rgba(30,79,214,0.45);
}
.goal__more-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: grid;
  place-items: center;
  border-radius: 5px;
  border: 1px solid var(--border-hi);
  color: var(--blue-soft);
  font-size: 1rem;
  line-height: 1;
  transition: transform var(--ease);
}
.goal.is-open .goal__more-icon {
  transform: rotate(45deg);
}


.status-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}
.status-dot--live {
  background: #3cb86a;
  box-shadow: 0 0 0 3px rgba(60,184,106,0.22);
}
.status-dot--soon {
  background: #f0a202;
  box-shadow: 0 0 0 3px rgba(240,162,2,0.22);
}
.status-dot--off {
  background: #e63946;
  box-shadow: 0 0 0 3px rgba(230,57,70,0.22);
}

.docs {
  display: grid;
  gap: 0.7rem;
  width: 100%;
  max-width: 22rem;
  margin: 0 auto;
  justify-items: stretch;
}
.docs .glass-link,
.docs .faq {
  width: 100%;
  text-align: center;
}
.faq__toggle {
  justify-content: center;
  gap: 0.65rem;
  position: relative;
}
.faq__toggle span:first-child {
  flex: 0 0 auto;
}
.faq__plus {
  position: absolute;
  right: 0.85rem;
}
.faq__panel {
  text-align: left;
}
.faq__pdf {
  display: flex;
  justify-content: center;
  width: 100%;
}
.economy__note {
  text-align: center;
  margin-top: 1.1rem;
}

/* Mobile: fixed bg + backdrop-filter + star animations cause scroll glitches (esp. iOS) */
@media (max-width: 900px), (hover: none) and (pointer: coarse) {
  .page-bg__stars {
    display: none;
  }
  .lang-switch,
  .status-chip,
  .btn--secondary,
  .panel {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(8, 18, 28, 0.92);
  }
  .btn--secondary:hover,
  .lang-switch__btn.is-active {
    background: rgba(30, 79, 214, 0.28);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-bg__stars { display: none; }
}


/* Locked docs */
.docs__note {
  text-align: center;
  margin: 0 0 0.85rem;
  color: var(--faint);
  font-size: 0.92rem;
}
.glass-link--locked {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  opacity: 0.55;
  filter: grayscale(0.4);
  cursor: not-allowed;
  user-select: none;
  color: var(--faint);
  font-weight: 600;
  font: inherit;
  font-weight: 600;
  appearance: none;
  -webkit-appearance: none;
}
.glass-link--locked .doc-lock {
  flex-shrink: 0;
  opacity: 0.85;
  color: var(--faint);
}
.glass-link--locked:hover,
.glass-link--locked:focus-visible {
  transform: none;
  opacity: 0.72;
  filter: grayscale(0.2);
  color: var(--soft);
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.14);
  outline: none;
}
.glass-link--locked:hover .doc-lock,
.glass-link--locked:focus-visible .doc-lock {
  color: #9eb0c2;
}
.docs-toast {
  margin: 0.65rem auto 0;
  max-width: 22rem;
  text-align: center;
  font-size: 0.82rem;
  color: #c9d5e2;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  background: rgba(18, 28, 40, 0.95);
  border: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.docs-toast.is-on {
  opacity: 1;
}

/* Store badges */
.store-row {
  margin-top: 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}
.store-row__label {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}
.store-row__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 9.5rem;
  padding: 0.45rem 0.7rem 0.45rem 0.45rem;
  border-radius: 12px;
  background: rgba(8, 18, 28, 0.55);
  border: 1px solid rgba(255,255,255,0.08);
}
.store-badge img {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  object-fit: cover;
  flex-shrink: 0;
}
.store-badge__web-icon {
  padding: 4px;
  background: rgba(255,255,255,0.06);
  box-sizing: border-box;
}
.store-badge__text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1.2;
}
.store-badge__name {
  font-size: 0.86rem;
  font-weight: 650;
  color: var(--soft);
}
.store-badge__note {
  font-size: 0.72rem;
  color: var(--faint);
}
.store-badge--locked {
  opacity: 0.55;
  filter: grayscale(0.25);
  cursor: not-allowed;
  user-select: none;
}

.glass-link--locked {
  position: relative;
}
.glass-link--locked::after {
  content: attr(title);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.4rem);
  transform: translateX(-50%) translateY(0.15rem);
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #e8eef5;
  background: rgba(12, 20, 30, 0.96);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.35rem 0.55rem;
  border-radius: 7px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 5;
}
.glass-link--locked:hover::after,
.glass-link--locked:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.stores-strip {
  width: min(100% - 1.5rem, var(--w));
  margin: 0.25rem auto 0.35rem;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}
.stores-strip .store-row {
  margin-top: 0;
}

/* Empty screenshot gallery — frames await redesign captures */
.gallery {
  width: min(100% - 1.5rem, var(--w));
  margin: 0.15rem auto 1.35rem;
  padding: 0.25rem 0 0.15rem;
}
.gallery__track {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(0.55rem, 2.2vw, 1.1rem);
  flex-wrap: nowrap;
}
.gallery__frame {
  margin: 0;
  flex: 0 1 auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(160deg, rgba(18, 28, 40, 0.55), rgba(8, 14, 22, 0.35));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
  overflow: hidden;
  position: relative;
}
.gallery__frame--tall {
  width: min(28vw, 9.5rem);
  aspect-ratio: 9 / 16;
  transform: rotate(-1.5deg);
}
.gallery__frame--wide {
  width: min(42vw, 15.5rem);
  aspect-ratio: 16 / 10;
  transform: rotate(0.6deg);
  border-radius: 12px;
}
.gallery__frame:last-child {
  transform: rotate(1.8deg);
}
.gallery__slot {
  display: block;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(30, 79, 214, 0.07), transparent 55%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 7px,
      rgba(255,255,255,0.015) 7px,
      rgba(255,255,255,0.015) 8px
    );
}
.gallery__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 560px) {
  .gallery__track { gap: 0.4rem; }
  .gallery__frame--tall { width: 26vw; }
  .gallery__frame--wide { width: 38vw; }
}

.gallery__open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  appearance: none;
  -webkit-appearance: none;
}
.gallery__open:focus-visible {
  outline: 2px solid rgba(30, 79, 214, 0.85);
  outline-offset: 2px;
}
.gallery__open img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox[hidden] { display: none !important; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(4, 10, 16, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: zoom-out;
}
.lightbox__dialog {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 720px);
  max-height: min(88vh, 920px);
  margin: 0;
}
.lightbox__img {
  display: block;
  max-width: min(92vw, 720px);
  max-height: min(88vh, 920px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  background: #0a121a;
}
.lightbox__close {
  position: absolute;
  top: -0.55rem;
  right: -0.55rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(12, 20, 30, 0.92);
  color: #e8eef5;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox__close:hover {
  background: rgba(30, 79, 214, 0.45);
}
@media (max-width: 900px), (hover: none) and (pointer: coarse) {
  .lightbox__backdrop {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(4, 10, 16, 0.84);
  }
}

.currency-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: stretch;
}
.currency-grid--3 .currency-card {
  min-height: 100%;
  padding: 1rem 0.95rem;
}
.currency-grid--3 .currency-card__body h3 {
  font-size: 1.05rem;
  line-height: 1.25;
  margin: 0 0 0.25rem;
}
.currency-grid--3 .currency-card__body p {
  font-size: 0.9rem;
  line-height: 1.45;
}
.currency-grid--3 .currency-card__tag {
  margin-bottom: 0.45rem;
}
@media (max-width: 900px) {
  .currency-grid--3 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* Liveboard readability with denser lists */
.liveboard {
  gap: 1rem;
}
.liveboard__list {
  gap: 0.45rem;
}
.live-item {
  padding: 0.55rem 0.65rem;
  gap: 0.55rem;
}
.live-item__name {
  font-size: 0.95rem;
  line-height: 1.3;
}
.live-item__note {
  font-size: 0.78rem;
  line-height: 1.35;
  margin-top: 0.1rem;
}
.economy__note {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  font-size: 0.92rem;
}
.panel {
  margin-bottom: 0.15rem;
}
.how-list strong {
  line-height: 1.3;
}
.how-list p {
  line-height: 1.45;
}


.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.1rem;
}
.site-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease, color 0.15s ease;
}
.site-footer__social:hover,
.site-footer__social:focus-visible {
  color: #fff;
  background: rgba(30, 79, 214, 0.35);
  border-color: rgba(143, 176, 255, 0.35);
  transform: translateY(-1px);
  outline: none;
}
.site-footer__social .social-icon {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
}
.site-footer__contact {
  margin-left: 0.15rem;
}
