:root {
  --head: #09090b;
  --bg: #111215;
  --bg-2: #17181c;
  --bg-3: #1e2025;
  --edge: #2b2d33;
  --text: #e7e5e0;
  --soft: #c4c2bc;
  --muted: #92959c;
  --orange: #ff7a1a;
  --grad: linear-gradient(90deg, #ffa21f 0%, #ff4f1f 100%);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --container: 1280px;
  --header-h: 60px;
}

@media (min-width: 1600px) {
  :root {
    --container: 1480px;
  }
}

@media (min-width: 2200px) {
  :root {
    --container: 1680px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 14px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.7;
  color: var(--soft);
  background: var(--bg);
}

figure {
  margin: 0;
}

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

a {
  color: var(--orange);
  text-underline-offset: 3px;
}

a:hover {
  color: #ffa21f;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

h1,
h2,
h3 {
  color: var(--text);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(1.9rem, 1.5rem + 1.6vw, 2.6rem);
  margin: 0 0 18px;
}

h2 {
  font-size: clamp(1.45rem, 1.3rem + 0.6vw, 1.8rem);
  margin: 0 0 16px;
}

h3 {
  font-size: 1.2rem;
  margin: 26px 0 10px;
}

p {
  margin: 0 0 14px;
}

strong {
  color: var(--text);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 100;
  padding: 8px 14px;
  background: var(--orange);
  color: var(--head);
  font-weight: 700;
}

.skip:focus {
  left: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 0;
  border-radius: 0;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: filter 0.2s, background-color 0.2s, color 0.2s;
}

.btn--primary {
  background: var(--grad);
  color: #140a02;
}

.btn--primary:hover {
  color: #140a02;
  filter: brightness(1.08);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  box-shadow: inset 0 0 0 1px #4a4d55;
}

.btn--ghost:hover {
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--orange);
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: 2px;
  pointer-events: none;
}

.progress span {
  display: block;
  height: 100%;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: 0 50%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--head);
  border-bottom: 1px solid var(--edge);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}

.logo img {
  width: 140px;
}

.nav {
  margin-left: auto;
}

.nav ul {
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav a {
  display: block;
  padding: 8px 14px;
  color: var(--soft);
  font-weight: 600;
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
  box-shadow: inset 0 -2px 0 var(--orange);
}

.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--edge);
  border-radius: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.burger span,
.burger span::before,
.burger span::after {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s, background-color 0.2s;
}

.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
}

.burger span::before {
  top: -6px;
}

.burger span::after {
  top: 6px;
}

.burger[aria-expanded="true"] span {
  background: transparent;
}

.burger[aria-expanded="true"] span::before {
  transform: translateY(6px) rotate(45deg);
}

.burger[aria-expanded="true"] span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.nav__cta {
  display: none;
}

@media (max-width: 820px) {
  .burger {
    display: inline-flex;
  }

  .site-header__cta {
    display: none;
  }

  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    margin: 0;
    padding: 8px 20px 20px;
    background: var(--head);
    border-bottom: 1px solid var(--edge);
  }

  .nav.is-open {
    display: block;
  }

  .nav ul {
    flex-direction: column;
  }

  .nav a {
    padding: 12px 0;
  }

  .nav a:hover,
  .nav a[aria-current="page"] {
    box-shadow: none;
    color: var(--orange);
  }

  .nav__cta {
    display: block;
    margin-top: 10px;
  }

  .nav__cta .btn {
    width: 100%;
  }
}

.crumbs {
  padding-top: 18px;
}

.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: var(--muted);
}

.crumbs li + li::before {
  content: "/";
  margin-right: 10px;
  color: #50535a;
}

.crumbs a {
  color: var(--soft);
  text-decoration: none;
}

.crumbs a:hover {
  color: var(--orange);
}

.crumbs [aria-current] {
  color: var(--text);
}

.hero {
  padding-top: 16px;
  padding-bottom: 8px;
}

.hero__frame {
  display: grid;
  gap: 28px;
  padding: 28px 22px;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg-2), var(--bg-2)) padding-box,
    linear-gradient(135deg, #ffa21f, #ff4f1f 40%, var(--edge) 70%) border-box;
}

@media (min-width: 980px) {
  .hero__frame {
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, 1fr);
    align-items: center;
    gap: 48px;
    padding: 44px 48px;
  }
}

.hero__lede p {
  max-width: 72ch;
  font-size: 15px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero__media img {
  width: 100%;
}

.offer {
  padding: 26px 24px;
  background: var(--bg-3);
  border-top: 3px solid var(--orange);
}

.offer__label {
  margin: 0 0 4px;
  color: var(--muted);
  font-weight: 600;
}

.offer__amount {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.2rem, 1.9rem + 1.2vw, 2.9rem);
  font-weight: 800;
  line-height: 1.1;
}

.offer__plus {
  margin: 4px 0 18px;
  font-size: 1.15rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.offer dl,
.box dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  margin: 0 0 20px;
  padding-top: 16px;
  border-top: 1px solid var(--edge);
}

