/* DoPing landing: midnight, cobalt, and electric cyan. */
:root {
  --ink: #f7f9ff;
  --ink-soft: #b4bed1;
  --ink-muted: #778298;
  --night: #080b13;
  --night-2: #0d111d;
  --surface: #111726;
  --surface-raised: #171e30;
  --line: rgba(181, 202, 255, 0.14);
  --line-strong: rgba(181, 202, 255, 0.25);
  --cyan: #57dcff;
  --cyan-deep: #139ec8;
  --violet: #9b71ff;
  --violet-deep: #5e37c9;
  --lime: #b9fa71;
  --orange: #ffb16a;
  --shell: 1280px;
  --font-fa: "Vazirmatn", Tahoma, sans-serif;
  --font-display: "Syne", "Vazirmatn", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--night);
  font-family: var(--font-fa);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(121, 152, 220, 0.17) 0.7px, transparent 0.7px);
  background-size: 8px 8px;
  opacity: 0.13;
  content: "";
  pointer-events: none;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: #041018;
  background: var(--cyan);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

img,
svg {
  display: block;
}

.shell {
  width: min(calc(100% - 56px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  right: 12px;
  padding: 10px 16px;
  color: #041018;
  background: var(--cyan);
  border-radius: 7px;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 78px;
  border-bottom: 1px solid transparent;
  transition: background-color 260ms ease, border-color 260ms ease, backdrop-filter 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 11, 19, 0.83);
  border-color: rgba(183, 211, 255, 0.1);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 100%;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  direction: ltr;
}

.brand__mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(87, 220, 255, 0.8);
  border-radius: 12px 7px 12px 7px;
  box-shadow: inset 0 0 17px rgba(87, 220, 255, 0.16), 0 0 18px rgba(87, 220, 255, 0.1);
  place-items: center;
  transform: rotate(45deg);
}

.brand__mark i {
  position: absolute;
  display: block;
  background: var(--cyan);
  content: "";
}

.brand__mark i:nth-child(1) {
  width: 13px;
  height: 3px;
  transform: rotate(-45deg) translateX(-2px);
}

.brand__mark i:nth-child(2) {
  width: 3px;
  height: 13px;
  transform: rotate(-45deg) translateY(2px);
}

