:root {
  --bg: #030711;
  --panel: rgba(7, 17, 33, 0.82);
  --panel-strong: rgba(9, 24, 44, 0.94);
  --blue: #1677ff;
  --cyan: #08e8ff;
  --white: #f3fbff;
  --muted: #9bb6c9;
  --line: rgba(63, 185, 255, 0.25);
  --shadow: 0 22px 70px rgba(0, 106, 255, 0.18);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 119, 255, 0.18), transparent 30%),
    radial-gradient(circle at 84% 22%, rgba(8, 232, 255, 0.14), transparent 34%),
    linear-gradient(180deg, #02050c 0%, var(--bg) 48%, #02050b 100%);
  color: var(--white);
  font-family: "Rajdhani", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(8, 232, 255, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 232, 255, 0.065) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.18));
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent, rgba(8, 232, 255, 0.035), transparent),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 7px);
  mix-blend-mode: screen;
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(8, 232, 255, 0.12);
  background: rgba(3, 7, 17, 0.78);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.logo-mark {
  position: relative;
  width: 32px;
  height: 32px;
  border: 2px solid var(--cyan);
  background: linear-gradient(135deg, rgba(8, 232, 255, 0.18), rgba(22, 119, 255, 0.08)), #071121;
  box-shadow: 0 0 22px rgba(8, 232, 255, 0.45);
  transform: rotate(45deg);
}

.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute;
  background: var(--cyan);
}

.logo-mark::before {
  width: 13px;
  height: 3px;
  left: 7px;
  top: 8px;
}

.logo-mark::after {
  width: 3px;
  height: 13px;
  left: 8px;
  top: 7px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
}

.nav-links a {
  transition: color 180ms ease, text-shadow 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--cyan);
  text-shadow: 0 0 16px rgba(8, 232, 255, 0.7);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 232, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--cyan);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: "Orbitron", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  border-color: rgba(8, 232, 255, 0.72);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #02101d;
  box-shadow: 0 0 26px rgba(8, 232, 255, 0.32);
}

.btn-ghost {
  border-color: rgba(8, 232, 255, 0.42);
  background: rgba(8, 232, 255, 0.07);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 150px 0 86px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 76px 0 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 7, 17, 0.52), rgba(3, 7, 17, 0.1)),
    radial-gradient(circle at 65% 46%, rgba(8, 232, 255, 0.16), transparent 28%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
}

h1,
h2,
h3 {
  font-family: "Orbitron", sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(2.55rem, 7vw, 6.35rem);
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 900;
  text-transform: uppercase;
}

h3 {
  font-size: 1.1rem;
  font-weight: 800;
}

.hero-copy {
  max-width: 690px;
  margin-top: 24px;
  color: #c3d7e8;
  font-size: clamp(1.08rem, 2vw, 1.36rem);
  font-weight: 500;
}

.hero-price {
  display: block;
  margin-top: 18px;
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.15rem, 2.5vw, 1.75rem);
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(8, 232, 255, 0.72);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-panel {
  position: relative;
  min-height: 440px;
}

