/* aikassa.expert — light premium design system */
:root {
  --bg: #eef3f9;
  --bg-elevated: #ffffff;
  --surface: #ffffff;
  --surface-2: #e7eef8;
  --line: rgba(20, 55, 100, 0.12);
  --line-strong: rgba(20, 110, 200, 0.28);
  --text: #0b1a2c;
  --text-soft: #4a6078;
  --muted: #6b829c;
  --cyan: #1296c9;
  --blue: #1568d6;
  --blue-deep: #0d4aa8;
  --grad: linear-gradient(135deg, #2ec8f0 0%, #1568d6 55%, #0d4aa8 100%);
  --grad-soft: linear-gradient(135deg, rgba(46, 200, 240, 0.16), rgba(21, 104, 214, 0.08));
  --shadow: 0 18px 50px rgba(20, 55, 100, 0.12);
  --radius: 18px;
  --radius-sm: 14px;
  --font-display: "Syne", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --header-h: 92px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  overflow-x: clip;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(46, 200, 240, 0.18), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(21, 104, 214, 0.12), transparent 45%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--cyan); }
button { font: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--blue);
  color: #fff;
  padding: .75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.shell {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}
@media (min-width: 760px) {
  .shell { width: min(1180px, calc(100% - 2.5rem)); }
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 .75rem;
  color: var(--text);
  overflow-wrap: break-word;
}

h1 { font-size: clamp(1.85rem, 6vw, 3.9rem); }
h2 { font-size: clamp(1.45rem, 3.8vw, 2.55rem); }
h3 { font-size: clamp(1.12rem, 2.4vw, 1.45rem); }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-soft);
  max-width: 40rem;
  margin: 0;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan);
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: 0 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--grad);
  color: #fff !important;
  box-shadow: 0 12px 32px rgba(21, 104, 214, 0.32);
}
.btn-primary:hover { box-shadow: 0 16px 40px rgba(46, 200, 240, 0.35); color: #fff !important; }
.btn-ghost {
  background: rgba(255,255,255,.7);
  border-color: var(--line-strong);
  color: var(--text) !important;
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--blue) !important; background: #fff; }
.btn-sm { min-height: 42px; padding: 0 1.1rem; font-size: .88rem; }
.btn-telegram {
  background: #2AABEE;
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(42, 171, 238, 0.35);
  width: auto;
  justify-self: start;
  min-width: 15rem;
  justify-content: center;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}
.btn-telegram:hover {
  background: #229ED9;
  color: #fff !important;
  box-shadow: 0 14px 32px rgba(42, 171, 238, 0.42);
}
.btn-telegram svg { flex-shrink: 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  backdrop-filter: blur(16px);
  background: rgba(238, 243, 249, 0.88);
  border-bottom: none;
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 0;
}
.brand { display: inline-flex; align-items: center; flex-shrink: 1; min-width: 0; }
.brand-logo {
  width: auto;
  height: 48px;
  max-width: min(168px, 46vw);
  object-fit: contain;
  filter: none;
}
.brand-mark {
  display: inline;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  line-height: 1.05;
  white-space: nowrap;
}
.brand-mark-dark { color: #000f3b; }
.brand-mark-accent { color: #0595fe; }
.brand-mark--inline {
  font-size: inherit;
  letter-spacing: -0.03em;
  line-height: inherit;
  white-space: normal;
}
.brand-mark--nav {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
}
.brand-mark--footer {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
}
.brand-mark--hero {
  display: inline-block;
  font-size: clamp(1.85rem, 3.6vw, 2.55rem);
}
.nav-desktop {
  display: none;
  flex: 1;
  justify-content: center;
  gap: .1rem;
  flex-wrap: wrap;
}
.nav-link {
  color: var(--text-soft) !important;
  font-size: .88rem;
  font-weight: 550;
  padding: .5rem .6rem;
  border-radius: 8px;
}
.nav-link:hover,
.nav-link.is-active { color: var(--text) !important; background: rgba(21, 104, 214, 0.08); }
.header-actions { display: flex; align-items: center; gap: .5rem; margin-left: auto; flex-shrink: 0; }
.nav-toggle {
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 18px; height: 1.5px; background: var(--text);
  transition: transform .25s var(--ease), opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
.nav-mobile {
  position: absolute;
  inset: var(--header-h) 0 auto;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0 1.5rem;
}
.nav-mobile[hidden] { display: none !important; }
.nav-mobile-inner { display: flex; flex-direction: column; gap: .25rem; }
.nav-mobile-link {
  color: var(--text) !important;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.nav-mobile-cta { margin-top: 1rem; width: 100%; }

@media (min-width: 1100px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .brand { flex-shrink: 0; }
  .brand-logo { height: 64px; max-width: none; }
  .brand-mark--nav { font-size: 1.4rem; }
}
/* Docs CTA only with desktop nav — otherwise header overcrowds tablets */
@media (max-width: 1099px) {
  .hide-sm { display: none !important; }
}
@media (max-width: 640px) {
  .brand-logo { height: 44px; max-width: min(148px, 48vw); }
  .brand-mark--nav { font-size: 1.05rem; }
  :root { --header-h: 72px; }
  .btn-sm { min-height: 40px; padding: 0 .9rem; font-size: .84rem; }
}

/* Home hero — фон фиксирован при скролле */
.page-home .home-hero {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: transparent;
}
.home-hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: center;
  overflow: visible;
}
.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.page-home .home-hero-media {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  height: calc(100svh - var(--header-h));
  z-index: 0;
  pointer-events: none;
}
.page-home .home-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(238, 243, 249, 0.82);
  pointer-events: none;
}
.home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.03);
  animation: heroDrift 28s ease-in-out infinite alternate;
  filter: none;
}
.home-hero-veil {
  display: none;
}
.page-home .home-hero-inner {
  position: relative;
  z-index: 1;
}
.home-hero-copy {
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 36px rgba(20, 55, 100, 0.1);
}

/* Контент ниже hero — без дымки, фон как в первом блоке */
.page-home .intro-band,
.page-home .section,
.page-home .section-alt,
.page-home .cta-band,
body.page-home .site-footer {
  position: relative;
  z-index: 2;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.page-home .site-footer {
  background: transparent;
}
.home-hero-inner {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 3.5rem 0 3rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 960px) {
  .home-hero-inner {
    /* Левая колонка как раньше (~1.05fr от 1180), правая тянется к краю экрана */
    width: auto;
    max-width: none;
    margin-left: max(1.25rem, calc((100vw - 1180px) / 2));
    margin-right: 0;
    padding: 4rem 0 3.5rem;
    grid-template-areas: none;
    grid-template-columns: minmax(0, 38rem) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
  }
  .home-hero-copy,
  .home-hero-visual {
    grid-area: auto;
  }
  .home-hero-visual {
    justify-self: stretch;
    width: 100%;
    max-width: none;
    margin-right: 0;
    padding-right: 0.5rem;
  }
  .home-hero-visual img {
    width: 100%;
    max-width: none;
  }
}
.home-hero-copy .hero-brand {
  margin: 0 0 1.1rem;
  animation: riseIn .9s var(--ease) both;
}
.home-hero h1 {
  max-width: 16ch;
  margin-bottom: 1rem;
  animation: riseIn .9s .08s var(--ease) both;
}
.home-hero .lead { animation: riseIn .9s .14s var(--ease) both; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.6rem;
  animation: riseIn .9s .2s var(--ease) both;
}
.home-hero-visual {
  border-radius: 0;
  overflow: visible;
  border: none;
  box-shadow: none;
  background: transparent;
  animation: riseIn .9s .18s var(--ease) both;
}
.home-hero-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
}

.intro-band {
  margin-top: 0;
  padding: 2rem 0 1rem;
  position: relative;
  z-index: 1;
  background: var(--bg);
}
.page-home .intro-band {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.intro-band-inner {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem 1.6rem;
  background: var(--surface);
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@media (min-width: 900px) {
  .intro-band-inner {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    padding: 1.75rem 2rem;
  }
}
.intro-band p { margin: 0; color: var(--text-soft); }
.intro-band strong { color: var(--text); }

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroDrift {
  from { transform: scale(1.02) translate3d(0,0,0); }
  to { transform: scale(1.05) translate3d(-1%, -.5%, 0); }
}

/* Sections — без линий-разделителей между блоками */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  position: relative;
  z-index: 1;
  background: var(--bg);
  border: none;
  box-shadow: none;
}
.section-alt {
  background: var(--bg);
}
.page-home .section,
.page-home .section-alt,
.page-home .cta-band {
  background: transparent;
}
.page-home .cta-band {
  position: relative;
  z-index: 2;
}
.section-head {
  max-width: 44rem;
  margin-bottom: 2.25rem;
}
.section-head p { color: var(--text-soft); margin: .75rem 0 0; }
#solutions .section-head {
  max-width: none;
}
@media (min-width: 1200px) {
  #solutions .section-head h2 {
    white-space: nowrap;
  }
}