.brand__mark i:nth-child(3) {
  width: 5px;
  height: 5px;
  background: var(--violet);
  box-shadow: 0 0 10px var(--violet);
  transform: rotate(-45deg) translate(8px, -8px);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__text strong {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.brand__text small {
  margin-top: 5px;
  color: var(--ink-muted);
  font-family: var(--font-display);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.6vw, 39px);
  color: rgba(225, 235, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  width: 4px;
  height: 4px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan);
  content: "";
  opacity: 0;
  transform: translateX(50%) scale(0);
  transition: opacity 180ms ease, transform 180ms var(--ease-out);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-current {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-current::after {
  opacity: 1;
  transform: translateX(50%) scale(1);
}

.header-action {
  display: inline-flex;
  grid-column: 3;
  align-items: center;
  justify-self: end;
  gap: 8px;
  padding: 9px 14px 9px 10px;
  color: #06151f;
  background: var(--cyan);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(87, 220, 255, 0.22);
  font-size: 12px;
  font-weight: 800;
  transition: background-color 180ms ease, transform 180ms var(--ease-out), box-shadow 180ms ease;
}

.header-action svg,
.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.header-action:hover {
  background: #a2edff;
  box-shadow: 0 12px 34px rgba(87, 220, 255, 0.32);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(830px, 100svh);
  overflow: hidden;
  align-items: center;
  background: #070911;
  isolation: isolate;
}

.hero__art,
.hero__vignette,
.hero__stars {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
}

.hero__art {
  background-image: linear-gradient(90deg, #070911 2%, rgba(7, 9, 17, 0.77) 31%, rgba(7, 9, 17, 0.05) 70%, rgba(7, 9, 17, 0.26)), url("../Contant/BG2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.93;
  transform: scale(1.015);
  animation: hero-art-in 1.5s var(--ease-out) both;
}

.hero__vignette {
  background: radial-gradient(ellipse at 60% 49%, transparent 22%, rgba(4, 6, 13, 0.36) 70%, rgba(4, 6, 13, 0.92) 100%), linear-gradient(180deg, rgba(7, 9, 17, 0.42), transparent 20%, rgba(7, 9, 17, 0.28));
}

.hero__stars {
  background-image: radial-gradient(circle at 15% 37%, rgba(152, 222, 255, 0.8) 0 1px, transparent 1.6px), radial-gradient(circle at 53% 17%, rgba(255, 255, 255, 0.75) 0 1px, transparent 1.5px), radial-gradient(circle at 83% 27%, rgba(117, 196, 255, 0.8) 0 1px, transparent 1.5px), radial-gradient(circle at 35% 72%, rgba(159, 126, 255, 0.72) 0 1px, transparent 1.4px);
  opacity: 0.84;
}

.hero__content {
  z-index: 1;
  width: 100%;
  padding-top: 80px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.eyebrow span {
  width: 31px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 9px currentColor;
}

.hero__eyebrow {
  opacity: 0;
  transform: translateY(14px);
  animation: rise-in 600ms var(--ease-out) 160ms forwards;
}

.hero h1,
.section-heading h2,
.command-center h2,
.community h2,
.faq h2 {
  margin: 15px 0 0;
  color: #fff;
  font-size: clamp(48px, 5.1vw, 78px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1.18;
}

.hero h1 {
  max-width: 800px;
  opacity: 0;
  transform: translateY(22px);
  animation: rise-in 750ms var(--ease-out) 230ms forwards;
}

h1 em,
h2 em {
  color: var(--cyan);
  font-style: normal;
  text-shadow: 0 0 38px rgba(87, 220, 255, 0.3);
}

.hero__lead {
  max-width: 538px;
  margin: 23px 0 0;
  color: rgba(231, 240, 255, 0.76);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 2;
  opacity: 0;
  transform: translateY(20px);
  animation: rise-in 750ms var(--ease-out) 330ms forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 33px;
  opacity: 0;
  transform: translateY(20px);
  animation: rise-in 750ms var(--ease-out) 420ms forwards;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 800;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms var(--ease-out), box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button--primary {
  color: #06151f;
  background: linear-gradient(135deg, #8ae8ff, #36c6eb);
  box-shadow: 0 13px 35px rgba(36, 194, 235, 0.28), inset 0 1px rgba(255, 255, 255, 0.48);
}

.button--primary:hover {
  background: #b2f0ff;
  box-shadow: 0 18px 41px rgba(36, 194, 235, 0.38);
}

.button--ghost {
  color: #e8f4fb;
  background: rgba(8, 13, 25, 0.4);
  border-color: rgba(188, 219, 255, 0.25);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  background: rgba(22, 36, 57, 0.7);
  border-color: rgba(132, 220, 255, 0.7);
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: rgba(222, 236, 255, 0.65);
  font-size: 11px;
  opacity: 0;
  transform: translateY(20px);
  animation: rise-in 750ms var(--ease-out) 510ms forwards;
}

.hero__proof > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero__proof i {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(185, 250, 113, 0.1), 0 0 12px rgba(185, 250, 113, 0.82);
}

.hero__proof b {
  margin-right: 6px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  direction: ltr;
}

.hero__proof small {
  color: var(--ink-muted);
  font-size: 10px;
}

.hero__bottom {
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(216, 232, 255, 0.42);
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  direction: ltr;
}

.hero__bottom i {
  width: min(11vw, 130px);
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.section {
  padding: clamp(88px, 10vw, 156px) 0;
}

.advantages {
  position: relative;
  background: linear-gradient(180deg, #080b13, #0a0e18);
}

.advantages::after {
  position: absolute;
  top: 14%;
  left: -12vw;
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, rgba(61, 145, 255, 0.075), transparent 64%);
  content: "";
  pointer-events: none;
}

.section-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: clamp(38px, 5.5vw, 70px);
}

.section-heading h2,
.command-center h2,
.community h2,
.faq h2 {
  font-size: clamp(38px, 4vw, 61px);
}

.section-heading > p {
  max-width: 405px;
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 2;
}

.advantage-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.875fr 0.875fr;
  gap: 14px;
}

.advantage-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 30px;
  background: linear-gradient(155deg, rgba(24, 33, 52, 0.94), rgba(12, 17, 28, 0.96));
  border: 1px solid var(--line);
  border-radius: 17px;
  transition: border-color 220ms ease, transform 260ms var(--ease-out), box-shadow 260ms ease;
}

.advantage-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.1), transparent 24%, transparent 72%, rgba(87, 220, 255, 0.07));
  content: "";
  opacity: 0.45;
  pointer-events: none;
}

.advantage-card:hover {
  border-color: rgba(116, 222, 255, 0.52);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32), 0 0 35px rgba(87, 220, 255, 0.06);
  transform: translateY(-7px);
}

.advantage-card--featured {
  background: linear-gradient(137deg, #172e4a, #10192a 60%, #0f1424);
}

.card-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 47px;
  height: 47px;
  border-radius: 13px;
  place-items: center;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.card-icon--cyan {
  color: var(--cyan);
  background: rgba(87, 220, 255, 0.13);
  border: 1px solid rgba(87, 220, 255, 0.25);
}

.card-icon--violet {
  color: #bb9eff;
  background: rgba(155, 113, 255, 0.13);
  border: 1px solid rgba(155, 113, 255, 0.25);
}

.card-icon--orange {
  color: var(--orange);
  background: rgba(255, 177, 106, 0.13);
  border: 1px solid rgba(255, 177, 106, 0.25);
}

.card-overline {
  position: relative;
  z-index: 1;
  margin: 42px 0 11px;
  color: var(--ink-muted);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  direction: ltr;
}

.advantage-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.45;
}

.advantage-card > p:not(.card-overline) {
  position: relative;
  z-index: 1;
  max-width: 340px;
  margin: 15px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.9;
}

.connection-line {
  position: absolute;
  right: 30px;
  bottom: 34px;
  left: 30px;
  display: flex;
  align-items: center;
  direction: ltr;
}

.connection-line span,
.connection-line b {
  display: grid;
  height: 31px;
  padding: 0 12px;
  background: rgba(5, 11, 22, 0.76);
  border: 1px solid rgba(153, 190, 238, 0.21);
  border-radius: 6px;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 9px;
  place-items: center;
}

.connection-line b {
  color: #07131c;
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 22px rgba(87, 220, 255, 0.26);
}

.connection-line i {
  position: relative;
  width: min(8vw, 76px);
  height: 1px;
  background: rgba(87, 220, 255, 0.54);
}

.connection-line i::after {
  position: absolute;
  top: -2px;
  left: 50%;
  width: 5px;
  height: 5px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan);
  content: "";
  animation: packet 2.4s ease-in-out infinite;
}

.mini-chart {
  position: absolute;
  right: 30px;
  bottom: 34px;
  left: 30px;
  display: flex;
  height: 72px;
  align-items: end;
  gap: 8px;
  padding: 10px;
  background: rgba(4, 8, 18, 0.32);
  border: 1px solid rgba(161, 130, 255, 0.16);
  border-radius: 9px;
}

.mini-chart i {
  width: 100%;
  height: var(--chart-height);
  background: linear-gradient(180deg, #c3a6ff, #7049d9);
  border-radius: 3px 3px 1px 1px;
  box-shadow: 0 0 12px rgba(155, 113, 255, 0.3);
}

.mini-chart i:nth-child(1) { --chart-height: 42%; }
.mini-chart i:nth-child(2) { --chart-height: 58%; }
.mini-chart i:nth-child(3) { --chart-height: 48%; }
.mini-chart i:nth-child(4) { --chart-height: 78%; }
.mini-chart i:nth-child(5) { --chart-height: 67%; }
.mini-chart i:nth-child(6) { --chart-height: 87%; }
.mini-chart i:nth-child(7) { --chart-height: 96%; }

.download-meter {
  position: absolute;
  right: 30px;
  bottom: 43px;
  left: 30px;
  height: 30px;
  overflow: hidden;
  background: rgba(3, 8, 17, 0.5);
  border: 1px solid rgba(255, 177, 106, 0.19);
  border-radius: 7px;
}

.download-meter span {
  display: block;
  width: 84%;
  height: 100%;
  background: linear-gradient(90deg, #e88231, var(--orange));
  box-shadow: 0 0 20px rgba(255, 177, 106, 0.35);
}

.download-meter b {
  position: absolute;
  top: 50%;
  left: 11px;
  color: #fff4e9;
  font-family: var(--font-display);
  font-size: 9px;
  transform: translateY(-50%);
}

.command-center {
  position: relative;
  overflow: hidden;
  padding: clamp(85px, 11vw, 155px) 0;
  background: #0c1120;
}

.command-center::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 11, 19, 0.9), transparent 50%, rgba(8, 11, 19, 0.6)), url("../Contant/BG.png") center / cover;
  content: "";
  opacity: 0.35;
}

