:root {
  --bg: #08111b;
  --bg-2: #101a28;
  --panel: rgba(15, 24, 38, 0.88);
  --panel-2: rgba(19, 32, 48, 0.94);
  --band: #edf4ff;
  --band-2: #f8fbff;
  --txt: #dce6f2;
  --txt-d: #9eb2c8;
  --txt-dd: #7287a0;
  --line: #223548;
  --line-2: #4d6984;
  --acc: #5f8cff;
  --acc-2: #59d0c2;
  --acc-3: #f3b66d;
  --acc-soft: rgba(89, 208, 194, 0.12);
  --ok: #69d8b5;
  --shadow: 0 28px 64px rgba(3, 10, 18, 0.36);
  --r: 18px;
  --r-s: 10px;
  --sans: "Instrument Sans", "Segoe UI", Arial, sans-serif;
  --heading: "Syne", "Segoe UI", Arial, sans-serif;
  --mono: "Space Mono", "Consolas", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--txt);
  font: 16px/1.68 var(--sans);
  background:
    radial-gradient(1100px 520px at 100% -10%, rgba(95, 140, 255, 0.18) 0%, transparent 58%),
    radial-gradient(820px 420px at 0% 0%, rgba(89, 208, 194, 0.13) 0%, transparent 54%),
    linear-gradient(180deg, #08111b 0%, #0c1623 52%, #101d2e 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(123, 152, 183, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 152, 183, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 20% 20%, rgba(89, 208, 194, 0.08), transparent 34%);
  background-size: 32px 32px, 32px 32px, auto;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 86%);
  z-index: -1;
}

a { color: var(--acc); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; height: auto; }

.skip {
  position: absolute;
  top: -44px;
  left: 12px;
  padding: 8px 14px;
  background: var(--acc-2);
  color: #07131e;
  border-radius: 999px;
  z-index: 100;
  font-weight: 700;
}
.skip:focus { top: 10px; }

