:root {
  --bg: #07050f;
  --surf: #100d1e;
  --card: #181330;
  --bor: #2b2350;
  --bor2: #3a2f6a;
  --pur: #a259ff;
  --vio: #6c1fff;
  --blu: #3d8eff;
  --cyn: #00d8ff;
  --grn: #00e5a0;
  --red: #ff3557;
  --org: #ff7a1a;
  --gld: #ffc94d;
  --tx: #f2eeff;
  --mt: #7a6fa8;
  --mt2: #5a5180;
  --fh: "Barlow Condensed", sans-serif;
  --fb: "DM Sans", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--tx);
  font-family: var(--fb);
  overflow-x: hidden;
}
.page {
  display: none;
  min-height: 100vh;
}
.page.active {
  display: block;
}
/* grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8000;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  opacity: 0.3;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 16px 0;
  transition: 0.4s;
}
nav.scrolled {
  background: rgba(7, 5, 15, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bor);
}
.ni {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  width: 80px;
}
.lbox {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--vio), var(--pur));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-weight: 900;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(108, 31, 255, 0.5);
}
.mob-lbox {
  width: 50px;
  height: 50px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--vio), var(--pur));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-weight: 900;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(108, 31, 255, 0.5);
}
.ltxt {
  font-family: var(--fh);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.05em;
}
.nl {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nl a {
  color: var(--mt);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
}
.nl a:hover {
  color: var(--tx);
}
.nb {
  display: flex;
  gap: 10px;
}
.nb a button img {
  width: 17px;
  text-align: center;
  filter: brightness(0) invert(1);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 9px;
  font-family: var(--fb);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: 0.25s;
  border: none;
}
/* .bg{background:rgba(255,255,255,.06);color:var(--tx);border:1px solid var(--bor);} */
.bg {
  background: rgba(255, 255, 255, 0.06);
  color: var(--tx);
  border: 1px solid #fff;
}
.bg:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--pur);
}
.bp {
  background: linear-gradient(135deg, var(--vio), var(--pur));
  color: #fff;
  box-shadow: 0 4px 20px rgba(162, 89, 255, 0.35);
}
.bp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(162, 89, 255, 0.5);
}
.bfull {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
}

