:root {
  --bg: #08090c;
  --bg-elevated: #101218;
  --bg-soft: #171a22;
  --panel: #12151c;
  --panel-2: #1a1d26;
  --text: #f5f2ed;
  --muted: #aaa7a2;
  --line: rgba(255, 255, 255, 0.11);
  --ember: #ff4b22;
  --ember-hot: #ff7a1a;
  --gold: #ffc83d;
  --green: #38b86a;
  --danger: #e64343;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --radius: 18px;
  --container: 1200px;
  --section-space: 16px;
  --flow-space: 12px;
  --header-height: 76px;
  --heading-font: Inter, "Segoe UI", Arial, sans-serif;
  --service-wine: #36110d;
  --service-plum: #191116;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.72;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 49.85%, rgba(255, 200, 61, 0.018) 50%, transparent 50.15%),
    repeating-linear-gradient(0deg, transparent 0 79px, rgba(255, 255, 255, 0.018) 80px);
}

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

h1,
h2,
h3,
p,
li,
th,
td,
.cta,
.nav-link {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--gold);
  color: #111;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 12, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: 130px;
  height: 50px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 1;
}

.nav-link {
  position: relative;
  padding: 12px 14px;
  color: #d9d7d3;
  font-weight: 700;
  text-decoration: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--ember), var(--gold));
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: 14px;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.geo-switcher {
  position: relative;
  flex: 0 0 auto;
  margin-left: 8px;
}

.geo-switcher__toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-weight: 700;
  list-style: none;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.geo-switcher__toggle::-webkit-details-marker {
  display: none;
}

.geo-switcher__toggle:hover,
.geo-switcher__toggle:focus-visible,
.geo-switcher[open] .geo-switcher__toggle {
  border-color: rgba(255, 174, 31, 0.72);
  background: rgba(255, 104, 24, 0.1);
}

.geo-switcher__flag {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 50%;
  object-fit: contain;
}

.geo-switcher__current {
  white-space: nowrap;
}

.geo-switcher__chevron {
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.geo-switcher[open] .geo-switcher__chevron {
  transform: translateY(2px) rotate(225deg);
}

.geo-switcher__menu {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  z-index: 120;
  width: max-content;
  min-width: 0;
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #111217;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.46);
}

.geo-switcher__option {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 8px;
  color: #e6e2dc;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.geo-switcher__option:hover,
.geo-switcher__option:focus-visible {
  color: #fff;
  background: linear-gradient(90deg, rgba(255, 93, 28, 0.18), rgba(255, 190, 37, 0.08));
  transform: translateX(2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--text);
  transform-origin: center;
  transition: transform 220ms cubic-bezier(.2,.8,.2,1), opacity 140ms ease, width 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg) scaleX(0.88);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg) scaleX(0.88);
}

.cta {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 207, 80, 0.25);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ember), #ff2f3d 70%);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(255, 75, 34, 0.18), inset 0 1px rgba(255, 255, 255, 0.2);
  transition: transform 150ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cta > span:not(.ripple) {
  position: relative;
  z-index: 2;
}

.cta:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 200, 61, 0.7);
  box-shadow: 0 14px 32px rgba(255, 75, 34, 0.28), inset 0 1px rgba(255, 255, 255, 0.24);
}

.cta:active {
  transform: translateY(1px) scale(0.985);
}

.cta:focus-visible,
.nav-link:focus-visible,
.menu-toggle:focus-visible,
.geo-switcher__toggle:focus-visible,
.geo-switcher__option:focus-visible,
.faq-item summary:focus-visible,
.text-link:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.cta--ghost,
.cta--soft {
  border-color: var(--line);
  background: var(--panel-2);
  box-shadow: none;
}

.cta--nav {
  min-height: 42px;
  padding: 10px 16px;
}

.cta--download {
  gap: 11px;
  min-width: 218px;
  min-height: 58px;
  padding-block: 11px;
}

.cta--download > span {
  line-height: 1.12;
  text-align: left;
}

.cta__platform-icon {
  position: relative;
  z-index: 2;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  object-fit: contain;
}

