*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --n9: #04081a;
  --n8: #08112e;
  --n7: #111e55;
  --n6: #1e2e80;
  --n5: #2d40b0;
  --n4: #4a62cc;
  --n2: #8fa4e8;
  --p: #2563eb;
  --pl: #60a5fa;
  --pd: #1e40af;
  --accent2: #7c3aed;
  --accent3: #06b6d4;
  --bg: #081330;
  --bgs: #0d1840;
  --bgc: #0f1e54;
  --bgd: #121f56;
  --ink: #f2f6ff;
  --ink2: #b8d0ee;
  --ink3: #5878a8;
  --sb: #243575;
  --sb2: #2d4290;
  --sm: #607ab8;
  --sf: #8aaad8;
  --glow-p: rgba(37, 99, 235, .5);
  --glow-a: rgba(124, 58, 237, .4);
  --r4: 4px;
  --r12: 12px;
  --r16: 16px;
  --r24: 24px;
  --r32: 32px;
  --rpill: 9999px;
  --f: 'Inter', 'Space Grotesk', sans-serif;
  --fh: 'Syne', 'Space Grotesk', sans-serif;
  --fm: 'Syne', 'Space Grotesk', sans-serif;
}

/* ── KEYFRAMES ── */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 4px 18px rgba(37, 99, 235, .06)
  }

  50% {
    transform: translateY(-9px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, .18)
  }
}

@keyframes float-featured {

  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 1px rgba(96, 165, 250, .4), 0 12px 36px rgba(37, 99, 235, .45), 0 0 22px rgba(96, 165, 250, .22);
  }

  50% {
    transform: translateY(-9px);
    box-shadow: 0 0 0 1px rgba(96, 165, 250, .5), 0 16px 42px rgba(37, 99, 235, .55), 0 0 28px rgba(96, 165, 250, .28);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%)
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: .5
  }

  50% {
    opacity: 1
  }
}

@keyframes hero-img-breathe {

  0%,
  100% {
    transform: scale(1);
    filter: saturate(.85) brightness(.85)
  }

  50% {
    transform: scale(1.04);
    filter: saturate(1) brightness(.95)
  }
}

@keyframes border-glow {

  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(37, 99, 235, .3), 0 0 28px rgba(37, 99, 235, .08)
  }

  50% {
    box-shadow: 0 0 0 1px rgba(96, 165, 250, .65), 0 0 48px rgba(37, 99, 235, .22)
  }
}

@keyframes badge-in {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ── BASE ── */
html {
  scroll-behavior: smooth
}

body {
  font-family: var(--f);
  background: var(--n9);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: var(--fh)
}

.w {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px
}

img {
  display: block
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(3, 5, 18, .97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: none;
}

.nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, .7) 30%, rgba(124, 58, 237, .7) 70%, transparent 100%);
  pointer-events: none;
}

.nav-l {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0
}

img.logo {
  width: 120px
}

.nav-ln {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.04em;
  color: var(--ink)
}

.nav-ls {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sf);
  display: block
}

.nav-links {
  display: flex;
  gap: 22px;
  margin-left: 36px;
  flex: 1
}

.nl {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink2);
  text-decoration: none;
  letter-spacing: -.01em;
  transition: color .15s;
}

.nl:hover {
  color: var(--p)
}

.nav-r {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px
}

/* ── LANG SWITCHER ── */
.lang-sw {
  display: flex;
  align-items: center;
  gap: 1px;
  margin-right: 4px;
}

.lbtn {
  background: none;
  border: none;
  color: var(--ink3);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: var(--r4);
  transition: color .15s;
  font-family: var(--fm);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.lbtn-flag {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.lbtn:hover,
.lbtn.active {
  color: var(--p);
}

.lsep {
  color: var(--ink3);
  font-size: 10px;
  opacity: .35;
  pointer-events: none;
  user-select: none;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f);
  font-weight: 600;
  letter-spacing: -.01em;
  cursor: pointer;
  border: none;
  border-radius: var(--rpill);
  text-decoration: none;
  transition: transform .22s, box-shadow .22s, opacity .22s, border-color .22s, color .22s;
  white-space: nowrap;
  font-size: 13px;
}

.btn-sm {
  height: 36px;
  padding: 0 16px
}

.btn-md {
  height: 46px;
  padding: 0 24px;
  font-size: 14px
}

.btn-lg {
  height: 52px;
  padding: 0 28px;
  font-size: 15px
}

.btn-p {
  background: var(--p);
  color: #fff
}

.btn-p:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--glow-p);
  opacity: 1;
}