.bar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 22px;
  background: rgba(8, 17, 27, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.logo:hover { text-decoration: none; }
.logo__svg {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(95, 140, 255, 0.24);
}
.logo__t {
  display: block;
  font: 800 28px/1 var(--heading);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.logo__sub {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.7);
  font: 600 10px/1.2 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
  flex-wrap: wrap;
}
.nav a {
  color: rgba(255, 255, 255, 0.8);
  font: 700 13px/1 var(--heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.nav a:hover {
  color: #fff;
  border-color: var(--acc);
  text-decoration: none;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.cta:hover {
  text-decoration: none;
  transform: translateY(-1px);
}
.cta--small {
  padding: 14px 24px;
  font-size: 15px;
  background: var(--bg-2);
  border-color: var(--line);
  color: var(--txt);
  box-shadow: none;
}
.cta--big {
  padding: 20px 36px;
  font-size: 19px;
}
.cta--hot {
  background: linear-gradient(120deg, var(--acc) 0%, var(--acc-2) 100%);
  color: #051327;
  box-shadow: 0 18px 36px rgba(95, 140, 255, 0.28);
}
.cta--ghost {
  border-color: var(--line);
  color: var(--txt);
  background: rgba(255, 255, 255, 0.02);
}
.cta--ghost:hover {
  border-color: var(--acc);
  color: var(--acc);
}

main, section, .metr { max-width: 1240px; margin: 0 auto; }
section { padding: 50px 22px; }
.hero {
  margin: 28px 22px 0;
  padding: 38px 34px 34px;
  max-width: none;
  border-radius: calc(var(--r) + 2px);
  background:
    radial-gradient(560px 280px at 100% 0%, rgba(95, 140, 255, 0.2), transparent 60%),
    radial-gradient(620px 320px at 0% 100%, rgba(89, 208, 194, 0.16), transparent 62%),
    linear-gradient(145deg, #0c1624 0%, #132033 56%, #1b2c42 100%);
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(7, 13, 21, 0.34);
}
.hero__chip,
.ovrline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 6px;
  background: rgba(95, 140, 255, 0.09);
  border: 1px solid rgba(95, 140, 255, 0.28);
  color: var(--acc-2);
  font: 600 11px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero__chip::before,
.ovrline::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acc);
  box-shadow: 0 0 0 4px rgba(95, 140, 255, 0.16);
}
h1, h2, h3, h4 {
  margin: 0 0 14px;
  color: var(--band-2);
  font-family: var(--heading);
  letter-spacing: 0.01em;
}
h1 {
  margin-top: 20px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.98;
  text-transform: uppercase;
}
h2 {
  margin-top: 16px;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.05;
  text-transform: uppercase;
}
h3 {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.2;
  text-transform: uppercase;
}
h4 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
p { margin: 0 0 14px; }
.lead, .hero__sub, .subs .lead, .brand .lead, .reviews .lead, .rtp .lead {
  max-width: 920px;
  color: var(--txt-d);
}
.hero h1,
.hero .hero__sub { color: #fff; }
.hero__sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
}
.hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.herobox {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(8px);
}
.herobox:hover {
  text-decoration: none;
  transform: translateY(-1px);
  border-color: rgba(95, 140, 255, 0.45);
}
.herobox__k {
  color: var(--acc);
  font: 700 13px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.herobox__t {
  font: 800 18px/1 var(--heading);
  text-transform: uppercase;
}
.herobox__d {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.5;
}

.qstat,
.metr,
.login,
.welcome__grid,
.subs__grid,
.grid,
.st3,
.loy__grid,
.rev__grid,
.foot__cols {
  display: grid;
  gap: 16px;
}
.qstat { grid-template-columns: repeat(4, 1fr); padding: 18px 22px 0; }
.metr { grid-template-columns: repeat(5, 1fr); padding: 18px 22px 0; }
.login { grid-template-columns: repeat(3, 1fr); margin-top: 20px; }
.welcome__grid { grid-template-columns: repeat(3, 1fr); margin-top: 18px; }
.subs__grid,
.st3 { grid-template-columns: repeat(3, 1fr); margin-top: 18px; }
.grid.g4 { grid-template-columns: repeat(4, 1fr); }
.grid.g3,
.livegrid { grid-template-columns: repeat(3, 1fr); }
.loy__grid,
.rev__grid { grid-template-columns: repeat(2, 1fr); margin-top: 20px; }
.foot__cols { grid-template-columns: repeat(3, 1fr); }

.qs,
.metr__cell,
.lgc,
.wbox,
.subs__box,
.card,
.lvbox,
.st3__box,
.lbox,
.rbox,
details,
.rtp__wrap,
.foot__brand,
.foot__col,
.welcome,
.tour,
.final,
.author,
.brand {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.qs::after,
.metr__cell::after,
.lgc::after,
.wbox::after,
.subs__box::after,
.card::after,
.lvbox::after,
.st3__box::after,
.lbox::after,
.rbox::after,
details::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--acc-2), var(--acc));
  opacity: 0.9;
}

.qs,
.lgc,
.subs__box,
.card,
.lvbox,
.st3__box,
.lbox,
.rbox,
.foot__brand,
.foot__col {
  padding: 22px;
}
.metr__cell {
  padding: 18px 20px;
  overflow: hidden;
}
.wbox {
  padding: 22px;
  overflow: hidden;
}
.welcome,
.tour,
.final,
.author,
.brand {
  padding: 36px 30px;
  margin: 36px 22px;
  max-width: none;
}
.welcome {
  background:
    radial-gradient(560px 240px at 100% 0%, rgba(95, 140, 255, 0.12), transparent 58%),
    linear-gradient(180deg, rgba(14, 23, 36, 0.96), rgba(17, 28, 43, 0.94));
}
.tour {
  background:
    radial-gradient(560px 280px at 0% 0%, rgba(89, 208, 194, 0.1), transparent 62%),
    linear-gradient(180deg, rgba(14, 23, 36, 0.96), rgba(17, 28, 43, 0.94));
}
.brand {
  background:
    radial-gradient(520px 240px at 100% 0%, rgba(95, 140, 255, 0.11), transparent 60%),
    linear-gradient(180deg, rgba(14, 23, 36, 0.96), rgba(17, 28, 43, 0.94));
  margin-top: 38px;
}
.author {
  background:
    linear-gradient(180deg, rgba(14, 23, 36, 0.96), rgba(17, 28, 43, 0.94));
}
.final {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(10, 18, 28, 0.98), rgba(14, 24, 38, 0.96));
}
.final h2,
.final p { color: #fff; }
.final p {
  max-width: 720px;
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.76);
}

.qs__k,
.metr__num,
.tour__kpi span:first-child,
.st3__n,
.ladder__lvl,
.rbox__a {
  font-family: var(--mono);
}
.qs__k {
  color: var(--band);
  font-size: 24px;
  font-weight: 700;
}
.qs__t {
  color: var(--acc);
  font: 800 14px/1 var(--heading);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.qs__d {
  margin-top: 8px;
  color: var(--txt-d);
  font-size: 14px;
}

.metr__cell::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--acc-2) 0%, var(--acc) 100%);
}
.metr__num {
  display: block;
  margin-bottom: 8px;
  color: var(--band);
  font-size: 22px;
  font-weight: 700;
}
.metr__lbl {
  color: var(--txt-d);
  font-size: 13px;
  line-height: 1.5;
}