.pillars {
  display: grid;
  gap: 1rem;
}
.pillar {
  background: var(--surface);
  padding: 0;
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(20, 55, 100, 0.06);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: flex;
  flex-direction: column;
}
.pillar:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.pillar-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface-2);
}
.pillar-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pillar-body { padding: 1.25rem 1.3rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.pillar-index {
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .16em;
  color: var(--cyan);
  margin-bottom: .6rem;
}
.pillar h3 { margin-bottom: .45rem; }
.pillar p { margin: 0; color: var(--text-soft); font-size: .95rem; }
.pillar a.more {
  display: inline-block;
  margin-top: auto;
  padding-top: 1rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--blue) !important;
}

@media (min-width: 800px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .pillars { grid-template-columns: repeat(4, 1fr); }
}

/* Pillars: slide in from sides on scroll (reversible) */
.pillars[data-stage] {
  overflow: hidden;
}
.pillars[data-stage] .pillar {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    opacity .75s var(--ease),
    transform .75s var(--ease),
    box-shadow .25s var(--ease);
}
.pillars[data-stage] .pillar:nth-child(1) { transform: translate3d(-40px, 14px, 0); transition-delay: 0ms; }
.pillars[data-stage] .pillar:nth-child(2) { transform: translate3d(-24px, 14px, 0); transition-delay: 90ms; }
.pillars[data-stage] .pillar:nth-child(3) { transform: translate3d(24px, 14px, 0); transition-delay: 180ms; }
.pillars[data-stage] .pillar:nth-child(4) { transform: translate3d(40px, 14px, 0); transition-delay: 270ms; }
.pillars[data-stage].is-in .pillar:nth-child(n) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.pillars[data-stage].is-in .pillar:hover {
  transform: translate3d(0, -4px, 0);
  box-shadow: var(--shadow);
}
@media (max-width: 799px) {
  .pillars[data-stage]:not(.is-in) .pillar:nth-child(n) {
    transform: translate3d(0, 24px, 0);
  }
}