.ripple {
  position: absolute;
  z-index: 1;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255, 225, 144, 0.55);
  transform: translate(-50%, -50%) scale(0);
  animation: ember-ripple 520ms ease-out forwards;
}

@keyframes ember-ripple {
  to {
    transform: translate(-50%, -50%) scale(12);
    opacity: 0;
  }
}

.hero {
  position: relative;
  min-height: clamp(540px, 50vw, 620px);
  display: grid;
  align-items: center;
  margin-top: var(--section-space);
  overflow: hidden;
  border: 1px solid rgba(255, 200, 61, 0.2);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

[data-page-kind="main"] .hero__media {
  background: #160d08 url('../img/hero/home-hero-v2.webp') center / cover no-repeat;
  transform: scale(1.015);
}

[data-page-kind="bonus"] .hero__media {
  background: #160d08 url('../img/hero/bonus-hero-v2.webp') center / cover no-repeat;
  transform: scale(1.015);
}

[data-page-kind="app"] .hero__media {
  background: #0b1011 url('../img/hero/app-hero-v2.webp') center / cover no-repeat;
  transform: scale(1.015);
}

.hero__overlay {
  background: linear-gradient(90deg, rgba(7, 8, 11, 0.94) 0%, rgba(7, 8, 11, 0.79) 38%, rgba(7, 8, 11, 0.2) 68%, rgba(7, 8, 11, 0.03) 100%), linear-gradient(0deg, rgba(8, 9, 12, 0.62), transparent 46%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-inline: clamp(28px, 5vw, 72px);
  padding-block: 90px 80px;
}

.breadcrumb {
  margin: 0 0 var(--flow-space);
  color: #c4c0ba;
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.breadcrumb span {
  margin-inline: 8px;
  color: #6f6d69;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--ember), var(--gold));
  box-shadow: 0 0 12px rgba(255, 75, 34, 0.45);
}

.hero h1,
.service-hero h1,
.not-found h1 {
  max-width: 920px;
  margin: 18px 0 24px;
  font-family: var(--heading-font);
  font-size: clamp(40px, 5.2vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.018em;
  text-transform: none;
  text-wrap: balance;
}

.hero__lead {
  max-width: 700px;
  color: #d5d1ca;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.68;
}

.hero__lead p {
  margin: 0 0 12px;
}

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

.hero__actions .cta--hero-download {
  min-width: 224px;
}

[data-page-kind="bonus"] .hero__inner {
  padding-block: 58px;
}

[data-page-kind="bonus"] .hero h1 {
  font-size: clamp(40px, 4.8vw, 68px);
}

[data-page-kind="bonus"] .hero__lead {
  max-width: 660px;
  font-size: 17px;
  line-height: 1.56;
}

[data-page-kind="bonus"] .hero__lead p {
  margin-bottom: 8px;
}

.article-shell {
  position: relative;
  padding-block: 0;
}

main[data-page-kind] .article-shell {
  isolation: isolate;
}

main[data-page-kind] .article-shell::before {
  content: "";
  position: absolute;
  inset: 0 -14px;
  z-index: -1;
  pointer-events: none;
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 18%, rgba(54, 17, 13, 0.28), transparent 27%),
    radial-gradient(circle at 88% 62%, rgba(25, 17, 22, 0.52), transparent 30%),
    linear-gradient(180deg, rgba(25, 17, 22, 0.16), rgba(8, 9, 12, 0.05));
  opacity: 0.88;
}

.content-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  padding-block: var(--section-space);
  border-bottom: 1px solid var(--line);
}

.content-section:last-child {
  border-bottom: 0;
}

main[data-page-kind] .content-section {
  margin-block: 7px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0, rgba(54, 17, 13, 0.3), transparent 34%),
    linear-gradient(120deg, rgba(25, 17, 22, 0.78), rgba(8, 9, 12, 0.9) 48%, rgba(54, 17, 13, 0.18));
  background-position: 0 50%;
  background-size: 145% 145%;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
  transition: border-color 180ms ease, background-position 260ms ease, box-shadow 220ms ease, transform 180ms ease;
}

main[data-page-kind] .content-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 190px;
  height: 190px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 75, 34, 0.2), rgba(54, 17, 13, 0.08) 42%, transparent 70%);
  opacity: 0;
  transform: translate(48%, -48%) scale(0.72);
  transition: opacity 220ms ease, transform 300ms cubic-bezier(.2,.8,.2,1);
}

