@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url('fonts/manrope-latin-ext-wght-normal.woff2') format('woff2');
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url('fonts/manrope-latin-wght-normal.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC,
    U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Unbounded';
  font-style: normal;
  font-display: swap;
  font-weight: 200 900;
  src: url('fonts/unbounded-latin-ext-wght-normal.woff2') format('woff2');
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Unbounded';
  font-style: normal;
  font-display: swap;
  font-weight: 200 900;
  src: url('fonts/unbounded-latin-wght-normal.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC,
    U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #0a0c14;
  --ink-2: #111526;
  --bg: #eef0f6;
  --surface: #ffffff;
  --surface-2: #f7f5ff;
  --tint: #e6e9f3;
  --text: #151826;
  --soft: #41475a;
  --muted: #767d92;
  --on-dark: #eef0fa;
  --on-dark-soft: #aab0c6;
  --teal: #14d3c2;
  --violet: #8b3cf6;
  --link: #6b2ee0;
  --grad: linear-gradient(120deg, #14d3c2 0%, #5f6bf5 52%, #9b3cf6 100%);
  --grad-soft: linear-gradient(120deg, rgba(20, 211, 194, 0.12), rgba(155, 60, 246, 0.12));
  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --display: 'Unbounded', 'Manrope', Arial, sans-serif;
  --container: 1280px;
  --header-h: 64px;
  --shadow: 0 1px 2px rgba(16, 20, 40, 0.04), 0 8px 24px -12px rgba(16, 20, 40, 0.12);
}

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

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

*,
*::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) + 20px);
}

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

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

figure {
  margin: 0;
}

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

a {
  color: var(--link);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

a:hover {
  color: var(--violet);
}

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

h1,
h2,
h3 {
  color: var(--text);
  line-height: 1.25;
}

h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.65rem, 1.2rem + 1.7vw, 2.45rem);
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.6rem);
  letter-spacing: -0.015em;
  margin: 0;
}

h3 {
  font-size: 1.22rem;
  font-weight: 800;
  margin: 28px 0 10px;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 14px;
}

strong {
  color: var(--text);
  font-weight: 700;
}

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

@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(--teal);
  color: var(--ink);
  font-weight: 700;
}

.skip:focus {
  left: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 20px;
  border: 0;
  border-radius: 0;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    filter 0.2s,
    background-color 0.2s,
    background-position 0.3s,
    color 0.2s,
    box-shadow 0.2s;
}

.btn span {
  transition: transform 0.2s;
}
.btn:hover span {
  transform: translateX(3px);
}

.btn--lg {
  min-height: 50px;
  padding: 0 26px;
  font-size: 15px;
}

.btn--grad {
  background: var(--grad);
  background-size: 140% 100%;
  color: #fff;
}

.btn--grad:hover {
  color: #fff;
  background-position: 100% 0;
  box-shadow: 0 10px 28px -10px rgba(123, 72, 246, 0.8);
}

.btn--glass {
  background: rgba(255, 255, 255, 0.08);
  color: var(--on-dark);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn--glass:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.btn--light {
  background: #fff;
  color: var(--ink);
}
.btn--light:hover {
  color: var(--ink);
  background: var(--teal);
}

.progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  height: 3px;
  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: rgba(10, 12, 20, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.logo img {
  width: 132px;
}

.nav {
  margin-left: auto;
}

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

.nav ul a {
  position: relative;
  display: block;
  padding: 8px 14px;
  color: var(--on-dark-soft);
  font-weight: 700;
  text-decoration: none;
}

.nav ul a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.25s;
}

.nav ul a:hover,
.nav ul a[aria-current='page'] {
  color: #fff;
}

.nav ul a:hover::after,
.nav ul a[aria-current='page']::after {
  transform: scaleX(1);
}

.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  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: 860px) {
  .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 16px 20px;
    background: var(--ink);
  }

  .nav.is-open {
    display: block;
  }
  .nav ul {
    flex-direction: column;
    gap: 0;
  }
  .nav ul a {
    padding: 14px 0;
    font-size: 15px;
  }
  .nav ul a::after {
    left: 0;
    right: auto;
    width: 28px;
    bottom: 6px;
  }
  .nav__cta {
    display: block;
    margin-top: 12px;
  }
  .nav__cta .btn {
    width: 100%;
  }
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  color: var(--on-dark-soft);
}