/* HERO */
.hw {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.hbg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hi1 {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1540747913346-19212a4b423a?w=1600&q=75")
    center/cover;
  opacity: 0.2;
}
.hi2 {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1574629810360-7efbbe195018?w=1600&q=75")
    center/cover;
  opacity: 0;
  animation: iFd 20s 10s infinite;
}
@keyframes iFd {
  0%,
  100% {
    opacity: 0;
  }
  25%,
  75% {
    opacity: 0.14;
  }
}
.hgr {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 5, 15, 0.62) 0%,
    rgba(7, 5, 15, 0.12) 40%,
    rgba(7, 5, 15, 0.97) 100%
  );
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: ofl 10s ease-in-out infinite;
}
.o1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(108, 31, 255, 0.34),
    transparent 70%
  );
  top: -150px;
  left: -150px;
  animation-duration: 12s;
}
.o2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(61, 142, 255, 0.24),
    transparent 70%
  );
  bottom: -100px;
  right: -80px;
  animation-duration: 9s;
  animation-delay: -4s;
}
.o3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 216, 255, 0.18), transparent 70%);
  top: 38%;
  right: 22%;
  animation-duration: 14s;
  animation-delay: -7s;
}
@keyframes ofl {
  0%,
  100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(28px, -28px);
  }
  66% {
    transform: translate(-18px, 18px);
  }
}
.hgrid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(162, 89, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(162, 89, 255, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hsl {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(108, 31, 255, 0.07) 40%
  );
  pointer-events: none;
}
.pts {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.pt {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  animation: pdft linear infinite;
}
@keyframes pdft {
  0% {
    transform: translateY(100vh);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100px) translateX(50px);
    opacity: 0;
  }
}
.hbody {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
}
/* .hinn{max-width:1240px;margin:0 auto;padding:0 28px;display:grid;grid-template-columns:1.1fr .9fr;gap:60px;align-items:center;} */
.hinn {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  gap: 60px;
  align-items: center;
  text-align: center;
}
.htag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 160, 0.1);
  border: 1px solid rgba(0, 229, 160, 0.3);
  color: var(--grn);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.ld {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  animation: blk 1.2s ease infinite;
  display: inline-block;
}
@keyframes blk {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.15;
  }
}
h1.hh {
  font-family: var(--fh);
  font-size: clamp(58px, 8vw, 96px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 26px;
}
h1.hh .l2 {
  background: linear-gradient(135deg, var(--pur), var(--cyn));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h1.hh .l4 {
  color: var(--pur);
}
/* .hsub{color:var(--mt);font-size:17px;line-height:1.65;max-width:500px;margin-bottom:34px;} */
.hsub {
  color: var(--mt);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 34px;
}
.hacts {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.hacts .btn {
  font-size: 15px;
  padding: 14px 28px;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
  justify-content: center;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--bor);
  padding: 6px 13px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--mt);
}
.cd {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

/* MOCKUP */
.msh {
  background: var(--card);
  border: 1.5px solid var(--bor2);
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(162, 89, 255, 0.1);
}
.mtp {
  background: linear-gradient(135deg, var(--vio), var(--pur));
  padding: 16px 20px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mlog {
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
}
.mlv {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.18);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
}
.mbd {
  padding: 14px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.mc {
  background: var(--surf);
  border: 1px solid var(--bor);
  border-radius: 11px;
  padding: 13px 15px;
  position: relative;
  overflow: hidden;
  width: 200px;
  min-height: 100px;
  /* max-height: 120px; */
}
.mc::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
}
.mc.cr::before {
  background: var(--blu);
}
.mc.fo::before {
  background: var(--grn);
}
.mc.f1::before {
  background: var(--red);
}
.mc.kb::before {
  background: var(--org);
}
.mct {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
}
.mcl {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mt);
}
.mcb {
  font-size: 9px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
}
.mcb.red {
  background: rgba(255, 53, 87, 0.2);
  color: var(--red);
}
.mcb.org {
  background: rgba(255, 122, 26, 0.2);
  color: var(--org);
}
.mcr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  text-align: center;
}
.mteam {
  font-size: 12px;
  font-weight: 700;
}
.msc {
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.msc.bl {
  color: var(--blu);
}
.msc.gr {
  color: var(--grn);
}
.msc.re {
  color: var(--red);
}
.msc.or {
  color: var(--org);
}
.mm {
  font-size: 10px;
  color: var(--mt);
  margin-top: 2px;
}
.mcta {
  margin: 4px 0 0;
  background: linear-gradient(
    135deg,
    rgba(108, 31, 255, 0.25),
    rgba(162, 89, 255, 0.15)
  );
  border: 1px solid rgba(162, 89, 255, 0.3);
  border-radius: 10px;
  padding: 11px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--pur);
  height: 40px;
}
.no-match-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  font-weight: bold;
  color: #999;
  display: none; /* default hidden */
}
/* TICKER */
.tkr {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--bor);
  border-bottom: 1px solid var(--bor);
  padding: 13px 0;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.tkr::before,