@media (hover: hover) {
  main[data-page-kind] .content-section:hover {
    z-index: 1;
    border-color: rgba(255, 122, 26, 0.34);
    background-position: 100% 50%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2), inset 3px 0 rgba(255, 75, 34, 0.44), inset 0 1px rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
  }

  main[data-page-kind] .content-section:hover::after {
    opacity: 1;
    transform: translate(42%, -42%) scale(1);
  }
}

.section-heading {
  position: static;
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
  align-self: start;
  padding-top: 4px;
}

.section-heading::after {
  content: "";
  display: block;
  width: min(190px, 78%);
  height: 2px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--ember), var(--gold) 45%, transparent);
  box-shadow: -4px 0 12px rgba(255, 75, 34, 0.48);
}

.section-heading h2,
.promo-copy h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(27px, 2.9vw, 42px);
  font-weight: 800;
  line-height: 1.17;
  letter-spacing: -0.014em;
  text-wrap: balance;
}

.section-heading h2 {
  display: block;
  width: 100%;
  max-width: none;
  text-wrap: wrap;
}

.section-body {
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
  min-width: 0;
  color: #d7d4ce;
}

.section-body > :first-child {
  margin-top: 0;
}

.section-body p {
  margin: 0 0 var(--flow-space);
}

.section-body .expert-signature {
  color: var(--paper);
  font-weight: 900;
}

.plain-questions {
  display: block;
}

.plain-question-answer {
  max-width: none;
}

.plain-question-answer strong {
  color: var(--paper);
  font-weight: 750;
}

.expert-signature strong {
  font-weight: inherit;
}

.section-body h3 {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  margin: 20px 0 var(--flow-space);
  padding-left: 18px;
  color: #fff;
  font-family: var(--heading-font);
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: -0.008em;
  text-wrap: wrap;
}

.section-body h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.14em;
  bottom: 0.14em;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(var(--gold), var(--ember));
}

.offer-card-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.offer-card {
  position: relative;
  grid-column: span 2;
  min-width: 0;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 75, 34, 0.09), rgba(18, 21, 28, 0.96) 48%);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.offer-card:nth-child(n + 4) {
  grid-column: span 3;
}

.offer-card-grid--two-one .offer-card {
  grid-column: span 3;
}

.offer-card-grid--two-one .offer-card:nth-child(3) {
  grid-column: 1 / -1;
}

.offer-card-grid--two-equal .offer-card {
  grid-column: span 3;
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--ember), var(--gold), transparent 82%);
}

.offer-card h3 {
  margin: 0 0 12px;
  padding: 0;
  font-size: clamp(21px, 1.8vw, 27px);
  line-height: 1.22;
}

.section-body .offer-card h3 {
  width: 100%;
  max-width: none;
  margin: 0 0 12px;
  padding: 0;
  text-align: left;
  text-wrap: wrap;
}

.offer-card h3::before {
  display: none;
}

.offer-card__body {
  color: #d7d4ce;
  font-size: 15px;
  line-height: 1.65;
}

.offer-card__body p {
  margin: 0 0 10px;
}

.offer-card__body p:last-child {
  margin-bottom: 0;
}

.list-label {
  margin-top: 16px !important;
  color: #fff;
  font-size: 18px;
}

.feature-list,
.steps-list {
  margin: 14px 0 16px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  margin: 8px 0;
  padding: 12px 16px 12px 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: linear-gradient(90deg, rgba(255, 75, 34, 0.06), rgba(255, 255, 255, 0.025));
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 50%;
  width: 12px;
  height: 12px;
  clip-path: polygon(50% 0, 100% 100%, 50% 78%, 0 100%);
  background: linear-gradient(var(--gold), var(--ember));
  transform: translateY(-50%);
}

.steps-list {
  counter-reset: steps;
  position: relative;
}