.hero__bg,
.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__bg {
  z-index: -2;
}

.hero__bg img {
  object-fit: cover;
  object-position: 72% 50%;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(10, 12, 20, 0.96) 0%,
      rgba(10, 12, 20, 0.86) 34%,
      rgba(10, 12, 20, 0.35) 62%,
      rgba(10, 12, 20, 0.05) 100%
    ),
    linear-gradient(0deg, rgba(10, 12, 20, 0.85) 0%, rgba(10, 12, 20, 0) 30%);
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--grad);
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: clamp(460px, 36vw, 640px);
  padding-top: 22px;
  padding-bottom: 36px;
}

.hero__copy {
  max-width: 640px;
  margin-top: auto;
  padding-top: 40px;
}

@media (min-width: 1600px) {
  .hero__copy {
    max-width: 760px;
  }
}

.hero h1 {
  color: #fff;
}

.hero__lede {
  max-width: 60ch;
  font-size: 15px;
  color: var(--on-dark);
  opacity: 0.88;
}

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

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero__chips li {
  display: grid;
  align-content: center;
  min-width: 128px;
  min-height: 84px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero__chips strong {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__chips span {
  font-size: 12px;
  font-weight: 600;
  color: var(--on-dark-soft);
}

@media (max-width: 760px) {
  .hero__bg img {
    object-position: 50% 0;
  }

  .hero::before {
    background: linear-gradient(
      0deg,
      rgba(10, 12, 20, 1) 0%,
      rgba(10, 12, 20, 0.92) 42%,
      rgba(10, 12, 20, 0.35) 70%,
      rgba(10, 12, 20, 0.1) 100%
    );
  }

  .hero__inner {
    min-height: 0;
    padding-bottom: 28px;
  }
  .hero__copy {
    padding-top: 46vw;
  }
  .hero__actions .btn {
    flex: 1 1 100%;
  }
  .hero__chips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .hero__chips li {
    min-width: 0;
    min-height: 74px;
    padding: 10px 12px;
  }
  .hero__chips strong {
    font-size: 1.05rem;
  }
}

.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(--on-dark-soft);
}

.crumbs li + li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  vertical-align: middle;
  background: var(--grad);
}

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

.crumbs a:hover {
  color: var(--teal);
}
.crumbs [aria-current] {
  color: #fff;
  font-weight: 600;
}

.layout {
  display: grid;
  gap: 28px;
  padding-top: 36px;
  padding-bottom: 80px;
}

@media (min-width: 1024px) {
  .layout {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 44px;
    align-items: start;
    padding-top: 52px;
  }
}

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

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

.toc__box {
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

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

.toc__box summary::after {
  content: '+';
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  background: var(--grad);
  color: #fff;
  font-size: 17px;
  line-height: 1;
}

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

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

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

.toc li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #d6dae6;
  transition: background 0.2s;
}

.toc li a:hover {
  color: var(--text);
}
.toc li a.is-active {
  color: var(--text);
  font-weight: 700;
}
.toc li a.is-active::before {
  background: var(--grad);
  width: 3px;
}

.toc__next {
  display: none;
  text-decoration: none;
}

@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;
    box-shadow: none;
  }

  .toc__box summary {
    padding: 0 0 14px;
    cursor: default;
    pointer-events: none;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .toc__box summary::after {
    display: none;
  }
  .toc ol {
    padding: 0;
  }

  .toc__next {
    position: relative;
    display: grid;
    gap: 2px;
    margin-top: 22px;
    padding: 16px;
    background: var(--grad-soft);
    color: var(--text);
    font-weight: 800;
    line-height: 1.35;
  }

  .toc__next::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: var(--grad);
  }

  .toc__next small {
    color: var(--muted);
    font-weight: 600;
    font-size: 12px;
  }

  .toc__next span {
    color: var(--link);
    transition: transform 0.2s;
  }
  .toc__next:hover {
    color: var(--link);
  }
  .toc__next:hover span {
    transform: translateX(4px);
  }
}

.article {
  min-width: 0;
  container: art / inline-size;
}

