/* ===================== TOKENS ===================== */
:root {
  --bg-deep: #171a21;   /* top nav, footer, deepest */
  --bg: #1b2838;        /* main page background */
  --panel: #16202d;     /* raised panel */
  --panel-2: #2a475e;   /* lighter header strip */
  --panel-3: #1b2838;
  --panel-hi: #223449;  /* hovered / brighter panel */

  --text: #c7d5e0;
  --text-bright: #ffffff;
  --muted: #8f98a0;

  --blue: #66c0f4;
  --blue-deep: #2a475e;

  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  /* Steam signature gradients (intentional two-tone) */
  --green: linear-gradient(90deg, #75b022 0%, #588a1b 100%);
  --green-hover: linear-gradient(90deg, #8ed629 0%, #6aa621 100%);
  --green-ink: #d2e885;
  --blue-grad: linear-gradient(90deg, #06bfff 0%, #2d73ff 100%);

  --r-btn: 2px;
  --r-panel: 4px;
  --r-input: 3px;

  --maxw: 1200px;
  --pad: clamp(1rem, 4vw, 2rem);

  --hi-inset: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  --shadow-1: var(--hi-inset), 0 2px 6px rgba(0, 0, 0, 0.35);
  --shadow-2: var(--hi-inset), 0 10px 28px rgba(0, 0, 0, 0.5);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ===================== RESET / BASE ===================== */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(1200px 620px at 50% -8%, rgba(41, 74, 94, 0.55), transparent 60%),
    linear-gradient(180deg, #1b2838 0%, #171a21 100%);
  background-color: var(--bg);
  background-attachment: fixed;
  font-family: "Fira Sans", Arial, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Fira Sans", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.14;
  margin: 0;
  color: var(--text-bright);
}

p { margin: 0; }

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

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

ul, ol { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  background: var(--blue);
  color: #0b1720;
  padding: 10px 16px;
  border-radius: var(--r-btn);
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ===================== BUTTONS / LINKS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: var(--r-btn);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  white-space: nowrap;
  padding: 0.8rem 1.5rem;
  color: var(--green-ink);
  background: var(--green);
  transition: transform 0.1s var(--ease), filter 0.16s var(--ease),
    background 0.16s var(--ease), color 0.16s var(--ease);
}
.btn--primary {
  background: var(--green);
  color: var(--green-ink);
  box-shadow: var(--hi-inset), 0 2px 8px rgba(0, 0, 0, 0.35);
}
.btn--primary:hover {
  background: var(--green-hover);
  color: var(--text-bright);
}
.btn--primary:active { transform: translateY(1px); }

.btn--secondary {
  background: var(--blue-grad);
  color: var(--text-bright);
}
.btn--secondary:hover { filter: brightness(1.1); }
.btn--secondary:active { transform: translateY(1px); }

.btn--sm { padding: 0.55rem 1.15rem; font-size: 0.9rem; }
.btn--lg { padding: 0.95rem 1.9rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

.link-underline {
  color: var(--blue);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.16s var(--ease);
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.24s var(--ease);
}
.link-underline:hover { color: var(--text-bright); }
.link-underline:hover::after { transform: scaleX(1); }

/* ===================== NAV ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 66px;
  display: flex;
  align-items: center;
  background: var(--bg-deep);
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Fira Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--text-bright);
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 3px;
  color: var(--blue);
  background: linear-gradient(180deg, #24384c 0%, #182635 100%);
  border: 1px solid rgba(102, 192, 244, 0.35);
  box-shadow: var(--hi-inset);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-left: auto;
  margin-right: 1.4rem;
}
.nav__links a {
  color: #b8c6d4;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.16s var(--ease);
}
.nav__links a:hover { color: var(--text-bright); }
.nav__actions { display: flex; align-items: center; gap: 0.75rem; }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 3px;
}
.nav__burger span {
  display: block;
  height: 2px;
  width: 18px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.24s var(--ease), opacity 0.18s var(--ease);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile[hidden] { display: none; }
.nav__mobile {
  position: absolute;
  top: 66px; left: 0; right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem var(--pad) 1.4rem;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-2);
  animation: dropIn 0.24s var(--ease);
}
.nav__mobile a:not(.btn) {
  padding: 0.85rem 0.5rem;
  color: var(--text);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  border-bottom: 1px solid var(--border);
}
.nav__mobile .btn { margin-top: 0.7rem; }
@keyframes dropIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ===================== SUBNAV (Steam store tabs) ===================== */
.subnav {
  position: sticky;
  top: 66px;
  z-index: 40;
  background: linear-gradient(180deg, #2a3f55 0%, #1b2838 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.45);
  box-shadow: var(--hi-inset), 0 2px 6px rgba(0, 0, 0, 0.3);
}
.subnav__inner { display: flex; align-items: stretch; gap: 0; overflow-x: auto; scrollbar-width: none; }
.subnav__inner::-webkit-scrollbar { display: none; }
.subnav__item {
  padding: 0.8rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #c7d5e0;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.16s var(--ease), background 0.16s var(--ease), border-color 0.16s var(--ease);
}
.subnav__item:hover { color: #fff; background: rgba(255, 255, 255, 0.05); }
.subnav__item.is-active {
  color: #fff;
  background: linear-gradient(180deg, rgba(102, 192, 244, 0.16), rgba(102, 192, 244, 0.01));
  border-bottom-color: var(--blue);
}

/* Wallet chip in the top bar */
.wallet-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.15;
  padding: 0.32rem 0.72rem;
  border-radius: var(--r-btn);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--border);
}
.wallet-chip__label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); }
.wallet-chip__value { font-size: 0.94rem; font-weight: 600; color: var(--blue); font-variant-numeric: tabular-nums; }

/* ===================== WALLET / ADD FUNDS ===================== */
.wallet {
  position: relative;
  min-height: calc(100dvh - 66px);
  padding-top: clamp(1.6rem, 3.5vw, 2.8rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.wallet__crumbs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.3rem;
}
.wallet__crumbs a { color: var(--blue); }
.wallet__crumbs a:hover { color: #fff; }
.wallet__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(1.5rem, 3vw, 2.6rem);
  align-items: start;
}
.wallet__title {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 700;
  color: var(--text-bright);
}
.wallet__lead {
  margin-top: 0.7rem;
  max-width: 54ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
}

/* Amount options (Steam add-funds rows) */
.fund { margin-top: 1.5rem; }
.fund__list { display: grid; gap: 0.55rem; }
.fund__opt {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  text-align: left;
  padding: 0.9rem 1.1rem;
  background: linear-gradient(180deg, #1a2a3a 0%, #16202d 100%);
  border: 1px solid rgba(0, 0, 0, 0.45);
  border-left: 3px solid transparent;
  border-radius: var(--r-panel);
  box-shadow: var(--hi-inset);
  color: var(--text);
  transition: border-color 0.14s var(--ease), background 0.14s var(--ease), transform 0.06s var(--ease);
}
.fund__opt:hover {
  background: linear-gradient(180deg, #203247 0%, #1a2735 100%);
  border-left-color: rgba(102, 192, 244, 0.55);
}
.fund__opt:active { transform: translateY(1px); }
.fund__opt.is-selected {
  border-color: rgba(102, 192, 244, 0.5);
  border-left-color: var(--blue);
  background: linear-gradient(180deg, #1e3247 0%, #182a3c 100%);
  box-shadow: var(--hi-inset), 0 0 0 1px rgba(102, 192, 244, 0.22);
}
.fund__amount {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text-bright);
  font-variant-numeric: tabular-nums;
}
.fund__credit { color: var(--muted); font-size: 0.88rem; margin-left: auto; }
.fund__pick {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  flex: none;
}
.fund__opt.is-selected .fund__pick {
  border-color: var(--blue);
  background: radial-gradient(circle at center, var(--blue) 0 40%, transparent 46%);
}
.fund__custom { margin-top: 1.1rem; display: flex; flex-direction: column; gap: 0.5rem; }

/* Custom amount field (reuses .field* styles) */
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.field__box {
  position: relative;
  display: flex;
  align-items: center;
}
.field__input {
  width: 100%;
  background: #0e1620;
  border: 1px solid rgba(0, 0, 0, 0.6);
  border-radius: var(--r-input);
  color: var(--text-bright);
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0.85rem 2.6rem 0.85rem 0.95rem;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.6);
  transition: border-color 0.16s var(--ease), box-shadow 0.16s var(--ease);
}
.field__input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.6), 0 0 0 3px rgba(102, 192, 244, 0.25);
}
.field__input::placeholder { color: var(--muted); }
.field__suffix {
  position: absolute;
  right: 1rem;
  color: var(--muted);
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  pointer-events: none;
}
.field__hint { font-size: 0.82rem; color: var(--muted); }

/* Summary + buy button */
.fund__summary {
  margin-top: 1.2rem;
  padding: 0.9rem 1.1rem;
  background: var(--panel);
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: var(--r-panel);
  box-shadow: var(--hi-inset);
  display: grid;
  gap: 0.5rem;
}
.fund__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.fund__row span:last-child { color: var(--text); font-weight: 600; }
.fund__row--total {
  border-top: 1px solid var(--border);
  padding-top: 0.6rem;
  margin-top: 0.15rem;
}
.fund__row--total span:first-child { color: var(--text); }
.fund__total {
  color: #a4d007 !important;
  font-size: 1.35rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.btn--buy {
  margin-top: 1.05rem;
  font-size: 1.05rem;
  padding-block: 0.95rem;
}
.fund__note { margin-top: 0.55rem; font-size: 0.86rem; color: var(--blue); min-height: 1rem; }
.fund__secure {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
}
.fund__secure svg { flex: none; margin-top: 2px; color: #8f98a0; }

/* Account side panel */
.wallet__side { position: sticky; top: 130px; }
.account {
  background: var(--panel);
  border: 1px solid rgba(0, 0, 0, 0.45);
  border-radius: var(--r-panel);
  box-shadow: var(--hi-inset), 0 8px 24px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.account__head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.05rem 1.2rem;
  background: linear-gradient(180deg, #2a475e 0%, #22394d 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  box-shadow: var(--hi-inset);
}
.account__avatar {
  width: 42px;
  height: 42px;
  border-radius: 3px;
  flex: none;
  background: linear-gradient(135deg, #4b6b88, #2a3f55);
  border: 1px solid rgba(102, 192, 244, 0.4);
}
.account__who { display: flex; flex-direction: column; }
.account__label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.07em; color: #a7c0d4; }
.account__name { font-weight: 600; color: #fff; }
.account__balance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.05rem 1.2rem;
  border-bottom: 1px solid var(--border);
}
.account__balance span { color: var(--muted); font-size: 0.9rem; }
.account__balance strong { font-size: 1.3rem; color: var(--text-bright); font-variant-numeric: tabular-nums; }
.account__facts { padding: 1rem 1.2rem; display: grid; gap: 0.65rem; }
.account__facts li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.9rem;
  color: var(--text);
}
.account__facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--blue);
  transform: rotate(45deg);
}

/* ===================== TRUST STRIP ===================== */
.trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  background: var(--panel);
  box-shadow: var(--hi-inset);
  padding-block: 1.5rem;
}
.trust__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
}
.trust__stat {
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 600;
  color: var(--text-bright);
}
.trust__num { color: var(--blue); font-variant-numeric: tabular-nums; }
.pay {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}
.pay__icon {
  width: 52px; height: 34px;
  background-color: var(--muted);
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
  transition: background-color 0.18s var(--ease), transform 0.18s var(--ease);
}
.pay__icon:hover { background-color: var(--blue); transform: translateY(-2px); }
.pay__mir {
  font-family: "Fira Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color 0.18s var(--ease), transform 0.18s var(--ease);
}
.pay__mir:hover { color: var(--blue); transform: translateY(-2px); }

/* ===================== SECTION HEADS ===================== */
.section-head { max-width: 52ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  color: var(--text-bright);
}
.section-lead { margin-top: 0.9rem; color: var(--muted); font-size: 1.05rem; }

.how, .features, .reviews, .faq { padding-block: clamp(3.5rem, 7vw, 6rem); }

/* ===================== HOW / STEPS ===================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  position: relative;
}
.steps__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.steps__num {
  flex: none;
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--blue);
  min-width: 1.5ch;
  letter-spacing: -0.02em;
}
.steps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(1.5ch + 1.5rem);
  top: 1.1rem;
  right: calc(-1 * clamp(1.5rem, 4vw, 3.5rem) + 0.5rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(102, 192, 244, 0.35), rgba(102, 192, 244, 0.04));
}
.steps__body { padding-top: 0.1rem; }
.steps__label { font-size: 1.12rem; color: var(--text-bright); }
.steps__text { margin-top: 0.4rem; color: var(--muted); font-size: 0.95rem; line-height: 1.5; max-width: 32ch; }

/* ===================== FEATURES / PERKS ===================== */
.perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.perk {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.16s var(--ease);
}
.perk:hover { background: rgba(255, 255, 255, 0.02); }
.perk__ico {
  flex: none;
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 3px;
  color: var(--blue);
  background: linear-gradient(180deg, #22384c 0%, #172532 100%);
  border: 1px solid rgba(102, 192, 244, 0.22);
  box-shadow: var(--hi-inset);
}
.perk__label { font-size: 1.05rem; color: var(--text-bright); }
.perk__text { margin-top: 0.35rem; color: var(--muted); font-size: 0.93rem; line-height: 1.5; }

/* ===================== REVIEWS (Steam review boxes) ===================== */
.reviewgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}
.review {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-panel);
  background: var(--panel);
  border: 1px solid rgba(0, 0, 0, 0.4);
  box-shadow: var(--shadow-1);
  overflow: hidden;
}
.review__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1.1rem;
  background: linear-gradient(180deg, #223449 0%, #1a2938 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  box-shadow: var(--hi-inset);
}
.review__rec {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-bright);
}
.review__rec svg { color: var(--blue); }
.review__hrs { font-size: 0.78rem; color: var(--muted); font-variant-numeric: tabular-nums; white-space: nowrap; }
.review__text {
  padding: 1.1rem 1.2rem 1.25rem;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
  flex: 1;
}
.review__user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.2rem;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.16);
}
.review__ava {
  width: 40px; height: 40px;
  border-radius: 3px;
  object-fit: cover;
  border: 1px solid var(--border-strong);
}
.review__who { display: flex; flex-direction: column; }
.review__name { font-weight: 600; font-size: 0.94rem; color: var(--blue); }
.review__meta { font-size: 0.8rem; color: var(--muted); }