.core-block {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(280px, 72vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotateX(58deg) rotateZ(45deg);
  border: 1px solid rgba(8, 232, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(8, 232, 255, 0.2), transparent 34%),
    linear-gradient(45deg, #0c3e78 0 50%, #09233f 50% 100%);
  box-shadow: 0 0 70px rgba(8, 232, 255, 0.22), inset 0 0 32px rgba(8, 232, 255, 0.18);
  animation: corePulse 5s ease-in-out infinite;
}

.core-block::before,
.core-block::after {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(8, 232, 255, 0.35);
}

.core-block::after {
  inset: 31%;
  background: rgba(8, 232, 255, 0.08);
}

.floating-block {
  position: absolute;
  width: var(--size);
  height: var(--size);
  animation: floatBlock var(--duration) ease-in-out infinite;
  animation-delay: var(--delay);
  filter: drop-shadow(0 0 18px rgba(8, 232, 255, 0.34));
}

.floating-block span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(8, 232, 255, 0.3);
  background:
    linear-gradient(135deg, rgba(55, 198, 255, 0.62), rgba(0, 65, 130, 0.58)),
    linear-gradient(45deg, rgba(255,255,255,0.08) 25%, transparent 25% 50%, rgba(255,255,255,0.08) 50% 75%, transparent 75%);
  background-size: auto, 18px 18px;
}

.block-a { --size: 72px; --duration: 7s; --delay: 0s; top: 7%; left: 4%; }
.block-b { --size: 54px; --duration: 8.2s; --delay: -1.4s; top: 18%; right: 5%; }
.block-c { --size: 86px; --duration: 9s; --delay: -2s; bottom: 11%; left: 11%; }
.block-d { --size: 46px; --duration: 6.5s; --delay: -3s; bottom: 18%; right: 14%; }

.section {
  position: relative;
  padding: 96px 0;
  scroll-margin-top: 100px;
}

.page-hero {
  padding: 154px 0 56px;
}

.page-hero-inner {
  max-width: 820px;
}

.page-hero p {
  margin-top: 20px;
  color: #c3d7e8;
  font-size: 1.2rem;
  font-weight: 600;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 500;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.stat-card,
.step-card,
.cta-card,
.service-cta {
  border: 1px solid rgba(8, 232, 255, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(8, 232, 255, 0.08), rgba(8, 232, 255, 0.02)), var(--panel);
  box-shadow: var(--shadow);
}

.service-card {
  position: relative;
  min-height: 254px;
  padding: 26px;
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform: translateX(-100%);
  transition: transform 400ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(8, 232, 255, 0.56);
  background: linear-gradient(180deg, rgba(8, 232, 255, 0.12), rgba(22, 119, 255, 0.04)), var(--panel-strong);
}

.service-card:hover::before {
  transform: translateX(100%);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border: 1px solid rgba(8, 232, 255, 0.38);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(8, 232, 255, 0.22), rgba(22, 119, 255, 0.06)), #071121;
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: inset 0 0 22px rgba(8, 232, 255, 0.11);
}

.service-card p {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 500;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(8, 232, 255, 0.12);
}

.price {
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  font-size: 1.42rem;
  font-weight: 900;
}

.tag {
  color: #d7f9ff;
  font-size: 0.92rem;
  font-weight: 700;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: stretch;
}

.experience-display {
  display: grid;
  align-content: center;
  min-height: 380px;
  padding: 36px;
  border: 1px solid rgba(8, 232, 255, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(8, 232, 255, 0.14), rgba(22, 119, 255, 0.04)), var(--panel-strong);
  box-shadow: var(--shadow);
}

.experience-display .small {
  color: var(--muted);
  font-family: "Orbitron", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.experience-display strong {
  display: block;
  margin: 8px 0 14px;
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  font-size: clamp(4.3rem, 12vw, 8.4rem);
  line-height: 0.95;
  text-shadow: 0 0 36px rgba(8, 232, 255, 0.62);
}

.experience-display strong::after {
  content: " years";
  color: var(--white);
  font-size: clamp(1.2rem, 3vw, 2.1rem);
  text-transform: uppercase;
}

.experience-display p {
  max-width: 430px;
  color: #c3d7e8;
  font-size: 1.12rem;
  font-weight: 600;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.stat-card {
  padding: 22px;
}

.stat-card strong {
  display: block;
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  font-size: 1.78rem;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 18px;
  border: 1px solid rgba(8, 232, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(7, 17, 33, 0.76);
  color: #d9f6ff;
  font-weight: 700;
}

.trust-item::before {
  content: "";
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--cyan);
  background: rgba(8, 232, 255, 0.18);
  box-shadow: 0 0 16px rgba(8, 232, 255, 0.45);
  transform: rotate(45deg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: step;
}

.step-card {
  position: relative;
  min-height: 220px;
  padding: 28px;
  overflow: hidden;
  counter-increment: step;
}

.step-card::before {
  content: "0" counter(step);
  display: block;
  margin-bottom: 32px;
  color: rgba(8, 232, 255, 0.8);
  font-family: "Orbitron", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.step-card::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(8, 232, 255, 0.2);
  transform: rotate(45deg);
}

.step-card p {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 500;
}

.discord {
  padding-bottom: 104px;
}

.cta-card,
.service-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 7vw, 72px);
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(8, 232, 255, 0.22), transparent 38%), linear-gradient(135deg, rgba(7, 17, 33, 0.94), rgba(2, 8, 18, 0.98));
}

.cta-card::before,
.service-cta::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(8, 232, 255, 0.18);
  border-radius: var(--radius);
  pointer-events: none;
}

