:root {
  color-scheme: light dark;
  --bg: #f2f5f9;
  --paper: #ffffff;
  --ink: #101927;
  --muted: #617086;
  --line: rgba(129, 152, 180, 0.22);
  --soft: #eaf3fb;
  --blue: #173a61;
  --telegram: #2aabee;
  --green: #14845b;
  --shadow: 0 18px 52px rgba(20, 42, 71, 0.11);
  --radius: 20px;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  padding-bottom: 132px;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  top: -180px;
  right: -170px;
  z-index: 0;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(94, 182, 244, 0.11);
  box-shadow: 0 0 115px rgba(94, 182, 244, 0.16);
  content: "";
  filter: blur(22px);
  pointer-events: none;
}

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

img {
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid rgba(42, 171, 238, 0.32);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 30;
  transform: translateY(-150%);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  transition: transform 240ms var(--ease);
}

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

.container {
  width: min(100% - 28px, 1180px);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 76%, transparent);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 64px;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.brand span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 14px;
  background: rgba(42, 171, 238, 0.88);
  color: #fff;
  font-size: 0.8rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 5px 16px rgba(42, 171, 238, 0.18);
}

.brand b {
  font-size: 0.94rem;
  letter-spacing: -0.02em;
}

.nav-links {
  position: fixed;
  left: 14px;
  right: 14px;
  top: 74px;
  display: grid;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease), visibility 220ms var(--ease);
}

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

.nav-links a {
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  font-weight: 800;
}

.nav-links a:hover {
  background: var(--soft);
}

.nav-button {
  display: none;
}

.mobile-contact {
  background: var(--telegram);
  color: #fff !important;
  text-align: center;
}

.menu-toggle {
  display: inline-grid;
  grid-column: 3;
  justify-self: end;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
  transition: transform 220ms var(--ease);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  background: transparent;
  border-bottom: 0;
  padding: 42px 0 32px;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(125, 195, 247, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 34px 70px rgba(25, 86, 139, 0.1);
  backdrop-filter: blur(30px);
  pointer-events: none;
}

.hero::before {
  right: -92px;
  top: 30px;
  width: 224px;
  height: 224px;
  border-radius: 48% 52% 62% 38% / 42% 43% 57% 58%;
}

.hero::after {
  left: -68px;
  bottom: -92px;
  width: 155px;
  height: 155px;
  border-radius: 61% 39% 40% 60% / 57% 42% 58% 43%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--telegram);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.05rem, 9.5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.hero-lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.primary-button,
.secondary-button,
.nav-button {
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
}

.primary-button {
  display: inline-flex;
  gap: 9px;
  background: var(--telegram);
  color: #fff;
  padding: 0 18px;
  box-shadow: 0 16px 34px rgba(42, 171, 238, 0.28);
}

.primary-button:hover,
.nav-button:hover {
  background: #159bd8;
}

.secondary-button {
  display: inline-flex;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  padding: 0 18px;
}

.telegram-mark {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: currentColor;
}

.telegram-mark svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.trust-chips a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(123, 170, 212, 0.26);
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 55%, transparent);
  color: var(--blue);
  min-height: 38px;
  padding: 8px 12px;
  font-size: 0.79rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px) saturate(130%);
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease);
}

.trust-chips a::after {
  content: "→";
  color: var(--telegram);
  font-size: 0.9rem;
}

.trust-chips a:hover {
  background: #fff;
  border-color: rgba(42, 171, 238, 0.55);
  transform: translateY(-1px);
}

.hero-media {
  position: relative;
  margin: 0;
}

.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 22px 56px rgba(7, 31, 67, 0.14);
}

.hero-media figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  padding: 13px 14px;
  box-shadow: 0 12px 30px rgba(7, 31, 67, 0.16);
}

.hero-media figcaption strong {
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 800;
}

.hero-media figcaption span {
  color: var(--muted);
  font-size: 0.86rem;
}

.section {
  padding: 28px 0;
}

.section[id] {
  scroll-margin-top: 86px;
}

.section-head {
  max-width: 560px;
  margin-bottom: 18px;
}