.btn-o {
  background: transparent;
  color: var(--ink2);
  border: 1.5px solid var(--sb)
}

.btn-o:hover {
  border-color: rgba(51, 113, 227, .6);
  color: var(--p);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(51, 113, 227, .2), 0 8px 24px rgba(51, 113, 227, .08);
}

.arr {
  background: rgba(255, 255, 255, .18);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

.btn-n .arr {
  color: var(--n7)
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
  background: var(--n9);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, var(--n9));
  z-index: 3;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, .1) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 60% 40%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 80% at 60% 40%, black 30%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: -160px;
  right: -60px;
  width: 1000px;
  height: 900px;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, .32) 0%, rgba(37, 99, 235, .08) 45%, transparent 70%);
  animation: pulse-glow 6s ease-in-out infinite;
}

.hero-glow2 {
  position: absolute;
  bottom: -160px;
  left: -40px;
  width: 760px;
  height: 640px;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, .22) 0%, rgba(124, 58, 237, .06) 50%, transparent 70%);
  animation: pulse-glow 8s ease-in-out infinite 2s;
}

.hero-glow3 {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, .1) 0%, transparent 70%);
  animation: pulse-glow 10s ease-in-out infinite 1s;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding: 100px 0 100px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(51, 113, 227, .1);
  border: 1px solid rgba(51, 113, 227, .2);
  border-radius: var(--rpill);
  padding: 5px 14px;
  font-size: 11px;
  font-family: var(--fm);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--p);
  margin-bottom: 22px;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--p);
  animation: pulse-glow 2s ease-in-out infinite;
}

h1 {
  font-family: var(--fh);
  font-size: clamp(36px, 4.2vw, 62px);
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: 1.0;
  margin-bottom: 28px;
}

h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--pl) 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-p {
  font-size: 18px;
  color: var(--ink2);
  line-height: 1.78;
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.hero-right {
  position: relative;
  padding-top: 16px;
}

.hero-img-wrap {
  border-radius: var(--r24);
  overflow: hidden;
  border: 1px solid rgba(26, 40, 80, .7);
  position: relative;
  animation: border-glow 4s ease-in-out infinite;
}

.hero-img-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.9) brightness(.9);
  animation: hero-img-breathe 9s ease-in-out infinite;
  transform-origin: center center;
}



.hero-img-tags {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.hero-img-tags .badge:nth-child(1) {
  animation: badge-in .5s cubic-bezier(.4, 0, .2, 1) both .6s
}

.hero-img-tags .badge:nth-child(2) {
  animation: badge-in .5s cubic-bezier(.4, 0, .2, 1) both .8s
}

.hero-img-tags .badge:nth-child(3) {
  animation: badge-in .5s cubic-bezier(.4, 0, .2, 1) both 1s
}

.hcard-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 10px
}

.hcard {
  background: rgba(14, 26, 72, .82);
  border: 1px solid rgba(45, 70, 160, .9);
  border-radius: var(--r16);
  padding: 18px 20px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color .3s, box-shadow .3s, transform .2s;
  will-change: transform, box-shadow;
  box-shadow: 0 4px 24px rgba(37, 99, 235, .12);
}

.hcard:nth-child(1) {
  animation: float 6s cubic-bezier(.45, .05, .55, .95) infinite
}

.hcard:nth-child(2) {
  animation: float-featured 6s cubic-bezier(.45, .05, .55, .95) infinite 1.5s;
  background: linear-gradient(135deg, rgba(37, 99, 235, .5) 0%, rgba(99, 58, 210, .45) 100%);
  border: 1.5px solid #93c5fd;
  z-index: 2;
  position: relative;
  padding: 20px 18px;
}

.hcard:nth-child(2) .hcard-label {
  color: #bfdbfe;
  letter-spacing: .18em;
  font-size: 11px;
}

.hcard:nth-child(2) .hcard-val {
  color: #fff;
  font-size: 17px;
  text-shadow: 0 0 16px rgba(147, 197, 253, .5);
}

.hcard:nth-child(3) {
  animation: float 6s cubic-bezier(.45, .05, .55, .95) infinite 3s
}

.hcard:nth-child(4) {
  animation: float 6s cubic-bezier(.45, .05, .55, .95) infinite 4.5s
}

