:root {
  --page-bg: #050718;
  --panel-bg: rgba(9, 12, 34, 0.86);
  --panel-bg-strong: rgba(12, 16, 44, 0.94);
  --panel-soft: rgba(255, 255, 255, 0.045);
  --panel-hover: rgba(255, 255, 255, 0.075);
  --line: rgba(145, 124, 255, 0.2);
  --line-bright: rgba(34, 241, 162, 0.28);
  --text: #f7f8ff;
  --muted: #9aa4c7;
  --muted-2: #677195;
  --green: #12e49d;
  --green-dark: #06b77c;
  --purple: #7b4dff;
  --purple-soft: #b38cff;
  --cyan: #29b7ff;
  --danger: #ff6f91;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --content: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(123, 77, 255, 0.28), transparent 28rem),
    radial-gradient(circle at 90% 8%, rgba(18, 228, 157, 0.14), transparent 24rem),
    radial-gradient(circle at 55% 50%, rgba(41, 183, 255, 0.12), transparent 34rem),
    var(--page-bg);
  font-family: Inter, Arial, sans-serif;
}

body.modal-open {
  overflow: hidden;
}

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

button,
select,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.portal {
  position: relative;
  min-height: 100vh;
  padding-bottom: 22px;
  overflow: hidden;
}

.portal:before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 86%);
}

.portal:after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 36%, rgba(123, 77, 255, 0.18) 36.2%, transparent 38% 100%),
    linear-gradient(130deg, transparent 0 60%, rgba(18, 228, 157, 0.09) 60.2%, transparent 61.5% 100%);
}

.top-header {
  position: fixed;
  z-index: 40;
  top: 16px;
  left: 50%;
  width: min(calc(100% - 32px), var(--content));
  height: 72px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(6, 8, 28, 0.78);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.top-header.scrolled {
  color: var(--text);
  border-color: rgba(18, 228, 157, 0.28);
  background: rgba(6, 8, 28, 0.94);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 22px rgba(18, 228, 157, 0.18);
}

.logo-mark img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.logo-wordmark {
  width: 260px;
  height: 58px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.logo-wordmark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.big-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.big-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 72px;
  color: #dfe5ff;
  font-size: 14px;
  font-weight: 700;
  opacity: 0.84;
}

.big-menu a:after {
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green), var(--purple));
  transition: width 0.22s ease;
}

.big-menu a:hover {
  opacity: 1;
}

.big-menu a:hover:after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
}

.notice,
.country-name,
.mobile-menu-btn {
  border: 0;
  color: inherit;
  background: transparent;
}

.notice {
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
}

.notice:hover,
.country-name:hover,
.login-btn:hover {
  color: var(--green);
}

.country-select {
  position: relative;
}

.country-name {
  min-height: 38px;
  padding: 0 10px;
  font-weight: 800;
}

.country-list {
  position: absolute;
  top: 44px;
  right: 0;
  display: none;
  width: 200px;
  margin: 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: #090d25;
  box-shadow: var(--shadow);
  list-style: none;
}

.country-select.open .country-list {
  display: block;
}

.country-list li {
  min-height: 34px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  color: var(--muted);
}

.country-list li:hover {
  color: var(--text);
  background: var(--panel-hover);
}

.login-btn,
.register-btn {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 6px;
}

.login-btn {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.04);
}

.register-btn {
  color: #06141b;
  background: linear-gradient(135deg, var(--green), #18d4ff);
  box-shadow: 0 12px 32px rgba(18, 228, 157, 0.22);
}

.register-btn:hover {
  filter: brightness(1.06);
}

.mobile-menu-btn,
.mobile-panel {
  display: none;
}

.main-box {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
  padding-top: 104px;
}

.banner {
  position: relative;
  min-height: 724px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-bg);
  box-shadow: var(--shadow);
}

.banner:before,
.block-box:before {
  display: none !important;
  content: none !important;
}

.banner-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 20%, rgba(18, 228, 157, 0.16), transparent 18rem),
    radial-gradient(circle at 34% 28%, rgba(123, 77, 255, 0.26), transparent 24rem),
    linear-gradient(130deg, rgba(7, 9, 31, 0.96), rgba(9, 12, 42, 0.88));
  transition: 0.3s ease;
}

.banner[data-slide="1"] .banner-bg {
  background:
    radial-gradient(circle at 76% 24%, rgba(41, 183, 255, 0.17), transparent 18rem),
    radial-gradient(circle at 28% 30%, rgba(123, 77, 255, 0.28), transparent 23rem),
    linear-gradient(140deg, rgba(6, 8, 29, 0.98), rgba(11, 14, 46, 0.9));
}