.section-head h2,
.telegram-card h2,
.final-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.65rem, 7vw, 2.35rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.section-head p:not(.eyebrow),
.telegram-card p,
.final-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.trust-grid,
.steps-list,
.payout-cards {
  display: grid;
  gap: 12px;
}

.trust-grid article,
.steps-list article,
.payout-cards article,
.bank-card,
.faq-list,
.final-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 28px rgba(7, 31, 67, 0.04);
}

.trust-grid article {
  padding: 18px;
}

.trust-grid span {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 28px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
}

.trust-grid h3,
.steps-list h3 {
  margin: 12px 0 6px;
  color: var(--ink);
  font-size: 1.08rem;
}

.trust-grid p,
.steps-list p,
.payout-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.steps-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 16px;
}

.steps-list article > span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--telegram), var(--blue));
  color: #fff;
  font-weight: 800;
}

.steps-list h3 {
  margin-top: 2px;
}

.payout-cards article {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-color: rgba(130, 160, 190, 0.22);
  background: color-mix(in srgb, var(--paper) 68%, transparent);
  box-shadow: 0 10px 30px rgba(14, 38, 67, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(20px) saturate(125%);
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}

.payout-cards small {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  border: 1px solid rgba(42, 171, 238, 0.2);
  border-radius: 999px;
  background: rgba(42, 171, 238, 0.08);
  padding: 0 11px;
  color: var(--telegram);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.84rem;
}

.payout-cards strong {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: clamp(2rem, 9vw, 2.8rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
}

.payout-cards p {
  margin-top: 8px;
  line-height: 1.3;
}

.earnings-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.section-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.referral-card {
  display: grid;
  gap: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(111, 173, 228, 0.21);
  border-radius: 28px;
  background: rgba(13, 34, 62, 0.94);
  color: #fff;
  padding: 24px;
  box-shadow: 0 18px 42px rgba(7, 31, 67, 0.16), inset 0 1px 0 rgba(213, 238, 255, 0.11);
}

.referral-card::before {
  position: absolute;
  inset: auto -64px -104px auto;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(77, 156, 235, 0.15);
  box-shadow: 0 0 98px rgba(77, 156, 235, 0.24);
  content: "";
  filter: blur(8px);
}

.referral-card > * {
  position: relative;
  z-index: 1;
}

.referral-card .eyebrow,
.referral-card h2,
.referral-card p {
  color: #fff;
}

.referral-card .section-head {
  margin: 0;
}

.referral-card .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.referral-steps {
  display: grid;
  gap: 9px;
}

.referral-steps span {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.referral-steps b {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.8rem;
}

.bank-card {
  margin-top: 12px;
  padding: 18px;
}

.section-head.compact {
  margin-bottom: 14px;
}

.section-head.compact h3 {
  margin: 0;
  font-size: 1.35rem;
}

.bank-table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 13px 14px;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--ink);
  font-weight: 800;
}

td {
  color: var(--muted);
}

td:last-child,
th:last-child {
  color: var(--green);
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr:nth-child(even) {
  background: #fbfdff;
}

.telegram-card {
  display: grid;
  gap: 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #071f43, #0c4d93);
  color: #fff;
  padding: 24px;
  box-shadow: var(--shadow);
}

.telegram-card .eyebrow,
.telegram-card h2,
.telegram-card p {
  color: #fff;
}

.telegram-card p {
  color: rgba(255, 255, 255, 0.82);
}

.primary-button.light {
  background: #fff;
  color: var(--blue);
  box-shadow: none;
}

.faq-list {
  display: grid;
  overflow: hidden;
}

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

.faq-list details {
  background: #fff;
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 15px 46px 15px 16px;
  color: var(--ink);
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--telegram);
  font-size: 1.35rem;
  font-weight: 800;
}

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

.faq-list p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
}

.final-section {
  padding-bottom: 24px;
}

