/* ═══════════════════════════════════════════════
   EXO — крипто-карта. Дизайн в стилистике exodus.com
   ═══════════════════════════════════════════════ */

:root {
  --bg: #0a0910;
  --bg-soft: #12101c;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-border: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --text-dim: #9d99b0;
  --text-faint: #6d6980;

  --purple: #7b5cf5;
  --purple-soft: #a688fa;
  --blue: #4f6bff;
  --green: #57e879;
  --lime: #b3f65f;

  --grad-btn: linear-gradient(100deg, #7c5cff 0%, #a67ef8 100%);
  --grad-purple: linear-gradient(100deg, #8f7bff 0%, #c49bff 100%);
  --grad-green: linear-gradient(100deg, #57e879 0%, #b3f65f 100%);

  --font-head: "Manrope", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --radius: 20px;
  --nav-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  width: min(1160px, 100% - 48px);
  margin-inline: auto;
}
.container--narrow { width: min(820px, 100% - 48px); }

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, opacity 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--grad-btn);
  color: #fff;
  box-shadow: 0 8px 30px rgba(124, 92, 255, 0.35);
}
.btn--primary:hover { box-shadow: 0 12px 40px rgba(124, 92, 255, 0.5); }

.btn--white {
  background: #fff;
  color: #17151f;
}
.btn--white:hover { box-shadow: 0 10px 34px rgba(255, 255, 255, 0.22); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.14); }

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
}
.btn--outline:hover { border-color: var(--purple-soft); color: var(--purple-soft); }

.btn--lg { padding: 17px 34px; font-size: 16px; }
.btn--block { width: 100%; }

/* ── Nav ─────────────────────────────────── */
.nav-wrap {
  position: fixed;
  inset-inline: 0;
  top: 14px;
  z-index: 100;
  padding-inline: 20px;
}