.hcard:hover {
  border-color: rgba(96, 165, 250, .6);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, .25), 0 8px 28px rgba(37, 99, 235, .2);
  animation-play-state: paused;
}

.hcard-label {
  font-size: 10px;
  font-family: var(--fm);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sf);
  margin-bottom: 5px;
}

.hcard-val {
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink)
}

/* ── LOGOS MARQUEE ── */
.logos-bar {
  background: rgba(8, 14, 40, .8);
  border-top: 1px solid rgba(26, 40, 80, .5);
  border-bottom: 1px solid rgba(26, 40, 80, .5);
  overflow: hidden;
}

.logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 60s linear infinite;
}


.logo-pill {
  font-size: 11px;
  font-weight: 600;
  font-family: var(--fm);
  color: var(--sm);
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 18px 30px;
  position: relative;
  transition: color .2s;
}

.logo-pill::after {
  content: '·';
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sb2);
  font-size: 20px;
  line-height: 1;
}

.logo-pill:hover {
  color: var(--pl)
}

/* ── SECTIONS ── */
.sec {
  padding: 100px 0;
  position: relative;
}

.sec+.sec {
  border-top: 1px solid var(--sb);
}

.eyebrow {
  display: none;
}

h2 {
  font-family: var(--fh);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 700;

  letter-spacing: -.03em;
  margin-bottom: 12px;
  line-height: 1.1;
}

.sec-sub {
  font-size: 18px;
  color: var(--ink2);
  line-height: 1.75;
  max-width: 540px;
  font-weight: 400;
}

.centered {
  text-align: center
}

.centered .sec-sub {
  margin: 0 auto
}

/* ── BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: .25em .75em;
  border-radius: var(--rpill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
}

.bp {
  background: rgba(51, 113, 227, .12);
  color: var(--p)
}

.bn {
  background: rgba(26, 35, 126, .18);
  color: var(--n2)
}

.bi {
  background: rgba(0, 153, 204, .12);
  color: #0099cc
}

.bs {
  background: rgba(76, 175, 80, .12);
  color: #4caf50
}

.bw {
  background: rgba(255, 179, 7, .12);
  color: #ffb307
}

.bdot::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block
}

/* ── PRODUCT CARDS ── */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px
}

.pcard {
  border-radius: var(--r24);
  overflow: hidden;
  border: 1px solid var(--sb);
  background: var(--bgc);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1), border-color .35s, box-shadow .35s;
  position: relative;
  cursor: default;
}

.pcard:hover {
  transform: translateY(-8px);
  border-color: rgba(96, 165, 250, .5);
  box-shadow: 0 24px 60px rgba(4, 8, 26, .8), 0 0 0 1px rgba(37, 99, 235, .25), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.pcard-img-wrap {
  position: relative;
  overflow: hidden
}

.pcard-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: filter .4s, transform .4s
}

.pcard:hover .pcard-img {
  transform: scale(1.04)
}

.pcard-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 65%, rgba(11, 20, 64, .92) 100%)
}

.pcard-body {
  padding: 22px 24px 28px;
  background: var(--bgc);
  position: relative
}

.pcard-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sb2), transparent);
}

.pcard-tag {
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--rpill);
  background: rgba(37, 99, 235, .15);
  border: 1px solid rgba(96, 165, 250, .2);
  color: var(--pl);
  display: inline-block;
  margin-bottom: 12px;
}

.pcard-title {
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -.02em;
  color: var(--ink)
}

.pcard-desc {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.65
}

/* ── GAMES ── */
.games-sec {
  background: var(--bg);
  border-top: 1px solid var(--sb2);
  border-bottom: 1px solid var(--sb2);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px
}

.gcard {
  background: var(--bgd);
  border: 1px solid var(--sb);
  border-radius: var(--r24);
  overflow: hidden;
  transition: border-color .35s, transform .35s, box-shadow .35s;
  cursor: default;
}

.gcard:hover {
  border-color: rgba(96, 165, 250, .55);
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(4, 8, 26, .7), 0 0 0 1px rgba(37, 99, 235, .25);
}

.gcard-img-wrap {
  position: relative;
  overflow: hidden
}

.gcard-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  filter: saturate(.85) brightness(.68);
  transition: transform .4s, filter .4s
}

.gcard:hover .gcard-img {
  transform: scale(1.05);
  filter: saturate(1.05) brightness(.85)
}