/* Shared reversible stages */
[data-stage="split"],
[data-stage="cards"],
[data-stage="geo"],
[data-stage="rise"],
[data-stage="fade"] {
  --stage-ease: var(--ease);
  --stage-dur: .7s;
}
[data-stage="split"] > *,
[data-stage="cards"] > *,
[data-stage="rise"] > *,
[data-stage="geo"] > *,
[data-stage="fade"] {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity var(--stage-dur) var(--stage-ease), transform var(--stage-dur) var(--stage-ease);
}

/* Split: columns from opposite sides */
[data-stage="split"]:not(.is-in) > *:first-child { transform: translate3d(-40px, 0, 0); }
[data-stage="split"]:not(.is-in) > *:last-child { transform: translate3d(40px, 0, 0); transition-delay: 100ms; }
[data-stage="split"].reverse:not(.is-in) > *:first-child { transform: translate3d(40px, 0, 0); }
[data-stage="split"].reverse:not(.is-in) > *:last-child { transform: translate3d(-40px, 0, 0); }
[data-stage="split"].is-in > * {
  opacity: 1;
  transform: none;
}

/* Card grids: rise + stagger (no sideways shift — avoids overlap) */
[data-stage="cards"]:not(.is-in) > * { transform: translate3d(0, 28px, 0); }
[data-stage="cards"] > *:nth-child(1) { transition-delay: 0ms; }
[data-stage="cards"] > *:nth-child(2) { transition-delay: 70ms; }
[data-stage="cards"] > *:nth-child(3) { transition-delay: 140ms; }
[data-stage="cards"] > *:nth-child(4) { transition-delay: 210ms; }
[data-stage="cards"] > *:nth-child(5) { transition-delay: 280ms; }
[data-stage="cards"] > *:nth-child(6) { transition-delay: 350ms; }
[data-stage="cards"].is-in > * {
  opacity: 1;
  transform: none;
}

/* Geo: map + list */
[data-stage="geo"]:not(.is-in) > .geo-map { transform: translate3d(-32px, 12px, 0); }
[data-stage="geo"]:not(.is-in) > .region-list { transform: translate3d(32px, 12px, 0); transition-delay: 100ms; }
[data-stage="geo"].is-in > * {
  opacity: 1;
  transform: none;
  will-change: auto;
}
[data-stage="geo"] .region-row {
  opacity: 0;
  transition: opacity .5s var(--stage-ease);
}
[data-stage="geo"].is-in .region-row:nth-child(n) {
  opacity: 1;
}
[data-stage="geo"].is-in .region-row:nth-child(1) { transition-delay: 120ms; }
[data-stage="geo"].is-in .region-row:nth-child(2) { transition-delay: 170ms; }
[data-stage="geo"].is-in .region-row:nth-child(3) { transition-delay: 220ms; }
[data-stage="geo"].is-in .region-row:nth-child(4) { transition-delay: 270ms; }
[data-stage="geo"].is-in .region-row:nth-child(5) { transition-delay: 320ms; }
[data-stage="geo"].is-in .region-row:nth-child(6) { transition-delay: 370ms; }

/* FAQ / soft rise */
[data-stage="rise"]:not(.is-in) > * { transform: translate3d(0, 18px, 0); }
[data-stage="rise"] > *:nth-child(1) { transition-delay: 0ms; }
[data-stage="rise"] > *:nth-child(2) { transition-delay: 45ms; }
[data-stage="rise"] > *:nth-child(3) { transition-delay: 90ms; }
[data-stage="rise"] > *:nth-child(4) { transition-delay: 135ms; }
[data-stage="rise"] > *:nth-child(5) { transition-delay: 180ms; }
[data-stage="rise"] > *:nth-child(6) { transition-delay: 225ms; }
[data-stage="rise"] > *:nth-child(7) { transition-delay: 270ms; }
[data-stage="rise"] > *:nth-child(8) { transition-delay: 315ms; }
[data-stage="rise"].is-in > * {
  opacity: 1;
  transform: none;
}