.nav {
  width: min(1160px, 100%);
  margin-inline: auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 14px 0 26px;
  border-radius: 999px;
  background: rgba(14, 12, 22, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(12, 10, 19, 0.85);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-mark { width: 34px; height: 34px; }
.nav__logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.04em;
}

.nav__links {
  display: flex;
  gap: 34px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15.5px;
}
.nav__links a {
  opacity: 0.92;
  transition: opacity 0.15s ease, color 0.15s ease;
}
.nav__links a:hover { color: var(--purple-soft); opacity: 1; }

.nav__actions { display: flex; align-items: center; gap: 10px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
.nav__burger span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ── Hero ────────────────────────────────── */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 90px) 0 40px;
  overflow: hidden;
  background:
    radial-gradient(860px 560px at 50% 34%, rgba(104, 82, 231, 0.5) 0%, rgba(83, 62, 199, 0.3) 38%, rgba(30, 22, 70, 0) 72%),
    radial-gradient(1300px 760px at 50% -14%, #372a86 0%, #241b58 42%, rgba(13, 10, 24, 0) 78%),
    #0c0a16;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; }

.hero__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.2px 1.2px at 12% 18%, rgba(255,255,255,0.8) 50%, transparent 51%),
    radial-gradient(1px 1px at 28% 8%, rgba(255,255,255,0.6) 50%, transparent 51%),
    radial-gradient(1.4px 1.4px at 44% 22%, rgba(255,255,255,0.7) 50%, transparent 51%),
    radial-gradient(1px 1px at 62% 6%, rgba(255,255,255,0.55) 50%, transparent 51%),
    radial-gradient(1.3px 1.3px at 78% 16%, rgba(255,255,255,0.75) 50%, transparent 51%),
    radial-gradient(1px 1px at 90% 28%, rgba(255,255,255,0.5) 50%, transparent 51%),
    radial-gradient(1.1px 1.1px at 8% 38%, rgba(255,255,255,0.45) 50%, transparent 51%),
    radial-gradient(1.2px 1.2px at 94% 9%, rgba(255,255,255,0.65) 50%, transparent 51%),
    radial-gradient(1px 1px at 70% 33%, rgba(255,255,255,0.4) 50%, transparent 51%),
    radial-gradient(1.2px 1.2px at 35% 40%, rgba(255,255,255,0.35) 50%, transparent 51%);
  opacity: 0.9;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.hero__glow--1 {
  width: 560px; height: 560px;
  left: calc(50% - 640px); top: 48%;
  background: rgba(129, 97, 255, 0.3);
}
.hero__glow--2 {
  width: 520px; height: 520px;
  left: calc(50% - 260px); top: 10%;
  background: rgba(79, 107, 255, 0.12);
}
.hero__glow--green {
  width: 560px; height: 560px;
  left: calc(50% + 120px); top: 42%;
  background: radial-gradient(closest-side, rgba(163, 230, 80, 0.42) 0%, rgba(120, 214, 75, 0.18) 55%, transparent 78%);
  filter: blur(80px);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
  color: #e9e6ff;
}
.hero__badge span { color: #c9b8ff; font-weight: 700; }

.hero__title {
  margin-top: 28px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(52px, 9vw, 104px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero__subtitle {
  margin-top: 24px;
  max-width: 560px;
  font-size: clamp(16px, 2vw, 19px);
  color: #cfcbe6;
}

.hero__cta {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero__link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15.5px;
  color: #cfc8f2;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.15s ease;
}
.hero__link:hover { color: #fff; }

/* ── Hero card (3D) ──────────────────────── */
.hero__card-scene {
  margin-top: 74px;
  position: relative;
  perspective: 1200px;
}

.ecard {
  position: relative;
  width: min(440px, 86vw);
  aspect-ratio: 1.586;
  border-radius: 22px;
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(125deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0) 42%),
    linear-gradient(160deg, #241d45 0%, #171228 55%, #1d1535 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 40px 90px rgba(8, 5, 25, 0.65),
    0 0 80px rgba(123, 92, 245, 0.25);
  transform-style: preserve-3d;
  transform: rotateX(12deg) rotateY(0deg);
  transition: transform 0.25s ease;
  animation: cardFloat 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes cardFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

.ecard__shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.09) 48%, transparent 62%);
  pointer-events: none;
}

.ecard__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.ecard__brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.06em;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ecard__wave { width: 26px; height: 26px; color: rgba(255,255,255,0.55); }

.ecard__chip {
  margin-top: auto;
  width: 46px;
  height: 34px;
  border-radius: 7px;
  background: linear-gradient(135deg, #e8c56a, #b98f3e);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  padding: 5px;
}
.ecard__chip span {
  border: 1px solid rgba(90, 62, 15, 0.55);
  border-radius: 2px;
}

.ecard__number {
  margin-top: 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(16px, 2.6vw, 21px);
  letter-spacing: 0.14em;
  color: #efedff;
}

.ecard__bottom {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.ecard__label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.ecard__value {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.ecard__net { width: 50px; height: 31px; }

.hero__coin {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 800;
  color: #fff;
  box-shadow: 0 18px 40px rgba(5, 3, 18, 0.5);
  animation: coinFloat 5s ease-in-out infinite;
  z-index: 3;
}
@keyframes coinFloat {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-14px) rotate(6deg); }
}
.hero__coin--btc {
  width: 62px; height: 62px;
  left: -66px; top: 8%;
  font-size: 26px;
  background: linear-gradient(140deg, #f7931a, #c96f06);
  animation-delay: 0.4s;
}
.hero__coin--eth {
  width: 54px; height: 54px;
  right: -58px; top: 22%;
  font-size: 24px;
  background: linear-gradient(140deg, #8fa4f3, #5470d6);
  animation-delay: 1.1s;
}
.hero__coin--usdt {
  width: 46px; height: 46px;
  right: -20px; bottom: -6%;
  font-size: 20px;
  background: linear-gradient(140deg, #35d07f, #1f9d5c);
  animation-delay: 1.8s;
}

.hero__pay {
  margin-top: 64px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 13px 26px;
  border-radius: 14px;
  background: rgba(10, 8, 18, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(8px);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.02em;
}
.hero__pay-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dim);
  letter-spacing: 0;
}
.hero__pay-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero__pay-item svg { flex: 0 0 auto; }
.hero__pay-sep {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.16);
}

.hero__fade {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

/* ── Ticker ──────────────────────────────── */
.ticker {
  position: relative;
  padding: 26px 0;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.ticker__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: tickerMove 36s linear infinite;
}
@keyframes tickerMove {
  to { transform: translateX(-50%); }
}
.ticker__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dim);
  white-space: nowrap;
}
.ticker__dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}

/* ── Sections ────────────────────────────── */
.section {
  position: relative;
  padding: 130px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow__icon {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(139, 116, 255, 0.14);
  border: 1px solid rgba(139, 116, 255, 0.3);
  color: #a68ffb;
}

.section__title {
  margin-top: 22px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 800px;
}

.section__lead {
  margin-top: 22px;
  max-width: 600px;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-dim);
}

.grad-green {
  background: var(--grad-green);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-purple {
  background: var(--grad-purple);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Card EXO hero (по референсу Exodus Pay) ── */
.section--cardhero { overflow: hidden; }

.cardhero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.cardhero__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cardhero__brandname {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.cardhero__brandname em {
  font-style: normal;
  background: var(--grad-green);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cardhero__sep {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
}
.cardhero__new {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(87, 232, 121, 0.13);
  border: 1px solid rgba(87, 232, 121, 0.4);
  color: #6fe98b;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
}

.cardhero__title {
  margin-top: 26px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(40px, 4.8vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.cardhero__lead {
  margin-top: 24px;
  max-width: 480px;
  font-size: clamp(16px, 1.7vw, 18.5px);
  color: var(--text-dim);
}

.cardhero__cta { margin-top: 32px; }
.cardhero__terms {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--text-faint);
}
.cardhero__terms a {
  color: var(--text-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}
.cardhero__terms a:hover { color: #fff; }

.cardhero__steps {
  margin-top: 44px;
  display: grid;
  gap: 16px;
  max-width: 440px;
}
.chstep {
  display: flex;
  gap: 16px;
  align-items: baseline;
}
.chstep__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  background: var(--grad-green);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.chstep b {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.chstep small {
  display: block;
  margin-top: 2px;
  font-size: 13.5px;
  color: var(--text-faint);
}

/* визуал: телефон + карта + луч */
.cardhero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 30px 0 90px;
}

.chbeam {
  position: absolute;
  left: 50%;
  bottom: -46px;
  translate: -50% 0;
  width: 132%;
  height: 44%;
  filter: blur(30px);
  opacity: 0.75;
  pointer-events: none;
}
.chbeam::before {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(0 0, 50% 52%, 100% 0, 100% 42%, 50% 100%, 0 42%);
  background: linear-gradient(to bottom, rgba(87, 232, 121, 0.02) 0%, rgba(87, 232, 121, 0.42) 78%, rgba(179, 246, 95, 0.5) 100%);
}

.chphone {
  position: relative;
  z-index: 1;
  width: min(300px, 72vw);
  border-radius: 50px;
  padding: 9px;
  background: linear-gradient(160deg, #4a4d56 0%, #17181d 52%, #2f3138 100%);
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.09),
    inset 0 0 0 4px rgba(0, 0, 0, 0.55),
    0 50px 100px rgba(0, 0, 0, 0.65);
}
.chphone::before,
.chphone::after {
  content: "";
  position: absolute;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #52555e, #2a2c32);
}
.chphone::before {
  left: -2.5px; top: 118px;
  height: 28px;
  box-shadow: 0 40px 0 0 #3c3f47, 0 -30px 0 0 #3c3f47;
}
.chphone::after {
  right: -2.5px; top: 158px;
  height: 46px;
}
.chphone__screen {
  position: relative;
  border-radius: 40px;
  padding: 16px 18px 20px;
  overflow: hidden;
  background: radial-gradient(130% 90% at 50% 0%, #253061 0%, #1a1f45 45%, #111330 100%);
}
.chphone__screen::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  translate: -50% 0;
  width: 84px;
  height: 22px;
  border-radius: 999px;
  background: #0a0a12;
}
.chphone__status {
  display: flex;
  justify-content: space-between;
  padding: 4px 6px 0;
  font-size: 12px;
  font-weight: 600;
}
.chphone__dots { font-size: 8px; letter-spacing: 2px; opacity: 0.8; }

.chphone__toprow {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chphone__ava {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #57e879, #1f9d5c);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  color: #0b1a0e;
}
.chphone__gift {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(111, 233, 139, 0.5);
  color: #6fe98b;
}

.chring {
  width: 158px;
  aspect-ratio: 1;
  margin: 22px auto 0;
  border-radius: 50%;
  background: conic-gradient(from 210deg, #35d06a 0%, #57e879 40%, #b3f65f 72%, #baf76a 74%, rgba(255, 255, 255, 0.1) 74% 100%);
  display: grid;
  place-items: center;
  filter: drop-shadow(0 0 20px rgba(87, 232, 121, 0.4));
}
.chring__in {
  width: 142px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(90% 90% at 50% 30%, #1b2049 0%, #141838 60%, #10132e 100%);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding-top: 54px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(87, 232, 121, 0.25);
}
.chring__in small {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dim);
  margin-right: 2px;
}

.chphone__deposit {
  width: max-content;
  margin: 18px auto 0;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
}
.chphone__date {
  margin-top: 20px;
  font-size: 11px;
  color: var(--text-faint);
}
.chtx { margin-top: 8px; display: grid; gap: 7px; }
.chtx__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
  border: 0.5px solid rgba(255, 255, 255, 0.07);
}
.chtx__ic {
  width: 28px; height: 28px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(87, 232, 121, 0.26) 0%, rgba(87, 232, 121, 0.08) 100%);
  border: 0.5px solid rgba(111, 233, 139, 0.35);
  color: #7df09a;
}
.chphone__home {
  width: 84px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}
.chtx__who {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}
.chtx__who small { font-size: 10.5px; font-weight: 500; color: var(--text-faint); }
.chtx__sum { font-family: var(--font-head); font-weight: 700; font-size: 13px; }
.chtx__sum--plus { color: var(--green); }

/* вертикальная зелёная карта поверх телефона */
.chcard {
  position: absolute;
  z-index: 2;
  right: max(2%, calc(50% - 250px));
  top: 24%;
  width: 172px;
  height: 268px;
  border-radius: 18px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(175deg, #83f2a2 0%, #2fc768 46%, #0f7038 76%, #0a4d25 100%);
  border: 0.5px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 40px 80px rgba(4, 10, 5, 0.65),
    0 0 60px rgba(87, 232, 121, 0.28);
  overflow: hidden;
  animation: cardFloat 7s ease-in-out infinite;
}
.chcard::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 36%;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.06) 0%, transparent 45%),
    linear-gradient(160deg, #22242b 0%, #101116 80%);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 50% 100%, 0 60%);
}
.chcard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, 0.12) 47%, transparent 58%);
  pointer-events: none;
  animation: cardSheen 7s ease-in-out infinite;
}
@keyframes cardSheen {
  0%, 55%, 100% { transform: translateX(-30%); opacity: 0; }
  70% { opacity: 1; }
  85% { transform: translateX(30%); opacity: 0; }
}
.chcard__nfc {
  position: absolute;
  top: 14px; left: 14px;
  color: rgba(255, 255, 255, 0.55);
}
.chcard__debit {
  position: absolute;
  top: 16px; right: 12px;
  writing-mode: vertical-rl;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.35);
}
.chcard__brand {
  position: absolute;
  left: 12px; bottom: 16px;
  writing-mode: vertical-rl;
  rotate: 180deg;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.14em;
  color: #eafff0;
}
.chcard__brand svg { rotate: 90deg; }
.chcard__chip {
  position: absolute;
  right: 40px; bottom: 74px;
  width: 26px; height: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, #f6f8f5 0%, #d3dcd4 55%, #aeb9af 100%);
  box-shadow: inset 0 0 0 1px rgba(20, 60, 30, 0.3), 0 2px 6px rgba(0, 30, 10, 0.3);
}
.chcard__chip::before {
  content: "";
  position: absolute;
  inset: 4px 3px;
  border: 1px solid rgba(20, 60, 30, 0.35);
  border-radius: 4px;
  background:
    linear-gradient(to bottom, transparent 44%, rgba(20, 60, 30, 0.35) 44%, rgba(20, 60, 30, 0.35) 50%, transparent 50%),
    linear-gradient(to right, transparent 46%, rgba(20, 60, 30, 0.35) 46%, rgba(20, 60, 30, 0.35) 52%, transparent 52%);
}
.chcard__holder {
  position: absolute;
  right: 12px; bottom: 16px;
  writing-mode: vertical-rl;
  rotate: 180deg;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.8);
}

/* ── Bento «Почувствуй силу EXO» ─────────── */
:root {
  --hex: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cpath fill='%23ffffff' fill-opacity='0.028' fill-rule='nonzero' d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/svg%3E");
}

.bento__heading {
  text-align: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(36px, 5.4vw, 60px);
  letter-spacing: -0.04em;
  margin-bottom: 56px;
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.bento__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bcard {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 34px 30px;
  background: #131019;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}
.bcard--grow { flex: 1; }
.bcard > * { position: relative; z-index: 1; }

.bcard--hex::before,
.bcard--gradient::before,
.bcard--support::before,
.bcard--pay::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--hex);
  background-size: 20.3px 35.525px;
  pointer-events: none;
}

.bcard--gradient {
  background:
    radial-gradient(130% 150% at 85% 115%, rgba(139, 116, 255, 0.6) 0%, rgba(139, 116, 255, 0.16) 52%, transparent 80%),
    #17131f;
}

.bcard__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 25px;
  line-height: 1.16;
  letter-spacing: -0.02em;
}
.bcard__title--center { text-align: center; }
.bcard__text {
  margin-top: 12px;
  font-size: 15px;
  color: var(--text-dim);
}
.bcard__text--center { text-align: center; margin-inline: auto; max-width: 300px; }

.bcard__row {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.bcard__emblem {
  flex: 0 0 auto;
  width: 92px; height: 92px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(closest-side, rgba(139, 116, 255, 0.35), rgba(139, 116, 255, 0.08));
  border: 1px solid rgba(180, 158, 255, 0.35);
  color: rgba(220, 210, 255, 0.75);
}

.bcard__toprow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}
.bcard__pill {
  padding: 7px 14px;
  border-radius: 11px;
  border: 1px solid rgba(166, 136, 250, 0.55);
  color: #b9a5ff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.bcard__corner {
  position: absolute;
  right: 24px; bottom: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
}

/* мини-карты в карточке безопасности */
.bcard__minicards {
  position: relative;
  flex: 1;
  min-height: 190px;
  margin-top: 26px;
}
.minicard {
  position: absolute;
  left: 50%;
  bottom: 26px;
  translate: -50% 0;
  width: 202px;
  height: 126px;
  border-radius: 16px;
  padding: 13px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0) 42%),
    radial-gradient(120% 160% at 90% 110%, rgba(123, 92, 245, 0.35) 0%, rgba(123, 92, 245, 0) 55%),
    linear-gradient(150deg, #2b2344 0%, #171126 60%, #1e1534 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 24px 50px rgba(4, 2, 14, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.minicard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, 0.06) 47%, transparent 60%);
  pointer-events: none;
}
.minicard--back {
  rotate: -9deg;
  translate: -68% 10px;
  opacity: 0.55;
  filter: brightness(0.7);
}
.minicard__top,
.minicard__mid,
.minicard__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.minicard__brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.07em;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.minicard__nfc { color: rgba(255, 255, 255, 0.4); }
.minicard__chip {
  position: relative;
  width: 31px; height: 23px;
  border-radius: 5px;
  background: linear-gradient(135deg, #f0d489 0%, #d4ab5c 55%, #b98f3e 100%);
  box-shadow: inset 0 0 0 1px rgba(96, 66, 17, 0.45), 0 1px 3px rgba(0, 0, 0, 0.35);
}
.minicard__chip::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(96, 66, 17, 0.5);
  border-radius: 3px;
  background:
    linear-gradient(to right, transparent 47%, rgba(96, 66, 17, 0.5) 47%, rgba(96, 66, 17, 0.5) 53%, transparent 53%),
    linear-gradient(to bottom, transparent 30%, rgba(96, 66, 17, 0.5) 30%, rgba(96, 66, 17, 0.5) 36%, transparent 36%, transparent 64%, rgba(96, 66, 17, 0.5) 64%, rgba(96, 66, 17, 0.5) 70%, transparent 70%);
}
.minicard__holo {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: conic-gradient(from 40deg, rgba(166, 136, 250, 0.5), rgba(87, 232, 121, 0.4), rgba(79, 107, 255, 0.5), rgba(224, 112, 184, 0.4), rgba(166, 136, 250, 0.5));
  filter: blur(1px);
  opacity: 0.55;
}
.minicard__num {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #d8d4ee;
}
.minicard__net { width: 30px; height: 19px; }

/* карточка поддержки 24/7 */
.bcard--support {
  text-align: center;
  background:
    radial-gradient(75% 52% at 50% 46%, rgba(139, 116, 255, 0.5) 0%, rgba(139, 116, 255, 0.1) 62%, transparent 90%),
    #141019;
}
.support__badge {
  margin: 6px auto 0;
  width: max-content;
  padding: 4px 24px;
  border-radius: 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(44px, 4.6vw, 58px);
  letter-spacing: -0.03em;
}
.support__caption {
  margin-top: 16px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.support__caption span { color: rgba(255, 255, 255, 0.45); }

.support__cluster {
  position: relative;
  flex: 1;
  min-height: 250px;
  margin-top: 14px;
}
.avatar {
  --s: 50px;
  position: absolute;
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: calc(var(--s) * 0.38);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 30px rgba(4, 2, 14, 0.5);
  animation: coinFloat 6s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
.avatar--lg { --s: 88px; }
.support__note { margin-top: auto; }

/* телефон в карточке приложения */
.bphone {
  margin: 28px auto 4px;
  width: min(244px, 100%);
  border-radius: 34px;
  padding: 8px;
  background: linear-gradient(160deg, #3d4048 0%, #191a1f 55%, #2b2d34 100%);
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.07),
    0 30px 60px rgba(4, 2, 14, 0.55),
    0 0 70px rgba(123, 92, 245, 0.18);
}
.bphone__screen {
  border-radius: 27px;
  padding: 10px 14px 12px;
  background: radial-gradient(130% 85% at 30% 0%, #1d2244 0%, #131634 50%, #0d0f26 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.bphone__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 2px 2px 0;
}
.bphone__time {
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}
.bphone__island {
  width: 52px;
  height: 15px;
  border-radius: 999px;
  background: #05060c;
  box-shadow: inset 0 0 0 0.5px rgba(255, 255, 255, 0.06);
}
.bphone__ics {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.85);
}
.bphone__ring {
  width: 148px;
  aspect-ratio: 1;
  margin: 16px auto 14px;
  border-radius: 50%;
  background: conic-gradient(from 230deg, #7b5cf5 0 58%, #57e879 58% 82%, #4f6bff 82% 100%);
  display: grid;
  place-items: center;
  filter: drop-shadow(0 0 18px rgba(123, 92, 245, 0.35));
}
.bphone__ring-in {
  width: 132px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #10132c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.bphone__cap {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.bphone__sum {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.bphone__growth {
  font-size: 9.5px;
  font-weight: 600;
  color: #6fe98b;
}
.bphone__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-top: 0.5px solid rgba(255, 255, 255, 0.09);
}
.bphone__coin {
  width: 27px; height: 27px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  box-shadow: inset 0 -3px 6px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.bphone__name {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.3;
}
.bphone__name em {
  font-style: normal;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-faint);
}
.bphone__delta {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(87, 232, 121, 0.12);
  border: 0.5px solid rgba(87, 232, 121, 0.3);
  font-size: 10.5px;
  font-weight: 700;
  color: #6fe98b;
}
.bphone__home {
  width: 64px;
  height: 3.5px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

/* мультичейн */
.mc {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 8px 0 22px;
}
.hexcoin {
  width: 36px;
  aspect-ratio: 0.9;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}
.hexcoin--lg { width: 52px; font-size: 20px; }
.mc__bracket {
  position: relative;
  padding: 11px 13px;
  display: grid;
  place-items: center;
}
.mc__bracket::before,
.mc__bracket::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 10px;
  border: 2.5px solid #9d85ff;
}
.mc__bracket::before { left: 0; border-right: none; border-radius: 9px 0 0 9px; }
.mc__bracket::after { right: 0; border-left: none; border-radius: 0 9px 9px 0; }

/* широкая зелёная карточка Pay */
.bcard--pay {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 34px;
  align-items: center;
  padding: 46px 50px 0;
  background:
    radial-gradient(95% 140% at 88% 120%, rgba(87, 232, 121, 0.5) 0%, rgba(87, 232, 121, 0.1) 55%, transparent 85%),
    #101312;
}
.pay__info { padding-bottom: 46px; }
.pay__badges { display: flex; gap: 10px; margin-bottom: 22px; }
.pay__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 13px;
  border-radius: 9px;
  background: #fff;
  color: #101014;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
}
.pay__badge svg { flex: 0 0 auto; }
.pay__info .bcard__title { font-size: clamp(26px, 3vw, 34px); }
.pay__info .bcard__text { max-width: 380px; }

.pay__visual {
  align-self: end;
  display: flex;
  justify-content: center;
}
.payphone {
  width: min(330px, 100%);
  border-radius: 36px 36px 0 0;
  padding: 9px 9px 0;
  background: linear-gradient(165deg, #363a41 0%, #15171b 50%, #24262c 100%);
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.06),
    0 -24px 90px rgba(87, 232, 121, 0.16);
}
.payphone__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px 10px;
  border-radius: 28px 28px 0 0;
  background: radial-gradient(140% 200% at 30% 0%, #12161a 0%, #0b0e10 100%);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}
.payphone__dots {
  display: flex;
  gap: 3.5px;
}
.payphone__dots i {
  width: 4.5px; height: 4.5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}
.payphone__bar + .gcard { margin: 0 9px; }
.gcard {
  position: relative;
  height: 128px;
  border-radius: 16px;
  padding: 15px 17px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: linear-gradient(120deg, #93f5af 0%, #3ecf74 42%, #148c4c 78%, #0a5e30 100%);
  color: #07130b;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(4, 30, 14, 0.35),
    0 12px 28px rgba(6, 40, 18, 0.4);
}
.gcard::before {
  content: "";
  position: absolute;
  top: -62px; right: -48px;
  width: 158px; height: 132px;
  background: linear-gradient(210deg, #1c1e24 0%, #0d0f13 70%);
  border-radius: 36px;
  rotate: 16deg;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}
.gcard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.22) 0%, transparent 30%, transparent 62%, rgba(255, 255, 255, 0.1) 100%);
  pointer-events: none;
}
.gcard__top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.gcard__brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: #0b1a0e;
}
.gcard__nfc { color: rgba(255, 255, 255, 0.8); }
.gcard__bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(7, 19, 11, 0.9);
}
.gcard__num {
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.18em;
}
.gcard__debit {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.75);
}