/* ===================== FAQ ===================== */
.faq__grid { display: block; max-width: 840px; margin-inline: auto; }
.faq__aside { margin-bottom: clamp(1.6rem, 3vw, 2.2rem); }
.faq__list {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: var(--r-panel);
  background: var(--panel);
  box-shadow: var(--shadow-1);
  overflow: hidden;
}
.acc {
  border-bottom: 1px solid var(--border);
  background: transparent;
  transition: background 0.18s var(--ease);
}
.acc:last-child { border-bottom: 0; }
.acc:hover { background: rgba(255, 255, 255, 0.03); }
.acc__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--text-bright);
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  padding: 1.15rem 1.4rem;
}
.acc__icon {
  position: relative;
  flex: 0 0 auto;
  width: 20px; height: 20px;
}
.acc__icon::before, .acc__icon::after {
  content: "";
  position: absolute;
  background: var(--blue);
  border-radius: 2px;
  transition: transform 0.24s var(--ease), opacity 0.2s var(--ease);
}
.acc__icon::before { top: 9px; left: 2px; width: 16px; height: 2px; }
.acc__icon::after { left: 9px; top: 2px; width: 2px; height: 16px; }
.acc__head[aria-expanded="true"] .acc__icon::after { transform: scaleY(0); opacity: 0; }
.acc__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.32s var(--ease);
}
.acc__body p {
  padding: 0 1.4rem 1.3rem;
  color: var(--muted);
  font-size: 0.98rem;
}