/* Banner: soft zoom */
[data-stage="fade"]:not(.is-in) {
  transform: translate3d(0, 16px, 0) scale(.985);
  transform-origin: center top;
}
[data-stage="fade"].is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 799px) {
  [data-stage="split"]:not(.is-in) > *:first-child,
  [data-stage="split"]:not(.is-in) > *:last-child,
  [data-stage="split"].reverse:not(.is-in) > *:first-child,
  [data-stage="split"].reverse:not(.is-in) > *:last-child,
  [data-stage="geo"]:not(.is-in) > .geo-map,
  [data-stage="geo"]:not(.is-in) > .region-list {
    transform: translate3d(0, 22px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pillars[data-stage] .pillar,
  .pillars[data-stage].is-in .pillar:hover,
  [data-stage="split"] > *,
  [data-stage="cards"] > *,
  [data-stage="rise"] > *,
  [data-stage="geo"] > *,
  [data-stage="geo"] .region-row,
  [data-stage="fade"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Feature blocks with media */
.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 3.25rem;
  }
  .split.reverse { direction: rtl; }
  .split.reverse > * { direction: ltr; }
}
.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: none;
  box-shadow: var(--shadow);
  background: #fff;
}
.split-media > img:not(.split-media-brand) {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
}
.split-media.wide > img:not(.split-media-brand) { aspect-ratio: 16/10; }
.split-media--character {
  overflow: visible;
  box-shadow: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.split-media--character > img:not(.split-media-brand) {
  width: min(420px, 88%);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}
#payouts .split {
  align-items: center;
}
#payouts .split-media--character {
  justify-self: stretch;
  width: 100%;
  max-width: none;
  min-height: 0;
}
#payouts .split-media--character > img:not(.split-media-brand) {
  width: min(470px, 96%);
}
@media (min-width: 900px) {
  #payouts .split-media--character > img:not(.split-media-brand) {
    width: min(520px, 100%);
    max-width: none;
  }
}
@media (max-width: 759px) {
  #payouts .split-media--character > img:not(.split-media-brand) {
    width: min(300px, 84%);
  }
}
.split-media-brand {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  font-size: clamp(.95rem, 2.2vw, 1.15rem);
  filter: drop-shadow(0 4px 12px rgba(20, 55, 100, 0.18));
  pointer-events: none;
}
@media (min-width: 760px) {
  .split-media-brand {
    right: 1.15rem;
    bottom: 1.15rem;
    font-size: 1.2rem;
  }
}
.check-list { margin-top: 1.15rem; display: grid; gap: .65rem; }
.check-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text-soft);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .55rem;
  width: .55rem; height: .55rem;
  border-radius: 50%;
  background: var(--grad);
}

/* Info rich cards */
.info-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 760px) {
  .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .info-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.info-card {
  background: var(--surface);
  border: none;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(20, 55, 100, 0.06);
  display: flex;
  flex-direction: column;
}
.info-card-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--surface-2);
}
.info-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.info-card-body { padding: 1.25rem 1.3rem 1.4rem; }
.info-card-body h3 { margin-bottom: .4rem; font-size: 1.15rem; }
.info-card-body p { margin: 0; color: var(--text-soft); font-size: .93rem; }

/* Metrics */
.metrics {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) {
  .metrics { grid-template-columns: repeat(4, 1fr); }
}
.metric {
  padding: 1.35rem 1.2rem;
  background: var(--surface);
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(20, 55, 100, 0.06);
}
.metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  letter-spacing: -0.04em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.metric span { color: var(--muted); font-size: .88rem; }
.metrics-rich .metric {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.metrics-rich .metric-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-2);
}
.metrics-rich .metric-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.metrics-rich .metric-body {
  padding: 1.25rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.metrics-rich .metric strong {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  letter-spacing: -0.03em;
  line-height: 1.25;
}
.metrics-rich .metric span {
  display: block;
  margin-top: .35rem;
}
.metrics-rich .metric p {
  margin: .75rem 0 0;
  color: var(--text-soft);
  font-size: .93rem;
  line-height: 1.5;
}

.use-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 760px) {
  .use-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .use-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.use-item {
  display: block;
  padding: 0;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: inherit !important;
  text-decoration: none !important;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(20, 55, 100, 0.06);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.use-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: inherit !important;
}
.use-item-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--surface-2);
}
.use-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.use-item-body { padding: 1.2rem 1.3rem 1.35rem; }
.use-item h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.use-item p { margin: 0; color: var(--text-soft); font-size: .92rem; }

