@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --page: #071a42;
  --page-deep: #0a2253;
  --surface: #11366f;
  --surface-soft: #163f7c;
  --surface-bright: #1b55a4;
  --line: rgba(173, 216, 255, 0.18);
  --line-strong: rgba(173, 216, 255, 0.34);
  --text: #eaf6ff;
  --muted: #a8c4e7;
  --blue: #2f7dff;
  --cyan: #22d3ee;
  --violet: #8b5cf6;
  --indigo: #4f46e5;
  --green: #45e6ad;
  --orange: #ff9f43;
  --rose: #ff6fae;
  --shadow: 0 30px 80px rgba(4, 20, 65, 0.36);
  --shell: 1240px;
  --header-height: 82px;
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 8%, rgba(34, 211, 238, 0.16), transparent 26%),
    radial-gradient(circle at 92% 4%, rgba(139, 92, 246, 0.18), transparent 26%),
    linear-gradient(145deg, #0a2355 0%, #0c3272 42%, #14275f 100%);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

a,
button,
input,
select,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

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

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

.ambient,
.page-grid {
  position: fixed;
  pointer-events: none;
  z-index: -1;
}

.ambient {
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.26;
}

.ambient-one {
  top: 160px;
  left: -260px;
  background: var(--cyan);
}

.ambient-two {
  top: 520px;
  right: -280px;
  background: var(--violet);
}

.page-grid {
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(189, 222, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(189, 222, 255, 0.14) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(4, 25, 66, 0.7), transparent 78%);
}

.announcement {
  position: relative;
  z-index: 60;
  color: #dff8ff;
  background: linear-gradient(90deg, #1f63d6, #5a4cdf, #138ec5);
  border-bottom: 1px solid rgba(226, 247, 255, 0.18);
}

.announcement-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.announcement span,
.announcement a {
  display: flex;
  align-items: center;
  gap: 9px;
}

.announcement i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9dffdb;
  box-shadow: 0 0 16px rgba(157, 255, 219, 0.9);
}

.announcement b {
  color: #c7fbff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(10, 40, 93, 0.74);
  border-bottom: 1px solid rgba(183, 222, 255, 0.14);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 34, 82, 0.94);
  box-shadow: 0 18px 44px rgba(4, 23, 68, 0.28);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-icon {
  width: 41px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(145deg, #2f7dff, #8b5cf6);
  box-shadow: 0 10px 28px rgba(47, 125, 255, 0.28);
}

.brand-icon img {
  width: 24px;
  height: 27px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 0.92;
}

.brand-copy strong {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
}

.brand-copy small {
  margin-top: 5px;
  color: #80d9ff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.25em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.desktop-nav > a,
.nav-dropdown > button {
  position: relative;
  border: 0;
  padding: 10px 0;
  color: #b9d2ef;
  background: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav > a::after,
.nav-dropdown > button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav > a:hover,
.desktop-nav > a.is-active,
.nav-dropdown > button:hover,
.nav-dropdown.is-open > button {
  color: var(--text);
}

.desktop-nav > a:hover::after,
.desktop-nav > a.is-active::after,
.nav-dropdown > button:hover::after,
.nav-dropdown.is-open > button::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown > button span {
  color: #79d9ff;
  font-size: 16px;
  transition: transform 180ms ease;
}

.nav-dropdown.is-open > button span {
  transform: rotate(180deg);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: 390px;
  padding: 10px;
  border: 1px solid rgba(187, 224, 255, 0.2);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(17, 58, 121, 0.98), rgba(34, 45, 126, 0.98));
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown.is-open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown-panel a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px;
  border-radius: 14px;
  transition: background 160ms ease, transform 160ms ease;
}

.dropdown-panel a:hover {
  background: rgba(113, 194, 255, 0.13);
  transform: translateX(3px);
}

.dropdown-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 13px;
  color: #dff8ff;
  background: linear-gradient(145deg, #2f7dff, #7254e7);
  font-size: 11px;
  font-weight: 800;
}

.dropdown-panel strong,
.dropdown-panel small {
  display: block;
}

.dropdown-panel strong {
  font-size: 14px;
}

.dropdown-panel small {
  margin-top: 2px;
  color: #9fbde3;
  font-size: 11px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.panel-link {
  color: #b7d1ef;
  font-size: 13px;
  font-weight: 700;
}

.panel-link:hover {
  color: var(--text);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 15px;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease, background 170ms ease;
}

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

.button-small {
  min-height: 43px;
  padding: 0 17px;
  border-radius: 13px;
  font-size: 13px;
}

.button-bright {
  color: #eefaff;
  background: linear-gradient(100deg, #2386ff, #6c55ec 70%, #22b9df);
  box-shadow: 0 16px 34px rgba(47, 93, 231, 0.3);
}

.button-bright:hover {
  box-shadow: 0 20px 42px rgba(47, 93, 231, 0.44);
}

.button-glass {
  color: #dff4ff;
  border-color: rgba(183, 225, 255, 0.22);
  background: rgba(91, 164, 232, 0.11);
  backdrop-filter: blur(12px);
}

.button-glass:hover {
  border-color: rgba(183, 225, 255, 0.46);
  background: rgba(91, 164, 232, 0.18);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid rgba(191, 227, 255, 0.18);
  border-radius: 13px;
  padding: 0;
  background: rgba(105, 170, 231, 0.12);
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #d9f3ff;
  transition: transform 180ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

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

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

.mobile-nav {
  position: fixed;
  top: calc(38px + var(--header-height));
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 49;
  display: none;
  align-content: start;
  gap: 8px;
  padding: 22px;
  background: linear-gradient(155deg, rgba(10, 41, 97, 0.99), rgba(27, 42, 111, 0.99));
  backdrop-filter: blur(18px);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a,
.mobile-nav > span {
  padding: 14px 16px;
  border-radius: 13px;
  color: #c7def5;
  font-weight: 700;
}

.mobile-nav > span {
  padding-bottom: 4px;
  color: #72d8ff;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-nav a:hover {
  color: var(--text);
  background: rgba(102, 181, 247, 0.13);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #7ee5ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

h1 em,
h2 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(90deg, #79e8ff, #7da0ff, #ba8cff);
  background-clip: text;
  -webkit-background-clip: text;
}

.home-hero {
  position: relative;
  min-height: calc(100vh - 120px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 90px 0 105px;
}

.home-hero::before {
  content: "";
  position: absolute;
  right: -18%;
  top: -14%;
  width: 74%;
  height: 110%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 40%, rgba(34, 211, 238, 0.26), transparent 32%),
    radial-gradient(circle at 62% 42%, rgba(79, 70, 229, 0.36), transparent 48%);
  filter: blur(12px);
}

.home-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 74px;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 24px 0 26px;
  font-size: clamp(55px, 6vw, 92px);
  font-weight: 800;
}

.hero-lead {
  max-width: 650px;
  color: #b8d3ed;
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 48px;
}

.hero-trust span {
  display: grid;
  color: #9fbee0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-trust b {
  color: #e3f7ff;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.hero-stack {
  position: relative;
  min-height: 565px;
  display: grid;
  place-items: center;
  perspective: 1400px;
}

.glow-sphere {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(184, 242, 255, 0.82), transparent 9%),
    radial-gradient(circle at 45% 40%, #24bde6, #3664e7 48%, #6639d7 75%, rgba(103, 57, 215, 0.1) 76%);
  filter: blur(1px);
  box-shadow: 0 0 90px rgba(51, 129, 242, 0.42);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(171, 225, 255, 0.23);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.orbit-one {
  width: 520px;
  height: 255px;
}

.orbit-two {
  width: 620px;
  height: 335px;
  transform: rotate(26deg);
}

.control-card {
  position: relative;
  z-index: 3;
  width: min(610px, 100%);
  overflow: hidden;
  border: 1px solid rgba(190, 226, 255, 0.25);
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(17, 63, 133, 0.93), rgba(27, 38, 111, 0.95));
  box-shadow: 0 40px 95px rgba(6, 25, 78, 0.42);
  transform: rotateY(-7deg) rotateX(3deg);
}

.control-top {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(187, 224, 255, 0.14);
  background: rgba(115, 185, 246, 0.08);
}

.control-top small,
.control-top strong {
  display: block;
}

.control-top small {
  color: #73dfff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.control-top strong {
  margin-top: 3px;
  font-size: 13px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(96, 238, 190, 0.25);
  border-radius: 99px;
  color: #9affd7;
  background: rgba(46, 204, 143, 0.11);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.live-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(69, 230, 173, 0.9);
}

.control-body {
  min-height: 360px;
  display: grid;
  grid-template-columns: 62px 1fr;
}

.control-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-right: 1px solid rgba(187, 224, 255, 0.12);
  background: rgba(7, 39, 92, 0.34);
}

.control-rail img {
  width: 22px;
  height: 24px;
  object-fit: contain;
  margin-bottom: 12px;
}

.control-rail span {
  width: 23px;
  height: 23px;
  border-radius: 7px;
  background: rgba(154, 211, 255, 0.12);
}

.control-rail span.is-active {
  background: linear-gradient(145deg, #31bfee, #6657eb);
  box-shadow: 0 6px 16px rgba(48, 146, 237, 0.32);
}

.control-main {
  padding: 24px;
}

.resource-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.resource-head small,
.resource-head strong {
  display: block;
}

.resource-head small {
  color: #7ddcff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.resource-head strong {
  margin-top: 4px;
  font-size: 19px;
}

.resource-head button {
  border: 1px solid rgba(184, 225, 255, 0.18);
  border-radius: 10px;
  padding: 8px 12px;
  color: #cce9ff;
  background: rgba(104, 185, 246, 0.1);
  font-size: 10px;
  font-weight: 800;
}

.resource-bars {
  display: grid;
  gap: 13px;
  margin: 25px 0;
}

.resource-bars > div {
  display: grid;
  grid-template-columns: 42px 1fr 38px;
  align-items: center;
  gap: 12px;
  color: #9ebee0;
  font-size: 9px;
  font-weight: 800;
}

.resource-bars b {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(160, 214, 255, 0.12);
}

.resource-bars i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #27c5e9, #6b57ec);
}

.resource-bars strong {
  color: #dcefff;
  font-size: 10px;
  text-align: right;
}

.mini-console {
  min-height: 150px;
  padding: 17px;
  border: 1px solid rgba(178, 221, 255, 0.12);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(10, 46, 102, 0.68), rgba(35, 38, 104, 0.72));
}

.mini-console > span {
  display: block;
  margin-bottom: 15px;
  color: #79dfff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.mini-console p {
  margin: 6px 0;
  color: #9bbbdc;
  font-family: monospace;
  font-size: 10px;
}

.mini-console p b {
  color: #6fc7ff;
}

.mini-console .success {
  color: #8fffd5;
}

.float-card {
  position: absolute;
  z-index: 4;
  display: grid;
  min-width: 148px;
  padding: 13px 15px;
  border: 1px solid rgba(192, 229, 255, 0.25);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(24, 84, 163, 0.94), rgba(59, 53, 148, 0.94));
  box-shadow: 0 20px 50px rgba(7, 31, 82, 0.32);
}

.float-card span {
  color: #7de2ff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.float-card strong {
  margin-top: 3px;
  font-size: 12px;
}

.float-card-one {
  top: 80px;
  right: -10px;
}

.float-card-two {
  left: -6px;
  bottom: 74px;
}

.service-band,
.why-section,
.steps-section,
.service-detail,
.plans-section,
.faq-section,
.principles-section,
.service-map,
.request-builder,
.legal-section {
  padding: 115px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  gap: 60px;
  margin-bottom: 45px;
}

.section-heading h2,
.why-copy h2,
.story-copy h2,
.faq-copy h2,
.request-copy h2 {
  margin: 17px 0 0;
  font-size: clamp(38px, 4vw, 61px);
}

.section-heading > p {
  margin: 0;
  color: #a9c5e5;
  line-height: 1.8;
}

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

.service-card {
  position: relative;
  min-height: 510px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(189, 226, 255, 0.18);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card::before,
.service-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.service-card::before {
  width: 270px;
  height: 270px;
  right: -85px;
  bottom: -90px;
  filter: blur(15px);
  opacity: 0.38;
}

.service-card::after {
  inset: 0;
  background-image:
    linear-gradient(rgba(213, 239, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(213, 239, 255, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, transparent 12%, rgba(7, 33, 81, 0.68));
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(190, 230, 255, 0.36);
  box-shadow: 0 40px 90px rgba(7, 27, 79, 0.43);
}

.service-card-bots {
  background: linear-gradient(150deg, #135da6, #214296 56%, #3f2f9b);
}

.service-card-bots::before {
  background: #25d3ee;
}

.service-card-web {
  background: linear-gradient(150deg, #3b49a7, #6045bb 58%, #a13fa2);
}

.service-card-web::before {
  background: #ff74bb;
}

.service-card-games {
  background: linear-gradient(150deg, #087f9f, #1766ad 50%, #3550b7);
}

.service-card-games::before {
  background: #43efbd;
}

.service-card-top,
.pricing-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-number,
.service-arrow {
  display: grid;
  place-items: center;
  height: 35px;
  border-radius: 10px;
  background: rgba(221, 244, 255, 0.12);
  font-size: 11px;
  font-weight: 800;
}

.service-number {
  min-width: 48px;
}

.service-arrow {
  width: 35px;
  transition: transform 180ms ease;
}

.service-card:hover .service-arrow {
  transform: rotate(45deg);
}

.service-symbol {
  position: relative;
  z-index: 2;
  margin: 64px 0 auto;
  color: rgba(226, 246, 255, 0.92);
  font-family: monospace;
  font-size: 74px;
  font-weight: 800;
  letter-spacing: -0.12em;
  text-shadow: 0 18px 50px rgba(12, 29, 89, 0.32);
}

.service-card h3,
.service-card p,
.service-tags {
  position: relative;
  z-index: 2;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 29px;
}

.service-card p {
  margin-bottom: 22px;
  color: #c8def3;
  line-height: 1.7;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.service-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(220, 244, 255, 0.18);
  border-radius: 99px;
  color: #d9f1ff;
  background: rgba(185, 224, 255, 0.08);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-marquee {
  overflow: hidden;
  padding: 19px 0;
  border-top: 1px solid rgba(192, 228, 255, 0.16);
  border-bottom: 1px solid rgba(192, 228, 255, 0.16);
  background: linear-gradient(90deg, #155fb6, #5744ba, #168fb9);
}

.feature-marquee > div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 24px;
  animation: marquee 28s linear infinite;
}

.feature-marquee span {
  color: #e3f8ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.feature-marquee i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #91f4ff;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.why-section {
  background:
    radial-gradient(circle at 80% 30%, rgba(121, 81, 231, 0.23), transparent 33%),
    linear-gradient(145deg, rgba(12, 48, 108, 0.74), rgba(29, 38, 103, 0.78));
  border-top: 1px solid rgba(185, 224, 255, 0.12);
  border-bottom: 1px solid rgba(185, 224, 255, 0.12);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
}

.why-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.why-copy p,
.story-copy p,
.faq-copy p,
.request-copy > p {
  color: #aac6e5;
  line-height: 1.85;
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  color: #8ce8ff;
  font-weight: 800;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.reason-card,
.feature-card,
.principle-card,
.number-card,
.step-card {
  border: 1px solid rgba(190, 227, 255, 0.16);
  border-radius: 21px;
  background: linear-gradient(145deg, rgba(21, 67, 139, 0.75), rgba(42, 46, 127, 0.72));
  box-shadow: 0 22px 54px rgba(6, 27, 78, 0.2);
}

.reason-card {
  min-height: 260px;
  padding: 25px;
}

.reason-card span,
.feature-card > span,
.step-card > span {
  color: #75e3ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.reason-card h3,
.feature-card h3,
.step-card h3,
.principle-card h3 {
  margin: 48px 0 11px;
  font-size: 22px;
}

.reason-card p,
.feature-card p,
.step-card p,
.principle-card p,
.number-card p {
  margin: 0;
  color: #a8c4e4;
  line-height: 1.75;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.step-card {
  min-height: 275px;
  padding: 23px;
}

.step-card h3 {
  margin-top: 70px;
}

.large-cta {
  padding: 30px 0 110px;
}

.cta-panel {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  overflow: hidden;
  border: 1px solid rgba(205, 237, 255, 0.23);
  border-radius: 30px;
  padding: 52px;
  background:
    radial-gradient(circle at 82% 48%, rgba(36, 220, 237, 0.32), transparent 28%),
    radial-gradient(circle at 66% 100%, rgba(132, 83, 238, 0.44), transparent 38%),
    linear-gradient(115deg, #155db2, #3c49b5 53%, #723db0);
  box-shadow: var(--shadow);
}

.cta-panel::after {
  content: "";
  position: absolute;
  right: -90px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(218, 244, 255, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(202, 239, 255, 0.06),
    0 0 0 110px rgba(202, 239, 255, 0.04);
}

.cta-panel > * {
  position: relative;
  z-index: 2;
}

.cta-panel h2 {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: clamp(38px, 4vw, 61px);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 0 auto;
}

.service-hero,
.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0 120px;
  border-bottom: 1px solid rgba(190, 227, 255, 0.14);
}

.service-hero::before,
.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background-image:
    linear-gradient(rgba(211, 239, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(211, 239, 255, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(to bottom, rgba(6, 31, 78, 0.9), transparent);
}

.service-hero-bots {
  background:
    radial-gradient(circle at 78% 40%, rgba(33, 211, 238, 0.27), transparent 28%),
    linear-gradient(145deg, #0b4a94, #213d9b 58%, #562fa0);
}

.service-hero-web {
  background:
    radial-gradient(circle at 78% 42%, rgba(255, 111, 174, 0.26), transparent 28%),
    linear-gradient(145deg, #173d96, #5444ae 55%, #8f3c9a);
}

.service-hero-games {
  background:
    radial-gradient(circle at 78% 42%, rgba(69, 230, 173, 0.24), transparent 28%),
    linear-gradient(145deg, #0a6889, #1763a9 55%, #4147a9);
}

.service-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: 78px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 38px;
  color: #a9d7f4;
  font-size: 12px;
  font-weight: 700;
}

.service-hero h1 {
  margin: 22px 0 27px;
  font-size: clamp(51px, 5.7vw, 83px);
}

.service-hero-copy > p {
  max-width: 650px;
  color: #c0d9ef;
  font-size: 17px;
  line-height: 1.8;
}

.code-window,
.browser-window,
.game-window {
  overflow: hidden;
  border: 1px solid rgba(215, 242, 255, 0.26);
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(21, 70, 144, 0.9), rgba(48, 44, 126, 0.92));
  box-shadow: 0 36px 90px rgba(8, 25, 79, 0.38);
}

.code-bar,
.browser-bar {
  min-height: 55px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid rgba(205, 237, 255, 0.14);
  background: rgba(144, 200, 247, 0.09);
}

.code-bar > span,
.browser-bar > span {
  display: flex;
  gap: 6px;
}

.code-bar i,
.browser-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #72dafa;
}

.code-bar i:nth-child(2),
.browser-bar i:nth-child(2) {
  background: #9d7bf3;
}

.code-bar i:nth-child(3),
.browser-bar i:nth-child(3) {
  background: #48e3af;
}

.code-bar strong {
  font-size: 11px;
}

.code-bar small {
  justify-self: end;
  color: #7effcd;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.code-window pre {
  min-height: 340px;
  margin: 0;
  padding: 45px 34px;
  color: #d8edff;
  font-size: 14px;
  line-height: 2;
  white-space: pre-wrap;
  background:
    radial-gradient(circle at 80% 30%, rgba(42, 217, 238, 0.13), transparent 28%),
    rgba(14, 46, 110, 0.36);
}

.code-purple {
  color: #c197ff;
}

.code-cyan {
  color: #83edff;
}

.code-status {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 18px;
  border-top: 1px solid rgba(205, 237, 255, 0.12);
  color: #a8c9e8;
  font-size: 10px;
}

.code-status span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.code-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(69, 230, 173, 0.75);
}

.browser-bar {
  grid-template-columns: 80px 1fr 40px;
}

.browser-bar div {
  border: 1px solid rgba(211, 239, 255, 0.14);
  border-radius: 9px;
  padding: 7px 14px;
  color: #b5d3ed;
  background: rgba(72, 145, 215, 0.1);
  font-size: 10px;
}

.browser-bar b {
  justify-self: end;
}

.browser-page {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 55px 45px 35px;
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 111, 174, 0.3), transparent 25%),
    radial-gradient(circle at 70% 70%, rgba(37, 211, 238, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(38, 64, 149, 0.6), rgba(95, 52, 147, 0.62));
}

.browser-pill {
  padding: 7px 11px;
  border-radius: 99px;
  color: #dff7ff;
  background: rgba(190, 229, 255, 0.13);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.browser-page h2 {
  margin: 54px 0 8px;
  font-size: 46px;
}

.browser-page p {
  color: #b9d5ee;
}

.browser-buttons {
  display: flex;
  gap: 9px;
  margin-top: 12px;
}

.browser-buttons span {
  width: 90px;
  height: 27px;
  border-radius: 8px;
  background: linear-gradient(90deg, #2bcce8, #6558ed);
}

.browser-buttons span:last-child {
  width: 70px;
  border: 1px solid rgba(205, 238, 255, 0.2);
  background: rgba(143, 198, 240, 0.12);
}

.browser-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: auto;
}

.browser-grid i {
  height: 72px;
  border: 1px solid rgba(205, 238, 255, 0.13);
  border-radius: 11px;
  background: rgba(134, 192, 238, 0.08);
}

.game-window {
  padding: 14px;
  background: linear-gradient(145deg, rgba(17, 84, 136, 0.94), rgba(49, 53, 143, 0.94));
}

.game-scene {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(#477ce5 0%, #2da7d4 56%, #1f8d87 57%, #237667 100%);
}

.game-sun {
  position: absolute;
  right: 60px;
  top: 55px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #8cf4dc;
  box-shadow: 0 0 65px rgba(140, 244, 220, 0.54);
}

.mountain {
  position: absolute;
  bottom: 110px;
  width: 0;
  height: 0;
  border-left: 170px solid transparent;
  border-right: 170px solid transparent;
  border-bottom: 230px solid #275a9c;
}

.mountain-one {
  left: -80px;
}

.mountain-two {
  right: -90px;
  border-left-width: 200px;
  border-right-width: 200px;
  border-bottom-color: #3b4d9f;
}

.game-ground {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 145px;
  background:
    linear-gradient(90deg, rgba(66, 236, 176, 0.22) 1px, transparent 1px),
    linear-gradient(rgba(66, 236, 176, 0.22) 1px, transparent 1px),
    linear-gradient(145deg, #18746e, #1d5e72);
  background-size: 28px 28px, 28px 28px, auto;
  transform: perspective(380px) rotateX(50deg);
  transform-origin: bottom;
}

.game-server-card {
  position: absolute;
  left: 38px;
  bottom: 35px;
  width: 240px;
  padding: 19px;
  border: 1px solid rgba(218, 244, 255, 0.24);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(21, 76, 144, 0.92), rgba(52, 48, 137, 0.94));
  box-shadow: 0 22px 52px rgba(8, 29, 75, 0.35);
  backdrop-filter: blur(12px);
}

.game-server-card > span {
  color: #78e7ff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.game-server-card > strong {
  display: block;
  margin: 5px 0 18px;
  color: #85ffd2;
  font-size: 20px;
}

.game-server-card > div {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center;
  gap: 9px;
  margin: 8px 0;
  color: #b5d3ee;
  font-size: 10px;
}

.game-server-card div i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #51e4b2;
}

.game-server-card div p {
  margin: 0;
}

.game-server-card button {
  width: 100%;
  margin-top: 14px;
  border: 0;
  border-radius: 10px;
  padding: 10px;
  color: #e9f9ff;
  background: linear-gradient(90deg, #27cce4, #5f58e9);
  font-size: 9px;
  font-weight: 800;
}

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  min-height: 280px;
  padding: 25px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(192, 230, 255, 0.32);
}

.feature-card h3 {
  margin-top: 72px;
}

.plans-section {
  background:
    radial-gradient(circle at 15% 50%, rgba(34, 211, 238, 0.15), transparent 27%),
    radial-gradient(circle at 86% 38%, rgba(139, 92, 246, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(12, 51, 116, 0.74), rgba(37, 42, 111, 0.77));
  border-top: 1px solid rgba(185, 224, 255, 0.12);
  border-bottom: 1px solid rgba(185, 224, 255, 0.12);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.pricing-card {
  position: relative;
  min-height: 570px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(192, 229, 255, 0.17);
  border-radius: 24px;
  padding: 25px;
  background: linear-gradient(150deg, rgba(19, 69, 141, 0.88), rgba(41, 46, 126, 0.88));
  box-shadow: var(--shadow);
}

.pricing-card-featured {
  transform: translateY(-16px);
  border-color: rgba(112, 226, 255, 0.48);
  background:
    radial-gradient(circle at 80% 0, rgba(41, 216, 237, 0.22), transparent 30%),
    linear-gradient(145deg, rgba(20, 89, 166, 0.94), rgba(80, 50, 156, 0.94));
}

.popular-label {
  position: absolute;
  top: -13px;
  right: 22px;
  padding: 7px 12px;
  border-radius: 99px;
  color: #e7fbff;
  background: linear-gradient(90deg, #28cbea, #7656e9);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.pricing-head span,
.pricing-head b {
  color: #7ce4ff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.pricing-card h3 {
  margin: 50px 0 12px;
  font-size: 35px;
}

.pricing-card > p {
  min-height: 76px;
  color: #acc8e5;
  line-height: 1.75;
}

.panel-price {
  display: block;
  margin: 24px 0;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
}

.pricing-card ul {
  display: grid;
  gap: 13px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 21px;
  color: #b7d0ea;
  font-size: 13px;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #67e8c1;
  font-weight: 800;
}

.pricing-card > button,
.pricing-card > a {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  border: 1px solid rgba(193, 230, 255, 0.18);
  border-radius: 13px;
  padding: 0 16px;
  color: #e2f5ff;
  background: rgba(120, 189, 243, 0.1);
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.pricing-card-featured > button {
  border-color: transparent;
  background: linear-gradient(90deg, #27c9e7, #6757ea);
}

.faq-shell {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 80px;
}

.faq-copy {
  position: sticky;
  top: 135px;
  align-self: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(192, 229, 255, 0.16);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(20, 68, 139, 0.78), rgba(42, 45, 124, 0.75));
}

.faq-item button {
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  padding: 0 21px;
  color: #e3f5ff;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
}

.faq-item button b {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 9px;
  color: #86e9ff;
  background: rgba(110, 190, 247, 0.11);
  transition: transform 180ms ease;
}

.faq-item > div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-item > div p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 21px;
  color: #a8c4e4;
  transition: padding 220ms ease;
}

.faq-item.is-open > div {
  grid-template-rows: 1fr;
}

.faq-item.is-open > div p {
  padding: 0 21px 22px;
}

.faq-item.is-open button b {
  transform: rotate(45deg);
}

.inner-hero {
  padding: 125px 0;
  background:
    radial-gradient(circle at 83% 40%, rgba(36, 211, 238, 0.23), transparent 25%),
    radial-gradient(circle at 72% 80%, rgba(139, 92, 246, 0.24), transparent 31%),
    linear-gradient(145deg, #0d4f9a, #3747a7 55%, #6a3f9f);
}

.inner-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: 80px;
}

.inner-hero h1 {
  margin: 20px 0 0;
  font-size: clamp(55px, 6vw, 88px);
}

.inner-hero-grid > p {
  margin: 0;
  color: #c0d8ee;
  font-size: 17px;
  line-height: 1.85;
}

.about-story {
  padding: 125px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 90px;
}

.story-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.story-mark {
  position: relative;
  z-index: 3;
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 241, 255, 0.24);
  border-radius: 50%;
  background: linear-gradient(145deg, #1e87d6, #5b4fe2 62%, #8d51c9);
  box-shadow: 0 30px 90px rgba(36, 91, 205, 0.38);
}

.story-mark img {
  width: 82px;
}

.story-ring {
  position: absolute;
  border: 1px solid rgba(194, 230, 255, 0.18);
  border-radius: 50%;
}

.ring-one {
  width: 360px;
  height: 360px;
}

.ring-two {
  width: 490px;
  height: 490px;
}

.story-label {
  position: absolute;
  z-index: 4;
  padding: 9px 13px;
  border: 1px solid rgba(202, 235, 255, 0.18);
  border-radius: 99px;
  color: #cdf0ff;
  background: linear-gradient(90deg, rgba(28, 100, 180, 0.9), rgba(80, 59, 166, 0.9));
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.label-one {
  top: 53px;
  right: 80px;
}

.label-two {
  left: 25px;
  bottom: 160px;
}

.label-three {
  right: 33px;
  bottom: 73px;
}

.story-copy h2 {
  max-width: 720px;
}

.principles-section {
  background: linear-gradient(145deg, rgba(12, 50, 112, 0.76), rgba(41, 42, 111, 0.78));
  border-top: 1px solid rgba(192, 229, 255, 0.12);
  border-bottom: 1px solid rgba(192, 229, 255, 0.12);
}

.principle-grid,
.number-grid,
.map-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.principle-card {
  min-height: 300px;
  padding: 23px;
}

.principle-card b {
  color: #78e6ff;
  font-size: 11px;
}

.principle-card h3 {
  margin-top: 75px;
}

.numbers-section {
  padding: 85px 0;
}

.number-grid {
  grid-template-columns: repeat(3, 1fr);
}

.number-card {
  min-height: 245px;
  padding: 28px;
}

.number-card strong {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #5ce1ff, #aa82ff);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: "Manrope", sans-serif;
  font-size: 64px;
  letter-spacing: -0.07em;
}

.number-card span {
  display: block;
  margin: 4px 0 12px;
  font-weight: 800;
}

.map-grid {
  grid-template-columns: repeat(3, 1fr);
}

.map-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(191, 228, 255, 0.16);
  border-radius: 22px;
  padding: 25px;
  background: linear-gradient(145deg, rgba(20, 73, 146, 0.82), rgba(48, 47, 132, 0.82));
  transition: transform 180ms ease, border-color 180ms ease;
}

.map-card:hover {
  transform: translateY(-5px);
  border-color: rgba(187, 228, 255, 0.34);
}

.map-card span {
  color: #7be7ff;
  font-size: 10px;
  font-weight: 800;
}

.map-card h3 {
  margin: 85px 0 12px;
  font-size: 30px;
}

.map-card p {
  color: #aac5e5;
}

.map-card b {
  margin-top: auto;
  color: #8aeaff;
  font-size: 12px;
}

.support-options {
  padding: 80px 0 25px;
}

.support-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.support-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border: 1px solid rgba(192, 229, 255, 0.18);
  border-radius: 22px;
  padding: 24px;
  color: inherit;
  background: linear-gradient(145deg, rgba(20, 75, 149, 0.87), rgba(53, 48, 137, 0.87));
  cursor: pointer;
  text-align: left;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease;
}

.support-card:hover {
  transform: translateY(-5px);
  border-color: rgba(192, 229, 255, 0.36);
}

.support-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #e7f9ff;
  background: linear-gradient(145deg, #2cc3e7, #6b57e8);
  font-size: 11px;
  font-weight: 800;
}

.support-card small {
  display: block;
  margin-top: 45px;
  color: #78e5ff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.support-card h2 {
  margin: 8px 0 10px;
  font-size: 29px;
}

.support-card p {
  color: #abc6e4;
  line-height: 1.75;
}

.support-card > b {
  margin-top: auto;
  color: #91edff;
  font-size: 12px;
}

.request-builder {
  padding-top: 90px;
}

.request-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: 85px;
}

.request-copy {
  position: sticky;
  top: 135px;
}

.request-checklist {
  display: grid;
  gap: 12px;
  margin-top: 35px;
}

.request-checklist span {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #b9d4ec;
  font-size: 13px;
}

.request-checklist i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #82e9ff;
  background: rgba(105, 185, 244, 0.12);
  font-style: normal;
  font-size: 9px;
  font-weight: 800;
}

.support-form {
  display: grid;
  gap: 17px;
  border: 1px solid rgba(194, 230, 255, 0.18);
  border-radius: 25px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(20, 73, 146, 0.85), rgba(51, 48, 137, 0.85));
  box-shadow: var(--shadow);
}

.support-form label {
  display: grid;
  gap: 8px;
}

.support-form label > span {
  color: #c9e2f5;
  font-size: 12px;
  font-weight: 700;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border: 1px solid rgba(193, 229, 255, 0.18);
  border-radius: 13px;
  padding: 14px 15px;
  outline: none;
  color: #eaf7ff;
  background: rgba(91, 161, 222, 0.11);
  resize: vertical;
}

.support-form select option {
  color: #eaf7ff;
  background: #153d7e;
}

.support-form input::placeholder,
.support-form textarea::placeholder {
  color: #7fa4cc;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: rgba(113, 226, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}

.form-result {
  min-height: 22px;
  margin: 0;
  color: #9affd7;
  font-size: 12px;
}

.legal-hero {
  padding: 95px 0;
}

.legal-section {
  padding-top: 80px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
}

.legal-layout aside {
  position: sticky;
  top: 130px;
  align-self: start;
  display: grid;
  gap: 9px;
  border: 1px solid rgba(191, 229, 255, 0.16);
  border-radius: 18px;
  padding: 18px;
  background: rgba(35, 79, 148, 0.4);
}

.legal-layout aside strong {
  margin-bottom: 8px;
  color: #7de7ff;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-layout aside a {
  padding: 9px 10px;
  border-radius: 10px;
  color: #b5d0ea;
  font-size: 13px;
}

.legal-layout aside a:hover {
  color: #e8f7ff;
  background: rgba(105, 183, 242, 0.11);
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin: 0 0 14px;
  padding-top: 34px;
  font-size: 28px;
}

.legal-content h2:first-child {
  padding-top: 0;
}

.legal-content p {
  color: #abc7e5;
  line-height: 1.9;
}

.site-footer {
  position: relative;
  padding: 80px 0 25px;
  border-top: 1px solid rgba(191, 228, 255, 0.14);
  background:
    radial-gradient(circle at 8% 0, rgba(34, 211, 238, 0.12), transparent 26%),
    linear-gradient(145deg, #0b3475, #242f7b 55%, #432f86);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.7fr);
  gap: 65px;
}

.footer-brand p {
  max-width: 380px;
  margin: 22px 0;
  color: #a9c6e4;
}

.social-pill {
  border: 1px solid rgba(191, 229, 255, 0.18);
  border-radius: 99px;
  padding: 10px 14px;
  color: #d9f3ff;
  background: rgba(105, 182, 241, 0.1);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-column strong {
  margin-bottom: 9px;
  color: #7fe7ff;
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column button {
  border: 0;
  padding: 0;
  color: #adc9e5;
  background: none;
  cursor: pointer;
  font-size: 13px;
  text-align: left;
}

.footer-column a:hover,
.footer-column button:hover {
  color: #e8f7ff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 65px;
  padding-top: 22px;
  border-top: 1px solid rgba(190, 228, 255, 0.13);
  color: #8eafd1;
  font-size: 11px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 100;
  max-width: min(430px, calc(100% - 30px));
  border: 1px solid rgba(199, 234, 255, 0.25);
  border-radius: 14px;
  padding: 13px 17px;
  color: #e6f8ff;
  background: linear-gradient(90deg, rgba(28, 100, 181, 0.96), rgba(75, 57, 158, 0.96));
  box-shadow: 0 20px 50px rgba(5, 27, 77, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 15px);
  transition: opacity 180ms ease, transform 180ms ease;
  font-size: 12px;
  font-weight: 700;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

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

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

@media (max-width: 1100px) {
  .desktop-nav,
  .panel-link {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: grid;
  }

  .home-hero-grid,
  .service-hero-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-grid {
    gap: 45px;
  }

  .hero-stack {
    width: min(700px, 100%);
    margin: 0 auto;
  }

  .service-grid,
  .feature-card-grid,
  .plan-grid,
  .support-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:last-child,
  .feature-card:last-child,
  .support-card:last-child {
    grid-column: 1 / -1;
  }

  .plan-grid .pricing-card:last-child {
    grid-column: 1 / -1;
    min-height: 470px;
  }

  .pricing-card-featured {
    transform: none;
  }

  .why-grid,
  .faq-shell,
  .request-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .why-copy,
  .faq-copy,
  .request-copy {
    position: static;
  }

  .steps-grid,
  .principle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inner-hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-top {
    grid-template-columns: 1.2fr repeat(3, 0.8fr);
    gap: 35px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
  }

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

  .announcement-inner {
    justify-content: center;
    text-align: center;
  }

  .announcement a {
    display: none;
  }

  .header-actions .button-small {
    display: none;
  }

  .brand-copy {
    display: none;
  }

  .home-hero {
    min-height: auto;
    padding: 72px 0 78px;
  }

  .home-hero-grid,
  .service-hero-grid {
    gap: 42px;
  }

  .hero-copy h1,
  .service-hero h1,
  .inner-hero h1 {
    font-size: clamp(45px, 14vw, 66px);
  }

  .hero-lead,
  .service-hero-copy > p,
  .inner-hero-grid > p {
    font-size: 15px;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    width: 100%;
  }

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

  .hero-trust {
    gap: 18px;
  }

  .hero-stack {
    min-height: 420px;
  }

  .glow-sphere {
    width: 280px;
    height: 280px;
  }

  .orbit-one {
    width: 365px;
    height: 190px;
  }

  .orbit-two {
    width: 410px;
    height: 235px;
  }

  .control-card {
    transform: none;
  }

  .control-body {
    grid-template-columns: 48px 1fr;
    min-height: 300px;
  }

  .control-main {
    padding: 16px;
  }

  .mini-console p {
    font-size: 8px;
  }

  .float-card {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 32px;
  }

  .service-band,
  .why-section,
  .steps-section,
  .service-detail,
  .plans-section,
  .faq-section,
  .principles-section,
  .service-map,
  .request-builder,
  .legal-section {
    padding: 78px 0;
  }

  .service-grid,
  .feature-card-grid,
  .plan-grid,
  .support-card-grid,
  .steps-grid,
  .reason-grid,
  .principle-grid,
  .number-grid,
  .map-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:last-child,
  .feature-card:last-child,
  .support-card:last-child,
  .plan-grid .pricing-card:last-child {
    grid-column: auto;
  }

  .service-card {
    min-height: 430px;
  }

  .why-grid {
    gap: 35px;
  }

  .reason-card,
  .step-card,
  .feature-card,
  .principle-card {
    min-height: 230px;
  }

  .reason-card h3,
  .feature-card h3,
  .step-card h3,
  .principle-card h3 {
    margin-top: 48px;
  }

  .cta-panel {
    min-height: 420px;
    display: grid;
    padding: 28px;
  }

  .cta-panel::after {
    right: -170px;
    bottom: -90px;
  }

  .service-hero,
  .inner-hero {
    padding: 78px 0 85px;
  }

  .code-window pre {
    min-height: 280px;
    padding: 28px 18px;
    font-size: 11px;
  }

  .browser-page {
    min-height: 340px;
    padding: 35px 22px 25px;
  }

  .browser-page h2 {
    font-size: 36px;
  }

  .game-scene {
    min-height: 380px;
  }

  .game-server-card {
    left: 18px;
    right: 18px;
    width: auto;
  }

  .pricing-card {
    min-height: 520px;
  }

  .about-story {
    padding: 80px 0;
  }

  .story-visual {
    min-height: 390px;
  }

  .story-mark {
    width: 150px;
    height: 150px;
  }

  .story-mark img {
    width: 66px;
  }

  .ring-one {
    width: 270px;
    height: 270px;
  }

  .ring-two {
    width: 360px;
    height: 360px;
  }

  .label-one {
    top: 36px;
    right: 24px;
  }

  .label-two {
    left: 2px;
    bottom: 105px;
  }

  .label-three {
    right: 5px;
    bottom: 40px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .legal-layout aside {
    position: static;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 470px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .control-top {
    padding: 0 14px;
  }

  .control-top > div strong {
    font-size: 11px;
  }

  .resource-bars > div {
    grid-template-columns: 34px 1fr 30px;
    gap: 8px;
  }

  .code-bar {
    grid-template-columns: 1fr auto;
  }

  .code-bar strong {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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