.final-card {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.final-card .primary-button {
  width: 100%;
}

.mobile-sticky-actions {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 440px;
  margin: 0 auto;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  background: color-mix(in srgb, var(--paper) 24%, transparent);
  padding: 6px;
  box-shadow: 0 18px 44px rgba(4, 19, 37, 0.17), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(34px) saturate(155%);
  -webkit-backdrop-filter: blur(34px) saturate(155%);
}

.mobile-sticky-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 18px;
  background:
    linear-gradient(125deg, rgba(124, 220, 255, 0.52), rgba(42, 171, 238, 0.43) 48%, rgba(102, 137, 249, 0.42)),
    rgba(42, 171, 238, 0.42);
  background-size: 180% 180%;
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: -0.015em;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 7px 18px rgba(6, 37, 76, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.44), inset 0 -1px 0 rgba(8, 52, 96, 0.12);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
  animation: liquid-shift 7s ease-in-out infinite;
}

.mobile-sticky-cta:active {
  transform: scale(0.97);
  box-shadow: inset 0 2px 8px rgba(4, 28, 62, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.mobile-reviews-cta {
  background:
    linear-gradient(125deg, rgba(55, 79, 112, 0.62), rgba(18, 35, 55, 0.72) 55%, rgba(30, 58, 88, 0.64)),
    rgba(10, 39, 76, 0.52);
  background-size: 180% 180%;
  animation-duration: 9s;
}

.dock-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 719px) {
  .nav {
    display: flex;
    justify-content: space-between;
    min-height: 62px;
  }

  .nav-links,
  .menu-toggle {
    display: none;
  }

  .brand span {
    width: 36px;
    height: 36px;
  }

  .hero {
    padding: 40px 0 28px;
  }

  .hero::before {
    right: -95px;
    top: 6px;
    width: 220px;
    height: 220px;
  }

  .hero::after {
    display: none;
  }

  .hero-copy h1 {
    max-width: 365px;
    font-size: clamp(2.05rem, 9.2vw, 2.55rem);
    letter-spacing: -0.04em;
    line-height: 1.02;
  }

  .hero-actions,
  .hero-media {
    display: none;
  }

  .trust-chips {
    margin-top: 22px;
  }

  .trust-chips a {
    min-height: 38px;
    padding: 8px 11px;
    font-size: 0.76rem;
  }

  .section {
    padding: 30px 0;
  }

  .section-head {
    margin-bottom: 15px;
  }

  .section-head h2,
  .telegram-card h2,
  .final-card h2 {
    font-size: clamp(1.75rem, 8vw, 2.15rem);
    letter-spacing: -0.025em;
  }

  .payout-cards {
    gap: 10px;
  }

  .payout-cards article {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: 88px;
    column-gap: 14px;
    border-radius: 22px;
    padding: 14px 17px;
  }

  .payout-cards strong {
    margin: 0;
    font-size: clamp(1.72rem, 8vw, 2rem);
    text-align: right;
  }

  .payout-cards p {
    grid-column: 1 / -1;
    margin-top: 8px;
    font-size: 0.76rem;
  }

  .earnings-note {
    margin: 14px 3px 0;
  }

  .section-actions {
    margin-top: 15px;
  }

  .section-actions .secondary-button {
    min-height: 50px;
  }

  .referral-card,
  .telegram-card {
    border-radius: 24px;
    padding: 24px 20px;
  }

  .referral-steps {
    gap: 11px;
  }

  .referral-card > .primary-button,
  .telegram-card > .primary-button {
    width: 100%;
  }
}

@media (min-width: 720px) {
  body {
    padding-bottom: 0;
  }

  .container {
    width: min(100% - 48px, 1180px);
  }

  .hero {
    padding: 48px 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
    align-items: center;
    gap: 44px;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 5vw, 5.25rem);
  }

  .hero-lead {
    max-width: 640px;
    font-size: 1.15rem;
  }

  .hero-actions {
    display: flex;
    align-items: center;
  }

  .primary-button,
  .secondary-button {
    min-width: 220px;
  }

  .section-actions {
    display: flex;
    align-items: center;
  }

  .hero-media {
    justify-self: end;
  }

  .section {
    padding: 34px 0;
  }

  .trust-grid,
  .payout-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-list--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .telegram-card {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 34px 38px;
  }

  .referral-card {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    align-items: center;
    padding: 34px 38px;
  }

  .referral-card > .primary-button {
    grid-column: 2;
  }

  .final-card {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 30px 34px;
  }

  .final-card p {
    max-width: 650px;
  }

  .final-card .primary-button {
    width: auto;
  }

  .mobile-sticky-actions {
    display: none;
  }
}