.banner-bg:after {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.info-box {
  position: absolute;
  z-index: 2;
  top: 110px;
  left: 48px;
  width: min(43%, 560px);
}

.swiper-box,
.info {
  width: 100%;
}

.title {
  max-width: 620px;
  min-height: 3.6em;
  color: var(--text);
  font-size: clamp(46px, 5vw, 74px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.title:after {
  display: block;
  width: 92px;
  height: 4px;
  margin-top: 22px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--purple));
}

.desc {
  max-width: 570px;
  min-height: 3.45em;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.download-title,
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
}

.download-title {
  min-width: 156px;
  margin-top: 30px;
  color: #06141b;
  background: linear-gradient(135deg, var(--green), #18d4ff);
  box-shadow: 0 18px 42px rgba(18, 228, 157, 0.22);
}

.download-title:hover,
.btn.dark:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.hero-downloads {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 24px;
  max-width: 430px;
  margin-top: 30px;
}

.hero-download-card {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.download-qr {
  position: relative;
  width: 146px;
  height: 146px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: #fff;
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.28),
    0 0 36px rgba(18, 228, 157, 0.08);
}

.download-qr img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.download-qr-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 4px solid #fff;
  border-radius: 10px;
  background: #0b0f28;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.download-qr-mark svg {
  width: 22px;
  height: 22px;
}

.ios-mark svg {
  fill: #fff;
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 146px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.store-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.ios-store svg {
  fill: currentColor;
}

.store-button:hover {
  border-color: rgba(18, 228, 157, 0.5);
  background: rgba(18, 228, 157, 0.12);
  transform: translateY(-2px);
}

.hero-cards {
  display: flex;
  gap: 18px;
  margin-top: 34px;
  min-height: 118px;
  padding-bottom: 10px;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.hero-card-brand {
  flex: 0 0 104px;
  width: 104px;
  height: 104px;
  padding: 13px 10px 12px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
  transform: rotate(-3deg);
  transform-origin: center center;
}

.hero-card-brand:nth-child(2) {
  transform: translateY(8px) rotate(3deg);
}

.hero-card-brand:nth-child(3) {
  transform: translateY(-4px) rotate(-2deg);
}

.hero-card-brand p {
  margin-top: 9px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 800;
}

.gift-card-icon {
  position: relative;
  display: inline-flex;
  flex: 0 0 58px;
  width: 58px;
  height: 40px;
  border-radius: 11px;
  overflow: hidden;
  background: linear-gradient(135deg, #18e3a4 0%, #28c7f4 100%);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26), 0 0 24px rgba(18, 228, 157, 0.2);
}

.gift-card-icon::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  width: 23px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
}

.gift-card-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  bottom: 9px;
  width: 36px;
  height: 5px;
  border-radius: 999px;
  background: rgba(6, 9, 28, 0.24);
}

.gift-card-icon span {
  position: absolute;
  right: -10px;
  top: -14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.gift-card-icon i {
  position: absolute;
  right: 9px;
  bottom: 8px;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 3px;
  transform: rotate(12deg);
}

.gift-card-rate .gift-card-icon {
  background: linear-gradient(135deg, #8b52ff 0%, #19e2a4 100%);
}

.gift-card-payout .gift-card-icon {
  background: linear-gradient(135deg, #3038ff 0%, #27c8f4 100%);
}

.brand-icon {
  display: inline-flex;
  flex: 0 0 58px;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
}

.apple { background: linear-gradient(135deg, #141923, #8792aa); }
.steam { background: linear-gradient(135deg, #12213d, #40a4ff); }
.google { background: linear-gradient(135deg, #19bd74, #ffd54a); }
.xbox { background: linear-gradient(135deg, #0f8c3b, #62f2a2); }
.amazon { background: linear-gradient(135deg, #161a22, #ffb13b); }
.play { background: linear-gradient(135deg, #044aa6, #64a8ff); }
.visa { background: linear-gradient(135deg, #18216f, #ffcf43); }
.razer { background: linear-gradient(135deg, #0c1117, #44d62c); }

.hero-dots {
  position: relative;
  z-index: 5;
  display: flex;
  gap: 10px;
  margin-top: 44px;
}

.hero-dots button {
  width: 26px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.22);
}

.hero-dots button.active {
  width: 48px;
  background: linear-gradient(90deg, var(--green), var(--purple));
}

.form-box {
  position: absolute;
  top: 106px;
  right: 48px;
  z-index: 4;
  width: min(44%, 560px);
}

.hero-image-box {
  top: 96px;
  right: 38px;
  width: min(50%, 620px);
  pointer-events: none;
}

.hero-reference-card {
  position: relative;
  width: 100%;
  aspect-ratio: 610 / 379;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(6, 8, 29, 0.16);
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.hero-reference-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-image-box .sell-form[hidden] {
  display: none;
}

.sell-form {
  width: 100%;
  min-height: 0;
  padding: 36px 38px 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(8, 11, 34, 0.92);
  color: var(--text);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.sell-title {
  margin-bottom: 32px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
}

.field {
  display: grid;
  gap: 9px;
  margin-bottom: 22px;
  color: #e8ecff;
  font-size: 14px;
  font-weight: 700;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.quote-grid {
  margin-bottom: 20px;
}

.quote-grid .field {
  margin-bottom: 0;
}

.balance-field {
  margin-bottom: 54px;
}

select,
input {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 6px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  padding: 0 14px;
  outline: none;
}

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

select.has-value {
  color: var(--text);
}

select option {
  color: #111827;
}

input::placeholder {
  color: #7781a6;
}

select:focus,
input:focus {
  border-color: rgba(18, 228, 157, 0.58);
  box-shadow: 0 0 0 3px rgba(18, 228, 157, 0.13);
}

.sales-price-title {
  margin-top: 24px;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.sales-price-num {
  position: relative;
  margin-bottom: 0;
  text-align: center;
}

.sales-price-num strong {
  color: #fff;
  font-size: 42px;
  line-height: 50px;
  font-weight: 800;
}

.naira-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.currency-symbol {
  color: var(--green);
  font-size: 38px;
  line-height: 48px;
  font-weight: 800;
}

.btn.dark {
  color: #06141b;
  background: linear-gradient(135deg, var(--green), #18d4ff);
  box-shadow: 0 16px 36px rgba(18, 228, 157, 0.18);
}

.btn.full {
  width: 100%;
}

.quote-button {
  min-height: 44px;
  border-radius: 999px;
}

.quote-summary {
  min-height: 20px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 20px;
  text-align: center;
}

.quote-sell-link {
  display: none;
  width: max-content;
  margin: 12px auto 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.quote-sell-link.show {
  display: block;
}

.field.error select,
.field.error input {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(255, 111, 145, 0.12);
}

.block-box {
  position: relative;
  width: min(calc(100% - 32px), var(--content));
  margin: 18px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 84% 0%, rgba(18, 228, 157, 0.1), transparent 22rem),
    radial-gradient(circle at 8% 36%, rgba(123, 77, 255, 0.16), transparent 22rem),
    var(--panel-bg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.main-box > .block-box {
  width: 100%;
}

.block-box .content-box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.bg-white,
.bg-soft {
  background:
    radial-gradient(circle at 80% 0%, rgba(18, 228, 157, 0.1), transparent 22rem),
    radial-gradient(circle at 12% 30%, rgba(123, 77, 255, 0.14), transparent 22rem),
    var(--panel-bg);
}

.flex {
  display: flex;
}

.split-block {
  min-height: 430px;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.intro-block,
.gift-card-block,
.agent-block,
.card-types-block,
.sell-steps,
.advantages-block,
.app-block,
.comments-block {
  padding: 82px 0;
}

.intro-copy {
  flex: 1;
}

.promo-copy {
  position: relative;
  z-index: 2;
}

.intro-copy .promo-eyebrow,
.section-title-row .promo-eyebrow {
  display: inline-flex;
  width: max-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(18, 228, 157, 0.26);
  border-radius: 999px;
  color: var(--green);
  background: rgba(18, 228, 157, 0.08);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
}

.intro-copy h2,
.section-title-row h2,
.sell-steps h2,
.advantages-block h2,
.app-copy h2,
.comments-block h2 {
  color: var(--text);
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: 0;
}

.intro-copy p,
.section-title-row p,
.section-desc {
  max-width: 680px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.promo-copy .promo-subtitle {
  max-width: 680px;
  margin-top: 14px;
  color: var(--text);
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.2;
  font-weight: 800;
}

.promo-copy .promo-subtitle + p {
  margin-top: 16px;
}

.section-title-row .section-subtitle {
  max-width: 780px;
  margin-top: 14px;
  color: var(--text);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.3;
  font-weight: 800;
}

.section-title-row .section-subtitle + p {
  max-width: 760px;
  margin-top: 14px;
}

.intro-copy .btn {
  margin-top: 34px;
}

.intro-stats {
  display: flex;
  gap: 16px;
  margin-top: 54px;
  flex-wrap: wrap;
}

.intro-stats > div {
  min-width: 150px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.intro-stats strong {
  display: block;
  color: var(--green);
  font-size: 34px;
  line-height: 1.1;
}

.intro-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.intro-visual {
  position: relative;
  flex: 1;
  min-height: 330px;
}

.promo-visual {
  display: grid;
  place-items: center;
  min-height: 360px;
  isolation: isolate;
}

.promo-visual:before {
  position: absolute;
  inset: 20px 10px 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 68% 36%, rgba(18, 228, 157, 0.28), transparent 5.5rem),
    radial-gradient(circle at 43% 50%, rgba(123, 77, 255, 0.25), transparent 9rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  border-radius: 16px;
  filter: blur(0.1px);
}

.reward-app-visual {
  min-height: 430px;
}

.reward-app-visual:before {
  inset: 8px 4px 0;
  background:
    radial-gradient(circle at 72% 24%, rgba(18, 228, 157, 0.32), transparent 7rem),
    radial-gradient(circle at 38% 58%, rgba(123, 77, 255, 0.32), transparent 10rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.012));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.reward-phone {
  position: relative;
  z-index: 3;
  width: 222px;
  height: 394px;
  padding: 34px 15px 18px;
  border: 8px solid #10162c;
  border-radius: 36px;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 9%, rgba(18, 228, 157, 0.2), transparent 7rem),
    linear-gradient(180deg, #111737 0%, #070a1d 100%);
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.42);
  transform: rotate(4deg) translateX(22px);
}

.reward-speaker {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 58px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(-50%);
}

.reward-phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reward-phone-top strong {
  font-size: 12px;
}

.reward-phone-top span {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(18, 228, 157, 0.1);
  font-size: 9px;
  font-weight: 900;
}

.reward-balance-card {
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  color: #06141b;
  background: linear-gradient(135deg, var(--green), #18d4ff);
  box-shadow: 0 18px 42px rgba(18, 228, 157, 0.18);
}

.reward-balance-card span,
.reward-balance-card strong,
.reward-balance-card i {
  display: block;
}

.reward-balance-card span {
  font-size: 11px;
  font-weight: 900;
  opacity: 0.72;
}

.reward-balance-card strong {
  margin-top: 8px;
  font-size: 30px;
  line-height: 1;
}

.reward-balance-card i {
  width: max-content;
  margin-top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(6, 20, 27, 0.16);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.reward-action-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 13px;
}

.reward-action-row span {
  display: grid;
  place-items: center;
  gap: 5px;
  min-height: 58px;
  border: 1px solid rgba(18, 228, 157, 0.14);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.06);
}

.reward-action-row b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 9px;
  color: #06141b;
  background: linear-gradient(135deg, var(--green), #18d4ff);
  font-size: 10px;
}

.reward-action-row small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
}

.reward-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.reward-list span {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 9px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.reward-list i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(18, 228, 157, 0.5);
}

.reward-list b {
  color: var(--text);
  font-size: 10px;
}

.reward-list small {
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
}

.reward-coupon-card {
  position: absolute;
  z-index: 4;
  left: 42px;
  bottom: 58px;
  min-width: 178px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(123, 77, 255, 0.72), rgba(18, 228, 157, 0.18)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
  transform: rotate(-8deg);
}

.reward-coupon-card span,
.reward-coupon-card strong,
.reward-coupon-card small {
  display: block;
}

.reward-coupon-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.reward-coupon-card strong {
  margin-top: 8px;
  color: var(--green);
  font-size: 32px;
  line-height: 1;
}

.reward-coupon-card small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.reward-percent-badge,
.reward-coin {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 900;
}

.reward-percent-badge {
  left: 84px;
  top: 116px;
  width: 72px;
  height: 72px;
  color: #fff;
  background: linear-gradient(135deg, #16daa2, #20b9ff);
  box-shadow: 0 18px 46px rgba(18, 228, 157, 0.2);
  font-size: 35px;
}

.reward-coin {
  color: #6a4300;
  background: radial-gradient(circle at 35% 28%, #fff7c9, #f7bf38 56%, #c88411);
  box-shadow: 0 14px 30px rgba(255, 198, 58, 0.26);
}

.reward-coin.coin-one {
  top: 52px;
  right: 74px;
  width: 56px;
  height: 56px;
  font-size: 27px;
}

.reward-coin.coin-two {
  top: 110px;
  right: 142px;
  width: 64px;
  height: 64px;
  font-size: 30px;
}

.reward-coin.coin-three {
  top: 146px;
  right: 86px;
  width: 50px;
  height: 50px;
  font-size: 24px;
}

.reward-card-stack {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(12, 17, 43, 0.82);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

.reward-card-one {
  right: 40px;
  bottom: 82px;
  width: 180px;
  height: 112px;
  transform: rotate(-5deg);
}

.reward-card-two {
  left: 76px;
  top: 78px;
  width: 190px;
  height: 118px;
  transform: rotate(7deg);
}

.gift-box-visual {
  position: relative;
  width: 300px;
  height: 260px;
  transform: rotate(-3deg);
}

.gift-body {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 210px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 16px 16px 22px 22px;
  background:
    linear-gradient(90deg, transparent 0 41%, rgba(123, 77, 255, 0.58) 41% 59%, transparent 59%),
    linear-gradient(140deg, #f8fbff 0 48%, #dbe8ff 48% 100%);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.34);
  transform: translateX(-50%);
}

.gift-lid {
  position: absolute;
  left: 50%;
  top: 88px;
  width: 238px;
  height: 50px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, transparent 0 43%, rgba(25, 119, 255, 0.82) 43% 57%, transparent 57%),
    linear-gradient(135deg, #ffffff, #e4edff);
  box-shadow: 0 18px 38px rgba(18, 228, 157, 0.12);
  transform: translateX(-50%) rotate(-5deg);
}

.gift-bow {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 134px;
  height: 72px;
  transform: translateX(-50%);
}

.gift-bow:before,
.gift-bow:after {
  position: absolute;
  top: 14px;
  width: 68px;
  height: 48px;
  border: 12px solid #2b6dff;
  border-radius: 50% 50% 10px 50%;
  content: "";
}

.gift-bow:before {
  left: 0;
  transform: rotate(24deg);
}

.gift-bow:after {
  right: 0;
  transform: scaleX(-1) rotate(24deg);
}

.coin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  color: #6a4300;
  background:
    radial-gradient(circle at 35% 28%, #fff6bc, #f7bf38 56%, #c88411);
  box-shadow: 0 14px 30px rgba(255, 198, 58, 0.26);
  font-size: 34px;
  font-weight: 900;
}

.coin-a {
  top: -50px;
  left: 30px;
}

.coin-b {
  top: -82px;
  left: 84px;
  transform: scale(0.84);
}

.coin-c {
  top: -42px;
  right: 28px;
  transform: scale(0.72);
}

.bonus-orbit {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #805400;
  background:
    radial-gradient(circle at 35% 30%, #fff9c9, #f6c341 62%, #ce8d18);
  box-shadow: 0 18px 46px rgba(255, 197, 58, 0.24);
  font-weight: 900;
}

.coin-one {
  top: 42px;
  right: 74px;
  width: 52px;
  height: 52px;
  font-size: 25px;
}

.coin-two {
  left: 72px;
  top: 118px;
  width: 70px;
  height: 70px;
  color: #ffffff;
  background: linear-gradient(135deg, #1bdc85, #20b9ff);
  font-size: 35px;
}

.bonus-ticket {
  position: absolute;
  left: 34px;
  bottom: 38px;
  min-width: 178px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(123, 77, 255, 0.52), rgba(18, 228, 157, 0.16)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
  transform: rotate(-6deg);
}

.bonus-ticket strong {
  display: block;
  color: var(--green);
  font-size: 28px;
  line-height: 1;
}

.bonus-ticket span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.visual-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visual-card.primary {
  top: 36px;
  right: 50px;
  width: 320px;
  height: 220px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(135deg, #11162f, #080b21);
}

.visual-card.primary:before,
.visual-card.primary:after,
.visual-card.secondary:before,
.visual-card.secondary:after {
  position: absolute;
  content: "";
  border-radius: 999px;
}

.visual-card.primary:before {
  top: 32px;
  left: 28px;
  width: 110px;
  height: 12px;
  background: rgba(255, 255, 255, 0.18);
}

.visual-card.primary:after {
  right: 34px;
  bottom: 30px;
  width: 82px;
  height: 82px;
  background: radial-gradient(circle, var(--green), rgba(18, 228, 157, 0.06) 64%);
}

.visual-card.secondary {
  top: 145px;
  right: 210px;
  width: 230px;
  height: 150px;
  background: linear-gradient(135deg, var(--purple), #151936);
  transform: rotate(-7deg);
}

.visual-card.secondary:before {
  top: 26px;
  left: 26px;
  width: 76px;
  height: 12px;
  background: rgba(255, 255, 255, 0.24);
}

.visual-card.secondary:after {
  left: 26px;
  bottom: 28px;
  width: 118px;
  height: 12px;
  background: rgba(18, 228, 157, 0.52);
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.section-title-row > div {
  flex: 3;
}

.section-title-row > .btn {
  flex: 0 0 auto;
}

.agent-reward-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 28px;
  margin-top: 56px;
}

.agent-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.agent-steps article,
.agent-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
}

.agent-steps article {
  min-height: 144px;
  padding: 26px;
}

.agent-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: #06141b;
  background: linear-gradient(135deg, var(--green), #18d4ff);
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(18, 228, 157, 0.18);
}

.agent-steps h3 {
  margin-top: 26px;
  color: var(--text);
  font-size: 21px;
  line-height: 1.28;
}

.agent-steps p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.agent-steps .agent-share-label {
  margin-top: 14px;
  color: var(--text);
  font-weight: 800;
}

.agent-share-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.agent-share-list li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.agent-share-list li::before {
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--green);
  box-shadow: 0 0 12px rgba(18, 228, 157, 0.5);
}

.agent-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.agent-panel:before {
  position: absolute;
  right: -70px;
  top: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(18, 228, 157, 0.36), transparent 68%);
}

.agent-panel-label {
  position: relative;
  color: var(--green);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.agent-flow {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.agent-flow span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(18, 228, 157, 0.24);
  border-radius: 999px;
  color: var(--text);
  background: rgba(18, 228, 157, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.agent-flow i {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green), var(--purple));
}

.agent-reward-card {
  position: relative;
  margin-top: 34px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background:
    radial-gradient(circle at 88% 20%, rgba(123, 77, 255, 0.32), transparent 7rem),
    linear-gradient(135deg, rgba(123, 77, 255, 0.22), rgba(18, 228, 157, 0.08));
}

.agent-reward-card strong {
  display: block;
  color: var(--text);
  font-size: 30px;
  line-height: 1;
}

.agent-reward-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.agent-points {
  position: relative;
  display: grid;
  gap: 12px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  list-style: none;
}

.agent-points li {
  position: relative;
  padding-left: 24px;
}

.agent-points li:before {
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: var(--green);
  box-shadow: 0 0 18px rgba(18, 228, 157, 0.4);
}

.why-agent-panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.why-agent-panel .agent-panel-label {
  color: var(--text);
  font-size: 30px;
  line-height: 1.12;
}

.agent-benefits {
  position: relative;
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.agent-benefits article {
  position: relative;
  padding: 18px 18px 18px 46px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(123, 77, 255, 0.14), rgba(18, 228, 157, 0.045)),
    rgba(255, 255, 255, 0.032);
}

.agent-benefits article::before {
  position: absolute;
  left: 18px;
  top: 23px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: var(--green);
  box-shadow: 0 0 14px rgba(18, 228, 157, 0.58);
}

.agent-benefits h3 {
  color: var(--text);
  font-size: 17px;
  line-height: 1.25;
}

.agent-benefits p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.agent-network-visual {
  position: relative;
  flex: 1;
  min-height: 300px;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid rgba(18, 228, 157, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 78% 18%, rgba(18, 228, 157, 0.26), transparent 8rem),
    radial-gradient(circle at 18% 84%, rgba(123, 77, 255, 0.22), transparent 9rem),
    linear-gradient(145deg, rgba(8, 12, 33, 0.7), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.agent-network-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 86%);
}

.agent-network-phone {
  position: absolute;
  z-index: 3;
  right: 26px;
  top: 28px;
  width: 178px;
  height: 238px;
  padding: 20px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(20, 25, 54, 0.96), rgba(7, 10, 30, 0.96)),
    #0a0e25;
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.28),
    0 0 42px rgba(18, 228, 157, 0.1);
  transform: rotate(5deg);
}

.agent-network-speaker {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 48px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-50%);
}

.agent-network-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.agent-network-head strong {
  color: var(--green);
  font-size: 11px;
}

.agent-network-amount {
  margin-top: 16px;
  padding: 15px 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green), #19d5ff);
  color: #06141b;
  box-shadow: 0 18px 34px rgba(18, 228, 157, 0.2);
}

.agent-network-amount small,
.agent-network-amount strong {
  display: block;
}

.agent-network-amount small {
  font-size: 10px;
  font-weight: 900;
  opacity: 0.72;
}

.agent-network-amount strong {
  margin-top: 4px;
  font-size: 34px;
  line-height: 1;
}

.agent-network-bars {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.agent-network-bars span {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.agent-network-bars span:nth-child(1) {
  width: 78%;
  background: linear-gradient(90deg, rgba(123, 77, 255, 0.9), rgba(18, 228, 157, 0.54));
}

.agent-network-bars span:nth-child(2) {
  width: 92%;
}

.agent-network-bars span:nth-child(3) {
  width: 62%;
}

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

.agent-network-mini span {
  padding: 9px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
}

.agent-network-mini b,
.agent-network-mini small {
  display: block;
}

.agent-network-mini b {
  color: var(--text);
  font-size: 16px;
}

.agent-network-mini small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.agent-node {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #06141b;
  background: linear-gradient(135deg, var(--green), #19d5ff);
  font-weight: 900;
  box-shadow:
    0 16px 36px rgba(18, 228, 157, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.agent-node-main {
  left: 42px;
  top: 112px;
  width: 72px;
  height: 58px;
  border-radius: 22px;
  font-size: 16px;
}

.agent-node-one,
.agent-node-two,
.agent-node-three {
  width: 48px;
  height: 48px;
  font-size: 15px;
}

.agent-node-one {
  left: 148px;
  top: 54px;
  background: linear-gradient(135deg, #8f5cff, var(--green));
}

.agent-node-two {
  left: 156px;
  bottom: 54px;
}

.agent-node-three {
  left: 238px;
  top: 132px;
  background: linear-gradient(135deg, #19d5ff, #8f5cff);
}

.agent-visual-line {
  position: absolute;
  z-index: 2;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(18, 228, 157, 0.12), rgba(18, 228, 157, 0.9), rgba(123, 77, 255, 0.84));
  transform-origin: left center;
  box-shadow: 0 0 18px rgba(18, 228, 157, 0.25);
}

.line-one {
  left: 102px;
  top: 113px;
  width: 92px;
  transform: rotate(-28deg);
}

.line-two {
  left: 102px;
  top: 150px;
  width: 100px;
  transform: rotate(27deg);
}

.line-three {
  left: 196px;
  top: 145px;
  width: 54px;
  transform: rotate(-8deg);
}

.agent-commission-float {
  position: absolute;
  z-index: 4;
  left: 58px;
  bottom: 28px;
  width: 132px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 84% 22%, rgba(18, 228, 157, 0.2), transparent 3rem),
    linear-gradient(135deg, rgba(123, 77, 255, 0.58), rgba(18, 228, 157, 0.12));
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.22);
  transform: rotate(-6deg);
}

.agent-commission-float span,
.agent-commission-float strong {
  display: block;
}

.agent-commission-float span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.agent-commission-float strong {
  margin-top: 4px;
  color: var(--green);
  font-size: 34px;
  line-height: 1;
}

.agent-growth-chip {
  position: absolute;
  z-index: 4;
  right: 54px;
  bottom: 26px;
  padding: 10px 14px;
  border: 1px solid rgba(18, 228, 157, 0.2);
  border-radius: 999px;
  color: var(--text);
  background: rgba(18, 228, 157, 0.09);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(18, 228, 157, 0.1);
}

.card-list {
  position: relative;
  width: 100%;
  margin: 64px auto 0;
}

.arrow {
  position: absolute;
  top: calc(50% - 26px);
  z-index: 5;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.arrow:before {
  position: absolute;
  top: 18px;
  left: 16px;
  width: 14px;
  height: 14px;
  content: "";
  border-top: 3px solid var(--green);
  border-right: 3px solid var(--green);
  transform: rotate(45deg);
}

.arrow:hover {
  border-color: var(--line-bright);
  background: rgba(18, 228, 157, 0.1);
}

.left-arrow {
  left: -76px;
  transform: rotate(180deg);
}

.right-arrow {
  right: -76px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.brand-grid article {
  min-height: 176px;
  padding: 28px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  text-align: center;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.brand-grid article:hover {
  transform: translateY(-4px);
  border-color: var(--line-bright);
  background: rgba(255, 255, 255, 0.075);
}

.brand-grid h3 {
  margin-top: 16px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.35;
}

.more-card {
  display: none;
}

.brand-grid.expanded .more-card {
  display: block;
}

.accepted-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 22px;
  margin-top: 64px;
}

.accepted-card {
  position: relative;
  display: block;
  min-height: 0;
  aspect-ratio: 1.6 / 1;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.accepted-card.more-card {
  display: none;
}

.accepted-card:before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  display: block;
}

.accepted-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-bright);
  box-shadow: 0 30px 66px rgba(0, 0, 0, 0.28), 0 0 34px rgba(18, 228, 157, 0.09);
}

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

.accepted-card h3 {
  margin-top: 16px;
  color: inherit;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
}

.accepted-card-art {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  color: inherit;
  fill: currentColor;
  transform: scale(1.001);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.accepted-card:hover .accepted-card-art {
  transform: scale(1.018);
}

.accepted-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  font-size: 31px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.apple-card,
.ebay-card,
.google-card {
  color: #151923;
}

.apple-card:before,
.ebay-card:before,
.google-card:before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 243, 255, 0.92));
}

.steam-card {
  color: #ffffff;
}

.steam-card:before {
  background:
    radial-gradient(circle at 82% 24%, rgba(55, 171, 255, 0.52), transparent 8rem),
    linear-gradient(135deg, #063252, #071729);
}

.razer-card {
  color: #ffffff;
}

.razer-card:before {
  background:
    linear-gradient(135deg, rgba(100, 235, 68, 0.92) 0 32%, transparent 32%),
    linear-gradient(135deg, #101216, #242124);
}

.xbox-card {
  color: #ffffff;
}

.xbox-card:before {
  background: linear-gradient(135deg, #12823e, #0e6b35);
}

.sephora-card {
  color: #ffffff;
}

.sephora-card:before {
  background: linear-gradient(135deg, #111111, #3c3c3c);
}

.macys-card {
  color: #ffffff;
}

.macys-card:before {
  background: linear-gradient(135deg, #e71a35, #c9142b);
}

.amazon-card {
  color: #ffffff;
}

.amazon-card:before {
  background: linear-gradient(135deg, #111827, #ffb13b);
}

.playstation-card {
  color: #ffffff;
}

.playstation-card:before {
  background: linear-gradient(135deg, #0647a8, #62a8ff);
}

.visa-card {
  color: #ffffff;
}

.visa-card:before {
  background: linear-gradient(135deg, #152177, #f5c747);
}

.netflix-card {
  color: #ffffff;
}

.netflix-card:before {
  background: linear-gradient(135deg, #12080b, #e50914);
}

.apple-logo {
  color: #ffffff;
  background: conic-gradient(from 20deg, #fb4d4d, #f6cf43, #4bd46d, #38a8ff, #8d55ff, #fb4d4d);
}

.steam-logo {
  background: linear-gradient(135deg, #0f395a, #4ab4ff);
}

.razer-logo {
  color: #5b3a00;
  background: radial-gradient(circle at 35% 30%, #fff3a8, #d89f20 62%, #8b5a07);
}

.xbox-logo {
  background: rgba(255, 255, 255, 0.18);
}

.ebay-logo {
  color: #1266d6;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 244, 255, 0.9));
}

.sephora-logo {
  color: #ffffff;
  background: linear-gradient(135deg, #0d0d0d, #606060);
}

.google-logo {
  color: #ffffff;
  background: conic-gradient(from 30deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
}

.macys-logo {
  color: #e71a35;
  background: rgba(255, 255, 255, 0.95);
}

.amazon-logo {
  color: #111827;
  background: #ffb13b;
}

.playstation-logo {
  background: rgba(255, 255, 255, 0.16);
}

.visa-logo {
  color: #152177;
  background: rgba(255, 255, 255, 0.95);
}

.netflix-logo {
  background: #e50914;
}

.accepted-card-grid.expanded .accepted-card.more-card {
  display: block;
}

.steps-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-top: 64px;
}

.steps-grid article {
  position: relative;
  flex: 1;
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  text-align: center;
}

.sell-text .step {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 26px;
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(18, 228, 157, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 228, 157, 0.24), rgba(123, 77, 255, 0.1));
  color: var(--green);
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 0 36px rgba(18, 228, 157, 0.12);
}

.arrow-line {
  display: none;
}

.steps-grid h3 {
  color: var(--text);
  font-size: 22px;
  line-height: 1.35;
}

.steps-grid p {
  max-width: 260px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.advantages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 64px;
}

.advantages .item {
  min-height: 226px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.advantages .item:hover {
  transform: translateY(-4px);
  border-color: var(--line-bright);
  background: rgba(255, 255, 255, 0.075);
}

.adv-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: #06141b;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.42), transparent 34%),
    linear-gradient(135deg, var(--green), #18d4ff);
  box-shadow: 0 18px 34px rgba(18, 228, 157, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.adv-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.18));
}

.advantages h3 {
  margin-top: 20px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.35;
}

.advantages p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.app-content {
  gap: 52px;
  align-items: center;
}

.app-copy {
  flex: 6;
  padding: 30px 0;
}

.app-copy p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.button-row {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.app-visual {
  position: relative;
  flex: 7;
  min-height: 540px;
  isolation: isolate;
}

.app-visual::before {
  position: absolute;
  inset: 18px 0 8px;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 78% 16%, rgba(18, 228, 157, 0.22), transparent 8.5rem),
    radial-gradient(circle at 34% 52%, rgba(123, 77, 255, 0.24), transparent 11rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 26px;
}

.app-visual::after {
  position: absolute;
  left: 28px;
  right: 18px;
  bottom: 56px;
  z-index: -1;
  height: 180px;
  content: "";
  background:
    linear-gradient(118deg, transparent 0 30%, rgba(123, 77, 255, 0.18) 31% 33%, transparent 34% 100%),
    linear-gradient(132deg, transparent 0 58%, rgba(18, 228, 157, 0.14) 59% 61%, transparent 62% 100%);
  transform: skewY(-5deg);
}

.desktop-ui {
  position: absolute;
  top: 104px;
  left: 8px;
  width: 410px;
  min-height: 270px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 20%, rgba(18, 228, 157, 0.14), transparent 8rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(10, 14, 38, 0.86);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-head span {
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
}

.dashboard-head i {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(18, 228, 157, 0.1);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.dashboard-hero-line {
  width: 64%;
  height: 32px;
  margin-top: 24px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--purple), rgba(123, 77, 255, 0.18));
  box-shadow: 0 0 28px rgba(123, 77, 255, 0.16);
}

.dashboard-bars {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.dashboard-bars span {
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.dashboard-bars span:nth-child(2) {
  width: 86%;
  background: linear-gradient(90deg, var(--green), rgba(18, 228, 157, 0.12));
}

.dashboard-bars span:nth-child(3) {
  width: 72%;
}

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

.dashboard-metrics span {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.dashboard-metrics b,
.dashboard-metrics small {
  display: block;
}

.dashboard-metrics b {
  color: var(--text);
  font-size: 18px;
}

.dashboard-metrics small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.mobile-ui {
  position: absolute;
  top: 0;
  right: 32px;
  width: 276px;
  height: 526px;
  padding: 34px 16px 18px;
  border: 10px solid #10162c;
  border-radius: 42px;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 8%, rgba(18, 228, 157, 0.25), transparent 8.5rem),
    linear-gradient(180deg, #101632 0%, #070a1d 100%);
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.38);
}

.phone-speaker {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 70px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(-50%);
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-status strong {
  color: var(--text);
  font-size: 14px;
}

.phone-status span {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.phone-balance {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  color: #06141b;
  background: linear-gradient(135deg, var(--green), #18d4ff);
  box-shadow: 0 18px 40px rgba(18, 228, 157, 0.2);
}

.phone-balance span,
.phone-balance strong,
.phone-balance i {
  display: block;
}

.phone-balance span {
  font-size: 12px;
  font-weight: 900;
  opacity: 0.72;
}

.phone-balance strong {
  margin-top: 8px;
  font-size: 25px;
  line-height: 1.05;
}

.phone-balance i {
  width: max-content;
  margin-top: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(6, 20, 27, 0.16);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.phone-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.phone-actions span {
  display: grid;
  min-height: 66px;
  place-items: center;
  gap: 6px;
  padding: 10px 6px;
  border: 1px solid rgba(18, 228, 157, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.065);
}

.phone-actions svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-actions b {
  color: var(--muted);
  font-size: 10px;
  line-height: 1;
}

.phone-section-title {
  margin-top: 16px;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.phone-trades {
  display: grid;
  gap: 9px;
  margin-top: 10px;
}

.phone-trades > span {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 9px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.065);
}

.phone-trades b {
  color: var(--text);
  font-size: 12px;
}

.phone-trades small {
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
}

.trade-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.amazon-mini {
  color: #111827;
  background: #ffb13b;
}

.apple-mini {
  background: linear-gradient(135deg, #141923, #8792aa);
}

.google-mini {
  background: conic-gradient(from 30deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
}

.app-float-card {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 118px;
  height: 88px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  color: #fff;
  background: rgba(9, 12, 34, 0.86);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
  transform: rotate(-8deg);
}

.app-float-card strong,
.app-float-card span {
  display: block;
}

.app-float-card strong {
  font-size: 32px;
  line-height: 1;
}

.app-float-card span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 900;
}

.app-float-amazon {
  top: 70px;
  right: 270px;
}

.app-float-apple {
  left: 78px;
  bottom: 54px;
  background: linear-gradient(135deg, #1073d8, #28c7f4);
  transform: rotate(8deg);
}

.app-float-google {
  right: 0;
  bottom: 92px;
  background: linear-gradient(135deg, #121625, #0f8c3b);
  transform: rotate(10deg);
}

.app-float-google strong {
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 28px solid #34a853;
  filter: drop-shadow(10px 0 0 #fbbc05);
}

.app-float-google span {
  margin-top: 8px;
}

.comments-block h2 span {
  color: var(--green);
}

.comments {
  position: relative;
  margin-top: 64px;
  overflow: hidden;
  padding: 0 20px;
}

.comments:before,
.comments:after {
  position: absolute;
  top: -10%;
  z-index: 2;
  width: 120px;
  height: 120%;
  content: "";
}

.comments:before {
  left: 0;
  background-image: linear-gradient(to right, rgba(8, 11, 34, 0.96), rgba(8, 11, 34, 0));
}

.comments:after {
  right: 0;
  background-image: linear-gradient(to left, rgba(8, 11, 34, 0.96), rgba(8, 11, 34, 0));
}

.comment-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: commentMove 34s linear infinite;
}

.comment-track article {
  width: 350px;
  min-height: 218px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 8%, rgba(18, 228, 157, 0.09), transparent 7rem),
    rgba(255, 255, 255, 0.045);
}

.comment-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.comment-avatar {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border: 2px solid rgba(18, 228, 157, 0.36);
  border-radius: 50%;
  object-fit: cover;
  background: #0a0e25;
  box-shadow: 0 14px 28px rgba(18, 228, 157, 0.12);
}

.comment-track strong {
  display: block;
  color: var(--text);
  font-size: 18px;
  line-height: 1.35;
}

.comment-head span {
  display: block;
  margin-top: 4px;
  color: rgba(185, 193, 216, 0.76);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.comment-rating {
  margin-top: 18px;
  color: #f8c94f;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 0 18px rgba(248, 201, 79, 0.18);
}

.comment-track p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

@keyframes commentMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.footer {
  padding: 74px 0 36px;
  color: var(--text);
  background:
    radial-gradient(circle at 86% 0%, rgba(18, 228, 157, 0.12), transparent 22rem),
    #06081d;
}

.footer-line {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 38px;
}

.footer-line:after {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.12);
}

.footer-line p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.policy {
  align-self: flex-start;
  margin-top: 54px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 15px;
  line-height: 24px;
  font-weight: 800;
}

.policy:hover {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: 36px;
  color: var(--muted-2);
  font-size: 14px;
  line-height: 24px;
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(3, 5, 18, 0.72);
  backdrop-filter: blur(10px);
}

.modal.open {
  display: grid;
}

.modal-card {
  position: relative;
  width: min(440px, 100%);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: #090d25;
  box-shadow: var(--shadow);
}

.modal-card h2 {
  color: var(--text);
  font-size: 26px;
}

.modal-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.modal-card a {
  color: var(--green);
  font-weight: 800;
}

.policy-card {
  width: min(920px, calc(100vw - 32px));
  max-height: min(86vh, 920px);
  overflow-y: auto;
  padding: 42px;
  scrollbar-color: rgba(18, 228, 157, 0.55) rgba(255, 255, 255, 0.06);
  scrollbar-width: thin;
}

.policy-card::-webkit-scrollbar {
  width: 10px;
}

.policy-card::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
}

.policy-card::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(18, 228, 157, 0.5);
}

.policy-card .modal-close {
  position: sticky;
  top: 0;
  z-index: 2;
  float: right;
  margin-top: -18px;
  margin-right: -18px;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(9, 13, 37, 0.92);
}

.policy-card h2 {
  padding-right: 84px;
  font-size: clamp(30px, 4vw, 42px);
}

.policy-updated {
  color: var(--green) !important;
  font-size: 14px;
  font-weight: 800;
}

.policy-summary,
.policy-toc,
.policy-section {
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.policy-summary {
  padding: 22px;
}

.policy-summary h3,
.policy-section h3 {
  color: var(--text);
  font-size: 20px;
  line-height: 1.35;
}

.policy-summary ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.policy-toc {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 14px;
}

.policy-toc a {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  color: #dfe5ff;
  background: rgba(255, 255, 255, 0.035);
  font-size: 13px;
}

.policy-toc a:hover {
  color: #06141b;
  background: linear-gradient(135deg, var(--green), #18d4ff);
}

.policy-section {
  padding: 24px;
  scroll-margin-top: 20px;
}

.policy-section p {
  margin-top: 12px;
  font-size: 15px;
}

.policy-table-wrap {
  width: 100%;
  margin-top: 18px;
  overflow-x: auto;
}

.policy-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  color: var(--muted);
  font-size: 14px;
}

.policy-table th,
.policy-table td {
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

.policy-table th {
  color: var(--text);
  background: rgba(123, 77, 255, 0.16);
}

.policy-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.policy-mail {
  color: var(--muted) !important;
}

.policy-mail:hover {
  color: var(--green) !important;
}

.policy-page .portal {
  overflow: visible;
  padding-bottom: 72px;
}

.policy-page-main {
  width: min(calc(100% - 32px), 1040px);
  margin: 0 auto;
  padding-top: 118px;
}

.policy-page-card {
  width: 100%;
  max-height: none;
  overflow: visible;
  padding: clamp(28px, 4vw, 54px);
  background:
    radial-gradient(circle at 86% 0%, rgba(18, 228, 157, 0.1), transparent 22rem),
    radial-gradient(circle at 10% 16%, rgba(123, 77, 255, 0.16), transparent 26rem),
    rgba(9, 12, 34, 0.92);
}

.policy-page-card h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.policy-eyebrow {
  margin-top: 0 !important;
  color: var(--green) !important;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.policy-page-card .policy-section {
  scroll-margin-top: 110px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-weight: 800;
}

.modal-close:hover {
  color: var(--green);
}

.qr-box {
  display: grid;
  place-items: center;
  height: 180px;
  margin: 22px 0;
  border: 1px dashed rgba(18, 228, 157, 0.42);
  border-radius: var(--radius);
  color: var(--green);
  background:
    linear-gradient(90deg, rgba(18, 228, 157, 0.07) 50%, transparent 0) 0 0 / 22px 22px,
    rgba(255, 255, 255, 0.04);
  font-weight: 800;
}

.toast {
  position: fixed;
  z-index: 120;
  bottom: 28px;
  left: 50%;
  padding: 12px 18px;
  border: 1px solid var(--line-bright);
  border-radius: var(--radius);
  color: #06141b;
  background: linear-gradient(135deg, var(--green), #18d4ff);
  font-weight: 800;
  opacity: 0;
  transform: translateX(-50%) translateY(100px);
  transition: 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media screen and (max-width: 1260px) {
  .top-header {
    padding: 0 18px;
  }

  .big-menu {
    gap: 18px;
  }

  .info-box {
    left: 34px;
  }

  .form-box {
    right: 34px;
  }

  .left-arrow {
    left: -58px;
  }

  .right-arrow {
    right: -58px;
  }
}

@media screen and (max-width: 1080px) {
  .main-box {
    width: min(calc(100% - 24px), var(--content));
  }

  .banner {
    min-height: 1080px;
  }

  .info-box {
    top: 92px;
    left: 28px;
    right: 28px;
    width: auto;
  }

  .form-box {
    top: 610px;
    left: 50%;
    right: auto;
    width: min(560px, calc(100% - 56px));
    transform: translateX(-50%);
  }

  .hero-image-box {
    top: 608px;
    width: min(700px, calc(100% - 56px));
  }

  .block-box {
    width: min(calc(100% - 24px), var(--content));
  }

  .block-box .content-box {
    padding: 0 24px;
  }

  .split-block,
  .app-content {
    flex-direction: column;
    align-items: stretch;
  }

  .brand-grid,
  .agent-steps,
  .accepted-card-grid,
  .advantages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agent-reward-layout {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .intro-visual {
    width: 100%;
  }

  .promo-visual {
    min-height: 340px;
  }

  .bonus-ticket {
    left: 50px;
  }
}

@media screen and (max-width: 920px) {
  .big-menu,
  .notice,
  .country-select,
  .login-btn {
    display: none;
  }

  .top-header {
    height: 66px;
  }

  .register-btn {
    min-height: 36px;
    padding: 0 14px;
  }

  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    font-weight: 800;
  }

  .mobile-panel {
    position: fixed;
    z-index: 90;
    top: 0;
    right: 0;
    display: grid;
    align-content: start;
    gap: 18px;
    width: min(320px, 86vw);
    height: 100vh;
    padding: 28px;
    color: var(--text);
    border-left: 1px solid var(--line);
    background: #080b20;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.38);
    transform: translateX(110%);
    transition: transform 0.2s ease;
  }

  .mobile-panel.open {
    transform: translateX(0);
  }

  .mobile-panel button {
    justify-self: end;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    padding: 8px 14px;
  }

  .mobile-panel a {
    color: var(--muted);
    font-weight: 800;
  }

  .mobile-panel a:hover {
    color: var(--green);
  }

  .app-visual {
    min-height: 0;
    padding-top: 18px;
  }

  .desktop-ui,
  .mobile-ui {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
  }

  .desktop-ui {
    max-width: 520px;
    margin: 0 auto;
  }

  .mobile-ui {
    width: min(276px, 100%);
    max-width: 276px;
    margin: 24px auto 0;
  }

  .app-float-card,
  .app-visual::after {
    display: none;
  }
}

@media screen and (max-width: 680px) {
  .portal {
    padding-bottom: 0;
  }

  .top-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 0 12px;
  }

  .brand {
    font-size: 16px;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
  }

  .logo-mark img {
    width: 30px;
    height: 30px;
  }

  .logo-wordmark {
    width: 198px;
    height: 45px;
  }

  .logo-wordmark img {
    width: 100%;
    height: 100%;
  }

  .header-right {
    gap: 8px;
  }

  .register-btn {
    display: none;
  }

  .main-box {
    width: calc(100% - 20px);
    padding-top: 88px;
  }

  .banner {
    min-height: 880px;
  }

  .banner:before,
  .block-box:before {
    height: 24px;
    font-size: 11px;
  }

  .info-box {
    top: 76px;
    left: 18px;
    right: 18px;
  }

  .title {
    font-size: 42px;
    min-height: 3.85em;
  }

  .desc {
    font-size: 16px;
    min-height: 3.45em;
  }

  .hero-downloads {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 100%;
    margin-top: 28px;
  }

  .download-qr {
    width: 132px;
    height: 132px;
    padding: 8px;
    border-radius: 12px;
  }

  .store-button {
    width: 132px;
    min-height: 40px;
    font-size: 12px;
  }

  .hero-cards {
    gap: 10px;
    margin-top: 28px;
    min-height: 108px;
    padding-bottom: 8px;
  }

  .hero-card-brand {
    flex: 0 0 calc(33.333% - 7px);
    width: calc(33.333% - 7px);
    min-width: 0;
    height: 96px;
    padding: 12px 7px 10px;
  }

  .hero-card-brand:nth-child(2) {
    transform: translateY(6px) rotate(3deg);
  }

  .hero-card-brand:nth-child(3) {
    transform: translateY(-3px) rotate(-2deg);
  }

  .hero-card-brand p {
    margin-top: 8px;
    font-size: 12px;
  }

  .gift-card-icon {
    flex-basis: 48px;
    width: 48px;
    height: 34px;
    border-radius: 9px;
  }

  .gift-card-icon::before {
    left: 7px;
    top: 8px;
    width: 19px;
    height: 3px;
  }

  .gift-card-icon::after {
    left: 7px;
    bottom: 8px;
    width: 30px;
    height: 4px;
  }

  .gift-card-icon span {
    right: -10px;
    top: -13px;
    width: 38px;
    height: 38px;
  }

  .gift-card-icon i {
    right: 8px;
    bottom: 7px;
    width: 10px;
    height: 10px;
    border-width: 2px;
  }

  .brand-icon {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 17px;
  }

  .form-box {
    top: 560px;
    width: calc(100% - 36px);
  }

  .hero-image-box {
    top: 590px;
    width: calc(100% - 36px);
  }

  .sell-form {
    padding: 28px 20px 26px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .balance-field {
    margin-bottom: 36px;
  }

  .block-box {
    width: calc(100% - 20px);
    margin-top: 14px;
  }

  .intro-block,
  .gift-card-block,
  .card-types-block,
  .sell-steps,
  .advantages-block,
  .app-block,
  .comments-block {
    padding: 62px 0;
  }

  .block-box .content-box {
    padding: 0 18px;
  }

  .section-title-row,
  .footer-line,
  .footer-bottom {
    display: grid;
    gap: 24px;
  }

  .intro-stats {
    margin-top: 34px;
  }

  .intro-visual {
    min-height: 280px;
  }

  .promo-visual {
    min-height: 310px;
    transform: scale(0.92);
    transform-origin: center top;
  }

  .reward-app-visual {
    min-height: 410px;
  }

  .reward-phone {
    transform: rotate(3deg) translateX(8px) scale(0.9);
  }

  .reward-coupon-card {
    left: 18px;
    bottom: 52px;
    transform: rotate(-8deg) scale(0.9);
  }

  .reward-percent-badge {
    left: 36px;
  }

  .reward-card-two {
    left: 24px;
  }

  .gift-box-visual {
    width: 280px;
    height: 242px;
  }

  .bonus-ticket {
    left: 24px;
    bottom: 18px;
  }

  .coin-one {
    right: 34px;
  }

  .coin-two {
    left: 30px;
  }

  .visual-card.primary {
    right: 8px;
    width: 260px;
    height: 178px;
  }

  .visual-card.secondary {
    right: 110px;
    width: 190px;
    height: 124px;
  }

  .brand-grid,
  .agent-steps,
  .advantages {
    grid-template-columns: 1fr;
  }

  .accepted-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
  }

  .accepted-card {
    border-radius: 13px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  }

  .agent-reward-layout {
    gap: 18px;
    margin-top: 42px;
  }

  .agent-steps article {
    min-height: 0;
  }

  .agent-share-list {
    grid-template-columns: 1fr;
  }

  .agent-panel {
    padding: 22px;
  }

  .agent-network-visual {
    min-height: 360px;
    margin-top: 22px;
  }

  .agent-network-phone {
    right: 14px;
    top: 34px;
    transform: rotate(4deg) scale(0.88);
    transform-origin: top right;
  }

  .agent-node-main {
    left: 20px;
    top: 132px;
  }

  .agent-node-one {
    left: 110px;
    top: 78px;
  }

  .agent-node-two {
    left: 106px;
    bottom: 82px;
  }

  .agent-node-three {
    left: 178px;
    top: 162px;
  }

  .line-one {
    left: 80px;
    top: 132px;
    width: 76px;
    transform: rotate(-31deg);
  }

  .line-two {
    left: 80px;
    top: 166px;
    width: 78px;
    transform: rotate(31deg);
  }

  .line-three {
    left: 154px;
    top: 174px;
    width: 42px;
  }

  .agent-commission-float {
    left: 24px;
    bottom: 28px;
    transform: rotate(-6deg) scale(0.92);
    transform-origin: left bottom;
  }

  .agent-growth-chip {
    right: 18px;
    bottom: 24px;
    font-size: 11px;
  }

  .arrow {
    display: none;
  }

  .card-list,
  .agent-reward-layout,
  .accepted-card-grid,
  .steps-grid,
  .advantages,
  .comments {
    margin-top: 42px;
    padding-top: 0;
  }

  .button-row {
    display: grid;
  }

  .button-row .btn {
    width: 100%;
  }

  .comments:before,
  .comments:after {
    display: none;
  }

  .comment-track article {
    width: 282px;
  }

  .policy {
    margin-top: 0;
    justify-self: start;
  }

  .policy-card {
    width: calc(100vw - 20px);
    max-height: 88vh;
    padding: 28px 18px;
  }

  .policy-page-main {
    width: calc(100% - 20px);
    padding-top: 92px;
  }

  .policy-page-card {
    width: 100%;
    max-height: none;
    overflow: visible;
  }

  .policy-card .modal-close {
    margin-top: -8px;
    margin-right: -8px;
  }

  .policy-toc {
    grid-template-columns: 1fr;
  }

  .policy-section,
  .policy-summary {
    padding: 18px;
  }

  .policy-actions {
    display: grid;
  }

  .policy-actions .btn {
    width: 100%;
  }

  .footer {
    padding: 38px 0 24px;
  }

  .footer-line {
    padding-bottom: 22px;
  }

  .footer-line p {
    margin-top: 16px;
  }

  .footer-bottom {
    margin-top: 20px;
  }
}

@media screen and (max-width: 430px) {
  .title {
    font-size: 36px;
    min-height: 4em;
  }

  .banner {
    min-height: 880px;
  }

  .form-box {
    top: 570px;
  }

  .sales-price-num strong {
    font-size: 36px;
  }

  .currency-symbol {
    font-size: 34px;
  }
}