.tkr::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.tkr::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}
.tkr::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}
.ttr {
  display: flex;
  gap: 52px;
  animation: tck 35s linear infinite;
  white-space: nowrap;
}
.ti {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
}
.ti .ld {
  background: var(--red);
  flex-shrink: 0;
}
.ti .sb {
  background: var(--card);
  border: 1px solid var(--bor);
  padding: 2px 10px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 12px;
}
@keyframes tck {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* SECTIONS */
.sec {
  padding: 96px 0;
  position: relative;
}
.cont {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
.sh {
  text-align: center;
  margin-bottom: 60px;
}
.stag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(162, 89, 255, 0.12);
  border: 1px solid rgba(162, 89, 255, 0.3);
  color: var(--pur);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.sh h2 {
  font-family: var(--fh);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.5px;
}
.sh p {
  margin-top: 14px;
  color: var(--mt);
  font-size: 16px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.gt {
  background: linear-gradient(135deg, var(--pur), var(--cyn));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* FEATURES */
.feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.fc {
  background: rgba(24, 19, 48, 0.85);
  border: 1px solid var(--bor);
  border-radius: 16px;
  padding: 28px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.fc:hover {
  border-color: var(--pur);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(162, 89, 255, 0.15);
}
.fci {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.fc h3 {
  font-family: var(--fh);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.fc p {
  color: var(--mt);
  font-size: 14px;
  line-height: 1.65;
}

/* SPORTS TABS */
.stabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.stb {
  padding: 10px 22px;
  border-radius: 10px;
  font-family: var(--fb);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 1.5px solid var(--bor);
  background: transparent;
  color: var(--mt);
  transition: 0.2s;
}
.stb:hover,
.stb.on {
  border-color: var(--pur);
  color: var(--tx);
  background: rgba(162, 89, 255, 0.12);
}
.spnl {
  display: none;
  animation: fuP 0.3s ease;
}
.spnl.on {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@keyframes fuP {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mcard {
  background: var(--card);
  border: 1px solid var(--bor);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.mcard:hover {
  border-color: var(--bor2);
  transform: translateY(-3px);
}
.mcbg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-size: cover;
  background-position: center;
}
.mch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  position: relative;
}
.mclg {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mt);
}
.mlb {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 5px;
}
.lb-r {
  background: rgba(255, 53, 87, 0.15);
  color: var(--red);
}
.lb-b {
  background: rgba(61, 142, 255, 0.15);
  color: var(--blu);
}
.lb-p {
  background: rgba(162, 89, 255, 0.15);
  color: var(--pur);
}
.lb-o {
  background: rgba(255, 122, 26, 0.15);
  color: var(--org);
}
.mteams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}
.mtem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.mem {
  font-size: 38px;
  line-height: 1;
}
.mnm {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.mscw {
  text-align: center;
}
.mscr {
  font-family: var(--fh);
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
}
.mtm {
  font-size: 12px;
  color: var(--mt);
  margin-top: 4px;
}
.mem img {
  border-radius: 50%;
  object-fit: cover;
}
.win {
  color: #22c55e;
  font-weight: 600;
}
.win::after {
  content: " 🏆";
}
.lose {
  color: #ef4444;
  opacity: 0.7;
}
.draw {
  color: #9ca3af;
}
/* PRICING */
.spick {
  background: rgba(16, 13, 30, 0.85);
  border: 1px solid var(--bor);
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 36px;
  backdrop-filter: blur(12px);
}
.spick h3 {
  font-family: var(--fh);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.spick p {
  color: var(--mt);
  font-size: 13px;
  margin-bottom: 20px;
}
.spgr {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
}
.spo {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1.5px solid var(--bor);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  transition: 0.2s;
  user-select: none;
}
.spo:hover {
  border-color: var(--pur);
}
.spo.on {
  border-color: var(--pur);
  background: rgba(162, 89, 255, 0.1);
}
.spoe {
  font-size: 18px;
}
.spon {
  font-size: 12px;
  font-weight: 600;
  flex: 1;
}
.spck {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid var(--bor);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  transition: 0.2s;
  flex-shrink: 0;
}
.spo.on .spck {
  background: var(--pur);
  border-color: var(--pur);
  color: #fff;
}
.billt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 44px;
}
.tl {
  font-size: 14px;
  font-weight: 500;
  color: var(--mt);
  transition: 0.2s;
}
.tl.on {
  color: var(--tx);
}
.tog {
  width: 54px;
  height: 28px;
  background: var(--card);
  border: 1.5px solid var(--bor);
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}
.tog.yr {
  background: linear-gradient(135deg, var(--vio), var(--pur));
}
.tok {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
.tog.yr .tok {
  left: calc(100% - 21px);
}
.stag2 {
  background: rgba(0, 229, 160, 0.12);
  border: 1px solid rgba(0, 229, 160, 0.3);
  color: var(--grn);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.plan {
  background: rgba(24, 19, 48, 0.9);
  border: 1.5px solid var(--bor);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  transition: 0.3s;
  backdrop-filter: blur(8px);
}
.plan:hover {
  transform: translateY(-4px);
}
.plan.pop {
  border-color: var(--pur);
  background: linear-gradient(
    180deg,
    rgba(108, 31, 255, 0.15) 0%,
    rgba(24, 19, 48, 0.9) 50%
  );
}
.prib {
  position: absolute;
  top: -1px;
  right: 22px;
  background: linear-gradient(135deg, var(--vio), var(--pur));
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 10px 10px;
}
.pnm {
  font-family: var(--fh);
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.pds {
  color: var(--mt);
  font-size: 13px;
  margin-bottom: 22px;
}
.pamt {
  font-family: var(--fh);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
}
.pamt sup {
  font-size: 24px;
  vertical-align: super;
}
.pper {
  color: var(--mt);
  font-size: 13px;
  margin-top: 4px;
}
.psps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 18px 0;
}
.pill {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}
.pc {
  background: rgba(61, 142, 255, 0.15);
  color: var(--blu);
}
.pf {
  background: rgba(0, 229, 160, 0.15);
  color: var(--grn);
}
.pr2 {
  background: rgba(255, 53, 87, 0.15);
  color: var(--red);
}
.pk {
  background: rgba(255, 122, 26, 0.15);
  color: var(--org);
}
.pa {
  background: rgba(162, 89, 255, 0.15);
  color: var(--pur);
}
.pfl {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pfl li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--mt);
}
.pfl li.y {
  color: var(--tx);
}
.chk {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  border: 1.5px solid;
}
.chk.y {
  background: rgba(0, 229, 160, 0.12);
  border-color: rgba(0, 229, 160, 0.4);
  color: var(--grn);
}
.chk.n {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--bor);
  color: var(--mt2);
}
.fnote {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--mt);
}
.fnote strong {
  color: var(--grn);
}

/* HOW */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--bor2),
    var(--bor2),
    transparent
  );
  z-index: 0;
}
.step {
  text-align: center;
  padding: 10px;
  z-index: 1;
}
.stepn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vio), var(--pur));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 22px;
  box-shadow: 0 8px 30px rgba(108, 31, 255, 0.4);
  position: relative;
}
.step h3 {
  font-family: var(--fh);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.step p {
  color: var(--mt);
  font-size: 14px;
  line-height: 1.6;
}

/* PAYMENT */
.payi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.payi h2 {
  font-family: var(--fh);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 18px;
}
.payi .psub {
  color: var(--mt);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.pcks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pck {
  display: flex;
  align-items: center;
  gap: 12px;
}
/* .pcki{width:36px;height:36px;background:rgba(0,229,160,.1);border-radius:9px;display:flex;align-items:center;justify-content:center;font-size:16px;flex-shrink:0;} */
.pcki img {
  width: 25px;
  height: 25px;
}
.pck span {
  font-size: 14px;
}
.pcard {
  background: rgba(24, 19, 48, 0.9);
  border: 1px solid var(--bor);
  border-radius: 22px;
  padding: 32px;
  backdrop-filter: blur(12px);
}
.upih {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.upii {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #00aaff, #0055ff);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.upii img {
  width: 30px;
}
.upiht h4 {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 800;
}
.upiht p {
  font-size: 12px;
  color: var(--mt);
}
.upiap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
.ua {
  background: var(--surf);
  border: 1px solid var(--bor);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  font-size: 11px;
  color: var(--mt);
  transition: 0.2s;
  cursor: pointer;
}
.ua:hover {
  border-color: var(--pur);
  color: var(--tx);
}
.ua .uai {
  font-size: 28px;
  margin-bottom: 6px;
}
.ua .uai img {
  width: 30px;
}
.secr {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.secb {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 229, 160, 0.08);
  border: 1px solid rgba(0, 229, 160, 0.2);
  color: var(--grn);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 7px;
}
.secb img {
  width: 20px;
}

/* TESTIMONIALS */
.testis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tc {
  background: rgba(24, 19, 48, 0.85);
  border: 1px solid var(--bor);
  border-radius: 18px;
  padding: 28px;
  backdrop-filter: blur(8px);
  transition: 0.3s;
}
.tc:hover {
  border-color: var(--bor2);
  transform: translateY(-4px);
}
.stars {
  color: var(--gld);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.tct {
  color: var(--mt);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.ta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.taav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vio), var(--pur));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.tanm {
  font-size: 14px;
  font-weight: 600;
}
.talc {
  font-size: 12px;
  color: var(--mt);
}

/* CTA */
.ctab {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.ctab-bi {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1471295253337-3ceaaedca402?w=1400&q=60")
    center/cover;
  opacity: 0.12;
}
.ctab-gi {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(108, 31, 255, 0.38),
    rgba(61, 142, 255, 0.22)
  );
}
.ctabx {
  position: relative;
  border: 1px solid rgba(162, 89, 255, 0.35);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  background: rgba(7, 5, 15, 0.5);
  backdrop-filter: blur(12px);
}
.ctabx h2 {
  font-family: var(--fh);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 18px;
}
.ctabx p {
  color: var(--mt);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* FOOTER */
footer {
  background: var(--surf);
  border-top: 1px solid var(--bor);
  padding: 56px 0 28px;
}
.footg {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footb p {
  color: var(--mt);
  font-size: 13px;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 260px;
}
.footc h4 {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.footc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footc ul li a {
  color: var(--mt);
  font-size: 13px;
  cursor: pointer;
  transition: 0.2s;
}
.footc ul li a:hover {
  color: var(--pur);
}
.footbot {
  border-top: 1px solid var(--bor);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footbot p {
  color: var(--mt);
  font-size: 12px;
}
.footleg {
  display: flex;
  gap: 20px;
}
.footleg a {
  color: var(--mt);
  font-size: 12px;
  cursor: pointer;
}
.footleg a:hover {
  color: var(--tx);
}

/* INNER PAGES */
.ih {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
  overflow: hidden;
  margin-top: 72px;
}
.ihbg {
  position: absolute;
  inset: 0;
}
.ihim {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.ihgd {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(162, 89, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(162, 89, 255, 0.07) 1px, transparent 1px);
  background-size: 50px 50px;
}
.ihgr {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 5, 15, 0.65) 0%,
    rgba(7, 5, 15, 0.88) 100%
  );
}
.ihorb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  background: radial-gradient(
    circle,
    rgba(108, 31, 255, 0.35),
    transparent 70%
  );
  top: -100px;
  right: -80px;
}
.ihc {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
}
.ihc h1 {
  font-family: var(--fh);
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 14px;
}
.ihc p {
  color: var(--mt);
  font-size: 16px;
  max-width: 500px;
}
.ibody {
  max-width: 820px;
  margin: 0 auto;
  padding: 52px 28px 80px;
}
.psec h3 {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 32px 0 12px;
}
.psec p,
.psec li {
  color: var(--mt);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 10px;
}
.psec ul {
  padding-left: 22px;
}
.pdate {
  color: var(--mt2);
  font-size: 12px;
  margin-bottom: 32px;
}

/* AUTH */
.authpg {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
  position: relative;
}
.authbg {
  position: absolute;
  inset: 0;
}
.authbi {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.14;
}
.authbg2 {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 20%,
    rgba(108, 31, 255, 0.25),
    transparent 60%
  );
}
.authbg3 {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(162, 89, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(162, 89, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}
.acard {
  background: rgba(24, 19, 48, 0.93);
  border: 1.5px solid var(--bor);
  border-radius: 24px;
  padding: 44px;
  width: 100%;
  max-width: 480px;
  position: relative;
  backdrop-filter: blur(16px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}
.acard.wide {
  max-width: 520px;
}
.acard h2 {
  font-family: var(--fh);
  font-size: 38px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}
.acard .sub {
  color: var(--mt);
  font-size: 14px;
  text-align: center;
  margin-bottom: 32px;
}
.fg {
  margin-bottom: 20px;
}
.fg label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--mt);
}
.fi {
  width: 100%;
  background: rgba(16, 13, 30, 0.9);
  border: 1.5px solid var(--bor);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--tx);
  font-family: var(--fb);
  font-size: 15px;
  transition: 0.2s;
  outline: none;
}
.fi:focus {
  border-color: var(--pur);
}
.fi::placeholder {
  color: var(--mt2);
}
.prow {
  display: flex;
  gap: 8px;
}
.pcode {
  background: rgba(16, 13, 30, 0.9);
  border: 1.5px solid var(--bor);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--mt);
  font-size: 14px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.otpr {
  display: flex;
  gap: 8px;
}
.otpr .fi {
  flex: 1;
}
.otpb {
  background: linear-gradient(135deg, var(--vio), var(--pur));
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 16px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}
.otps {
  font-size: 12px;
  color: var(--grn);
  margin-top: 6px;
  display: none;
}
.asub {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--vio), var(--pur));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--fb);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s;
  margin-top: 6px;
  box-shadow: 0 6px 24px rgba(108, 31, 255, 0.4);
}
.asub:hover {
  transform: translateY(-2px);
}
.alink {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--mt);
}
.alink a {
  color: var(--pur);
  cursor: pointer;
}
.apol {
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  color: var(--mt2);
}
.apol a {
  color: var(--pur);
  cursor: pointer;
}
.alogorow {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
  cursor: pointer;
}
.planopts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.planopt {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surf);
  border: 1.5px solid var(--bor);
  border-radius: 10px;
  padding: 12px 14px;
  cursor: pointer;
  transition: 0.2s;
}
.planopt:hover,
.planopt.sel {
  border-color: var(--pur);
  background: rgba(162, 89, 255, 0.08);
}
.porad {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--bor);
  transition: 0.2s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.planopt.sel .porad {
  border-color: var(--pur);
  background: var(--pur);
}
.planopt.sel .porad::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}
.poi {
  flex: 1;
}
.ponm {
  font-size: 14px;
  font-weight: 700;
}
.popr {
  font-size: 12px;
  color: var(--mt);
}
.pobdg {
  font-size: 10px;
  font-weight: 700;
  background: rgba(162, 89, 255, 0.2);
  color: var(--pur);
  padding: 2px 8px;
  border-radius: 100px;
}