.paytx { padding: 13px 13px 10px; display: grid; gap: 6px; }
.paytx__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.06);
}
.paytx__ic {
  width: 30px; height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(87, 232, 121, 0.26) 0%, rgba(87, 232, 121, 0.08) 100%);
  border: 0.5px solid rgba(111, 233, 139, 0.35);
  color: #7df09a;
}
.paytx__who {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.3;
}
.paytx__who small {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-faint);
}
.paytx__sum { font-family: var(--font-head); font-weight: 700; font-size: 14px; }
.paytx__sum--plus { color: var(--green); }

/* ── Stats ───────────────────────────────── */
.stats--bento .stat {
  background-color: #131019;
  background-image: var(--hex);
  background-size: 20.3px 35.525px;
}

.stats {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.stat {
  padding: 34px 26px;
  text-align: center;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--surface-border);
}
.stat__value {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(38px, 4.6vw, 54px);
  letter-spacing: -0.03em;
  background: var(--grad-green);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  margin-top: 8px;
  font-size: 14.5px;
  color: var(--text-dim);
}

/* ── Plans ───────────────────────────────── */
.plans {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 900px;
}
.plan {
  position: relative;
  padding: 38px 34px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.plan:hover { transform: translateY(-6px); }
.plan {
  background-color: #131019;
  background-image: var(--hex);
  background-size: 20.3px 35.525px;
}
.plan--featured {
  background-color: #161125;
  background-image:
    radial-gradient(120% 100% at 50% -20%, rgba(124, 92, 255, 0.32) 0%, rgba(124, 92, 255, 0.05) 60%, transparent 90%),
    var(--hex);
  background-size: 100% 100%, 42px 73.5px;
  border-color: rgba(139, 116, 255, 0.45);
  box-shadow: 0 24px 70px rgba(124, 92, 255, 0.16);
}
.plan__tag {
  position: absolute;
  top: -15px;
  left: 34px;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--grad-btn);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
}
.plan__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
}
.plan__price {
  margin-top: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.03em;
}
.plan__price span {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-faint);
  letter-spacing: 0;
}
.plan__list {
  margin: 26px 0 30px;
  list-style: none;
  display: grid;
  gap: 13px;
  flex: 1;
}
.plan__list li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  color: #c9c5dd;
}
.plan__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(87, 232, 121, 0.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m6 12.5 4 4 8-9' stroke='%2357e879' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.plan__list strong { color: #fff; }

/* ── FAQ ─────────────────────────────────── */
.section--faq { padding-top: 40px; }

.faq { margin-top: 50px; display: grid; gap: 14px; }

.faq__item {
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq__item[open] { border-color: rgba(139, 116, 255, 0.4); }

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 60px 22px 26px;
  position: relative;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17.5px;
  letter-spacing: -0.01em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  position: absolute;
  right: 24px; top: 50%;
  width: 22px; height: 22px;
  translate: 0 -50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m6 9 6 6 6-6' stroke='%239d99b0' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.25s ease;
}
.faq__item[open] summary::after { transform: rotate(180deg); }

.faq__item p {
  padding: 0 26px 24px;
  color: var(--text-dim);
  font-size: 15.5px;
  max-width: 700px;
}

/* ── Final CTA: дом с крышей ─────────────── */
.section--cta {
  padding: 40px 0 0;
  overflow: hidden;
}

.ctahouse {
  position: relative;
  width: min(1300px, 100%);
  height: clamp(480px, 62vw, 660px);
  margin-inline: auto;
}

.ctahouse__glow {
  position: absolute;
  bottom: -80px;
  width: 32%;
  height: 90%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(129, 97, 255, 0.75) 0%, rgba(123, 92, 245, 0.3) 48%, transparent 75%);
  filter: blur(55px);
  pointer-events: none;
}
.ctahouse__glow--l { left: -2%; }
.ctahouse__glow--r { right: -2%; }