.steps-list::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(var(--gold), var(--ember), rgba(255, 75, 34, 0.08));
  box-shadow: 0 0 16px rgba(255, 75, 34, 0.28);
}

.steps-list li {
  counter-increment: steps;
  position: relative;
  min-height: 56px;
  margin: 0 0 12px;
  padding: 12px 16px 12px 68px;
}

.steps-list li::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  z-index: 1;
  left: 0;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 200, 61, 0.45);
  border-radius: 14px;
  background: #151218;
  color: var(--gold);
  font-family: Oswald, Impact, sans-serif;
  font-weight: 700;
  box-shadow: 0 0 0 5px var(--bg);
  transform: translateY(-50%);
}

.table-wrap {
  max-width: 100%;
  margin: 16px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--panel);
  box-shadow: var(--shadow);
  scrollbar-color: var(--ember) #1b1c21;
}

table {
  width: 100%;
  min-width: 670px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.48;
}

th,
td {
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
  vertical-align: middle;
}

th:last-child,
td:last-child {
  border-right: 0;
}

thead th {
  background: linear-gradient(90deg, #2a1314, #1a171a);
  color: var(--gold);
  font-weight: 800;
}

tbody tr:nth-child(odd) {
  background: linear-gradient(90deg, rgba(255, 75, 34, 0.055), rgba(255, 255, 255, 0.015));
}

tbody tr:nth-child(even) {
  background: linear-gradient(90deg, rgba(255, 200, 61, 0.025), transparent);
}

tbody tr {
  box-shadow: inset 3px 0 transparent;
  transition: background 160ms ease, box-shadow 160ms ease;
}

tbody tr:hover {
  background: linear-gradient(90deg, rgba(255, 75, 34, 0.16), rgba(255, 200, 61, 0.035));
  box-shadow: inset 3px 0 var(--ember), inset 9px 0 18px rgba(255, 75, 34, 0.08);
}

.section-action {
  margin-top: 16px;
}

.cta--thematic {
  min-width: 240px;
  box-shadow: 0 14px 30px rgba(255, 75, 34, 0.22);
}

.promo-breaker {
  position: relative;
  min-height: 380px;
  display: grid;
  align-items: stretch;
  margin: var(--section-space) 0;
  overflow: hidden;
  border: 1px solid rgba(255, 200, 61, 0.25);
  border-radius: 22px;
  background-color: #0b0c0f;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: var(--shadow);
}

.promo-breaker::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 200, 61, 0.92) 45%, transparent 72%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transform: translateX(-55%);
}

.promo-breaker:hover::after {
  opacity: 1;
  animation: border-scan 900ms ease both;
}

@keyframes border-scan {
  to { transform: translateX(55%); }
}

.promo-breaker__overlay {
  position: absolute;
  inset: 0;
}

.promo-breaker--left .promo-breaker__overlay {
  background: linear-gradient(90deg, rgba(5, 6, 8, 0.97) 0%, rgba(5, 6, 8, 0.86) 38%, rgba(5, 6, 8, 0.2) 70%, rgba(5, 6, 8, 0.05));
}

.promo-breaker--right .promo-breaker__overlay {
  background: linear-gradient(270deg, rgba(5, 6, 8, 0.97) 0%, rgba(5, 6, 8, 0.86) 38%, rgba(5, 6, 8, 0.2) 70%, rgba(5, 6, 8, 0.05));
}

.promo-breaker__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
}

.promo-breaker--right .promo-breaker__inner {
  justify-content: flex-end;
}

.promo-copy {
  width: min(490px, 48%);
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.promo-copy h2 {
  margin: 14px 0 16px;
}

.promo-copy p {
  margin: 0 0 18px;
  color: #d4d1cb;
}

.faq-list {
  margin-top: 16px;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  transition: background 160ms ease, transform 160ms ease;
}

.faq-item:hover {
  transform: translateX(4px);
  background: rgba(255, 75, 34, 0.035);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  color: #fff;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  grid-column: 3;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  align-self: center;
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-number {
  width: 100%;
  min-height: 24px;
  display: grid;
  place-items: center;
  align-self: center;
  color: var(--ember-hot);
  font-family: Oswald, Impact, sans-serif;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.12em;
}

.faq-answer {
  padding: 0 56px 16px 66px;
  color: #c9c5bf;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.quote-card {
  position: relative;
  min-height: 0;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 75, 34, 0.08), rgba(255, 255, 255, 0.025));
  transition: transform 180ms ease, border-color 180ms ease;
}