.command-center__layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(60px, 10vw, 145px);
}

.command-center__copy > p:not(.eyebrow) {
  max-width: 460px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 2;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 27px;
  color: #fff;
  border-bottom: 1px solid rgba(190, 223, 255, 0.25);
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease, gap 180ms var(--ease-out);
}

.text-link:hover {
  gap: 11px;
  color: var(--cyan);
  border-color: var(--cyan);
}

.command-panel {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 46%, rgba(55, 149, 226, 0.19), transparent 29%), linear-gradient(135deg, rgba(32, 45, 73, 0.92), rgba(11, 16, 30, 0.98));
  border: 1px solid rgba(154, 203, 255, 0.25);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), inset 0 1px rgba(255, 255, 255, 0.12);
  isolation: isolate;
}

.command-panel::before,
.command-panel::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.command-panel::before {
  inset: 16px;
  border: 1px solid rgba(168, 207, 255, 0.12);
  border-radius: 17px;
}

.command-panel::after {
  top: 50%;
  left: 50%;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(87, 220, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(87, 220, 255, 0.025), 0 0 0 80px rgba(87, 220, 255, 0.018);
  transform: translate(-50%, -50%);
}

.command-panel__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 29px 31px;
  color: rgba(206, 226, 255, 0.61);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  direction: ltr;
}