.ctahouse__shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ctahouse__main { fill: #0d0c13; }
.ctahouse__echo {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1.5;
}
.ctahouse__echo--2 { stroke: rgba(255, 255, 255, 0.045); }

.ctahouse__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 13% 30px 20px;
}

.ctahouse__icon {
  width: 90px;
  height: 90px;
  margin-bottom: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 28%, #221e31 0%, #131019 70%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 0 60px rgba(123, 92, 245, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cta__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  max-width: 560px;
}
.cta__text {
  margin-top: 18px;
  font-size: clamp(14px, 1.6vw, 16.5px);
  color: var(--text-dim);
}
.ctahouse .btn { margin-top: 34px; }

/* ── Footer ──────────────────────────────── */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 70px 0 36px;
  background: #080711;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}
.footer__tagline {
  margin-top: 16px;
  color: var(--text-faint);
  font-size: 15px;
}
.footer__nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
}
.footer__nav a {
  color: var(--text-dim);
  transition: color 0.15s ease;
}
.footer__nav a:hover { color: #fff; }
.footer__bottom {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-faint);
  font-size: 13.5px;
}

/* ── Modal ───────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal.is-open { opacity: 1; pointer-events: auto; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 12, 0.75);
  backdrop-filter: blur(6px);
}

.modal__panel {
  position: relative;
  width: min(440px, 100%);
  border-radius: 24px;
  background: #16131f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.25s ease;
}
.modal.is-open .modal__panel { transform: translateY(0) scale(1); }

.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-dim);
  font-size: 14px;
  transition: background 0.15s ease, color 0.15s ease;
}
.modal__close:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }

.modal__body { padding: 40px 36px 32px; }

.modal__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 25px;
  letter-spacing: -0.02em;
}
.modal__text {
  margin-top: 10px;
  color: var(--text-dim);
  font-size: 15px;
}
.modal__input {
  width: 100%;
  margin: 22px 0 14px;
  padding: 15px 18px;
  border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font: inherit;
  font-size: 15.5px;
  outline: none;
  transition: border-color 0.15s ease;
}
.modal__input:focus { border-color: var(--purple-soft); }
.modal__input.is-error { border-color: #ff6b81; }
.modal__input::placeholder { color: var(--text-faint); }

.modal__hint {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--text-faint);
  text-align: center;
}

.modal__success { text-align: center; }
.modal__check {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(87, 232, 121, 0.12);
  border: 1px solid rgba(87, 232, 121, 0.35);
  color: var(--green);
}
.modal__success .btn { margin-top: 24px; }

/* ── Reveal on scroll ────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 980px) {
  .cardhero { grid-template-columns: 1fr; gap: 30px; }
  .cardhero__visual { padding-bottom: 70px; margin-top: 20px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  /* бенто остаётся трёхколоночным — элементы уменьшаются */
  .bento { gap: 14px; }
  .bcard { padding: 22px 18px; }
  .bcard__title { font-size: 19px; }
  .bcard__text { font-size: 13px; }
  .support__badge { font-size: 36px; }
  .support__caption { font-size: 21px; }
  .bphone, .minicard, .mc { zoom: 0.8; }
  .bcard--pay { grid-template-columns: 1fr; padding: 40px 34px 0; }
  .pay__info { padding-bottom: 0; }
  .pay__visual { margin-top: 30px; }
}