.quote-card::before {
  content: "“";
  position: absolute;
  right: 18px;
  top: -8px;
  color: rgba(255, 200, 61, 0.11);
  font-family: Georgia, serif;
  font-size: 100px;
  line-height: 1;
}

.quote-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 200, 61, 0.38);
}

.quote-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #e6e2dc;
  font-size: 15px;
}

.quote-author {
  position: relative;
  z-index: 1;
  margin: 14px 0 0 !important;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.quote-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: 14px !important;
  color: #c9c5bf;
}

.quote-summary strong,
.quote-rating {
  color: var(--gold);
  font-weight: 800;
}

.quote-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 12px;
  margin-top: 8px;
  color: #aaa39a;
  font-size: 12px;
}

.quote-rating,
.quote-meta time {
  white-space: nowrap;
}

.service-hero {
  padding: 48px 0 36px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, #08090c 0%, #191116 55%, #36110d 100%);
}

.service-hero h1 {
  width: 100%;
  max-width: none;
  text-wrap: wrap;
  font-size: clamp(44px, 6vw, 76px);
}

.service-hero p {
  max-width: 740px;
  color: #d1cdc7;
  font-size: 18px;
}

.service-hero--single {
  padding-bottom: 48px;
  border-bottom: 0;
}

.service-hero--single h1 {
  margin-bottom: 24px;
}

.service-questions {
  margin-top: 0;
}

.service-hero .service-questions .plain-question-answer {
  max-width: none;
  margin: 0 0 14px;
  color: #d7d4ce;
  font-size: 16px;
  line-height: 1.65;
}

.service-hero .service-questions .plain-question-answer:last-child {
  margin-bottom: 0;
}

.article-shell--service .content-section {
  grid-template-columns: minmax(0, 1fr);
}

.text-link {
  color: var(--gold);
  font-weight: 800;
}

.not-found {
  min-height: 68vh;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(135deg, #08090c, #27100e);
}

.not-found__inner {
  padding-block: 80px;
}

.error-code {
  display: block;
  color: rgba(255, 200, 61, 0.16);
  font-family: Oswald, Impact, sans-serif;
  font-size: clamp(110px, 22vw, 250px);
  font-weight: 700;
  line-height: 0.76;
}

.not-found h1 {
  margin-inline: auto;
  font-size: clamp(42px, 6vw, 72px);
}

.not-found p {
  max-width: 620px;
  margin: 0 auto 30px;
  color: #cfcbc4;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #07080a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  justify-items: center;
  gap: 24px;
  padding-block: 32px 24px;
  text-align: center;
}

.footer-grid > div:first-child {
  display: grid;
  justify-items: center;
}

.brand--footer {
  width: max-content;
  margin-bottom: 20px;
}

.footer-grid p {
  margin: 0;
  color: #999691;
  font-size: 14px;
}

.footer-grid nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  gap: 18px;
}

.footer-nav__column {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 10px;
}

.footer-grid nav a {
  color: #c3c0ba;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.footer-grid nav a:hover {
  color: var(--gold);
}

.responsible {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 16px;
  align-items: center;
  width: 100%;
  max-width: 380px;
  text-align: center;
}

.age-badge {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 2px solid var(--danger);
  border-radius: 50%;
  color: #fff;
  font-family: Oswald, Impact, sans-serif;
  font-size: 19px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: 20px;
  padding-block: 16px 20px;
  border-top: 1px solid var(--line);
  color: #74716d;
  font-size: 12px;
}

.reveal,
.reveal-title {
  opacity: 1;
  transform: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.reveal-title {
  clip-path: none;
}

.reveal.is-visible,
.reveal-title.is-visible {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0);
}