.command-panel__top span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.command-panel__top i {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 11px var(--lime);
}

.command-panel__orb {
  position: absolute;
  z-index: 1;
  top: 51%;
  left: 50%;
  width: 142px;
  height: 142px;
  background: radial-gradient(circle at 34% 27%, #c9fbff 0 2%, #68dffc 6%, #2785d2 41%, #122e66 68%, #081124 100%);
  border: 1px solid rgba(185, 242, 255, 0.58);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(87, 220, 255, 0.035), 0 0 40px rgba(87, 220, 255, 0.34), inset -18px -15px 30px rgba(4, 12, 42, 0.72);
  transform: translate(-50%, -50%);
  animation: float-orb 5s ease-in-out infinite;
}

.command-panel__orb::after {
  position: absolute;
  inset: -32px;
  border: 1px dashed rgba(105, 215, 255, 0.35);
  border-radius: 50%;
  content: "";
  animation: spin 12s linear infinite;
}

.command-panel__orb span {
  position: absolute;
  top: 9px;
  left: 17px;
  width: 19px;
  height: 9px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  filter: blur(2px);
  transform: rotate(-32deg);
}

.command-panel__metric {
  position: absolute;
  z-index: 2;
  top: 49%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 17px;
  background: rgba(8, 15, 29, 0.67);
  border: 1px solid rgba(158, 203, 255, 0.18);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
}

.command-panel__metric--left {
  right: 10%;
  transform: translateY(-50%);
}

.command-panel__metric--right {
  left: 10%;
  transform: translateY(-50%);
}

.command-panel__metric strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 29px;
  letter-spacing: -0.07em;
  line-height: 1;
  direction: ltr;
}

.command-panel__metric strong small {
  margin-right: 2px;
  color: var(--cyan);
  font-size: 10px;
  letter-spacing: 0;
}

.command-panel__metric span {
  color: var(--ink-muted);
  font-size: 10px;
}

.command-panel__bar {
  position: absolute;
  z-index: 2;
  right: 31px;
  bottom: 29px;
  left: 31px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  color: rgba(224, 240, 255, 0.74);
  background: rgba(8, 15, 29, 0.67);
  border: 1px solid rgba(158, 203, 255, 0.15);
  border-radius: 9px;
  font-size: 11px;
}

.command-panel__bar i {
  display: block;
  width: 54px;
  height: 4px;
  margin-right: auto;
  overflow: hidden;
  background: rgba(144, 190, 238, 0.18);
  border-radius: 4px;
}

.command-panel__bar i::before {
  display: block;
  width: 78%;
  height: 100%;
  background: var(--lime);
  border-radius: inherit;
  box-shadow: 0 0 9px var(--lime);
  content: "";
}