/* Code panel */
.code-panel {
  border: none;
  border-radius: var(--radius);
  background: #0f1724;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-width: 0;
  max-width: 100%;
}
.code-panel-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .7rem 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.code-panel-label {
  font-size: .72rem;
  color: #7f92ab;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
}
.code-panel-badge {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: #0b1220;
  background: #3dd5f5;
  padding: .22rem .5rem;
  border-radius: 5px;
}
.code-copy {
  appearance: none;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: #9eb4cc;
  font: inherit;
  font-size: .72rem;
  font-weight: 600;
  padding: .28rem .55rem;
  border-radius: 6px;
  cursor: pointer;
}
.code-copy:hover { color: #fff; border-color: rgba(61,213,245,.45); }
.code-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  padding: .65rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.15);
}
.code-tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: #7f92ab;
  font: inherit;
  font-size: .78rem;
  font-weight: 600;
  padding: .35rem .65rem;
  border-radius: 6px;
  cursor: pointer;
}
.code-tab:hover { color: #c5d3e6; background: rgba(255,255,255,.04); }
.code-tab.is-active {
  color: #0b1220;
  background: #3dd5f5;
}
.code-panel pre {
  margin: 0;
  padding: 1.25rem 1.35rem 1.5rem;
  overflow-x: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .82rem;
  line-height: 1.7;
  color: #c5d3e6;
}
[data-code-panel] pre[data-code-pane] { display: none; }
[data-code-panel] pre[data-code-pane].is-active { display: block; }
.code-panel .k { color: #3dd5f5; }
.code-panel .s { color: #8fd4ff; }
.code-panel .n { color: #f0c674; }
.code-panel .c { color: #6d829c; }
.code-panel .m { color: #7ee787; }

/* Page hero (inner) */
.page-hero {
  position: relative;
  padding: clamp(2.75rem, 5vw, 4rem) 0 1.5rem;
  overflow: hidden;
}
.page-payments .page-hero,
.page-crypto .page-hero,
.page-solutions .page-hero,
.page-developers .page-hero,
.page-regions .page-hero {
  padding-top: clamp(0.6875rem, 1.25vw, 1rem);
}
.page-regions .page-hero + .section {
  padding-top: 0;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 90% 10%, rgba(46,200,240,.18), transparent 55%),
    radial-gradient(ellipse 40% 50% at 0% 80%, rgba(21,104,214,.1), transparent 50%);
  pointer-events: none;
}
.page-hero-grid { position: relative; }
.page-hero-grid.has-media {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .page-hero-grid.has-media { grid-template-columns: 1.1fr .9fr; gap: 3rem; }
}
.page-hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}
.page-hero-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.page-hero-media--character {
  overflow: visible;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero-media--character img {
  width: min(420px, 100%);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  filter: none;
}
/* Same display height as crypto chel (420 × 1080/720 ≈ 630) */
.page-hero-media--character.page-hero-media--match-h img {
  width: auto;
  height: min(630px, 72vw);
  max-width: 100%;
}
.page-hero-media--character.page-hero-media--match-h.page-hero-media--sm img {
  height: min(540px, 62vw);
}
@media (min-width: 900px) {
  .page-hero-media--character.page-hero-media--match-h img {
    height: 630px;
    max-width: none;
  }
  .page-hero-media--character.page-hero-media--match-h.page-hero-media--sm img {
    height: 540px;
  }
}

.offer-banner {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}
.offer-banner img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
#payin .offer-banner {
  margin-top: .25rem;
}
#payin .split-media.wide > img:not(.split-media-brand) {
  aspect-ratio: 4/3;
}

/* Regions — glass effect visible on light bg (shine + depth, site blues) */
.region-list { display: grid; gap: .75rem; }
.region-row {
  --h: 210;
  --s: 55%;
  --l: 92%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  gap: .5rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.85);
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(255, 255, 255, 0.28) 42%,
      rgba(186, 220, 248, 0.22) 100%
    );
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  box-shadow:
    0 -0.1em 0.2em rgba(20, 55, 100, 0.06),
    0 0.35em 0.9em rgba(21, 104, 214, 0.12),
    0 0 0 1px hsla(var(--h), var(--s), var(--l), 0.55),
    0 0.4em 0.7em hsla(var(--h), var(--s), var(--l), 0.45) inset,
    0 -0.15em 0.45em rgba(255, 255, 255, 0.65) inset,
    0 -1.1em 1.8em hsla(var(--h), var(--s), 88%, 0.28) inset,
    0 1em 0 rgba(255, 255, 255, 0.35) inset;
}
.region-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 255, 255, 0.55) 49%,
    transparent 60%,
    transparent 100%
  );
  opacity: .7;
}
.region-row > * {
  position: relative;
  z-index: 1;
}
@media (min-width: 720px) {
  .region-row {
    grid-template-columns: minmax(110px, 160px) minmax(0, 1fr);
    align-items: center;
  }
}
.region-row strong { font-family: var(--font-display); letter-spacing: -0.02em; }
.region-name {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.geo-flag-sm {
  font-size: 1.25rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 6px;
  box-shadow: none;
  background: transparent;
}
.region-methods { display: flex; flex-wrap: wrap; gap: .4rem; }
#geo .chip {
  display: inline-flex;
  padding: .3rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--text-soft);
  font-size: .78rem;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.65),
    rgba(210, 232, 250, 0.28)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 0 0 1px hsla(210, 55%, 92%, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -4px 10px hsla(210, 55%, 88%, 0.25);
}
.chip {
  display: inline-flex;
  padding: .3rem .7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-size: .78rem;
  background: var(--surface-2);
}

.geo-grid {
  display: grid;
  gap: 1rem;
}
.geo-stack {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.geo-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(20, 55, 100, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: auto;
}
.geo-card-wide {
  width: 100%;
}
.geo-card-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .85rem;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(238, 247, 255, 0.9), rgba(255, 255, 255, 0.4));
}
.geo-flag {
  font-size: 1.75rem;
  line-height: 1;
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(20, 55, 100, 0.08);
}
.geo-flag-img {
  width: 28px;
  height: 21px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(20, 55, 100, 0.12);
  display: block;
  flex-shrink: 0;
}
.geo-flag-img-lg {
  width: 44px;
  height: 33px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(20, 55, 100, 0.1);
}
.geo-flag-code {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--blue);
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(20, 55, 100, 0.08);
}
.geo-card-head h3 {
  margin: 0;
  font-size: 1.08rem;
}
.geo-note {
  margin: .15rem 0 0;
  color: var(--muted);
  font-size: .82rem;
}
.geo-code {
  font-family: var(--font-display);
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--cyan);
  font-weight: 700;
}
.geo-streams {
  display: grid;
  gap: 0;
}
@media (min-width: 900px) {
  .geo-streams-split {
    grid-template-columns: 1fr 1fr;
  }
  .geo-streams-split .geo-stream:first-child {
    border-right: 1px solid var(--line);
  }
}
.geo-stream {
  padding: .55rem 0 .35rem;
  border-bottom: 1px solid var(--line);
}
.geo-stream:last-child { border-bottom: 0; }
@media (min-width: 900px) {
  .geo-streams-split .geo-stream { border-bottom: 0; }
}
.geo-stream-label {
  display: inline-flex;
  margin: 0 1.15rem .35rem;
  padding: .18rem .55rem;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(14, 165, 233, 0.1);
}
.geo-method {
  padding: .55rem 1.15rem .7rem;
}
.geo-method-top {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .75rem;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: .4rem;
}
.geo-method-top strong {
  font-size: .9rem;
}
.geo-limit {
  font-size: .78rem;
  color: var(--blue);
  font-weight: 600;
  white-space: normal;
  text-align: right;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.geo-extra {
  margin-top: 1.75rem;
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(20, 55, 100, 0.06);
}
.geo-after-offers {
  margin-top: 2rem;
}
.geo-extra p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 52rem;
}