@media (max-width: 960px) {
  .offer-card {
    grid-column: span 3;
  }

  .offer-card:last-child {
    grid-column: span 6;
  }

  .offer-card-grid--two-equal .offer-card,
  .offer-card-grid--two-one .offer-card {
    grid-column: span 3;
  }

  .offer-card-grid--two-one .offer-card:nth-child(3) {
    grid-column: 1 / -1;
  }

  :root {
    --header-height: 68px;
  }

  .container {
    width: min(var(--container), calc(100% - 36px));
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: grid;
    justify-content: center;
    justify-items: center;
    gap: 4px;
    padding: 16px 18px 20px;
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
    border-bottom: 1px solid var(--line);
    background: #0c0d11;
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.42);
    transform: translateY(-10px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 200ms cubic-bezier(.2,.8,.2,1), visibility 0s linear 200ms;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .nav-link {
    width: min(100%, 320px);
    padding: 12px 16px;
    text-align: center;
  }

  .nav-link::after {
    left: 50%;
    right: auto;
    width: 70px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
  }

  .nav-link:hover::after,
  .nav-link:focus-visible::after,
  .nav-link.is-active::after {
    transform: translateX(-50%) scaleX(1);
  }

  .nav-actions {
    width: min(100%, 320px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    justify-self: center;
    margin: 9px 0 0;
  }

  .nav-actions .cta {
    width: 100%;
  }

  .geo-switcher {
    width: auto;
    margin: 0;
  }

  .geo-switcher__toggle {
    width: auto;
  }

  .geo-switcher__menu {
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    width: max-content;
    min-width: 0;
    margin: 0;
  }

  .content-section,
  .article-shell--service .content-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-heading {
    position: static;
  }

  .section-heading::after {
    width: 150px;
  }

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

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

  .responsible {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 520px;
  }

  .hero__inner,
  [data-page-kind="bonus"] .hero__inner {
    padding-block: 64px 56px;
  }

  .hero h1,
  [data-page-kind="bonus"] .hero h1 {
    font-size: clamp(36px, 8vw, 54px);
  }

  .promo-breaker,
  .promo-breaker__inner {
    min-height: 360px;
  }

  .promo-copy {
    width: min(560px, 70%);
  }
}

@media (max-width: 638px) {
  .offer-card-grid {
    grid-template-columns: 1fr;
  }

  .offer-card,
  .offer-card:nth-child(n + 4),
  .offer-card:last-child,
  .offer-card-grid--two-one .offer-card,
  .offer-card-grid--two-one .offer-card:nth-child(3),
  .offer-card-grid--two-equal .offer-card {
    grid-column: auto;
  }

  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .brand-logo {
    width: 112px;
    height: auto;
  }

  .header-inner {
    gap: 14px;
  }

  .hero {
    min-height: 520px;
    border-radius: 18px;
  }

  [data-page-kind="app"] .hero {
    min-height: 610px;
  }

  [data-page-kind="main"] .hero__media,
  [data-page-kind="bonus"] .hero__media,
  [data-page-kind="app"] .hero__media {
    background-position: 72% center;
  }

  .hero__overlay {
    background: linear-gradient(0deg, rgba(7, 8, 11, 0.99) 0%, rgba(7, 8, 11, 0.91) 48%, rgba(7, 8, 11, 0.44) 100%);
  }

  .hero__inner {
    align-self: end;
    padding-inline: 20px;
    padding-block: 56px 38px;
  }

  .hero h1,
  .service-hero h1,
  .not-found h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  [data-page-kind="bonus"] .hero h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .hero__lead {
    font-size: 16px;
    line-height: 1.56;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 18px;
  }

  .hero__actions .cta--hero-download {
    width: 100%;
    min-width: 0;
  }

  .content-section {
    padding-block: var(--section-space);
  }

  main[data-page-kind] .article-shell::before {
    inset-inline: -7px;
    border-radius: 18px;
  }

  main[data-page-kind] .content-section {
    margin-block: 6px;
    padding: 16px;
    border-radius: 14px;
  }

  .section-heading {
    padding-top: 0;
  }

  .section-heading::after {
    margin-top: 10px;
  }

  .section-heading h2,
  .promo-copy h2 {
    font-size: clamp(29px, 9.5vw, 40px);
  }

  .section-body h3 {
    margin-top: 22px;
    padding-left: 14px;
    font-size: clamp(22px, 6.4vw, 26px);
  }

  .offer-card-grid {
    gap: 12px;
    margin-top: 14px;
  }

  .offer-card {
    padding: 17px;
  }

  .offer-card h3 {
    font-size: clamp(21px, 6vw, 25px);
  }

  .offer-card__body {
    font-size: 14.5px;
  }

  .feature-list li {
    padding-left: 44px;
  }

  .table-wrap {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    border-radius: 12px;
  }

  table {
    min-width: 620px;
    font-size: 13px;
  }

  th,
  td {
    padding: 13px 14px;
  }

  .promo-breaker {
    min-height: 410px;
    margin-inline: 0;
    border-radius: 16px;
  }

  .promo-breaker--left {
    background-position: 100% center;
  }

  .promo-breaker--right {
    background-position: 0% center;
  }

  .promo-breaker--left .promo-breaker__overlay,
  .promo-breaker--right .promo-breaker__overlay {
    background: linear-gradient(0deg, rgba(5, 6, 8, 0.98) 0%, rgba(5, 6, 8, 0.9) 46%, rgba(5, 6, 8, 0.18) 78%, rgba(5, 6, 8, 0.02));
  }

  .promo-breaker__inner {
    min-height: 410px;
    align-items: flex-end;
    padding: 28px 20px;
  }

  .promo-breaker--right .promo-breaker__inner {
    justify-content: flex-start;
  }

  .promo-copy {
    width: 100%;
    max-width: none;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .promo-copy .cta {
    width: 100%;
  }

  .faq-item summary {
    grid-template-columns: 34px minmax(0, 1fr) 24px;
    gap: 10px;
  }

  .faq-answer {
    padding: 0 0 22px 44px;
  }

  .faq-item summary {
    padding-block: 18px;
  }

  .quote-card {
    min-height: auto;
  }

  .service-hero {
    padding: 32px 0 28px;
  }

  .service-hero--single {
    padding-bottom: 32px;
  }

  .service-hero--single h1 {
    margin-bottom: 18px;
  }

  .service-hero .service-questions .plain-question-answer {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.62;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .responsible {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 390px) {
  .nav-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav-actions .cta {
    width: 100%;
  }

  .container {
    width: min(var(--container), calc(100% - 22px));
  }

  main[data-page-kind] .content-section {
    padding: 14px;
  }

  .hero {
    min-height: 500px;
    border-radius: 15px;
  }

  [data-page-kind="app"] .hero {
    min-height: 590px;
  }

  .hero__inner {
    padding-inline: 16px;
    padding-bottom: 28px;
  }

  .hero h1,
  .service-hero h1,
  .not-found h1,
  [data-page-kind="bonus"] .hero h1 {
    font-size: clamp(31px, 10vw, 40px);
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .cta {
    min-height: 46px;
    padding-inline: 16px;
  }

  .cta--download {
    min-height: 56px;
  }

  .section-heading h2,
  .promo-copy h2 {
    font-size: clamp(27px, 9vw, 34px);
  }

  .feature-list li {
    padding-right: 12px;
  }

  .steps-list li {
    padding-left: 62px;
  }

  .promo-breaker,
  .promo-breaker__inner {
    min-height: 390px;
  }

  .promo-breaker__inner {
    padding: 24px 16px;
  }

  .faq-item summary {
    grid-template-columns: 28px minmax(0, 1fr) 20px;
    gap: 8px;
  }

  .faq-answer {
    padding-left: 36px;
  }

  .footer-grid nav {
    gap: 12px;
  }

  .responsible {
    gap: 12px;
  }

  .age-badge {
    width: 48px;
    height: 48px;
    font-size: 17px;
  }

  .section-action .cta {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal,
  .reveal-title {
    opacity: 1;
    transform: none;
    clip-path: none;
  }
}