.plans {
  background: linear-gradient(180deg, #080b13 0%, #0d111c 100%);
}

.section-heading--plans {
  margin-bottom: 47px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 525px;
  flex-direction: column;
  padding: 27px;
  background: linear-gradient(145deg, #151b2b, #0e1421);
  border: 1px solid var(--line);
  border-radius: 17px;
  transition: transform 250ms var(--ease-out), border-color 250ms ease, box-shadow 250ms ease;
}

.plan-card:hover {
  border-color: rgba(111, 209, 255, 0.4);
  box-shadow: 0 25px 58px rgba(0, 0, 0, 0.3);
  transform: translateY(-7px);
}

.plan-card--highlighted {
  z-index: 1;
  margin-top: -16px;
  margin-bottom: -16px;
  background: linear-gradient(155deg, #193557, #141f37 58%, #14162c);
  border-color: rgba(96, 218, 255, 0.57);
  box-shadow: 0 20px 52px rgba(23, 133, 194, 0.13), inset 0 1px rgba(228, 252, 255, 0.16);
}

.plan-card--highlighted::before {
  position: absolute;
  top: 0;
  right: 13%;
  left: 13%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 20px var(--cyan);
  content: "";
}

.plan-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
}

.plan-card__top small {
  color: var(--ink-muted);
  font-family: var(--font-display);
  font-size: 10px;
  direction: ltr;
}

.plan-card h3 {
  margin: 30px 0 4px;
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.plan-card__description {
  min-height: 50px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.plan-card__price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 27px 0;
}

.plan-card__price b {
  color: #fff;
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: -0.08em;
  line-height: 1;
  direction: ltr;
}

.plan-card__price span {
  color: var(--ink-muted);
  font-size: 10px;
  line-height: 1.7;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(181, 202, 255, 0.13);
  color: var(--ink-soft);
  list-style: none;
  font-size: 12px;
}

.plan-card li {
  position: relative;
  padding-right: 17px;
}

.plan-card li::before {
  position: absolute;
  top: 9px;
  right: 0;
  width: 5px;
  height: 5px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(87, 220, 255, 0.62);
  content: "";
}

.plan-card__button {
  display: flex;
  min-height: 47px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 0 15px;
  color: #e9f7fc;
  background: rgba(136, 183, 230, 0.07);
  border: 1px solid rgba(181, 202, 255, 0.17);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.plan-card__button:hover {
  color: #07141d;
  background: var(--cyan);
  border-color: var(--cyan);
}

.plan-card__button span {
  font-family: var(--font-display);
  font-size: 19px;
  direction: ltr;
}

.games {
  position: relative;
  overflow: hidden;
  background: #0d111d;
}

.games::before {
  position: absolute;
  top: 7%;
  left: 50%;
  width: 75vw;
  height: 75vw;
  background: radial-gradient(circle, rgba(84, 64, 216, 0.08), transparent 62%);
  content: "";
  transform: translateX(-50%);
}

.games__heading {
  align-items: center;
}

.games__heading .text-link {
  margin: 0 0 8px;
}

.games-showcase {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: #070911;
  border: 1px solid rgba(147, 182, 233, 0.22);
  border-radius: 20px;
  box-shadow: 0 26px 78px rgba(0, 0, 0, 0.35);
}

.games-showcase__art,
.games-showcase__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.games-showcase__art {
  background: url("../Contant/BG1.png") center / cover;
  opacity: 0.7;
  transform: scale(1.01);
  transition: transform 900ms var(--ease-out);
}

.games-showcase:hover .games-showcase__art {
  transform: scale(1.055);
}

.games-showcase__shade {
  background: linear-gradient(90deg, rgba(4, 7, 14, 0.97), rgba(5, 9, 18, 0.74) 35%, rgba(5, 9, 18, 0.06) 74%), linear-gradient(0deg, rgba(5, 8, 15, 0.83), transparent 45%);
}

.game-list {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(490px, 60%);
  padding: 44px clamp(25px, 4vw, 54px);
}

.game-item {
  display: grid;
  grid-template-columns: 34px 1fr auto 14px;
  min-height: 93px;
  align-items: center;
  column-gap: 11px;
  color: rgba(228, 239, 255, 0.58);
  border-bottom: 1px solid rgba(189, 215, 255, 0.14);
  cursor: default;
  transition: color 180ms ease, padding 220ms var(--ease-out);
}

.game-item:hover,
.game-item.is-active {
  padding-right: 10px;
  color: #fff;
}

.game-item__number {
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  direction: ltr;
}

.game-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 800;
  letter-spacing: -0.05em;
  direction: ltr;
  text-align: right;
}

.game-item p {
  margin: 0;
  color: var(--ink-muted);
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.05em;
  direction: ltr;
}

.game-item i {
  width: 7px;
  height: 7px;
  background: currentColor;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: opacity 180ms ease, transform 180ms var(--ease-out);
}

.game-item.is-active i,
.game-item:hover i {
  opacity: 1;
  transform: scale(1);
}

.games-showcase__caption {
  position: absolute;
  z-index: 1;
  right: 40px;
  bottom: 29px;
  left: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(226, 239, 255, 0.66);
  font-size: 11px;
}

.games-showcase__caption b {
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.13em;
  direction: ltr;
}

.community {
  padding: 0 0 clamp(88px, 10vw, 150px);
  background: #0d111d;
}

.community__card {
  position: relative;
  display: grid;
  min-height: 444px;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  overflow: hidden;
  padding: clamp(34px, 5vw, 70px);
  background: linear-gradient(112deg, #34206e, #132b5c 60%, #073d50);
  border: 1px solid rgba(205, 224, 255, 0.27);
  border-radius: 22px;
  box-shadow: 0 32px 88px rgba(0, 0, 0, 0.34);
}

.community__card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 28%, transparent 65%, rgba(84, 226, 255, 0.13)), radial-gradient(rgba(246, 255, 255, 0.4) 0.8px, transparent 0.8px);
  background-size: auto, 11px 11px;
  opacity: 0.28;
  content: "";
}

.community__glow {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 76%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(123, 235, 255, 0.42), transparent 65%);
  transform: translate(-50%, -50%);
}

.community__copy,
.community__visual {
  position: relative;
  z-index: 1;
}

.community__copy h2 {
  margin-top: 12px;
}

.community__copy > p:not(.eyebrow) {
  max-width: 490px;
  margin: 17px 0 27px;
  color: rgba(243, 247, 255, 0.75);
  font-size: 14px;
  line-height: 2;
}

.button--light {
  color: #172148;
  background: #fff;
  box-shadow: 0 12px 34px rgba(8, 10, 37, 0.3);
}

.button--light:hover {
  color: #052331;
  background: var(--cyan);
}

.community__visual {
  display: grid;
  min-height: 330px;
  place-items: center;
}

.community__visual img {
  z-index: 2;
  width: min(100%, 280px);
  mix-blend-mode: screen;
  filter: drop-shadow(0 25px 32px rgba(8, 7, 44, 0.53));
  animation: float-trophy 5s ease-in-out infinite;
}

.community__orbit {
  position: absolute;
  width: 275px;
  height: 275px;
  border: 1px solid rgba(185, 239, 255, 0.27);
  border-radius: 50%;
}

.community__orbit--one {
  border-top-color: var(--cyan);
  border-right-color: var(--cyan);
  transform: rotate(-20deg);
}

.community__orbit--two {
  width: 345px;
  height: 345px;
  border-bottom-color: #ca95ff;
  border-left-color: #ca95ff;
  opacity: 0.7;
  transform: rotate(38deg);
}

.community__badge {
  position: absolute;
  z-index: 3;
  bottom: 35px;
  left: 8%;
  padding: 10px 14px;
  color: #fff;
  background: rgba(10, 18, 53, 0.67);
  border: 1px solid rgba(230, 235, 255, 0.33);
  border-radius: 8px;
  box-shadow: 0 12px 25px rgba(5, 7, 30, 0.28);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  direction: ltr;
  text-align: center;
}

.community__badge small {
  color: rgba(235, 240, 255, 0.65);
  font-family: var(--font-fa);
  font-size: 9px;
  font-weight: 500;
  direction: rtl;
}

.faq {
  background: #080b13;
}

.faq__layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: clamp(60px, 11vw, 155px);
}