/* CONTACT */
.cgrid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
}
.cinfo {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cicard {
  background: var(--card);
  border: 1px solid var(--bor);
  border-radius: 14px;
  padding: 22px;
}
.cicard h4 {
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cicard p {
  color: var(--mt);
  font-size: 14px;
  line-height: 1.6;
}
.cicard a {
  color: var(--pur);
}
.cform {
  background: var(--card);
  border: 1px solid var(--bor);
  border-radius: 20px;
  padding: 36px;
}
.cform h3 {
  font-family: var(--fh);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* MINI FOOTER */
.mfoot {
  background: var(--surf);
  border-top: 1px solid var(--bor);
  padding: 28px 0;
}
.mfin {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.mfleg {
  display: flex;
  gap: 20px;
}
.mfleg a {
  color: var(--mt);
  font-size: 13px;
  cursor: pointer;
}
.mfleg a:hover {
  color: var(--pur);
}

/* TOAST */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--card);
  border: 1px solid var(--grn);
  border-radius: 12px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--grn);
  z-index: 9100;
  transform: translateY(100px);
  opacity: 0;
  transition: 0.4s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 960px) {
  .hinn,
  .payi,
  .cgrid {
    grid-template-columns: 1fr;
  }
  .feats,
  .plans,
  .testis,
  .steps,
  .footg {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── HAMBURGER BUTTON ── */
.hmb {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--bor);
  border-radius: 9px;
  cursor: pointer;
  padding: 8px;
  transition: 0.2s;
  flex-shrink: 0;
}
.hmb span {
  display: block;
  height: 2px;
  background: var(--tx);
  border-radius: 2px;
  transition: 0.3s;
}
.hmb.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hmb.open span:nth-child(2) {
  opacity: 0;
}
.hmb.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── SIDEBAR DRAWER ── */
.mob-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #0f0c1d;
  backdrop-filter: blur(24px);
  border-left: 1px solid var(--bor);
  z-index: 9000;
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  display: flex;
  flex-direction: column;
}
.mob-sidebar.open {
  right: 0;
}
.mob-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px 10px;
}
.mob-close {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--tx);
  transition: 0.2s;
}
.mob-close:hover {
  background: rgba(255, 255, 255, 0.14);
}
.mob-nav {
  display: flex;
  flex-direction: column;
  padding: 28px 0;
  flex: 1;
  gap: 0;
  top: 10%;
}
.mob-nav a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  color: var(--tx);
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
  letter-spacing: 0.01em;
}
.mob-nav a .mnav-icon {
  font-size: 20px;
  text-align: center;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mob-nav a .mnav-icon img {
  width: 28px;
  text-align: center;
  filter: brightness(0) invert(1);
}
.mob-nav a:hover {
  color: var(--pur);
  background: rgba(162, 89, 255, 0.07);
}
.mob-nav-btns {
  padding: 20px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  bottom: 0;
  position: absolute;
  width: 100%;
}
.mob-nav-btns a button img {
  width: 28px;
  text-align: center;
  filter: brightness(0) invert(1);
}
.mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 8999;
  opacity: 0;
  pointer-events: none;
  transition: 0.35s;
}
.mob-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* .btn-grad {
  background-image: linear-gradient(to right, #232526 0%, #414345 51%, #232526 100%);
}

.btn-grad {
  margin: 10px;
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 10px;
  display: block;
  outline: none;
  border: none;
  width: 100%;
}

.btn-grad:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
} */