.geo-layout {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 960px) {
  .geo-layout { grid-template-columns: 1.15fr .85fr; align-items: start; }
}
.geo-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: none;
  box-shadow: var(--shadow);
}
.geo-map img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.geo-map--character {
  overflow: visible;
  box-shadow: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.geo-map--character img {
  width: min(420px, 88%);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(20, 55, 100, 0.14));
}
@media (max-width: 959px) {
  .geo-map--character img {
    width: min(280px, 70%);
  }
}

/* Pricing */
.price-grid { display: grid; gap: 1rem; }
@media (min-width: 900px) {
  .price-grid { grid-template-columns: repeat(3, 1fr); }
}
.price-tier {
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 8px 24px rgba(20, 55, 100, 0.05);
}
.price-tier.is-featured {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(46,200,240,.1), #fff 42%);
}
.price-tier h3 { margin: 0; }
.price-tier .price-note { color: var(--cyan); font-weight: 600; font-size: .9rem; }
.price-tier ul { display: grid; gap: .55rem; flex: 1; }
.price-tier li {
  color: var(--text-soft);
  padding-left: 1rem;
  position: relative;
  font-size: .93rem;
}
.price-tier li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--cyan);
}

/* FAQ */
.faq-layout {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 900px) {
  .faq-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
    gap: 2rem;
    align-items: start;
  }
}
.faq-list { display: grid; gap: .65rem; max-width: 560px; min-width: 0; }
.faq-character {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.faq-character img {
  width: min(420px, 78%);
  height: auto;
  display: block;
}
@media (min-width: 900px) {
  .faq-character {
    justify-content: flex-end;
    padding-top: .35rem;
  }
  .faq-character img {
    width: min(560px, 108%);
    max-width: none;
  }
}
@media (max-width: 899px) {
  .faq-layout {
    grid-template-areas:
      "char"
      "list";
  }
  .faq-character { grid-area: char; }
  .faq-list { grid-area: list; max-width: none; }
  .faq-character img {
    width: min(300px, 68%);
  }
}
.faq-item {
  border: none;
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(20, 55, 100, 0.06);
}
.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  list-style: none;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { border-bottom: none; box-shadow: inset 0 -1px 0 rgba(20, 55, 100, 0.06); }
.faq-item p {
  margin: 0;
  padding: 1rem 1.25rem 1.25rem;
  color: var(--text-soft);
}

/* Contact form */
.form-grid { display: grid; gap: 1rem; max-width: 640px; }
.form-row { display: grid; gap: .4rem; }
.form-row label { font-size: .85rem; color: var(--text-soft); font-weight: 500; }
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  padding: .85rem 1rem;
  outline: none;
  transition: border-color .2s;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus { border-color: var(--cyan); }
.form-row textarea { min-height: 130px; resize: vertical; }
.form-status {
  margin-top: .5rem;
  font-size: .9rem;
  color: var(--text-soft);
  min-height: 1.3em;
}
.form-status.is-ok { color: #1a9a68; }
.form-status.is-err { color: #c43d3d; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* Guide (hub + article) */
.guide-toc {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .65rem;
  margin: 0 0 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.guide-toc a {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--text-soft);
  padding: .35rem .7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.55);
  transition: color .2s, border-color .2s, background .2s;
}
.guide-toc a:hover {
  color: var(--blue);
  border-color: color-mix(in srgb, var(--blue) 35%, var(--line));
  background: #fff;
}
.guide-stack { display: grid; gap: 2.75rem; }
.guide-block-head { margin-bottom: 1rem; max-width: 40rem; }
.guide-block-head .eyebrow { margin-bottom: .35rem; }
.guide-block-head h2 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--text-soft);
  line-height: 1.35;
}
.guide-list { display: grid; gap: .65rem; }
.guide-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.05rem 1.2rem;
  border-left: 3px solid color-mix(in srgb, var(--blue) 55%, transparent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background:
    linear-gradient(90deg, rgba(46,200,240,.06), transparent 42%),
    #fff;
  color: inherit !important;
  box-shadow: 0 1px 0 var(--line);
  transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
}
.guide-item:hover {
  transform: translateX(3px);
  border-left-color: var(--blue);
  box-shadow: var(--shadow);
  color: inherit !important;
}
.guide-item h3 {
  margin: 0 0 .3rem;
  font-size: 1.02rem;
  color: var(--text);
}
.guide-item p {
  margin: 0;
  font-size: .88rem;
  color: var(--text-soft);
  line-height: 1.45;
}
.guide-item-go {
  font-size: 1.1rem;
  color: var(--blue);
  opacity: .7;
}
.guide-article-layout {
  display: grid;
  gap: 2rem;
}
@media (min-width: 980px) {
  .guide-article-layout {
    grid-template-columns: minmax(0, 1fr) 240px;
    column-gap: 2.5rem;
    align-items: start;
  }
  .guide-article-layout .article-body { grid-column: 1; }
  .guide-article-layout .guide-aside { grid-column: 2; grid-row: 1 / span 3; }
  .guide-article-layout .article-nav,
  .guide-article-layout .guide-related { grid-column: 1; }
}
.guide-aside {
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}
@media (min-width: 980px) {
  .guide-aside {
    position: sticky;
    top: 5.5rem;
  }
}
.guide-aside-title {
  margin: 0 0 .75rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.guide-aside-list { display: grid; gap: .35rem; }
.guide-aside-link {
  display: block;
  padding: .45rem .55rem;
  border-radius: 6px;
  font-size: .84rem;
  line-height: 1.35;
  color: var(--text-soft) !important;
}
.guide-aside-link:hover { background: rgba(46,200,240,.08); color: var(--blue) !important; }
.guide-aside-link.is-current {
  background: rgba(46,200,240,.12);
  color: var(--text) !important;
  font-weight: 600;
}
.guide-aside .btn { width: 100%; justify-content: center; }
.guide-related { margin-top: 2.5rem; }
.guide-related h2 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
}