@media (min-width: 920px) {
  .nav {
    grid-template-columns: auto 1fr auto;
    min-height: 74px;
    gap: 28px;
  }

  .nav-links {
    position: static;
    display: flex;
    justify-self: center;
    gap: 26px;
    border: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
  }

  .nav-links a {
    padding: 0;
    font-size: 0.95rem;
  }

  .nav-links a:hover {
    background: transparent;
    color: var(--telegram);
  }

  .mobile-contact {
    display: none;
  }

  .nav-button {
    display: inline-flex;
    min-height: 46px;
    background: var(--telegram);
    color: #fff;
    padding: 0 18px;
    box-shadow: 0 12px 28px rgba(42, 171, 238, 0.24);
  }

  .menu-toggle {
    display: none;
  }
}

@media (min-width: 1280px) {
  .hero-media {
    left: clamp(32px, 4vw, 76px);
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .hero-copy h1 {
    font-size: clamp(1.95rem, 9vw, 2.55rem);
  }

  .hero-media img {
    max-height: 320px;
  }

  .trust-chips a {
    font-size: 0.78rem;
  }

  .steps-list article {
    grid-template-columns: 38px 1fr;
    padding: 14px;
  }

  .steps-list article > span {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0a0c10;
    --paper: #10151d;
    --ink: #f2f5f9;
    --muted: #aeb9c8;
    --line: rgba(151, 174, 201, 0.18);
    --soft: #172130;
    --blue: #b8dcff;
    --telegram: #2aabee;
    --green: #70d7aa;
    --shadow: 0 18px 52px rgba(0, 0, 0, 0.3);
  }

  body::before {
    background: rgba(53, 117, 181, 0.16);
    box-shadow: 0 0 135px rgba(53, 117, 181, 0.22);
  }

  .header {
    border-bottom-color: var(--line);
    background: rgba(10, 12, 16, 0.7);
  }

  .hero {
    background: transparent;
  }

  .hero::before,
  .hero::after {
    border-color: rgba(174, 210, 244, 0.15);
    background: rgba(82, 144, 204, 0.09);
    box-shadow: inset 0 1px 0 rgba(220, 242, 255, 0.08), 0 34px 70px rgba(0, 0, 0, 0.19);
  }

  .nav-links,
  .menu-toggle,
  .secondary-button,
  .faq-list details {
    background: rgba(16, 21, 29, 0.9);
  }

  .trust-chips a {
    border-color: rgba(145, 185, 222, 0.25);
    background: rgba(31, 44, 59, 0.56);
    color: #d2e8fc;
  }

  .trust-grid article,
  .steps-list article,
  .bank-card,
  .faq-list,
  .final-card {
    background: rgba(11, 29, 53, 0.78);
    box-shadow: inset 0 1px 0 rgba(220, 242, 255, 0.06), 0 8px 28px rgba(0, 0, 0, 0.16);
  }

  .payout-cards article {
    border-color: rgba(145, 175, 205, 0.2);
    background: rgba(23, 30, 40, 0.7);
    box-shadow: inset 0 1px 0 rgba(220, 242, 255, 0.07), 0 12px 30px rgba(0, 0, 0, 0.18);
  }

  .payout-cards small {
    border-color: rgba(101, 194, 246, 0.22);
    background: rgba(47, 132, 190, 0.11);
  }

  .hero-media figcaption {
    border-color: rgba(157, 213, 255, 0.18);
    background: rgba(7, 20, 38, 0.82);
  }

  .hero-media figcaption strong,
  .section-head h2,
  .telegram-card h2,
  .final-card h2 {
    color: var(--ink);
  }

  .primary-button.light {
    background: #dff2ff;
    color: #0a3a78;
  }

  .mobile-sticky-actions {
    border-color: rgba(195, 218, 240, 0.16);
    background: rgba(19, 25, 34, 0.66);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(220, 242, 255, 0.09);
  }

  .mobile-reviews-cta {
    background:
      linear-gradient(125deg, rgba(49, 66, 90, 0.74), rgba(20, 29, 42, 0.8) 55%, rgba(33, 53, 76, 0.75)),
      rgba(23, 32, 45, 0.68);
  }
}

@keyframes liquid-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
