:root {
  --cyan: #5cf0ff;
  --cyan-2: #22d3ee;
  --electric: #2f6bff;
  --deep: #041433;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.92);
  --line: rgba(255, 255, 255, 0.28);
  --glass: rgba(4, 18, 56, 0.62);
  --glass-2: rgba(4, 18, 56, 0.45);
  --shadow: 0 24px 80px rgba(2, 12, 40, 0.35);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
body {
  font-family: Manrope, system-ui, sans-serif;
  color: #fff;
  background: #06245c;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
img { max-width: 100%; display: block; }

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, #0b4db8 0%, #0a3a94 38%, #061a4a 100%);
  overflow: hidden;
}
.bg::before {
  content: "PVX   PVX   PVX   PVX   PVX   PVX   PVX   PVX   PVX   PVX   PVX   PVX";
  position: absolute;
  inset: -12% -8%;
  font-family: Manrope, sans-serif;
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 0.92;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
  opacity: 0.16;
  transform: rotate(-8deg);
  white-space: pre-wrap;
  word-break: break-all;
  pointer-events: none;
}
.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 24, 72, 0.28);
  pointer-events: none;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 4vw;
  background: rgba(4, 20, 51, 0.78);
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand b { font-size: 17px; font-weight: 800; }
.brand span { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.nav nav {
  display: flex;
  gap: 20px;
  font-size: 15px;
  font-weight: 650;
}
.nav nav a { color: rgba(255, 255, 255, 0.88); }
.nav nav a:hover { color: #fff; }

main {
  position: relative;
  z-index: 1;
}
.block {
  padding: 108px 4vw 56px;
  scroll-margin-top: 76px;
  position: relative;
  z-index: 1;
}
.hero-copy {
  padding: 28px 28px 30px;
  max-width: 640px;
}
h1, h2, .country-card h3, .py-card h3, .who b {
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.28;
  color: #fff;
}

.wrap { width: min(var(--max), 100%); margin: 0 auto; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 650;
}
.kicker i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}
h1 { font-size: clamp(30px, 4.6vw, 48px); max-width: 18ch; color: #fff; }
h2 { font-size: clamp(24px, 3.4vw, 36px); max-width: 22ch; color: #fff; }
.lead { margin-top: 18px; max-width: 52ch; font-size: 18px; line-height: 1.65; color: #fff; font-weight: 500; }
.tagline { margin-top: 14px; font-weight: 700; font-size: 17px; color: #fff; }

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.hero-visual { position: relative; min-height: 340px; }
.map {
  width: 100%;
  height: 360px;
  filter: drop-shadow(0 0 28px rgba(92, 240, 255, 0.28));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #06224a;
  font-weight: 750;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.ghost {
  background: rgba(4, 18, 56, 0.55);
  color: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.glass {
  background: rgba(8, 32, 84, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.binance {
  margin: 28px 0 36px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  max-width: 640px;
}
.binance .mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #f3ba2f;
  color: #1b1b1b;
  font-weight: 800;
}
.binance h3 {
  font-size: 16px;
  letter-spacing: 0.08em;
}
.binance p { margin-top: 8px; color: #fff; font-size: 16px; line-height: 1.55; }

.intro { max-width: 760px; }
.intro p { margin-top: 16px; color: #fff; line-height: 1.7; font-size: 18px; }
.countries-head { margin: 8px 0 18px; }
.countries-head h2 { max-width: none; font-size: clamp(24px, 3vw, 32px); }
.countries-head p { margin-top: 10px; color: #fff; font-size: 18px; }

.grid-7 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.country-card {
  position: relative;
  min-height: 168px;
  padding: 18px 18px 16px;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.country-card .flag { font-size: 28px; display: block; }
.country-card h3 { margin-top: 18px; font-size: 20px; line-height: 1.3; }
.country-card small { display: block; margin-top: 6px; color: #fff; font-size: 14px; }
.country-card .go {
  position: absolute;
  right: 16px;
  bottom: 16px;
  opacity: 0;
  transform: translateX(-8px);
  font-weight: 750;
  font-size: 14px;
  color: #fff;
  transition: 0.2s ease;
}
.country-card:hover,
.country-card:focus-visible {
  transform: translateY(-2px);
  background: rgba(20, 70, 160, 0.9);
  box-shadow: 0 0 0 1px rgba(92,240,255,0.35), 0 18px 50px rgba(8, 40, 90, 0.28);
}
.country-card:hover .go,
.country-card:focus-visible .go {
  opacity: 1;
  transform: none;
}

.back {
  display: inline-flex;
  margin-bottom: 18px;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  background: none;
  border: 0;
  cursor: pointer;
}
.country-hero {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.country-hero .flag { font-size: 42px; }
.country-hero h2 { font-size: clamp(26px, 3.6vw, 36px); line-height: 1.25; }
.country-hero p { margin-top: 8px; color: #fff; font-size: 18px; line-height: 1.5; }

.cond-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cond-card {
  padding: 18px;
  min-height: 120px;
}
.cond-card.deposit {
  outline: 1px solid rgba(92, 240, 255, 0.45);
  background: linear-gradient(180deg, rgba(92,240,255,0.16), rgba(255,255,255,0.06));
}
.cond-card.pay {
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
}
.cond-card span {
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
  font-weight: 650;
}
.cond-card b { font-size: 22px; line-height: 1.35; font-weight: 750; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips em {
  font-style: normal;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  font-size: 15px;
  font-weight: 700;
}

.py-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
.py-card { padding: 22px; }
.py-card h3 { font-size: 24px; margin-bottom: 14px; line-height: 1.25; }
.py-card span {
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin: 14px 0 6px;
  font-weight: 650;
}
.py-card p b { display: block; font-size: 20px; line-height: 1.35; }
.py-card ul { margin: 0 0 16px 18px; color: #fff; line-height: 1.65; font-size: 16px; }
.py-card .btn { margin-top: 8px; }
.py-card .deposit-line { padding: 10px 12px; border-radius: 16px; background: rgba(92,240,255,0.14); }
.py-card .pay-line { padding: 10px 12px; border-radius: 16px; background: rgba(255,255,255,0.12); }

.others { margin-top: 28px; }
.others h3 { font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; margin-bottom: 10px; }
.mini-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(4, 18, 56, 0.55);
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  color: #fff;
}
.mini.on { outline: 1px solid var(--cyan); }

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.portrait-wrap {
  width: min(100%, 460px);
}
.portrait-wrap img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(8, 40, 90, 0.4);
}
.contact-info .who { margin: 18px 0 14px; }
.who b { display: block; font-size: 26px; line-height: 1.25; }
.who span { display: block; color: #fff; margin-top: 6px; font-size: 17px; }
.contacts { display: grid; gap: 14px; color: #fff; font-size: 16px; line-height: 1.45; }
.contacts a { color: #fff; font-size: 20px; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.foot { margin-top: 18px; font-size: 14px; color: #fff; }
.mnav {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 25;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 8px;
  border-radius: 20px;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .hero, .contact, .py-grid, .cond-grid, .grid-7 { grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 220px; }
  .map { height: 240px; }
}
@media (max-width: 760px) {
  .nav nav { display: none; }
  .hero, .contact, .py-grid, .cond-grid { grid-template-columns: 1fr; }
  .grid-7 { grid-template-columns: 1fr 1fr; }
  .country-card { min-height: 148px; }
  .country-card .go { opacity: 0.9; transform: none; font-size: 13px; }
  h1 { font-size: 30px; line-height: 1.28; }
  h2 { font-size: 24px; }
  .lead, .intro p, .countries-head p { font-size: 16px; line-height: 1.65; }
  .country-card h3 { font-size: 18px; }
  .cond-card b { font-size: 18px; }
  .btn { width: 100%; min-height: 52px; }
  .cta-row { flex-direction: column; }
  .portrait-wrap { width: min(100%, 360px); margin: 0 auto; }
  .bg::before { font-size: 72px; opacity: 0.16; }
  .mnav { display: grid; }
  .mnav a {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 4px;
    border-radius: 14px;
    color: #fff;
  }
  .block { padding: 92px 18px 36px; padding-bottom: 96px; }
  .hero-copy { padding: 20px; }
}