.gcard-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(15, 29, 80, .85) 100%)
}

.gcard-body {
  padding: 22px 24px 24px;
  position: relative
}

.gcard-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--p), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
}

.gcard:hover .gcard-body::before {
  transform: scaleX(1)
}

.gcard-num {
  font-size: 11px;
  font-family: var(--fm);
  color: var(--sm);
  margin-bottom: 10px
}

.gcard-title {
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -.02em;
  color: var(--ink)
}

.gcard-desc {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.65
}

.gcard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px
}

.gtag {
  font-size: 11px;
  color: var(--n2);
  background: rgba(30, 48, 96, .5);
  border: 1px solid var(--sb2);
  border-radius: var(--rpill);
  padding: 4px 12px;
}

/* ── MANAGEMENT ── */
.mgmt-sec {
  background: var(--n9)
}

.mgmt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px
}

.mgmt-card {
  background: var(--bgc);
  border: 1px solid var(--sb);
  border-radius: var(--r24);
  overflow: hidden;
  transition: border-color .35s, transform .35s, box-shadow .35s;
  cursor: default;
}

.mgmt-card:hover {
  border-color: rgba(96, 165, 250, .5);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(4, 8, 26, .7), 0 0 0 1px rgba(37, 99, 235, .2);
}

.mgmt-ico-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  background: linear-gradient(135deg, rgba(10, 18, 50, .9) 0%, rgba(20, 35, 90, .7) 100%);
  border-bottom: 1px solid var(--sb);
  position: relative;
  overflow: hidden;
}

.mgmt-ico-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(51, 113, 227, .12) 0%, transparent 70%);
}

.mgmt-ico-wrap svg {
  width: 80px;
  height: 80px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 18px rgba(51, 113, 227, .4));
  transition: transform .35s, filter .35s;
}

.mgmt-card:hover .mgmt-ico-wrap svg {
  transform: scale(1.08);
  filter: drop-shadow(0 0 28px rgba(96, 165, 250, .6));
}

.mgmt-body {
  padding: 24px 26px 28px;
  background: var(--bgd);
  position: relative
}

.mgmt-body::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--p), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
}

.mgmt-card:hover .mgmt-body::after {
  transform: scaleX(1)
}

.mgmt-title {
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -.02em;
  color: var(--ink)
}

.mgmt-desc {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.65
}

.mgmt-list {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.mgmt-list li {
  font-size: 14px;
  color: var(--sf);
  display: flex;
  align-items: center;
  gap: 8px
}

.mgmt-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pl);
  flex-shrink: 0
}

/* ── VLT ── */
.vlt-sec {
  background: var(--bg);
  border-top: 1px solid var(--sb2);
  border-bottom: 1px solid var(--sb2)
}

.vlt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center
}


.vlt-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px
}

.vlt-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.vlt-ico {
  width: 42px;
  height: 42px;
  border-radius: var(--r12);
  background: linear-gradient(135deg, var(--n7), var(--p));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(51, 113, 227, .3);
}

.vlt-ico svg {
  width: 20px;
  height: 20px
}

.vlt-t {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: -.01em;
  color: var(--ink)
}

.vlt-d {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.6
}

.vlt-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 22px
}

.vlt-aside {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.vlt-row {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--sb);
  border-radius: var(--r16);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color .3s, background .3s, box-shadow .3s;
}

.vlt-row:hover {
  border-color: rgba(51, 113, 227, .45);
  background: rgba(51, 113, 227, .06);
  box-shadow: 0 4px 24px rgba(51, 113, 227, .12);
}

.vlt-row-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r12);
  background: linear-gradient(135deg, rgba(51, 113, 227, .18) 0%, rgba(51, 113, 227, .06) 100%);
  border: 1px solid rgba(51, 113, 227, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vlt-row-icon svg {
  width: 20px;
  height: 20px;
}

.vlt-row-body {
  flex: 1;
  min-width: 0;
}

.vlt-rl {
  display: block;
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: .01em;
  margin-bottom: 2px;
}

.vlt-row-desc {
  font-size: 12px;
  color: var(--ink2);
  line-height: 1.5;
  margin: 0;
}

.vlt-rv {
  font-family: var(--fh);
  font-size: 17px;
  font-weight: 700;
  color: var(--pl);
  letter-spacing: -.03em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── MODULES ── */
.mod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px
}

.mcard {
  background: var(--bgd);
  border-radius: var(--r24);
  overflow: hidden;
  border: 1px solid var(--sb);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1), border-color .35s, box-shadow .35s;
  cursor: default;
}