.offer dt,
.box dt {
  color: var(--muted);
}

.offer dd,
.box dd {
  margin: 0;
  color: var(--text);
  font-weight: 600;
  text-align: right;
}

.offer .btn,
.box .btn {
  width: 100%;
}

.layout {
  display: grid;
  gap: 32px;
  padding-top: 36px;
  padding-bottom: 72px;
}

@media (min-width: 1024px) {
  .layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
  }
}

@media (min-width: 1400px) {
  .layout {
    grid-template-columns: 230px minmax(0, 1fr) 270px;
  }
}

@media (min-width: 1900px) {
  .layout {
    grid-template-columns: 260px minmax(0, 1fr) 300px;
    gap: 64px;
  }
}

.toc__box {
  background: var(--bg-2);
}

.toc__box summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  color: var(--text);
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.toc__box summary::-webkit-details-marker {
  display: none;
}

.toc__box summary::after {
  content: "+";
  color: var(--orange);
  font-size: 18px;
  line-height: 1;
}

.toc__box[open] summary::after {
  content: "\2212";
}

.toc ol {
  margin: 0;
  padding: 0 16px 16px;
  list-style: none;
}

.toc li a {
  display: block;
  padding: 7px 0 7px 14px;
  border-left: 2px solid var(--edge);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;
}

.toc li a:hover {
  color: var(--text);
}

.toc li a.is-active {
  border-left-color: var(--orange);
  color: var(--text);
}

@media (min-width: 1024px) {
  .toc {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    max-height: calc(100vh - var(--header-h) - 48px);
    overflow: auto;
    scrollbar-width: thin;
  }

  .toc__box {
    background: transparent;
  }

  .toc__box summary {
    padding: 0 0 12px;
    cursor: default;
    pointer-events: none;
    font-size: 13px;
    color: var(--muted);
  }

  .toc__box summary::after {
    display: none;
  }

  .toc ol {
    padding: 0;
  }
}

.article {
  min-width: 0;
}

.sec {
  display: flow-root;
  margin-bottom: 56px;
}

.sec > h2::before {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin-bottom: 14px;
  background: var(--grad);
}

.article ul,
.article ol {
  display: flow-root;
  margin: 0 0 16px;
  padding-left: 20px;
}

.article li {
  margin: 4px 0;
}

.article li::marker {
  color: var(--orange);
}

.media {
  float: right;
  width: 46%;
  margin: 4px 0 14px 28px;
}

.media--left {
  float: left;
  margin: 4px 28px 14px 0;
}

.clear {
  clear: both;
}

@media (max-width: 720px) {
  .media,
  .media--left {
    float: none;
    width: 100%;
    margin: 0 0 16px;
  }

  .media--reg img {
    max-height: 420px;
    width: auto;
    margin: 0 auto;
  }
}

.wide {
  clear: both;
  margin: 0 0 20px;
}

.wide img {
  width: 100%;
}

.media--reg {
  width: 38%;
}

.article .wrap {
  display: block;
}


.duo {
  display: grid;
  gap: 12px;
  clear: both;
  margin: 18px 0;
}

@media (min-width: 640px) {
  .duo {
    grid-template-columns: 1fr 1fr;
  }
}

.table {
  clear: both;
  margin: 18px 0 22px;
  overflow-x: auto;
}

.table table {
  width: 100%;
  border-collapse: collapse;
}

.table th {
  padding: 10px 14px;
  background: var(--bg-3);
  border-bottom: 2px solid var(--orange);
  color: var(--text);
  font-size: 13px;
  text-align: left;
}

.table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--edge);
  vertical-align: top;
}

.table td:first-child {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 720px) {
  .table:not(.table--kv) thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .table:not(.table--kv) tr {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--edge);
  }

  .table:not(.table--kv) td {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 10px;
    padding: 3px 0;
    border: 0;
  }

  .table:not(.table--kv) td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 13px;
  }

  .table:not(.table--kv) td:first-child {
    display: block;
    font-size: 15px;
  }

  .table:not(.table--kv) td:first-child::before {
    display: none;
  }
}

.checks {
  list-style: none;
  padding-left: 0 !important;
}

.checks li {
  position: relative;
  padding-left: 22px;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.62em;
  width: 7px;
  height: 7px;
  background: var(--grad);
}

.article .tiles {
  display: grid;
  gap: 2px;
  clear: both;
  list-style: none;
  padding-left: 0 !important;
}