.article-body { max-width: 720px; color: var(--text-soft); }
.article-body h2,
.article-body h3 { color: var(--text); margin-top: 2rem; }
.article-body p { margin: 0 0 1rem; }
.article-body ul,
.article-body ol { margin: 0 0 1rem 1.2rem; list-style: disc; }
.article-body li { margin-bottom: .4rem; }
.article-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.article-nav a { font-size: .9rem; }

/* CTA band */
.cta-band { padding: 2.5rem 0 4.5rem; }
.cta-band-inner {
  display: grid;
  gap: 1.5rem;
  padding: 1.75rem 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  border: none;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(46,200,240,.2), transparent 55%),
    #fff;
  box-shadow: var(--shadow);
}
@media (min-width: 800px) {
  .cta-band-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 2.5rem 2.75rem;
    gap: 2rem;
  }
}
.cta-band-title { margin: 0 0 .5rem; font-size: clamp(1.45rem, 2.4vw, 1.9rem); }
.cta-band-text { margin: 0; color: var(--text-soft); max-width: 36rem; }
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: flex-start;
}
@media (min-width: 800px) {
  .cta-band-actions { justify-content: flex-end; }
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: none;
  padding: 3.25rem 0 2rem;
  background: var(--bg);
  overflow: hidden;
}
.footer-glow {
  display: none;
}
.footer-grid { position: relative; display: grid; gap: 2rem; }
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2.5rem; }
}
.footer-tag {
  margin: .75rem 0 .5rem;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-note { color: var(--text-soft); font-size: .92rem; max-width: 28rem; margin: 0; }
.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
.footer-col a {
  color: var(--text-soft) !important;
  font-size: .92rem;
  display: inline-block;
  padding: .28rem 0;
}
.footer-col a:hover { color: var(--blue) !important; }
.footer-bottom {
  position: relative;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: .85rem;
}
.footer-bottom > p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  line-height: 1.35;
  min-height: 1.35em;
}
.footer-bottom .brand-mark {
  display: inline-flex;
  align-items: baseline;
  line-height: 1.35;
}
.footer-legal { max-width: none; margin: 0; white-space: nowrap; }
@media (max-width: 759px) {
  .footer-legal { white-space: normal; }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }

.section-mesh { position: relative; isolation: isolate; }
.section-mesh::before { display: none; }

.two-col { display: grid; gap: 2rem; }
@media (min-width: 900px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
}

.contact-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}
.contact-form-col .form-grid { max-width: none; }
.contact-tg--mobile { display: none; }
.contact-tg--desktop {
  margin-top: 1.25rem;
}
.contact-direct-title--mobile {
  display: none;
  margin: 0;
  font-size: 1.35rem;
}
.contact-aside {
  display: grid;
  gap: 1rem;
  align-content: start;
}
.contact-character {
  display: flex;
  justify-content: center;
  margin: 0;
}
.contact-character img {
  width: min(280px, 70%);
  height: auto;
  display: block;
}
@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "form char"
      "form aside";
    column-gap: 3rem;
    row-gap: 1rem;
  }
  .contact-form-col { grid-area: form; }
  .contact-character {
    grid-area: char;
    justify-content: flex-start;
    margin-top: .25rem;
  }
  .contact-aside { grid-area: aside; }
  .contact-character img {
    width: min(320px, 88%);
  }
  .contact-tg--mobile { display: none !important; }
  .contact-tg--desktop { display: inline-flex; }
  .contact-direct-title--mobile { display: none !important; }
  .contact-direct-title--desktop { display: block; }
}
@media (max-width: 899px) {
  .page-contact .section {
    padding-bottom: 1.5rem;
  }
  .page-contact .site-footer {
    padding-top: 2rem;
  }
  .contact-layout {
    gap: 1.25rem;
    grid-template-areas:
      "char"
      "form";
  }
  .contact-character { grid-area: char; }
  .contact-form-col { grid-area: form; }
  .contact-tg--desktop { display: none !important; }
  .contact-direct-title--desktop { display: none !important; }
  .contact-direct-title--mobile {
    display: none !important;
  }
  .contact-tg--mobile {
    display: inline-flex;
    width: 100%;
    min-width: 0;
    justify-self: stretch;
    justify-content: center;
  }
  .contact-aside {
    display: none;
  }
  .contact-form-col .form-status {
    min-height: 0;
  }
}
@media (max-width: 599px) {
  .contact-character img {
    width: min(200px, 55%);
  }
}