.mcard:hover {
  transform: translateY(-7px);
  border-color: rgba(96, 165, 250, .5);
  box-shadow: 0 20px 50px rgba(4, 8, 26, .7), 0 0 0 1px rgba(37, 99, 235, .2);
}

.mcard-ico-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  background: linear-gradient(135deg, rgba(10, 18, 50, .9) 0%, rgba(20, 35, 90, .7) 100%);
  border-bottom: 1px solid var(--sb);
  position: relative;
  overflow: hidden;
}

.mcard-ico-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(51, 113, 227, .12) 0%, transparent 70%);
}

.mcard-ico-wrap svg {
  width: 68px;
  height: 68px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 14px rgba(51, 113, 227, .4));
  transition: transform .35s, filter .35s;
}

.mcard:hover .mcard-ico-wrap svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 24px rgba(96, 165, 250, .6));
}

.mcard-body {
  padding: 22px 22px 26px;
  background: var(--bgd)
}

.mcard-title {
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -.02em;
  color: var(--ink)
}

.mcard-desc {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.65
}

/* ── INTEG / DIFERENCIAIS ── */
.integ-sec {
  background: var(--n9)
}

.integ-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px
}

.icard {
  background: var(--bgc);
  border: 1px solid var(--sb);
  border-radius: var(--r24);
  overflow: hidden;
  transition: border-color .35s, transform .35s, box-shadow .35s;
  cursor: default;
}

.icard:hover {
  border-color: rgba(96, 165, 250, .5);
  transform: translateY(-7px);
  box-shadow: 0 20px 50px rgba(4, 8, 26, .7), 0 0 0 1px rgba(37, 99, 235, .2);
}

.icard-img-wrap {
  position: relative;
  overflow: hidden
}

.icard-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  filter: saturate(.8) brightness(.65);
  transition: transform .4s, filter .4s
}

.icard:hover .icard-img {
  transform: scale(1.05);
  filter: saturate(1) brightness(.82)
}

.icard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17, 30, 85, .1) 0%, rgba(12, 22, 64, .92) 100%)
}

.icard-body {
  padding: 20px 22px 24px
}

.icard-title {
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -.02em;
  color: var(--ink)
}

.icard-desc {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.65
}

/* ── PARTNERS ── */
.partners-sec {
  background: var(--bg);
  border-top: 1px solid var(--sb2);
  border-bottom: 1px solid var(--sb2);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.partner-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  background: rgba(14, 26, 72, .6);
  border-bottom: 1px solid var(--sb);
}

.partner-logo-initial {
  font-family: var(--fh);
  font-size: 36px;
  font-weight: 800;
  color: var(--pl);
  letter-spacing: -.02em;
  opacity: .85;
}

.partner {
  background: var(--bgc);
  border: 1px solid var(--sb);
  border-radius: var(--r24);
  overflow: hidden;
  text-decoration: none;
  transition: border-color .35s, transform .35s, box-shadow .35s;
  display: block;
}

.partner:hover {
  border-color: rgba(96, 165, 250, .55);
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(4, 8, 26, .75), 0 0 0 1px rgba(37, 99, 235, .25);
}

/* ── Header da imagem ── */
.partner-img-wrap {
  position: relative;
  overflow: hidden;
  height: 160px;
}

.partner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform .5s;
  display: block;
}

.partner:hover .partner-img {
  transform: scale(1.06);
}

.partner-img-overlay {
  display: none;
}

/* ── Body do card ── */
.partner-body {
  padding: 22px 24px 26px;
  border-top: 1px solid var(--sb);
}

.partner-name {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -.02em;
}

.partner-type {
  display: inline-block;
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink2);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r4);
  padding: 5px 13px;
  margin-bottom: 14px;
}

.partner-desc {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.65;
  margin-bottom: 4px;
}

.partner-link {
  font-size: 12px;
  color: var(--sf);
  margin-top: 14px;
  display: block;
  transition: color .2s;
}

.partner:hover .partner-link {
  color: var(--pl);
}

/* ── CTA ── */
.cta-sec {
  background: linear-gradient(160deg, #020716 0%, #08112e 40%, #0e0a38 70%, #060d24 100%);
  border-top: 1px solid rgba(51, 113, 227, .25);
  position: relative;
  overflow: hidden;
}

.cta-sec::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 20%;
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(99, 58, 237, .22) 0%, transparent 60%);
  pointer-events: none;
  animation: pulse-glow 7s ease-in-out infinite 1s;
}