.faq__intro {
  position: sticky;
  top: 110px;
}

.faq__intro > p:not(.eyebrow) {
  max-width: 350px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion__item {
  border-bottom: 1px solid var(--line);
}

.accordion h3 {
  margin: 0;
}

.accordion h3 button {
  display: flex;
  width: 100%;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  color: rgba(239, 246, 255, 0.82);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  text-align: right;
}

.accordion h3 button:hover,
.accordion h3 button:focus-visible,
.accordion__item.is-open h3 button {
  color: #fff;
}

.accordion h3 button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: -5px;
}

.accordion h3 button i {
  position: relative;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  border: 1px solid rgba(179, 207, 248, 0.28);
  border-radius: 50%;
  transition: background-color 180ms ease, border-color 180ms ease, transform 250ms var(--ease-out);
}

.accordion h3 button i::before,
.accordion h3 button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.accordion h3 button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 200ms ease;
}

.accordion__item.is-open h3 button i {
  color: #062330;
  background: var(--cyan);
  border-color: var(--cyan);
  transform: rotate(180deg);
}

.accordion__item.is-open h3 button i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion__answer {
  overflow: hidden;
}

.accordion__answer p {
  max-width: 690px;
  margin: -3px 0 23px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 2;
}

.site-footer {
  background: #060810;
  border-top: 1px solid rgba(181, 202, 255, 0.11);
}