.sec {
  margin-bottom: 64px;
}

.sec > h2 {
  margin-bottom: 22px;
}

.sec > h2::after {
  content: '';
  display: block;
  width: 44px;
  height: 4px;
  margin-top: 14px;
  background: var(--grad);
}

.lead {
  font-size: 15px;
  color: var(--text);
}

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

.article li {
  margin: 5px 0;
}

.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.66em;
  width: 8px;
  height: 8px;
  background: var(--grad);
}

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

.numbered li {
  position: relative;
  margin: 0 0 10px !important;
  padding: 4px 0 4px 44px;
  counter-increment: n;
}

.numbered li::before {
  content: counter(n);
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}

.shot {
  margin: 22px 0;
}

.shot img {
  width: 100%;
  aspect-ratio: 20 / 9;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.cards {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

@container art (min-width: 560px) {
  .cards--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  position: relative;
  padding: 22px 22px 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.card p {
  margin: 0;
}

.card__ico {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  background: var(--grad-soft);
}

.card__ico svg,
.panel__ico svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--link);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.note {
  position: relative;
  margin: 20px 0;
  padding: 18px 22px 18px 26px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.note::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--grad);
}

.note > :last-child {
  margin-bottom: 0;
}
.note h3 {
  margin-top: 0;
}

.note--grad {
  background: var(--grad-soft);
  box-shadow: none;
}

.note--age {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--grad-soft);
  box-shadow: none;
}

.note--age::before {
  display: none;
}

.age {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: var(--grad);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
}

.table {
  margin: 24px 0;
  overflow-x: auto;
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

.table thead th {
  padding: 14px 18px;
  background:
    linear-gradient(120deg, #14d3c2, #5f6bf5 52%, #9b3cf6) 0 100% / 100% 3px no-repeat,
    var(--tint);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
}

.table tbody th,
.table td {
  padding: 14px 18px;
  vertical-align: top;
  text-align: left;
}

.table tbody th {
  color: var(--text);
  font-weight: 800;
}
.table tbody tr:nth-child(even) {
  background: #f7f8fb;
}
.table tbody tr:hover {
  background: #f1eefd;
}

@media (max-width: 720px) {
  .table {
    background: transparent;
    box-shadow: none;
  }
  .table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
  .table tbody {
    display: grid;
    gap: 8px;
  }

  .table tbody tr,
  .table tbody tr:nth-child(even) {
    display: block;
    padding: 14px 16px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .table tbody th {
    display: block;
    padding: 0 0 8px;
    font-size: 15px;
  }

  .table td {
    display: grid;
    grid-template-columns: 38% 1fr;
    gap: 10px;
    padding: 3px 0;
  }

  .table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
  }
}

.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
}

@container art (min-width: 700px) {
  .facts {
    grid-template-columns: repeat(3, 1fr);
  }
}

.facts div {
  position: relative;
  padding: 14px 16px 14px 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.facts div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--grad);
}

.facts div:last-child:nth-child(3n + 1) {
  grid-column: 1 / -1;
}

.facts dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.facts dd {
  margin: 2px 0 0;
  color: var(--text);
  font-weight: 700;
  line-height: 1.45;
}

@container art (max-width: 699px) {
  .facts div:last-child:nth-child(3n + 1) {
    grid-column: auto;
  }
  .facts div:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

@container art (max-width: 380px) {
  .facts {
    grid-template-columns: 1fr;
  }
}

.article .panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 8px;
  margin: 22px 0 !important;
  padding: 0 !important;
  list-style: none;
}

.panel li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 !important;
  padding: 16px 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 0.25s;
}

.panel li:hover {
  transform: translateY(-3px);
}

.panel__ico {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--grad-soft);
}

.panel strong {
  display: block;
  line-height: 1.35;
}
.panel small {
  font-size: 12.5px;
  color: var(--muted);
}