@media (max-width: 640px) {
  .feats,
  .plans,
  .testis,
  .steps,
  .footg,
  .spnl.on {
    grid-template-columns: 1fr;
  }
  .nl {
    display: none;
  }
  .nb {
    display: none;
  }
  .hmb {
    display: flex;
  }

  /* Fix 2: Hero heading stays on screen */
  h1.hh {
    font-size: clamp(38px, 11vw, 60px);
    word-break: break-word;
  }
  .hinn {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 16px;
  }
  .hbody {
    padding: 110px 0 60px;
  }
  .hsub {
    font-size: 15px;
  }
  .hacts {
    flex-direction: column;
    align-items: flex-start;
  }
  .hacts .btn {
    width: 100%;
    justify-content: center;
  }
  .chips {
    gap: 6px;
  }

  /* Fix 3: SEVEN STONES LIVE NOW table on mobile */
  .msh {
    width: 100%;
    max-width: 100%;
  }
  .mcr {
    flex-wrap: wrap;
    gap: 6px;
  }
  .mteam {
    font-size: 12px;
  }
  .msc {
    font-size: 18px;
  }
  .mm {
    font-size: 10px;
  }
  .mc {
    padding: 10px 12px;
  }

  /* Fix 4: Footer nav links side by side on mobile */
  .footg {
    grid-template-columns: 1fr 1fr;
  }
  .footb {
    grid-column: 1/-1;
  }
  .footbot {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footleg {
    flex-wrap: wrap;
    gap: 12px;
  }

  /* Mini footer links side by side */
  .mfin {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }
  .mfleg {
    flex-wrap: wrap;
    gap: 12px;
  }

  /* General padding fixes */
  .cont {
    padding: 0 16px;
  }
  .sec {
    padding: 60px 0;
  }
  .sh h2 {
    font-size: clamp(28px, 8vw, 42px);
  }
  .ctabx {
    padding: 36px 20px;
  }
  .plans {
    grid-template-columns: 1fr;
  }
  .spgr {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}

.coming-card {
  width: 320px;
  height: 180px;
  border-radius: 14px;
  background: linear-gradient(145deg, #1a1a3a, #111126);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.coming-text {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  opacity: 0.9;
}

.team-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  margin: 0 4px;
  border-radius: 4px;
}

.vs {
  margin: 0 6px;
  font-weight: bold;
}

.error {
  color: red;
  font-size: 12px;
  display: block;
  margin-top: 5px;
}

.input-error {
  border: 1px solid red;
}

.char-count {
  font-size: 12px;
  color: #666;
  text-align: right;
  margin-top: 4px;
}

.bill-toggle {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.tabs {
  position: relative;
  display: flex;
  background: #0f1a2b;
  border-radius: 30px;
  padding: 5px;
  width: 320px;
}

.tab {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  color: #9aa4b2;
  cursor: pointer;
  z-index: 2;
  font-weight: 500;
  transition: 0.3s;
}

.tab.active {
  color: white;
}

.slider {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 33.33%;
  height: calc(100% - 10px);
  background: linear-gradient(135deg, #7b4dff, #a855f7);
  border-radius: 25px;
  transition: 0.3s ease;
}