.cta-sec::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: 10%;
  width: 600px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, .2) 0%, transparent 60%);
  pointer-events: none;
  animation: pulse-glow 9s ease-in-out infinite 3s;
}

.cta-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-particles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(96, 165, 250, .15);
  animation: float-up 8s ease-in-out infinite;
}

.cta-particles span:nth-child(1) {
  width: 4px;
  height: 4px;
  left: 15%;
  top: 20%;
  animation-delay: 0s
}

.cta-particles span:nth-child(2) {
  width: 6px;
  height: 6px;
  left: 35%;
  top: 60%;
  animation-delay: 1.5s;
  background: rgba(124, 58, 237, .2)
}

.cta-particles span:nth-child(3) {
  width: 3px;
  height: 3px;
  left: 55%;
  top: 30%;
  animation-delay: 3s
}

.cta-particles span:nth-child(4) {
  width: 5px;
  height: 5px;
  left: 70%;
  top: 70%;
  animation-delay: 2s;
  background: rgba(124, 58, 237, .2)
}

.cta-particles span:nth-child(5) {
  width: 4px;
  height: 4px;
  left: 82%;
  top: 40%;
  animation-delay: 4s
}

.cta-particles span:nth-child(6) {
  width: 7px;
  height: 7px;
  left: 90%;
  top: 20%;
  animation-delay: 1s;
  background: rgba(51, 113, 227, .25)
}

@keyframes float-up {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: .6
  }

  50% {
    transform: translateY(-20px) scale(1.2);
    opacity: 1
  }
}

.cta-inner {
  padding: 120px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-left {
  display: flex;
  flex-direction: column;
  gap: 0
}

.cta-eyebrow {
  color: var(--pl) !important;
  border-color: rgba(51, 113, 227, .3) !important;
  background: rgba(51, 113, 227, .08) !important;
}

.cta-title {
  font-family: var(--fh);
  font-size: clamp(44px, 5.5vw, 82px);
  font-weight: 700;
  letter-spacing: -.05em;
  margin-bottom: 16px;
  line-height: .95;
  background: linear-gradient(135deg, #ffffff 30%, #93c5fd 65%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-sub {
  font-size: 17px;
  color: var(--ink2);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(51, 113, 227, .18);
  border-radius: var(--r24);
  padding: 28px 30px 32px;
  position: relative;
  overflow: hidden;
}

.cta-card-glow {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(ellipse, rgba(99, 58, 237, .18) 0%, transparent 65%);
  pointer-events: none;
}

.cta-card-header {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}

.cta-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}

.cta-card-dot:first-child {
  background: rgba(248, 113, 113, .5)
}

.cta-card-dot:nth-child(2) {
  background: rgba(251, 191, 36, .5)
}

.cta-card-dot:nth-child(3) {
  background: rgba(52, 211, 153, .5)
}

.cta-illus {
  width: 100%;
  height: auto;
  display: block;
}

/* ── FOOTER ── */
footer {
  background: var(--n9);
  border-top: 1px solid var(--sb)
}

.ft {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 40px
}

.ft-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0
}

.ft-bn {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.04em
}

.ft-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid var(--sb)
}

.ftcol-h {
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sm);
  margin-bottom: 14px
}

.ftcol-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px
}

.ftcol-list li {
  font-size: 14px;
  color: var(--ink2)
}

.ft-contact-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--sb);
  padding: 20px 0;
}

.ft-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink2);
  font-size: 14px;
  transition: color .2s;
}

.ft-contact-pill:hover {
  color: var(--ink);
}

.ft-contact-pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(37, 99, 235, .15);
  color: #60a5fa;
  font-size: 14px;
  flex-shrink: 0;
}

.ft-contact-pill-icon--wa {
  background: rgba(37, 211, 102, .12);
  color: #25d366;
}

.ft-contact-sep {
  width: 1px;
  height: 22px;
  background: var(--sb);
}

.ft-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 11px;
  color: var(--sm);
  flex-wrap: wrap;
  gap: 10px
}

.soc {
  display: flex;
  gap: 8px
}

.sb-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--sb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-family: var(--fm);
  color: var(--sm);
  cursor: pointer;
  transition: border-color .15s, color .15s;
}