.article .tiles {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

@container art (min-width: 520px) {
  .tiles {
    grid-template-columns: 1fr 1fr;
  }
}

@container art (min-width: 700px) {
  .tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tiles li {
  position: relative;
  margin: 0;
  padding: 20px 18px 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.tiles li::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  background: var(--grad);
  opacity: 0.85;
}

.tiles li:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -18px rgba(40, 20, 120, 0.35);
}

.tiles strong {
  display: block;
  margin-bottom: 4px;
}

.how {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

@container art (min-width: 760px) {
  .how {
    grid-template-columns: 1.15fr 1fr;
  }
}

.how__col {
  padding: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.how__col h3 {
  margin-top: 0;
}
.how__col > :last-child {
  margin-bottom: 0;
}
.how__col--alt {
  background: var(--surface-2);
}

.band {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
  margin: 0 0 64px;
  padding: 28px 30px;
  overflow: hidden;
  background: var(--ink);
  color: var(--on-dark-soft);
  isolation: isolate;
}

.band::before,
.band::after {
  content: '';
  position: absolute;
  z-index: -1;
  background: var(--grad);
}

.band::before {
  right: -30px;
  top: -30px;
  width: 120px;
  height: 120px;
  opacity: 0.9;
}
.band::after {
  right: 110px;
  bottom: -22px;
  width: 44px;
  height: 44px;
  opacity: 0.55;
}

.band__text {
  flex: 1 1 380px;
  max-width: 64ch;
}
.band p {
  margin: 0;
}

.band__title {
  margin-bottom: 6px !important;
  color: #fff;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.35;
}

.band--alt {
  margin: 30px 0 0;
  background: var(--grad);
  color: rgba(255, 255, 255, 0.92);
}
.band--alt::before {
  background: var(--ink);
  opacity: 0.25;
}
.band--alt::after {
  background: #fff;
  opacity: 0.2;
}
.band--alt .btn--light {
  background: var(--ink);
  color: #fff;
}
.band--alt .btn--light:hover {
  background: #fff;
  color: var(--ink);
}

@media (max-width: 600px) {
  .band {
    padding: 24px 20px;
  }
  .band .btn {
    width: 100%;
  }
}

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

.slots li {
  margin: 0 !important;
}

.slots figure {
  position: relative;
  overflow: hidden;
  background: var(--tint);
}

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

.slots figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 8px 7px;
  background: linear-gradient(0deg, rgba(10, 12, 20, 0.9), rgba(10, 12, 20, 0));
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slots figure::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 0 transparent;
  transition: box-shadow 0.25s;
  pointer-events: none;
}

.slots li:hover img {
  transform: scale(1.07);
}
.slots li:hover figure::after {
  box-shadow: inset 0 -4px 0 0 var(--teal);
}

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

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

.article .slots--mini {
  gap: 6px;
  margin: 16px 0 0 !important;
}
.slots--mini figcaption {
  font-size: 10.5px;
  padding: 16px 6px 5px;
}

.gcards {
  display: grid;
  gap: 12px;
}

@container art (min-width: 620px) {
  .gcards {
    grid-template-columns: 1fr 1fr;
  }
  .gcard--wide {
    grid-column: 1 / -1;
  }
}

.gcard {
  padding: 22px 24px 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.gcard:nth-child(4n + 2),
.gcard:nth-child(4n + 3) {
  background: var(--surface-2);
}

.gcard h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}

.gcard h3::before {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--grad);
}

.gcard--wide {
  padding-bottom: 24px;
}

.mobile {
  display: grid;
  gap: 30px;
  align-items: center;
}

@container art (min-width: 620px) {
  .mobile {
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 44px;
  }
}

.mobile__text > :last-child {
  margin-bottom: 0;
}

.phone {
  display: block;
  text-decoration: none;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  width: min(250px, 72%);
  margin: 0 auto;
  padding: 10px;
  border-radius: 34px;
  background: var(--ink);
  box-shadow: 0 30px 60px -30px rgba(40, 20, 120, 0.55);
}

.phone:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 60px -28px rgba(107, 46, 224, 0.7);
}

.phone:focus-visible {
  outline-offset: 6px;
}

.phone__screen {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  overflow: hidden;
  border-radius: 26px;
  aspect-ratio: 9 / 19;
  background: #000;
}

.phone__screen::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  width: 70px;
  height: 18px;
  border-radius: 10px;
  background: var(--ink);
  transform: translateX(-50%);
}

.phone__logo {
  width: 52%;
}
.phone__screen img:last-child {
  width: 100%;
}