.site-footer__top {
  display: grid;
  min-height: 160px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.site-footer__top > p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 13px;
}

.footer-cta {
  justify-self: end;
  color: var(--cyan);
  border-bottom: 1px solid rgba(87, 220, 255, 0.35);
  font-size: 12px;
  font-weight: 800;
}

.footer-cta span {
  display: inline-block;
  margin-right: 4px;
  font-family: var(--font-display);
  font-size: 18px;
  vertical-align: -2px;
}

.site-footer__bottom {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink-muted);
  border-top: 1px solid rgba(181, 202, 255, 0.1);
  font-size: 10px;
}

.site-footer__bottom nav {
  display: flex;
  gap: 23px;
}

.site-footer__bottom a {
  transition: color 180ms ease;
}

.site-footer__bottom a:hover {
  color: var(--cyan);
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.advantage-grid .reveal:nth-child(2),
.pricing-grid .reveal:nth-child(2) {
  transition-delay: 100ms;
}

.advantage-grid .reveal:nth-child(3),
.pricing-grid .reveal:nth-child(3) {
  transition-delay: 190ms;
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-art-in {
  from {
    opacity: 0;
    transform: scale(1.07);
  }

  to {
    opacity: 0.93;
    transform: scale(1.015);
  }
}

@keyframes packet {
  0%,
  100% {
    opacity: 0.3;
    transform: translateX(-15px);
  }

  50% {
    opacity: 1;
    transform: translateX(15px);
  }
}

@keyframes float-orb {
  0%,
  100% { transform: translate(-50%, -50%) translateY(-8px); }
  50% { transform: translate(-50%, -50%) translateY(9px); }
}

@keyframes float-trophy {
  0%,
  100% { transform: translateY(-8px) rotate(-2deg); }
  50% { transform: translateY(7px) rotate(2deg); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
  .shell {
    width: min(calc(100% - 42px), var(--shell));
  }

  .site-header__inner {
    grid-template-columns: 1fr auto 1fr;
  }

  .site-nav {
    gap: 18px;
    font-size: 11px;
  }

  .header-action {
    padding: 8px 12px;
  }

  .hero {
    min-height: 730px;
  }

  .hero__art {
    background-position: 61% center;
  }

  .advantage-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .advantage-card--featured {
    grid-row: span 2;
  }

  .command-center__layout,
  .faq__layout {
    gap: 55px;
  }

  .pricing-grid {
    gap: 11px;
  }

  .plan-card {
    min-height: 505px;
    padding: 22px;
  }

  .plan-card--highlighted {
    margin-top: -8px;
    margin-bottom: -8px;
  }

  .community__card {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 68px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .site-header {
    height: 65px;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto auto;
    gap: 13px;
  }

  .brand__mark {
    width: 31px;
    height: 31px;
    border-radius: 9px 5px 9px 5px;
  }

  .brand__text strong {
    font-size: 18px;
  }

  .brand__text small {
    font-size: 5.5px;
  }

  .menu-toggle {
    position: relative;
    z-index: 101;
    display: grid;
    width: 35px;
    height: 35px;
    padding: 0;
    background: rgba(112, 163, 222, 0.08);
    border: 1px solid rgba(181, 202, 255, 0.17);
    border-radius: 7px;
    cursor: pointer;
    place-content: center;
    gap: 5px;
  }

  .menu-toggle span {
    display: block;
    width: 15px;
    height: 1px;
    background: #e9f5ff;
    transition: transform 200ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    min-height: 100svh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    color: var(--ink-soft);
    background: rgba(6, 9, 17, 0.98);
    font-size: 17px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 200ms ease, transform 250ms var(--ease-out);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-action {
    grid-column: 3;
    min-height: 35px;
    padding: 7px 10px;
    font-size: 10px;
  }

  .header-action svg {
    width: 14px;
    height: 14px;
  }

  .hero {
    min-height: 710px;
    align-items: flex-start;
  }

  .hero__art {
    background-image: linear-gradient(180deg, rgba(6, 8, 15, 0.35), rgba(6, 8, 15, 0.55) 40%, #070911 90%), url("../Contant/BG2.png");
    background-position: 58% top;
  }

  .hero__content {
    padding-top: 150px;
    text-align: center;
  }

  .hero__eyebrow,
  .eyebrow {
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(42px, 12.2vw, 60px);
  }

  .hero__lead {
    margin-right: auto;
    margin-left: auto;
    font-size: 14px;
  }

  .hero__actions {
    justify-content: center;
  }

  .button {
    min-height: 48px;
    padding: 0 15px;
    font-size: 11px;
  }

  .hero__proof {
    justify-content: center;
    gap: 7px;
  }

  .hero__proof small {
    display: none;
  }

  .hero__bottom {
    bottom: 17px;
    justify-content: center;
  }

  .hero__bottom span:last-child {
    display: none;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading,
  .section-heading--plans {
    align-items: center;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 34px;
    text-align: center;
  }

  .section-heading h2,
  .command-center h2,
  .community h2,
  .faq h2 {
    font-size: clamp(34px, 9.4vw, 45px);
  }

  .section-heading > p {
    font-size: 13px;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .advantage-card,
  .advantage-card--featured {
    min-height: 335px;
    grid-row: auto;
    padding: 25px;
  }

  .card-overline {
    margin-top: 29px;
  }

  .command-center {
    padding: 82px 0;
  }

  .command-center__layout,
  .faq__layout,
  .community__card {
    grid-template-columns: 1fr;
  }

  .command-center__copy {
    text-align: center;
  }

  .command-center__copy > p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
    font-size: 13px;
  }

  .command-panel {
    min-height: 355px;
  }

  .command-panel__top {
    padding: 23px;
  }

  .command-panel__orb {
    width: 108px;
    height: 108px;
  }

  .command-panel__metric {
    padding: 10px 11px;
  }

  .command-panel__metric--left {
    right: 6%;
  }

  .command-panel__metric--right {
    left: 6%;
  }

  .command-panel__metric strong {
    font-size: 22px;
  }

  .command-panel__metric span {
    font-size: 8px;
  }

  .command-panel__bar {
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding: 10px;
    font-size: 9px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .plan-card,
  .plan-card--highlighted {
    min-height: auto;
    margin: 0;
    padding: 25px;
  }

  .plan-card--highlighted {
    order: -1;
  }

  .plan-card__description {
    min-height: auto;
  }

  .plan-card__button {
    margin-top: 29px;
  }

  .games__heading .text-link {
    margin: 0;
  }

  .games-showcase {
    min-height: 455px;
  }

  .games-showcase__art {
    background-position: 58% center;
  }

  .games-showcase__shade {
    background: linear-gradient(90deg, rgba(4, 7, 14, 0.94), rgba(5, 9, 18, 0.6) 83%), linear-gradient(0deg, rgba(5, 8, 15, 0.84), transparent 45%);
  }

  .game-list {
    width: 100%;
    padding: 27px 22px;
  }

  .game-item {
    grid-template-columns: 28px 1fr auto 10px;
    min-height: 78px;
  }

  .game-item h3 {
    font-size: 16px;
  }

  .game-item p {
    font-size: 7px;
  }

  .games-showcase__caption {
    right: 22px;
    bottom: 18px;
    left: 22px;
    font-size: 9px;
  }

  .community {
    padding-bottom: 82px;
  }

  .community__card {
    padding: 37px 26px 16px;
    text-align: center;
  }

  .community__copy > p:not(.eyebrow) {
    font-size: 13px;
  }

  .community__visual {
    min-height: 250px;
  }

  .community__visual img {
    width: 210px;
  }

  .community__orbit--one {
    width: 210px;
    height: 210px;
  }

  .community__orbit--two {
    width: 265px;
    height: 265px;
  }

  .community__badge {
    bottom: 16px;
    left: 5%;
  }

  .faq__intro {
    position: static;
    text-align: center;
  }

  .faq__intro > p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
    font-size: 13px;
  }

  .accordion h3 button {
    min-height: 72px;
    font-size: 13px;
  }

  .accordion__answer p {
    font-size: 12px;
  }

  .site-footer__top {
    min-height: auto;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
    padding: 45px 0;
    text-align: center;
  }

  .footer-cta {
    justify-self: center;
  }

  .site-footer__bottom {
    min-height: auto;
    flex-direction: column;
    gap: 14px;
    padding: 20px 0;
    text-align: center;
  }

  .site-footer__bottom nav {
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__art,
  .hero__eyebrow,
  .hero h1,
  .hero__lead,
  .hero__actions,
  .hero__proof {
    opacity: 1;
    transform: none;
  }
}