.sb-btn:hover {
  border-color: var(--n4);
  color: var(--p)
}

/* ── MODAL ── */
.mo {
  position: fixed;
  inset: 0;
  background: rgba(2, 5, 18, .88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.mo.open {
  opacity: 1;
  pointer-events: auto;
}

.mc {
  background: #080f28;
  border: 1px solid rgba(51, 113, 227, .2);
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  position: relative;
  transform: translateY(28px) scale(.96);
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .7), 0 0 0 1px rgba(51, 113, 227, .08);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.mo.open .mc {
  transform: none;
}

.mc-header {
  position: relative;
  padding: 24px 24px 22px;
  background: linear-gradient(135deg, #0d1a4a 0%, #131044 100%);
  border-bottom: 1px solid rgba(51, 113, 227, .2);
  flex-shrink: 0;
  overflow: hidden;
}

.mc-header-glow {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(99, 58, 237, .3) 0%, transparent 65%);
  pointer-events: none;
}

.mc-header-content {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.mc-header-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(37, 99, 235, .4);
}

.mc-header-icon svg {
  width: 20px;
  height: 20px;
}

.mc-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 2px;
}

.mc-title {
  font-family: var(--fh);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  margin: 0;
}

.mx {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
  z-index: 2;
}

.mx svg {
  width: 12px;
  height: 12px
}

.mx:hover {
  background: rgba(255, 255, 255, .15);
  color: #fff;
}

.mc-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.mc-sub {
  font-size: 13px;
  color: var(--ink2);
  margin-bottom: 20px;
  line-height: 1.5;
}

.fi-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
  align-items: start;
}

.fi-group {
  margin-bottom: 12px;
}

.fi-group .fi,
.fi-group .fi-phone-wrap {
  margin-bottom: 0;
}

.mc-submit {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
  border-radius: var(--r12);
  height: 48px;
  font-size: 15px;
}

.ok-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
}

.ok-icon svg {
  width: 100%;
  height: 100%
}

.fl {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--ink2)
}

.fi {
  display: block;
  width: 100%;
  height: 44px;
  padding: 0 14px;
  font-family: var(--f);
  font-size: .88rem;
  border: 1px solid var(--sb);
  border-radius: var(--r12);
  background: rgba(10, 18, 50, .8);
  color: var(--ink);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  margin-bottom: 12px;
}

.fi::placeholder {
  color: var(--sm)
}

.fi:focus {
  border-color: var(--p);
  box-shadow: 0 0 0 3px rgba(51, 113, 227, .15)
}

select.fi {
  appearance: none;
  cursor: pointer
}

textarea.fi {
  height: auto;
  resize: vertical;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 1.5
}

.fi.is-invalid {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, .15);
  margin-bottom: 2px;
}

.fi-err {
  display: none;
  font-size: 11px;
  color: #f87171;
  margin-top: 4px;
  padding-left: 2px;
}

.fi-err:not(:empty) {
  display: block;
}

/* ── Phone field ── */
.fi-phone-wrap {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid var(--sb);
  border-radius: var(--r12);
  background: rgba(10, 18, 50, .8);
  margin-bottom: 12px;
  transition: border-color .15s, box-shadow .15s;
  overflow: visible;
}

.fi-phone-wrap:focus-within {
  border-color: var(--p);
  box-shadow: 0 0 0 3px rgba(51, 113, 227, .15);
}

.fi-cc-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  height: 44px;
  background: none;
  border: none;
  border-right: 1px solid var(--sb);
  cursor: pointer;
  color: var(--ink);
  flex-shrink: 0;
  border-radius: var(--r12) 0 0 var(--r12);
  transition: background .15s;
}

.fi-cc-btn:hover {
  background: rgba(255, 255, 255, .05)
}

.fi-cc-flag {
  width: 20px;
  height: 13px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0
}

.fi-cc-dial {
  font-size: 12px;
  color: var(--ink2);
  font-weight: 600;
  letter-spacing: .02em
}

.fi-cc-arrow {
  width: 10px;
  height: 6px;
  color: var(--ink3);
  transition: transform .2s
}

.fi-cc-btn[aria-expanded="true"] .fi-cc-arrow {
  transform: rotate(180deg)
}

.fi-cc-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 280px;
  max-height: 260px;
  overflow-y: auto;
  background: var(--n7);
  border: 1px solid var(--sb);
  border-radius: var(--r16);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .5);
  z-index: 400;
  padding: 6px;
}