.article .steps {
  display: grid;
  gap: 10px;
  margin: 22px 0 !important;
  padding: 0 !important;
  list-style: none;
}

@container art (min-width: 460px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@container art (min-width: 720px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.steps li {
  display: flex;
  gap: 14px;
  margin: 0 !important;
  padding: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.steps li:nth-child(3n + 2) {
  background: var(--surface-2);
}

.steps__n {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}

.steps p {
  margin: 0;
}

.faq {
  display: grid;
  gap: 8px;
}

.faq details {
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

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

.faq summary h3 {
  margin: 0;
  font-size: 1.05rem;
  transition: color 0.2s;
}

.faq summary::after {
  content: '+';
  flex: 0 0 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--tint);
  color: var(--text);
  font-size: 18px;
  line-height: 1;
}

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

.faq summary:hover h3 {
  color: var(--link);
}
.faq__a {
  padding: 0 20px 6px;
}
.faq details[open] {
  box-shadow:
    inset 4px 0 0 var(--teal),
    var(--shadow);
}

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

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

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

.offer {
  position: relative;
  padding: 24px 22px 22px;
  background: var(--ink);
  color: var(--on-dark-soft);
  overflow: hidden;
}

.offer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
  background: var(--grad);
  opacity: 0.9;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.offer__logo {
  width: 120px;
  margin-bottom: 18px;
}

.offer__label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer__amount {
  margin: 2px 0 0;
  color: #fff;
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.15;
}

.offer__plus {
  margin: 4px 0 16px;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.offer dl {
  display: grid;
  gap: 2px;
  margin: 0 0 18px;
}

.offer dl div {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
}

.offer dt {
  font-size: 13px;
}
.offer dd {
  margin: 0;
  color: #fff;
  font-weight: 800;
}
.offer .btn {
  width: 100%;
}

@media (min-width: 700px) and (max-width: 1399px) {
  .offer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0 28px;
  }

  .offer__logo {
    grid-row: 1 / 4;
    margin: 0;
  }
  .offer dl {
    grid-column: 3;
    grid-row: 1 / 4;
    margin: 0;
    min-width: 220px;
  }
  .offer .btn {
    grid-column: 1 / -1;
    margin-top: 18px;
  }
  .offer__plus {
    margin-bottom: 0;
  }
}

.site-footer {
  position: relative;
  background: var(--ink);
  color: var(--on-dark-soft);
  font-size: 13px;
}

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

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

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

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

@media (min-width: 620px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (min-width: 980px) {
  .footer__top {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
  }
  .footer__brand {
    grid-column: auto;
  }
}

.footer__brand img {
  width: 150px;
  margin-bottom: 16px;
}
.footer__brand p {
  max-width: 46ch;
  margin: 0;
}

.footer__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: #fff;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__title::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--grad);
}

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

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social__i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
}

.social__i:hover {
  background: rgba(20, 211, 194, 0.18);
}
.social img {
  width: 22px;
  height: 22px;
}

.footer__logos {
  display: grid;
  gap: 30px;
  padding-top: 26px;
  padding-bottom: 34px;
}

.footer__row {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.footer__row-title {
  margin: 0;
  color: var(--on-dark-soft);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.logos li {
  display: flex;
  align-items: center;
}

.logos img {
  width: auto;
  height: 22px;
  max-width: 110px;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.logos a:hover img,
.logos li:hover img {
  opacity: 1;
}

.logos--rg img {
  height: 24px;
  max-width: 150px;
}
.logos--rg img[src$='age-18.svg'] {
  height: 28px;
}
.logos--pay img[src$='apple-pay.webp'] {
  height: 42px;
  margin: -10px 0;
}
.logos--pay img[src$='bitcoin.webp'],
.logos--pay img[src$='mastercard.webp'] {
  height: 26px;
}
.logos--pay img.mono {
  filter: brightness(0) invert(1);
  opacity: 0.75;
}
.logos--pay li:hover img.mono {
  opacity: 1;
}

.footer__bottom {
  background: #06070d;
}

.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  padding-top: 18px;
  padding-bottom: 22px;
}

.footer__bottom p {
  margin: 0;
}

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

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

.to-top::before {
  content: '';
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}