.security-points { display: grid; gap: 1.25rem; }
.security-points article {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.security-points article:last-child { border-bottom: 0; padding-bottom: 0; }
.security-points p { margin: .4rem 0 0; color: var(--text-soft); }

.steps {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.step {
  padding: 0;
  background: var(--surface);
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(20, 55, 100, 0.06);
  overflow: hidden;
}
.step-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--surface-2);
}
.step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.step-body { padding: 1.2rem 1.3rem 1.4rem; }
.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: .6rem;
  letter-spacing: .08em;
}
.step p { margin: .4rem 0 0; color: var(--text-soft); font-size: .93rem; }

/* ========== Responsive: phones & tablets ========== */
@media (max-width: 959px) {
  .page-home .home-hero,
  .home-hero {
    min-height: 0;
    padding-bottom: 1rem;
  }
  .home-hero-media img {
    object-position: center center;
  }
  .home-hero-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 1.5rem 0 1.5rem;
    gap: 1.5rem;
    display: grid;
    grid-template-areas:
      "visual"
      "copy";
  }
  .home-hero-visual { grid-area: visual; }
  .home-hero-copy { grid-area: copy; }
  .home-hero-copy {
    width: calc(100% - 2.5rem);
    max-width: none;
    margin-inline: auto;
    padding: 1rem 1.05rem;
    box-sizing: border-box;
  }
  .home-hero-copy .hero-brand {
    margin-bottom: .9rem;
  }
  .home-hero-copy .brand-mark--hero {
    font-size: clamp(1.55rem, 7vw, 1.9rem);
  }
  .home-hero-visual {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .home-hero-visual img {
    width: 100%;
    max-width: none;
    display: block;
  }
  .hero-actions {
    gap: .55rem;
  }
  .hero-actions .btn {
    flex: 1 1 auto;
    min-width: min(100%, 10.5rem);
  }
}

@media (max-width: 759px) {
  .section {
    padding: 2.75rem 0;
  }
  .section-head {
    margin-bottom: 1.5rem;
  }
  .page-hero {
    padding: 2rem 0 1rem;
  }
  .page-payments .page-hero,
  .page-crypto .page-hero,
  .page-solutions .page-hero,
  .page-developers .page-hero,
  .page-regions .page-hero {
    padding-top: 0.5rem;
  }
  .pillar-body,
  .info-card-body,
  .metric-body,
  .use-item-body,
  .step-body {
    padding: 1.05rem 1.1rem 1.2rem;
  }
  .geo-method-top {
    flex-direction: column;
    align-items: flex-start;
    gap: .2rem;
  }
  .geo-limit {
    text-align: left;
  }
  .region-row {
    grid-template-columns: 1fr;
    gap: .55rem;
  }
  .code-panel pre {
    font-size: .74rem;
    padding: 1rem 1.05rem 1.2rem;
  }
  .code-tabs {
    padding: .5rem .75rem;
  }
  .code-tab {
    font-size: .72rem;
    padding: .3rem .5rem;
  }
  .guide-item {
    gap: .65rem;
    padding: .9rem 1rem;
  }
  .guide-item-go { display: none; }
  .form-grid .btn,
  .cta-band-actions .btn {
    width: 100%;
  }
  .cta-band {
    padding: 2rem 0 3rem;
  }
  .cta-band-inner {
    padding: 1.5rem 1.35rem;
  }
  .footer-grid {
    gap: 1.5rem;
  }
  .brand-mark--footer {
    font-size: 1.15rem;
  }
  .offer-banner img {
    border-radius: var(--radius-sm);
  }
  .metrics {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 479px) {
  .shell {
    width: calc(100% - 1.25rem);
  }
  .home-hero-inner {
    gap: 1.15rem;
    padding: 1.15rem 0 1.25rem;
  }
  .home-hero-copy {
    width: calc(100% - 1.25rem);
    padding: 1rem 1rem 1.1rem;
  }
  .home-hero-copy .lead {
    font-size: .95rem;
    line-height: 1.5;
  }
  .home-hero-visual {
    display: block;
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }
  .home-hero-visual img {
    width: 100%;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }
  .hero-actions {
    margin-top: 1.15rem;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .metrics {
    grid-template-columns: 1fr;
  }
  .geo-card-head {
    gap: .65rem;
  }
  .chip {
    font-size: .72rem;
    padding: .25rem .55rem;
  }
}

@media (min-width: 640px) and (max-width: 899px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .footer-grid .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (min-width: 760px) and (max-width: 1099px) {
  .info-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .use-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Safe areas (notches) — don't override component padding on .shell */
@supports (padding: max(0px)) {
  body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
}