@media (max-width: 760px) {
  .section { padding: 90px 0; }

  .nav { padding: 0 8px 0 14px; gap: 8px; }
  .nav__logo { gap: 7px; min-width: 0; }
  .nav__logo-mark { width: 26px; height: 26px; flex: 0 0 auto; }
  .nav__logo-text { font-size: 15px; letter-spacing: 0.03em; white-space: nowrap; }
  .nav__actions { gap: 2px; flex: 0 0 auto; }
  .nav__actions .btn--white { white-space: nowrap; }
  .nav__burger { display: flex; padding: 8px 6px; flex: 0 0 auto; }
  .nav__links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    flex-direction: column;
    gap: 4px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(12, 10, 19, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 10px 12px; border-radius: 10px; }
  .nav__links a:hover { background: rgba(255, 255, 255, 0.06); }
  .nav__burger { display: flex; }
  .nav__actions .btn--white { padding: 9px 12px; font-size: 12.5px; }

  .hero { padding-top: calc(var(--nav-h) + 60px); }
  .hero__coin--btc { left: -14px; top: -12%; }
  .hero__coin--eth { right: -8px; top: -18%; }
  .hero__coin--usdt { right: 4px; bottom: -10%; }

  /* тарифы: минимум две карточки в ряд, всё мельче */
  .plans { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 40px; }
  .plan { padding: 18px 13px; border-radius: 16px; }
  .plan__tag { top: -10px; left: 12px; padding: 3px 9px; font-size: 9.5px; }
  .plan__name { font-size: 15px; }
  .plan__price { font-size: 19px; margin-top: 6px; }
  .plan__price span { font-size: 10px; }
  .plan__list { margin: 14px 0 16px; gap: 8px; }
  .plan__list li { padding-left: 20px; font-size: 10.5px; }
  .plan__list li::before { width: 13px; height: 13px; top: 2px; background-size: 8px; }
  .plan .btn { padding: 9px 8px; font-size: 10.5px; }
  .chcard { right: -4px; width: 150px; height: 234px; }
  .stats { gap: 14px; }
  /* бенто-миниатюра: две карточки в ряд */
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .bento__col { display: contents; }
  .bento .bcard:has(.mc) { grid-column: 1 / -1; }
  .bento__heading { margin-bottom: 28px; }
  .bcard { padding: 15px 13px; border-radius: 16px; }
  .bcard__title { font-size: 14px; hyphens: auto; overflow-wrap: break-word; }
  .bcard__text { font-size: 11px; margin-top: 6px; }
  .bcard__toprow { flex-direction: column; gap: 8px; }
  .bcard__pill { font-size: 8px; padding: 3px 7px; letter-spacing: 0.06em; align-self: flex-start; }
  .bcard__row { flex-direction: column; gap: 12px; }
  .bcard__emblem { width: 46px; height: 46px; align-self: flex-end; }
  .bcard__emblem svg { width: 22px; height: 22px; }
  .bcard__corner { font-size: 7.5px; right: 10px; bottom: 8px; gap: 4px; }
  .support__badge { font-size: 22px; padding: 2px 12px; border-radius: 10px; }
  .support__caption { font-size: 13px; margin-top: 8px; }
  .support__cluster { min-height: 150px; margin-top: 6px; }
  .avatar {
    width: calc(var(--s) * 0.52);
    height: calc(var(--s) * 0.52);
    font-size: calc(var(--s) * 0.2);
    border-width: 1px;
  }
  .bcard__minicards { min-height: 110px; margin-top: 10px; }
  .minicard { zoom: 0.68; }
  .bphone { zoom: 0.68; }
  .mc { zoom: 0.68; gap: 7px; }
  .pay__badges { gap: 6px; margin-bottom: 10px; }
  .pay__badge { font-size: 9.5px; padding: 3px 8px; border-radius: 6px; }
  .pay__info .bcard__title { font-size: 15px; }
  .pay__info .bcard__text { max-width: none; }
  .bcard--pay { padding: 18px 16px 0; gap: 0; }
  .pay__visual { margin-top: 12px; }
  .payphone { zoom: 0.62; }
  .stats--bento { gap: 8px; }
  .stats--bento .stat { padding: 16px 10px; }
  .stats--bento .stat__value { font-size: 24px; }
  .stats--bento .stat__label { font-size: 10.5px; }

  .footer__nav { gap: 18px; }
  .cta { padding: 64px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ecard, .hero__coin, .ticker__track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Language switcher ───────────────────── */
.lang { position: relative; }
.lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.lang__btn:hover { background: rgba(255, 255, 255, 0.14); }
.lang__btn > span { min-width: 16px; text-align: center; }
.lang__chev { transition: transform 0.2s ease; opacity: 0.7; }
.lang.is-open .lang__chev { transform: rotate(180deg); }

.lang__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 232px;
  max-height: min(70vh, 460px);
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 8px;
  border-radius: 18px;
  background: rgba(16, 14, 24, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 120;
}
.lang.is-open .lang__menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
[dir="rtl"] .lang__menu { right: auto; left: 0; }

.lang__opt {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 11px;
  color: #d8d4ea;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  text-align: left;
  transition: background 0.14s ease, color 0.14s ease;
}
.lang__opt:hover { background: rgba(139, 116, 255, 0.14); color: #fff; }
.lang__opt[aria-selected] { position: relative; }
.lang__opt-code { font-size: 12px; color: var(--text-faint); font-weight: 700; letter-spacing: 0.04em; }
#langMenu [data-lang][aria-selected="true"] {
  background: rgba(139, 116, 255, 0.18);
  color: #fff;
}
#langMenu [data-lang][aria-selected="true"] .lang__opt-code { color: var(--purple-soft); }

@media (max-width: 760px) {
  .lang__btn { padding: 8px 9px; font-size: 12.5px; gap: 4px; }
  .lang__btn .lang__chev { display: none; }
  .lang__menu { width: 210px; }
}

/* ── RTL adjustments (ar / fa / ur) ──────── */
[dir="rtl"] .cardhero__text,
[dir="rtl"] .cardhero__lead,
[dir="rtl"] .section__lead,
[dir="rtl"] .bcard__text,
[dir="rtl"] .cardhero__terms { text-align: right; }

[dir="rtl"] .plan__list li { padding-left: 0; padding-right: 30px; }
[dir="rtl"] .plan__list li::before { left: auto; right: 0; }

[dir="rtl"] .plan__tag { left: auto; right: 34px; }

[dir="rtl"] .faq__item summary { padding: 22px 26px 22px 60px; }
[dir="rtl"] .faq__item summary::after { right: auto; left: 24px; }
[dir="rtl"] .faq__item p { text-align: right; }

[dir="rtl"] .chstep { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .bcard__corner { right: auto; left: 24px; }

/* ── Plans: 3 карточки, Mastercard, выбор ── */
.plans { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: none; }

.plan { cursor: pointer; outline: none; }
.plan__net {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 46px;
  height: 29px;
  pointer-events: none;
}
[dir="rtl"] .plan__net { right: auto; left: 24px; }
.plan__name { padding-right: 58px; }
[dir="rtl"] .plan__name { padding-right: 0; padding-left: 58px; }

.plan--elite {
  background-color: #14121d;
  background-image:
    radial-gradient(120% 100% at 50% -20%, rgba(201, 168, 106, 0.22) 0%, rgba(201, 168, 106, 0.04) 60%, transparent 90%),
    var(--hex);
  background-size: 100% 100%, 20.3px 35.525px;
  border-color: rgba(214, 182, 122, 0.38);
}
.plan--elite .plan__list li::before {
  background-color: rgba(214, 182, 122, 0.16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m6 12.5 4 4 8-9' stroke='%23e0c184' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* эффект выбора карточки */
.plan.is-selected {
  border-color: var(--purple-soft);
  box-shadow: 0 0 0 2px rgba(166, 136, 250, 0.55), 0 26px 70px rgba(124, 92, 255, 0.28);
  transform: translateY(-6px);
}
.plan--elite.is-selected {
  border-color: #e0c184;
  box-shadow: 0 0 0 2px rgba(224, 193, 132, 0.6), 0 26px 70px rgba(201, 168, 106, 0.26);
}
.plan.is-selected::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(90% 60% at 50% 0%, rgba(166, 136, 250, 0.14), transparent 70%);
}
.plan--elite.is-selected::after {
  background: radial-gradient(90% 60% at 50% 0%, rgba(224, 193, 132, 0.14), transparent 70%);
}
.plan:focus-visible { box-shadow: 0 0 0 2px var(--purple-soft); }

/* вторичная кнопка «Привилегии и детали» */
.plan__more {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 9px 10px;
  border-radius: 999px;
  background: transparent;
  color: var(--text-faint);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}
.plan__more:hover { color: var(--text-dim); }
.plan--elite .plan__more:hover { color: #e0c184; }

/* ── Модалка привилегий ──────────────────── */
.modal__panel--wide { width: min(640px, 100%); }
.modal--perks .modal__body { padding: 40px 34px 30px; }
.modal--perks .modal__title { padding-right: 40px; }
[dir="rtl"] .modal--perks .modal__title { padding-right: 0; padding-left: 40px; }

.perks {
  margin-top: 22px;
  max-height: min(62vh, 520px);
  overflow-y: auto;
  padding-right: 8px;
  display: grid;
  gap: 26px;
}
.perks__h {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.perks__list {
  margin-top: 12px;
  list-style: none;
  display: grid;
  gap: 10px;
}
.perks__list li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  line-height: 1.5;
  color: #c9c5dd;
}
.perks__list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple-soft);
}
[dir="rtl"] .perks__list li { padding-left: 0; padding-right: 20px; }
[dir="rtl"] .perks__list li::before { left: auto; right: 4px; }

@media (max-width: 980px) {
  .plans { gap: 14px; }
}
@media (max-width: 760px) {
  /* три тарифа: две карточки в ряд, третья ниже */
  .plans { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plan__net { width: 34px; height: 21px; top: 14px; right: 12px; }
  [dir="rtl"] .plan__net { right: auto; left: 12px; }
  .plan__name { padding-right: 40px; font-size: 14px; }
  [dir="rtl"] .plan__name { padding-right: 0; padding-left: 40px; }
  .plan__more { font-size: 10.5px; margin-top: 7px; padding: 7px 6px; }
  .modal--perks .modal__body { padding: 34px 20px 24px; }
  .perks__list li { font-size: 13px; }
}

/* ── Прогресс оформления в модалке ───────── */
.flow {
  margin: 26px 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}
.flow__item {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
}
/* соединительная линия между этапами */
.flow__item + .flow__item::before {
  content: "";
  position: absolute;
  left: 30px;
  top: -6px;
  width: 2px;
  height: 12px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.14);
}
[dir="rtl"] .flow__item + .flow__item::before { left: auto; right: 30px; }

.flow__ic {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.flow__label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.flow__state {
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

/* этап выполняется */
.flow__item--active {
  background: rgba(139, 116, 255, 0.1);
  border-color: rgba(139, 116, 255, 0.32);
}
.flow__item--active .flow__ic { color: var(--purple-soft); }
.flow__item--active .flow__label { color: #fff; }
.flow__item--active .flow__state {
  background: rgba(139, 116, 255, 0.18);
  color: #c3b0ff;
}
.flow__spin { animation: flowSpin 1.1s linear infinite; }
@keyframes flowSpin { to { transform: rotate(360deg); } }

/* этап в ожидании */
.flow__item--wait .flow__ic { color: var(--text-faint); }
.flow__item--wait .flow__label { color: var(--text-dim); }
.flow__item--wait .flow__state {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-faint);
}

@media (prefers-reduced-motion: reduce) {
  .flow__spin { animation: none; }
}

@media (max-width: 760px) {
  .flow__item { grid-template-columns: 30px 1fr; row-gap: 4px; padding: 11px 12px; }
  .flow__label { font-size: 14px; }
  .flow__state { grid-column: 2; justify-self: start; }
  .flow__ic { width: 30px; height: 30px; }
  .flow__item + .flow__item::before { left: 26px; }
  [dir="rtl"] .flow__item + .flow__item::before { left: auto; right: 26px; }
}

/* ── Реалистичная металлическая карта (секция «Карта EXOCARD») ── */
.chcard {
  border-radius: 12px;
  background:
    /* зерно металла */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E"),
    /* тонкая шлифовка */
    repeating-linear-gradient(90deg, rgba(255,255,255,0.028) 0 1px, rgba(0,0,0,0.022) 1px 3px),
    /* диагональный блик */
    linear-gradient(115deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 36%),
    /* мягкий свет сверху */
    radial-gradient(130% 55% at 28% 0%, rgba(255,255,255,0.15), transparent 62%),
    /* базовый градиент (палитра без изменений) */
    linear-gradient(175deg, #83f2a2 0%, #2fc768 46%, #0f7038 76%, #0a4d25 100%);
  background-size: 120px 120px, 3px 3px, auto, auto, auto;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),      /* верхняя фаска */
    inset 1px 0 0 rgba(255, 255, 255, 0.14),     /* левая */
    inset -1px 0 0 rgba(0, 0, 0, 0.28),          /* правая */
    inset 0 -1px 0 rgba(0, 0, 0, 0.42),          /* нижняя */
    0 40px 80px rgba(4, 10, 5, 0.65),
    0 0 60px rgba(87, 232, 121, 0.28);
}

/* «шеврон»: объёмная накладка со светящимся ребром */
.chcard::before {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0%, transparent 44%),
    linear-gradient(165deg, #2b3037 0%, #14171c 55%, #0a0c0f 100%);
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.22));
}

/* EMV-чип */
.chcard__chip {
  right: 36px;
  bottom: 77px;
  width: 34px;
  height: 26px;
  border-radius: 0;
  background: none;
  box-shadow: none;
  rotate: 90deg;
  filter: drop-shadow(0 1px 2px rgba(0, 30, 12, 0.55));
}
.chcard__chip::before { content: none; }

/* гравировка надписей */
.chcard__brand {
  text-shadow: 0 1px 2px rgba(0, 42, 16, 0.5), 0 -0.5px 0 rgba(255, 255, 255, 0.2);
}
.chcard__holder { text-shadow: 0 1px 2px rgba(0, 42, 16, 0.45); }
.chcard__debit { text-shadow: 0 1px 1px rgba(0, 0, 0, 0.55); }
.chcard__nfc { filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.45)); }

/* объём: лёгкая виньетка по кромке + рельеф логотипа */
.chcard {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 1px 0 0 rgba(255, 255, 255, 0.14),
    inset -1px 0 0 rgba(0, 0, 0, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.42),
    inset 0 0 26px rgba(2, 26, 10, 0.28),
    0 40px 80px rgba(4, 10, 5, 0.65),
    0 0 60px rgba(87, 232, 121, 0.28);
}
.chcard__brand svg { filter: drop-shadow(0 1px 1.5px rgba(0, 42, 16, 0.5)); }

/* ── Правки реализма карты ───────────────── */
/* 1. «шеврон» больше не выходит за скругление верхних углов */
.chcard::before { border-radius: 12px 12px 0 0; }

/* 2. чип — на штатном месте: слева, под тёмной накладкой */
.chcard__chip {
  left: 40px;
  top: 116px;
  right: auto;
  bottom: auto;
}

/* 3. DEBIT читается в ту же сторону, что и имя держателя */
.chcard__debit { rotate: 180deg; }

/* чип — в отмеченную точку: центр ≈49% ширины и ≈81% высоты карты
   (в процентах, чтобы совпадало и на уменьшенной мобильной карте;
   17px и 13px — половина размеров бокса чипа 34×26) */
.chcard__chip {
  left: calc(49% - 17px);
  top: calc(81% - 13px);
}

/* DEBIT выше на 3 мм по масштабу карты (172px ≈ 54 мм → ~3.2 px/мм) */
.chcard__debit { top: 6px; }