.cta-card h2,
.cta-card p,
.cta-card a,
.service-cta h2,
.service-cta p,
.service-cta a {
  position: relative;
  z-index: 1;
}

.cta-card p,
.service-cta p {
  max-width: 660px;
  margin: 18px auto 30px;
  color: #c3d7e8;
  font-size: 1.18rem;
  font-weight: 600;
}

.services-page-section {
  padding-top: 36px;
}

.service-cta {
  margin-top: 28px;
}

.proof-hero {
  padding-bottom: 38px;
}

.proof-section {
  padding-top: 32px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proof-card {
  overflow: hidden;
  border: 1px solid rgba(8, 232, 255, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(8, 232, 255, 0.08), rgba(8, 232, 255, 0.02)), var(--panel);
  box-shadow: var(--shadow);
}

.video-shell,
.future-slot {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid rgba(8, 232, 255, 0.16);
  background:
    linear-gradient(rgba(8, 232, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 232, 255, 0.08) 1px, transparent 1px),
    #040b17;
  background-size: 24px 24px;
}

.video-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.future-slot {
  color: rgba(243, 251, 255, 0.56);
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-card-body {
  padding: 22px;
}

.proof-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-card h2 {
  font-size: 1.2rem;
}

.proof-card p {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid rgba(8, 232, 255, 0.12);
  background: rgba(2, 5, 12, 0.86);
  padding: 30px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-inner p {
  color: var(--muted);
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--cyan);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes floatBlock {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(14px, -28px, 0) rotate(12deg);
  }
}

@keyframes corePulse {
  0%,
  100% {
    transform: translate(-50%, -50%) rotateX(58deg) rotateZ(45deg) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) rotateX(58deg) rotateZ(45deg) scale(1.04);
  }
}

@media (max-width: 980px) {
  .nav-links,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(8, 232, 255, 0.24);
    border-radius: var(--radius);
    background: rgba(3, 7, 17, 0.96);
    box-shadow: var(--shadow);
  }

  .menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 13px 14px;
    border-radius: 6px;
  }

  .nav-links a:hover {
    background: rgba(8, 232, 255, 0.08);
  }

  .hero-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-panel {
    min-height: 320px;
    order: -1;
  }

  .services-grid,
  .proof-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav-wrap {
    min-height: 70px;
  }

  .nav-links {
    top: 70px;
    left: 14px;
    right: 14px;
  }

  .logo {
    font-size: 0.98rem;
  }

  .logo-mark {
    width: 28px;
    height: 28px;
  }

  .hero {
    min-height: 92svh;
    padding: 112px 0 62px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-panel {
    min-height: 260px;
  }

  .core-block {
    width: min(210px, 64vw);
  }

  .block-a { --size: 48px; }
  .block-b { --size: 42px; }
  .block-c { --size: 54px; }
  .block-d { --size: 38px; }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .page-hero {
    padding: 124px 0 34px;
  }

  .services-grid,
  .proof-grid,
  .stats-grid,
  .trust-list,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .step-card,
  .stat-card,
  .experience-display {
    padding: 22px;
  }

  .step-card {
    min-height: 190px;
  }

  .experience-display {
    min-height: 300px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