/* ===================== FINAL CTA ===================== */
.cta { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.cta__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  flex-wrap: wrap;
  padding: clamp(1.6rem, 4vw, 2.4rem) clamp(1.5rem, 4vw, 2.6rem);
  border-radius: var(--r-panel);
  background: linear-gradient(180deg, #223449 0%, #16202d 100%);
  border: 1px solid var(--border-strong);
  border-left: 3px solid #7cb020;
  box-shadow: var(--shadow-1);
}
.cta__copy { max-width: 48ch; }
.cta__title { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--text-bright); }
.cta__sub {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 1rem;
}

/* ===================== FOOTER ===================== */
.footer {
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  box-shadow: var(--hi-inset);
  background: var(--bg-deep);
  padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.8rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid var(--border);
}
.footer .brand__mark { width: 30px; height: 30px; }
.footer__tag {
  margin-top: 1rem;
  max-width: 34ch;
  color: var(--muted);
  font-size: 0.95rem;
}
.footer__col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__head {
  font-family: "Fira Sans", Arial, sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.footer__col a { color: #b8c6d4; font-size: 0.95rem; transition: color 0.16s var(--ease); }
.footer__col a:hover { color: var(--blue); }
.footer__muted { color: var(--muted); font-size: 0.9rem; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.6rem;
  color: var(--muted);
  font-size: 0.85rem;
}
.footer__req {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
  opacity: 0.8;
}
.footer__req p { font-variant-numeric: tabular-nums; }

/* ===================== DOC PAGE (оферта и т.п.) ===================== */
.doc { padding-block: clamp(2rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem); }
.doc__inner { max-width: 840px; }
.doc__crumbs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.doc__crumbs a { color: var(--blue); }
.doc__crumbs a:hover { color: var(--text-bright); }
.doc__title {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  color: var(--text-bright);
}
.doc__meta { margin-top: 0.5rem; font-size: 0.88rem; color: var(--muted); }
.doc__lead {
  margin-top: 1.6rem;
  padding: 1.1rem 1.2rem;
  background: var(--panel);
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-left: 3px solid var(--blue);
  border-radius: var(--r-panel);
  box-shadow: var(--hi-inset);
}
.doc__lead p { color: var(--text); font-size: 0.98rem; line-height: 1.6; }
.doc__section { margin-top: clamp(1.8rem, 3vw, 2.4rem); }
.doc__section h2 {
  font-size: 1.12rem;
  color: var(--text-bright);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.9rem;
}
.doc__section p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0.55rem;
}
.doc__section strong { color: var(--text-bright); font-weight: 600; }
.doc__section--req {
  padding: 1.2rem 1.3rem;
  background: var(--panel);
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: var(--r-panel);
  box-shadow: var(--hi-inset);
}
.doc__section--req h2 { border-bottom-color: var(--border-strong); }
.doc__section--req p { font-variant-numeric: tabular-nums; margin-bottom: 0.3rem; }
.doc__back { margin-top: 2.4rem; }

/* ===================== SCROLL REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 960px) {
  .wallet__grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .wallet { min-height: auto; padding-top: 2rem; padding-bottom: 3.5rem; }
  .wallet__side { position: static; order: -1; }
  .faq__grid { grid-template-columns: 1fr; }
  .faq__aside { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .subnav { display: none; }
  .wallet-chip { display: none; }
  .nav__actions .btn--sm { display: none; }
  .nav__burger { display: flex; }

  .steps { grid-template-columns: 1fr; gap: 1.3rem; }
  .steps__item:not(:last-child)::after { display: none; }

  .perks { grid-template-columns: 1fr; }

  .reviewgrid { grid-template-columns: 1fr; }

  .trust__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  :root { --pad: 1rem; }
  .fund__opt { padding: 0.8rem 0.9rem; gap: 0.6rem; }
  .fund__amount { font-size: 1.1rem; }
  .btn--lg, .btn--buy { width: 100%; }
  .pay { gap: 1.4rem; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* ===================== REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