.reglist {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 10px;
}
.reglist li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(89, 208, 194, 0.05);
  border: 1px solid rgba(89, 208, 194, 0.16);
}
.reglist__k {
  display: inline-block;
  min-width: 96px;
  color: var(--acc);
  font: 700 12px/1.2 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wbox__step {
  color: var(--acc-2);
  font: 700 11px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.wbox__pct {
  margin-top: 14px;
  color: var(--band);
  font: 800 30px/1 var(--heading);
}
.wbox__title {
  margin-top: 10px;
  font: 800 20px/1.16 var(--heading);
  text-transform: uppercase;
}
.wbox__sub {
  margin-top: 12px;
  color: var(--txt-d);
  font-size: 14px;
}

.subs__box h3,
.st3__box h3,
.lbox__h,
.prov__title {
  margin-bottom: 10px;
}

.card,
.lvbox {
  overflow: hidden;
  padding: 0;
}
.card__cover,
.lvbox__cover {
  display: flex;
  align-items: flex-end;
  min-height: 130px;
  padding: 18px;
  color: #fff;
  font: 800 20px/1 var(--heading);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background:
    linear-gradient(135deg, rgba(7, 13, 22, 0.22), rgba(7, 13, 22, 0.04)),
    linear-gradient(120deg, #122033 0%, #274564 56%, var(--acc-2) 100%);
}
.card:nth-child(4n + 2) .card__cover,
.lvbox:nth-child(4n + 2) .lvbox__cover {
  background:
    linear-gradient(135deg, rgba(7, 13, 22, 0.22), rgba(7, 13, 22, 0.04)),
    linear-gradient(120deg, #17304c 0%, var(--acc) 52%, #8db1ff 100%);
}
.card:nth-child(4n + 3) .card__cover,
.lvbox:nth-child(4n + 3) .lvbox__cover {
  background:
    linear-gradient(135deg, rgba(7, 13, 22, 0.22), rgba(7, 13, 22, 0.04)),
    linear-gradient(120deg, #0e1927 0%, #223d59 58%, var(--acc) 100%);
}
.card:nth-child(4n) .card__cover,
.lvbox:nth-child(4n) .lvbox__cover {
  background:
    linear-gradient(135deg, rgba(7, 13, 22, 0.22), rgba(7, 13, 22, 0.04)),
    linear-gradient(120deg, #163040 0%, var(--acc-2) 56%, #30567a 100%);
}
.card h3,
.card p,
.card__btn,
.lvbox h3,
.lvbox p { margin-left: 18px; margin-right: 18px; }
.card h3,
.lvbox h3 { margin-top: 18px; }
.card p,
.lvbox p {
  color: var(--txt-d);
  font-size: 14px;
}
.card__btn {
  margin-bottom: 18px;
  display: inline-flex;
  padding: 13px 18px;
  border-radius: 8px;
  background: rgba(95, 140, 255, 0.1);
  color: var(--acc);
  font: 700 15px/1 var(--heading);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.card__btn:hover {
  text-decoration: none;
  background: rgba(95, 140, 255, 0.16);
}

.prov {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: var(--r-s);
  background: var(--panel-2);
  border: 1px solid rgba(95, 140, 255, 0.16);
}
.prov__title {
  color: var(--band);
  font: 800 16px/1.2 var(--heading);
  text-transform: uppercase;
}
.prov__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.prov__list span,
.bdg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(95, 140, 255, 0.08);
  border: 1px solid rgba(95, 140, 255, 0.16);
  color: var(--band);
  font: 600 12px/1.1 var(--mono);
}

.st3__box { padding-top: 56px; }
.st3__n {
  position: absolute;
  top: 18px;
  left: 22px;
  color: var(--acc);
  font-size: 18px;
  font-weight: 700;
}

.ladder {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.ladder__step {
  padding: 16px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(89, 208, 194, 0.06), rgba(16, 26, 40, 0.98));
  border: 1px solid rgba(89, 208, 194, 0.14);
  text-align: center;
}
.ladder__lvl {
  display: block;
  color: var(--acc-2);
  font-size: 12px;
  margin-bottom: 8px;
}
.ladder__name {
  display: block;
  color: var(--band);
  font: 800 18px/1.1 var(--heading);
  text-transform: uppercase;
}
.ladder__cb {
  display: block;
  margin-top: 10px;
  color: var(--txt-d);
  font-size: 13px;
}

.tour__kpi {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.tour__kpi div {
  position: relative;
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(14, 24, 37, 0.92);
  border: 1px solid var(--line);
}
.tour__kpi div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, var(--acc-2), var(--acc));
}
.tour__kpi span:first-child {
  display: block;
  color: var(--band);
  font-size: 26px;
  font-weight: 700;
}
.tour__kpi .k {
  display: block;
  margin-top: 8px;
  color: var(--acc);
  font: 800 13px/1.2 var(--heading);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tour__kpi i {
  display: block;
  margin-top: 8px;
  color: var(--txt-dd);
  font-style: normal;
  font-size: 13px;
}
.tour__btns { margin-top: 22px; }

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.rtp__wrap {
  padding: 10px;
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}
th, td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
th {
  color: var(--txt-dd);
  font: 700 12px/1.1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
tbody tr:nth-child(odd) { background: rgba(98, 182, 178, 0.05); }
tbody tr:nth-child(odd) { background: rgba(89, 208, 194, 0.04); }
.rtp__name {
  color: var(--band);
  font-weight: 700;
}
.rtp__val {
  color: var(--ok);
  font-weight: 700;
}
.rtp__note {
  margin-top: 16px;
  color: var(--txt-d);
}

.rbox__stars {
  color: var(--acc-2);
  font: 700 14px/1 var(--mono);
  letter-spacing: 0.18em;
}
.rbox__stars--four { color: var(--acc-2); }
.star-off { color: #5d728a; }
.rbox__q {
  margin-top: 14px;
  color: var(--txt);
}
.rbox__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--txt-d);
  font-size: 14px;
}
.rbox__a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(95, 140, 255, 0.14);
  color: var(--acc);
  font-size: 13px;
}

.faq { margin-top: 18px; }
details {
  padding: 18px 20px;
  margin-bottom: 12px;
}
summary {
  list-style: none;
  cursor: pointer;
  padding-right: 34px;
  color: var(--band);
  font: 800 18px/1.22 var(--heading);
  text-transform: uppercase;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 17px;
  color: var(--acc);
  font: 700 22px/1 var(--mono);
}
details[open] summary::after { content: "–"; }
details p {
  margin-top: 14px;
  color: var(--txt-d);
}

.foot {
  margin-top: 44px;
  background: linear-gradient(180deg, #0d1826 0%, #122033 100%);
  border-top: 1px solid var(--line);
}
.foot__top {
  max-width: 1240px;
  margin: 0 auto;
  padding: 34px 22px 22px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
}
.foot__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.foot__brandname {
  color: var(--band);
  font: 800 26px/1 var(--heading);
  text-transform: uppercase;
}
.foot__legal {
  color: var(--txt-d);
}
.foot__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: var(--txt-d);
}
.foot__col a {
  color: var(--txt-d);
}
.foot__col a:hover {
  color: var(--acc);
  text-decoration: none;
}
.foot__bottom {
  padding: 16px 22px 20px;
  background: #09121c;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
}
.k { color: var(--acc); }

/* ===== TEMPLATE-ALIGNED OVERRIDES ===== */
.hero {
  display: grid;
  grid-template-columns: 1.16fr 1fr;
  gap: 36px;
  align-items: center;
  margin: 0 22px;
  padding: 48px 22px 32px;
}
.hero__lead { min-width: 0; }
.hero__pic { margin: 0; }
.hero__pic-svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 11;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background:
    radial-gradient(420px 320px at 28% 30%, rgba(95, 140, 255, 0.2), transparent 60%),
    radial-gradient(360px 280px at 78% 78%, rgba(89, 208, 194, 0.14), transparent 65%),
    linear-gradient(135deg, #0a1320 0%, #122033 100%);
  box-shadow: 0 24px 64px -22px rgba(95, 140, 255, 0.34);
}
.hero__pic figcaption {
  margin-top: 12px;
  font-size: 12px;
  color: var(--txt-dd);
  font-style: italic;
  text-align: right;
}
.kpi {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 18px 0 0;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}
.kpi__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.kpi__num {
  color: var(--acc);
  font: 700 26px/1 var(--mono);
}
.kpi__lbl {
  color: var(--txt-d);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.qstat {
  grid-template-columns: repeat(4, 1fr);
  padding: 22px;
}
.qs,
.lgc,
.subs__box,
.lbox,
.rbox,
details,
.foot__brand,
.foot__col {
  background: var(--bg-2);
  box-shadow: none;
  backdrop-filter: none;
}
.welcome,
.tour,
.brand,
.author {
  box-shadow: none;
  backdrop-filter: none;
}
.steps3__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}
.sbox {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
  position: relative;
}
.sbox__num {
  position: absolute;
  top: 14px;
  right: 22px;
  color: var(--line-2);
  font: 700 56px/1 var(--mono);
}
.sbox__head {
  margin-bottom: 12px;
  color: var(--acc);
  font: 700 18px/1.2 var(--heading);
  text-transform: uppercase;
}
.sbox p {
  margin: 0;
  color: var(--txt-d);
  font-size: 14px;
}
.live__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.live .lvbox {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .15s, border-color .2s, box-shadow .25s;
}
.live .lvbox:hover {
  transform: translateY(-3px);
  border-color: var(--acc);
  box-shadow: 0 18px 36px -14px rgba(95, 140, 255, .38);
}
.live .lvbox__cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  align-items: center;
  justify-content: center;
  padding: 12px;
  font-size: 18px;
  text-align: center;
  letter-spacing: -.2px;
}
.lv-1 { background: linear-gradient(135deg, #0a1a3a 0%, #4dd6ff 100%); }
.lv-2 { background: linear-gradient(135deg, #0d1734 0%, #3a73e2 100%); }
.lv-3 { background: linear-gradient(135deg, #07303a 0%, #18c7c0 100%); color: #04141a; }
.lv-4 { background: linear-gradient(135deg, #141f36 0%, #5b9bf2 100%); }
.lv-5 { background: linear-gradient(135deg, #131836 0%, #6aa0ff 100%); }
.lv-6 { background: linear-gradient(135deg, #082a2a 0%, #3fe0c4 100%); color: #04141a; }
.lvbox__b {
  position: relative;
  padding: 14px 16px 16px;
}
.lvbox__t {
  margin-bottom: 4px;
  color: var(--band);
  font-size: 16px;
  font-weight: 700;
}
.lvbox__s {
  margin-bottom: 10px;
  color: var(--txt-d);
  font-size: 12px;
}
.lvbox__m {
  margin-bottom: 4px;
  color: var(--acc-2);
  font-size: 13px;
  font-weight: 600;
}
.lvbox__p {
  color: var(--txt-dd);
  font-size: 12px;
}
.lvbox__live {
  position: absolute;
  top: 12px;
  right: 16px;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--acc);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.payments {
  max-width: none;
  margin: 36px 22px;
  padding: 36px 30px;
  background:
    radial-gradient(640px 360px at 50% 50%, rgba(95, 140, 255, .1) 0%, transparent 70%),
    rgba(16, 26, 40, .92);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.pay__grid,
.pay__times {
  display: grid;
  gap: 14px;
}
.pay__grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}
.paybox,
.pay__times div {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.paybox {
  padding: 22px 20px;
}
.paybox__h {
  margin-bottom: 10px;
  color: var(--acc);
  font: 700 18px/1.2 var(--heading);
  text-transform: uppercase;
}
.paybox p {
  margin: 0;
  color: var(--txt-d);
  font-size: 14px;
  line-height: 1.6;
}
.pay__times {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
}
.pay__times div {
  padding: 18px 16px;
  text-align: center;
}
.pay__times span {
  display: block;
  color: var(--band);
  font: 700 24px/1 var(--mono);
}
.pay__times i {
  display: block;
  margin-top: 8px;
  color: var(--txt-d);
  font-style: normal;
  font-size: 13px;
}
.rev__grid {
  grid-template-columns: repeat(3, 1fr);
}
.foot__top {
  grid-template-columns: 1.4fr 2fr;
}

@media (max-width: 1080px) {
  .hero__grid,
  .qstat,
  .login,
  .welcome__grid,
  .grid.g4,
  .tour__kpi,
  .steps3__grid,
  .pay__grid,
  .pay__times {
    grid-template-columns: repeat(2, 1fr);
  }
  .metr,
  .ladder {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.g3,
  .subs__grid,
  .st3,
  .live__grid,
  .loy__grid,
  .rev__grid,
  .foot__top,
  .foot__cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .bar {
    flex-wrap: wrap;
    padding: 14px 16px;
  }
  .nav {
    order: 3;
    margin-left: 0;
    width: 100%;
    gap: 14px;
  }
  section,
  .qstat,
  .metr,
  .foot__top {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero {
    margin-left: 16px;
    margin-right: 16px;
    padding: 28px 22px 24px;
    grid-template-columns: 1fr;
  }
  .welcome,
  .tour,
  .final,
  .author,
  .brand,
  .payments {
    margin-left: 16px;
    margin-right: 16px;
    padding: 26px 20px;
  }
  .hero__grid,
  .qstat,
  .metr,
  .login,
  .welcome__grid,
  .subs__grid,
  .grid.g4,
  .grid.g3,
  .st3,
  .steps3__grid,
  .live__grid,
  .pay__grid,
  .pay__times,
  .loy__grid,
  .rev__grid,
  .ladder,
  .tour__kpi {
    grid-template-columns: 1fr;
  }
  .hero__pic { order: -1; }
  h1 { font-size: 30px; }
  h2 { font-size: 28px; }
  .hero__btns { flex-direction: column; align-items: stretch; }
  .cta--big,
  .cta--small { width: 100%; }
  summary { font-size: 16px; }
  .foot__bottom { flex-direction: column; }
}

/* ===== FLAGMANSITE TEMPLATE MATCH ===== */
:root {
  --bg: #0d1320;
  --bg-2: #151f30;
  --bg-3: #1d2940;
  --line: #27384d;
  --line-2: #38516f;
  --txt: #e7edf6;
  --txt-d: #a5b4c8;
  --txt-dd: #71839a;
  --acc: #3a73e2;
  --acc-2: #58bec9;
  --acc-2-d: #43a9b8;
  --hot: #ff6a86;
  --good: #65d9bc;
  --r: 12px;
  --r-s: 8px;
}

body {
  color: var(--txt);
  font: 16px/1.62 "PT Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Arial, sans-serif;
  background:
    radial-gradient(1000px 580px at 92% -10%, rgba(58, 115, 226, .16) 0%, transparent 62%),
    radial-gradient(820px 580px at -10% 60%, rgba(88, 190, 201, .09) 0%, transparent 60%),
    var(--bg);
}

body::before {
  background-image: none;
  mask-image: none;
}

a { color: var(--acc); }
.skip {
  top: -42px;
  left: 8px;
  padding: 8px 12px;
  background: var(--acc-2);
  color: #04121f;
  border-radius: 6px;
  font-weight: 700;
}
.skip:focus { top: 8px; }

.bar {
  gap: 16px;
  padding: 12px 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 17, 28, .82);
  backdrop-filter: blur(10px);
}
.logo { gap: 11px; color: var(--txt); }
.logo__svg {
  width: 30px;
  height: 30px;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 0 10px rgba(58, 115, 226, .58));
}
.logo__t {
  font-family: "Merriweather", "PT Serif", Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.3px;
  text-transform: none;
}
.logo__sub {
  margin-top: 4px;
  font-size: 10px;
  color: var(--txt-d);
  letter-spacing: 2.4px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "PT Sans", sans-serif;
}

.nav { gap: 22px; }
.nav a {
  color: var(--txt-d);
  font-size: 14px;
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.nav a:hover {
  color: var(--acc);
  border-bottom-color: var(--acc);
}

.cta {
  padding: 11px 20px;
  border-radius: 8px;
  font-family: "Merriweather", "PT Serif", Georgia, serif;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  letter-spacing: -.1px;
}
.cta--small {
  padding: 11px 20px;
  font-size: 14px;
  background: var(--bg-3);
  color: var(--txt);
  border-color: var(--line);
}
.cta--small:hover { background: var(--bg-2); border-color: var(--acc); }
.cta--big { padding: 15px 28px; font-size: 15px; border-radius: 10px; }
.cta--hot {
  background: linear-gradient(180deg, rgba(67, 125, 229, .98) 0%, rgba(58, 115, 226, .98) 100%);
  color: #f7fbff;
  border: 1px solid rgba(146, 184, 245, .26);
  box-shadow: 0 10px 24px -14px rgba(58, 115, 226, .55);
}
.cta--hot:hover {
  background: linear-gradient(180deg, rgba(73, 130, 231, 1) 0%, rgba(62, 119, 227, 1) 100%);
  box-shadow: 0 14px 28px -14px rgba(58, 115, 226, .62);
}
.cta--ghost {
  background: transparent;
  color: var(--txt);
  border-color: var(--line);
}
.cta--ghost:hover { border-color: var(--acc); color: var(--acc); }

main, section, .metr {
  max-width: 1240px;
  margin: 0 auto;
}
section { padding: 56px 22px; }

.metr {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding: 16px 22px 0;
  border-bottom: 0;
  background: transparent;
  font-size: 13px;
}
.metr__cell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 106px;
  padding: 18px 16px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .015) 0%, rgba(255, 255, 255, 0) 100%),
    var(--bg-2);
  overflow: hidden;
}
.metr__cell::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--acc), var(--acc-2));
}
.metr__num {
  font-family: "Merriweather", "PT Serif", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--acc);
  line-height: 1;
  letter-spacing: -.4px;
}
.metr__lbl {
  font-size: 12px;
  color: var(--txt-d);
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.45;
}

.hero {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 36px;
  padding: 48px 22px 32px;
  max-width: 1240px;
  margin: 0 auto;
  align-items: center;
  background: none;
  border: 0;
  box-shadow: none;
}
.hero__chip,
.ovrline {
  display: inline-block;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  color: var(--acc);
  font: 700 11px/1 "PT Sans", sans-serif;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.hero__chip::before,
.ovrline::before { content: none; }

h1, h2, h3, h4 {
  font-family: "Merriweather", "PT Serif", Georgia, serif;
  text-transform: none;
  color: var(--txt);
}
h1 {
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -.9px;
  font-weight: 700;
}
h2 {
  font-size: clamp(23px, 3.1vw, 34px);
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -.5px;
  font-weight: 700;
}
h3 {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.32;
  margin: 26px 0 10px;
  color: var(--acc);
  font-weight: 700;
  letter-spacing: -.2px;
}
h4 {
  font-size: 16px;
  text-transform: uppercase;
}

.lead, .hero__sub, .brand p, .author p, details p { color: var(--txt-d); }
.hero__sub {
  font-size: 16px;
  margin: 0 0 14px;
  line-height: 1.65;
}
.hero__btns { margin: 24px 0 28px; }
.hero__pic-svg {
  border-radius: var(--r);
  border: 1px solid var(--line);
  background:
    radial-gradient(420px 320px at 28% 30%, rgba(58, 115, 226, .26), transparent 60%),
    radial-gradient(360px 280px at 78% 78%, rgba(88, 190, 201, .18), transparent 65%),
    linear-gradient(135deg, #0c1626 0%, #14233a 100%);
  aspect-ratio: 16 / 11;
  box-shadow: 0 24px 64px -22px rgba(58, 115, 226, .4);
}
.hero__pic figcaption {
  margin-top: 12px;
  font-size: 12px;
  color: var(--txt-dd);
  font-style: italic;
  text-align: right;
}

.kpi {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}
.kpi__num {
  font-family: "Merriweather", "PT Serif", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--acc);
}
.kpi__lbl {
  font-size: 11px;
  color: var(--txt-d);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.qstat {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 18px;
}
.qs,
.lgc,
.subs__box,
.lbox,
.rbox,
details,
.paybox {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.qs { padding: 18px 18px 16px; }
.qs__k {
  font-family: "Merriweather", "PT Serif", Georgia, serif;
  font-size: 24px;
  color: var(--acc);
  margin-bottom: 6px;
}
.qs__t {
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 6px;
}
.qs__d {
  color: var(--txt-d);
  font-size: 13px;
  line-height: 1.5;
}

.welcome,
.tour,
.final {
  background:
    radial-gradient(720px 360px at 82% 28%, rgba(88, 190, 201, .075) 0%, transparent 70%),
    rgba(17, 26, 40, .55);
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin: 32px 22px;
  max-width: none;
}
.welcome__grid,
.steps3__grid,
.rev__grid { margin-top: 22px; }
.welcome__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.wbox,
.sbox {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.wbox {
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
}
.wbox::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58, 115, 226, .08), transparent 60%);
}
.wbox__step {
  font-family: "Merriweather", "PT Serif", Georgia, serif;
  font-size: 11px;
  color: var(--acc-2);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.wbox__pct {
  font-family: "Merriweather", "PT Serif", Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--acc);
  margin-bottom: 8px;
}
.wbox__title { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.wbox__sub { font-size: 13px; color: var(--txt-d); line-height: 1.5; }

.steps3__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sbox {
  padding: 24px;
  position: relative;
}
.sbox__num {
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: "Merriweather", "PT Serif", Georgia, serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: var(--bg-3);
}
.sbox__head {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--acc);
}
.sbox p { color: var(--txt-d); font-size: 14px; margin: 0; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin: 24px 0;
}
.card,
.lvbox {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.card:hover,
.lvbox:hover {
  transform: translateY(-3px);
  border-color: var(--acc);
}
.card__cover {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Merriweather", "PT Serif", Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  color: rgba(232, 237, 246, .92);
  text-align: center;
  padding: 14px;
  position: relative;
}
.card__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(0, 0, 0, .35) 100%);
}
.card h3 {
  font-size: 15px;
  margin: 12px 14px 4px;
  color: var(--txt);
}
.card p {
  font-size: 12px;
  color: var(--txt-d);
  margin: 0 14px 12px;
}
.card__btn {
  display: block;
  padding: 10px;
  margin: auto 12px 12px;
  background: var(--bg-3);
  color: var(--txt);
  text-align: center;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--line);
}
.card__btn:hover {
  background: var(--acc);
  border-color: var(--acc);
  color: #051327;
}

.prov__title {
  font-size: 12px;
  color: var(--acc-2);
  margin-bottom: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
}
.prov__list span,
.bdg {
  padding: 6px 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 12px;
  color: var(--txt-d);
}

.ladder {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-top: 14px;
}
.ladder__step {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 8px;
  text-align: center;
}
.ladder__step:nth-child(2) { transform: translateY(-6px); }
.ladder__step:nth-child(3) { transform: translateY(-12px); }
.ladder__step:nth-child(4) { transform: translateY(-18px); border-color: var(--acc); background: var(--bg-2); }
.ladder__step:nth-child(5) { transform: translateY(-24px); border-color: var(--acc-2); background: linear-gradient(135deg, var(--bg-2), rgba(88, 190, 201, .1)); }
.ladder__lvl,
.ladder__name {
  display: block;
  font-family: "Merriweather", "PT Serif", Georgia, serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 5px;
}
.ladder__cb { font-size: 11px; color: var(--txt-d); }

.loy__grid,
.login,
.subs__grid,
.pay__grid,
.rev__grid,
.live__grid { gap: 14px; }
.loy__grid,
.login,
.subs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 22px;
}
.login { grid-template-columns: repeat(3, 1fr); }
.lgc,
.subs__box,
.lbox,
.paybox,
.rbox { padding: 22px 24px; }
.lbox__h,
.lgc__h,
.paybox__h {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--acc-2);
}
.lgc__d,
.subs__box p,
.lbox p,
.paybox p { color: var(--txt-d); font-size: 14px; line-height: 1.6; margin: 0; }

.reglist {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.reglist li {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  padding: 14px 16px;
  color: var(--txt-d);
  font-size: 14px;
}
.reglist__k {
  display: inline-block;
  margin-right: 8px;
  color: var(--acc);
  font-weight: 700;
}

.tour {
  text-align: center;
  background:
    radial-gradient(640px 360px at 50% 50%, rgba(58, 115, 226, .1) 0%, transparent 70%),
    var(--bg-2);
}
.tour .lead { margin-left: auto; margin-right: auto; }
.tour__btns { margin: 22px 0 28px; }
.tour__kpi {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.tour__kpi > div,
.pay__times > div {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 16px;
}
.tour__kpi span,
.pay__times span {
  display: block;
  font-family: "Merriweather", "PT Serif", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--acc);
  margin-bottom: 4px;
}
.tour__kpi .k { font-size: 14px; font-weight: 700; color: var(--txt); }
.tour__kpi i,
.pay__times i {
  font-size: 12px;
  color: var(--txt-d);
  font-style: normal;
  line-height: 1.4;
}

.live__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  margin-top: 22px;
}
.lvbox__cover {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Merriweather", "PT Serif", Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  color: rgba(232, 237, 246, .94);
  padding: 12px;
  text-align: center;
}
.lvbox__b { padding: 14px 16px 16px; position: relative; }
.lvbox__t { font-weight: 700; font-size: 16px; margin-bottom: 4px; color: var(--txt); }
.lvbox__s { font-size: 12px; color: var(--txt-d); margin-bottom: 10px; }
.lvbox__m { font-size: 13px; color: var(--acc-2); font-weight: 600; margin-bottom: 4px; }
.lvbox__p { font-size: 12px; color: var(--txt-dd); }
.lvbox__live {
  position: absolute;
  top: 12px;
  right: 16px;
  background: var(--hot);
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.brand h3 {
  border-left: 3px solid var(--acc);
  padding-left: 14px;
  margin-top: 30px;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.pay__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 22px 0;
}
.pay__times {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.rev__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.rbox {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rbox__stars { color: var(--acc-2); font-size: 16px; letter-spacing: 4px; }
.rbox__q { font-size: 14px; line-height: 1.6; color: var(--txt); margin: 0; }
.rbox__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--txt-d);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.rbox__a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--acc), var(--acc-2));
  border-radius: 50%;
  color: #051327;
  font-weight: 700;
}

.final {
  text-align: center;
  padding: 56px 22px;
  background:
    radial-gradient(620px 320px at 50% 50%, rgba(58, 115, 226, .15) 0%, transparent 70%),
    var(--bg-2);
}
.final p { color: var(--txt-d); margin-bottom: 24px; }

.author {
  padding-top: 10px;
}
.author p {
  max-width: 920px;
  line-height: 1.7;
}

.faq h2 { margin-bottom: 22px; }
details {
  border-radius: var(--r-s);
  padding: 16px 20px;
  margin: 0 0 10px;
}
details[open] { border-color: var(--acc); }
summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  position: relative;
  padding-right: 32px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "↗";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--acc);
  font-size: 13px;
}
details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  border-color: var(--acc);
}

.foot {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  background: rgba(11, 17, 28, .6);
}
.foot__top {
  max-width: 1240px;
  margin: 0 auto;
  padding: 42px 22px 26px;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 36px;
}
.foot__brand {
  font-size: 14px;
  color: var(--txt-d);
  line-height: 1.65;
}
.foot__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.foot__brandname { color: var(--txt); font-size: 16px; font-weight: 700; }
.foot__brandname .k { color: var(--txt); }
.foot__legal {
  font-size: 12px;
  color: var(--txt-dd);
  margin: 0;
  line-height: 1.65;
}
.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.foot__col h4 {
  font-family: "Merriweather", "PT Serif", Georgia, serif;
  font-size: 12px;
  color: var(--acc-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin: 0 0 12px;
}
.foot__col h4 a,
.foot__col li a { color: inherit; }
.foot__col ul { list-style: none; padding: 0; margin: 0; }
.foot__col li {
  font-size: 13px;
  color: var(--txt-d);
  padding: 4px 0;
}
.foot__col li:hover { color: var(--txt); }
.foot__bottom {
  border-top: 1px solid var(--line);
  padding: 16px 22px;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: var(--txt-dd);
}

@media (max-width: 1024px) {
  .welcome__grid { grid-template-columns: 1fr; }
  .qstat { grid-template-columns: repeat(2, 1fr); }
  .pay__grid { grid-template-columns: repeat(2, 1fr); }
  .tour__kpi { grid-template-columns: repeat(2, 1fr); }
  .rev__grid { grid-template-columns: 1fr; }
  .foot__top { grid-template-columns: 1fr; }
  .metr { grid-template-columns: repeat(3, 1fr); }
  .ladder { grid-template-columns: repeat(3, 1fr); }
  .ladder__step { transform: none !important; }
  .login,
  .subs__grid,
  .loy__grid,
  .pay__times { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; gap: 24px; padding-top: 32px; }
  .hero__pic { order: -1; }
  .nav { display: none; }
  .bar { padding: 11px 14px; }
  section { padding: 36px 16px; }
  .welcome, .tour, .final { padding: 36px 18px; margin: 22px 14px; }
  .steps3__grid,
  .login,
  .subs__grid,
  .loy__grid,
  .reglist { grid-template-columns: 1fr; }
  .foot__top { padding: 30px 16px 22px; gap: 22px; }
  .foot__cols { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .metr { padding: 10px 14px 0; grid-template-columns: repeat(2, 1fr); }
  .metr__cell { min-height: 96px; padding: 16px 14px 14px; }
  .pay__times { grid-template-columns: 1fr; }
  .kpi { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .qstat,
  .live__grid,
  .pay__grid,
  .tour__kpi,
  .foot__cols,
  .ladder { grid-template-columns: 1fr; }
  .metr { grid-template-columns: 1fr; }
  .card h3 { font-size: 13px; }
  .card p { font-size: 11px; }
  .card__cover { font-size: 16px; }
  .hero__btns { flex-direction: column; align-items: stretch; }
  .cta--big { width: 100%; }
}