@media (min-width: 640px) {
  .tiles {
    grid-template-columns: 1fr 1fr;
  }

  .tiles--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tiles li {
  margin: 0;
  padding: 14px 16px;
  background: var(--bg-2);
  border-left: 2px solid var(--orange);
}

.numbered {
  list-style: none;
  padding-left: 0 !important;
  counter-reset: n;
}

.numbered li {
  position: relative;
  margin: 0 0 8px;
  padding: 5px 0 5px 40px;
  counter-increment: n;
}

.numbered li::before {
  content: counter(n);
  position: absolute;
  left: 0;
  top: 4px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: var(--bg-3);
  color: var(--orange);
  font-weight: 800;
  font-size: 13px;
}

.note {
  clear: both;
  margin: 18px 0;
  padding: 14px 18px;
  background: var(--bg-2);
  border-left: 3px solid var(--orange);
}

.note p {
  margin: 0;
}

.article .slots {
  display: grid;
  gap: 8px;
  clear: both;
  margin: 20px 0 !important;
  padding: 0 !important;
  list-style: none;
}

.slots li {
  margin: 0;
}

.slots img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.slots--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.slots--18 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

@media (max-width: 640px) {
  .slots--5 {
    grid-template-columns: repeat(5, 40%);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .slots--5 li {
    scroll-snap-align: start;
  }
}

@media (max-width: 760px) {
  .slots--18 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.steps {
  clear: both;
  margin-top: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 22px 0 8px 56px;
  border-top: 1px solid var(--edge);
  counter-increment: step;
}

.step::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 22px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--grad);
  color: #140a02;
  font-size: 17px;
  font-weight: 800;
}

.step h3 {
  margin-top: 6px;
}

.band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin: 0 0 56px;
  padding: 22px 24px;
  background: var(--bg-2);
  border-left: 3px solid var(--orange);
}

.band p {
  margin: 0;
  max-width: 60ch;
}

.band strong {
  display: block;
  font-size: 1.25rem;
}

.band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq details {
  border-bottom: 1px solid var(--edge);
}

.faq details:first-child {
  border-top: 1px solid var(--edge);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  list-style: none;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary h3 {
  margin: 0;
  font-size: 1.07rem;
}

.faq summary::after {
  content: "+";
  flex: 0 0 26px;
  height: 26px;
  display: grid;
  place-items: center;
  background: var(--bg-3);
  color: var(--orange);
  font-size: 18px;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "\2212";
  background: var(--grad);
  color: #140a02;
}

.faq summary:hover h3 {
  color: var(--orange);
}

.faq__a {
  padding: 0 0 12px;
}

.rail {
  display: grid;
  gap: 16px;
  align-content: start;
}

@media (min-width: 1024px) and (max-width: 1399px) {
  .rail {
    grid-column: 2;
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1400px) {
  .rail {
    position: sticky;
    top: calc(var(--header-h) + 24px);
  }
}

.box {
  background: var(--bg-2);
}

.box img {
  width: 100%;
}

.box__body {
  padding: 18px 20px 20px;
}

.box__title {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
}

.box--accent {
  border-top: 3px solid var(--orange);
}

.doc {
  max-width: 820px;
}

.doc h2 {
  margin-top: 34px;
  font-size: 1.4rem;
}

.doc ul {
  padding-left: 20px;
}

.doc li::marker {
  color: var(--orange);
}

.updated {
  color: var(--muted);
  font-size: 13px;
}

.page-plain {
  padding-top: 28px;
  padding-bottom: 72px;
}

.site-footer {
  position: relative;
  background: var(--head);
  color: var(--muted);
  font-size: 13px;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad);
}

.site-footer a {
  color: var(--soft);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer__top {
  display: grid;
  gap: 32px;
  padding-top: 48px;
  padding-bottom: 32px;
}

@media (min-width: 860px) {
  .footer__top {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer__brand img {
  width: 150px;
  margin-bottom: 14px;
}

.footer__brand p {
  max-width: 42ch;
}

.footer__title {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.footer__list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.social img {
  width: 26px;
  height: 26px;
}

.footer__row {
  display: grid;
  gap: 14px;
  padding-top: 22px;
  padding-bottom: 22px;
  border-top: 1px solid var(--edge);
}

@media (min-width: 860px) {
  .footer__row {
    grid-template-columns: 170px 1fr;
    align-items: center;
  }
}

.footer__row-title {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.logos img {
  width: auto;
  height: 26px;
  max-width: 110px;
  object-fit: contain;
}

.logos img[src$="apple-pay.webp"] {
  height: 44px;
}

.logos--rg img {
  height: 30px;
  max-width: 160px;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  padding-top: 18px;
  padding-bottom: 26px;
  border-top: 1px solid var(--edge);
}

.footer__bottom p {
  margin: 0;
}

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 0;
  background: var(--grad);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.to-top::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 4px;
  border-left: 2px solid #140a02;
  border-top: 2px solid #140a02;
  transform: rotate(45deg);
}

.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  display: none;
  gap: 12px;
  max-width: 540px;
  padding: 16px 18px;
  background: var(--bg-3);
  border-left: 3px solid var(--orange);
  color: var(--soft);
}

.cookie.is-visible {
  display: grid;
}

@media (min-width: 640px) {
  .cookie {
    left: 24px;
    bottom: 24px;
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.cookie p {
  margin: 0;
  font-size: 13px;
}