.fi-cc-dropdown.open {
  display: block
}

.fi-cc-search {
  width: 100%;
  padding: 8px 12px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--sb);
  border-radius: var(--r12);
  color: var(--ink);
  font-size: 13px;
  outline: none;
  margin-bottom: 6px;
}

.fi-cc-search::placeholder {
  color: var(--ink3)
}

.fi-cc-search:focus {
  border-color: var(--p)
}

.fi-cc-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--r12);
  cursor: pointer;
  font-size: 13px;
  color: var(--ink2);
  transition: background .12s, color .12s;
}

.fi-cc-option:hover,
.fi-cc-option.selected {
  background: rgba(51, 113, 227, .12);
  color: var(--ink);
}

.fi-cc-opt-flag {
  width: 20px;
  height: 13px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0
}

.fi-cc-opt-name {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.fi-cc-opt-dial {
  font-size: 11px;
  color: var(--ink3);
  flex-shrink: 0
}

.fi-phone-input {
  flex: 1;
  height: 44px;
  padding: 0 14px;
  background: none;
  border: none;
  outline: none;
  color: var(--ink);
  font-family: var(--f);
  font-size: .88rem;
}

.fi-phone-input::placeholder {
  color: var(--sm)
}

.ok {
  display: none;
  text-align: center;
  padding: 28px 0
}

.ok h3 {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 700;
  margin: 10px 0 6px
}

.ok p {
  font-size: 13px;
  color: var(--ink2)
}

/* ── REVEAL ── */
[data-r] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity .62s cubic-bezier(.4, 0, .2, 1),
    transform .62s cubic-bezier(.4, 0, .2, 1);
  transition-delay: var(--delay, 0s);
}

[data-r].in {
  opacity: 1;
  transform: none
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--sb);
  border-radius: var(--r12);
  cursor: pointer;
  padding: 0 10px;
  flex-shrink: 0;
  transition: border-color .2s, background .2s;
}

.hamburger:hover {
  border-color: rgba(51, 113, 227, .5);
  background: rgba(51, 113, 227, .07);
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg)
}

/* ── MOBILE MENU ── */
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 299;
  backdrop-filter: blur(4px);
}

.mob-overlay.open {
  display: block
}

.mob-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: var(--n9);
  border-left: 1px solid var(--sb);
  z-index: 300;
  display: flex;
  flex-direction: column;
  padding: 0 0 32px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

.mob-menu.open {
  transform: translateX(0)
}

.mob-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 72px;
  border-bottom: 1px solid var(--sb);
  flex-shrink: 0;
}

.mob-close {
  background: none;
  border: 1px solid var(--sb);
  color: var(--ink2);
  font-size: 16px;
  width: 36px;
  height: 36px;
  border-radius: var(--r12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s;
}

.mob-close:hover {
  border-color: rgba(51, 113, 227, .5);
  color: var(--ink);
}

.mob-links {
  display: flex;
  flex-direction: column;
  padding: 12px 8px;
  flex: 1;
  overflow-y: auto;
}

.mob-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink2);
  text-decoration: none;
  padding: 14px 16px;
  border-radius: var(--r12);
  transition: color .15s, background .15s;
}

.mob-links a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, .04);
}

.mob-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 20px;
}

.mob-btns .btn {
  width: 100%;
  justify-content: center
}

/* ── FOOTER LINKS ── */
.ftcol-list a {
  color: var(--ink2);
  text-decoration: none;
  transition: color .15s;
}

.ftcol-list a:hover {
  color: var(--ink)
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {

  .hero-inner,
  .vlt-grid {
    grid-template-columns: 1fr
  }

  .hero-right {
    display: block;
    padding-top: 0;
  }

  .hero-img-wrap img {
    height: 240px;
  }

  .hcard-row {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }

  .hcard {
    padding: 10px 8px;
  }

  .hcard-val {
    font-size: 12px;
  }

  .prod-grid,
  .games-grid,
  .mgmt-grid,
  .mod-grid,
  .integ-grid,
  .partners-grid,
  .ft-cols {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none
  }

  .nav-contact-btn,
  .nav-demo-btn {
    display: none
  }

  .lbtn {
    font-size: 0;
    padding: 4px 5px;
  }

  .lbtn-flag {
    margin: 0;
  }

  .hamburger {
    display: flex
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .fi-row {
    grid-template-columns: 1fr;
  }
}