﻿:root {
  --bg: #041427;
  --panel: #070b10;
  --line: rgba(255, 179, 0, 0.2);
  --blue: #2ea2ff;
  --white: #ffffff;
  --muted: #9ea8b6;
  --ok: #38f8a7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: Rajdhani, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.bg-photo {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image: url("../assets/images/2026-03-30_16.24.36.png");
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  filter: saturate(0.95) blur(1.2px);
  transform: scale(1.03);
}

.bg-vignette {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 42%, rgba(24, 82, 132, 0.24), transparent 58%),
    radial-gradient(circle at 50% 50%, rgba(3, 16, 30, 0.42), #031021 74%);
}

.bg-squares {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.bg-squares span {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1.2px solid rgba(122, 196, 255, 0.36);
  background: rgba(84, 176, 255, 0.08);
  box-shadow: 0 0 10px rgba(61, 153, 231, 0.2);
  opacity: 0.3;
  transform: translate3d(0, 0, 0) rotate(0deg);
  will-change: transform;
}

.bg-squares span:nth-child(1) { left: 11%; top: 68%; animation-delay: 0s; }
.bg-squares span:nth-child(2) { left: 18%; top: 72%; width: 30px; height: 30px; animation-delay: 2s; }
.bg-squares span:nth-child(3) { left: 23%; top: 82%; width: 14px; height: 14px; animation-delay: 3s; }
.bg-squares span:nth-child(4) { left: 67%; top: 76%; width: 34px; height: 34px; animation-delay: 1.5s; }
.bg-squares span:nth-child(5) { left: 59%; top: 84%; width: 16px; height: 16px; animation-delay: 5s; }
.bg-squares span:nth-child(6) { left: 73%; top: 88%; width: 13px; height: 13px; animation-delay: 2.8s; }
.bg-squares span:nth-child(7) { left: 82%; top: 82%; width: 24px; height: 24px; animation-delay: 4s; }
.bg-squares span:nth-child(8) { left: 86%; top: 72%; width: 20px; height: 20px; animation-delay: 6s; }
.bg-squares span:nth-child(9) { left: 32%; top: 16%; width: 28px; height: 28px; animation-delay: 7s; }
.bg-squares span:nth-child(10) { left: 40%; top: 22%; width: 20px; height: 20px; animation-delay: 8s; }
.bg-squares span:nth-child(11) { left: 12%; top: 27%; width: 20px; height: 20px; animation-delay: 9s; }
.bg-squares span:nth-child(12) { left: 93%; top: 50%; width: 16px; height: 16px; animation-delay: 10s; }
.bg-squares span:nth-child(13) { left: 7%; top: 44%; width: 22px; height: 22px; animation-delay: 1.1s; }
.bg-squares span:nth-child(14) { left: 16%; top: 11%; width: 15px; height: 15px; animation-delay: 2.4s; }
.bg-squares span:nth-child(15) { left: 27%; top: 58%; width: 26px; height: 26px; animation-delay: 3.4s; }
.bg-squares span:nth-child(16) { left: 35%; top: 78%; width: 18px; height: 18px; animation-delay: 4.4s; }
.bg-squares span:nth-child(17) { left: 46%; top: 12%; width: 30px; height: 30px; animation-delay: 5.2s; }
.bg-squares span:nth-child(18) { left: 54%; top: 66%; width: 14px; height: 14px; animation-delay: 6.2s; }
.bg-squares span:nth-child(19) { left: 62%; top: 33%; width: 24px; height: 24px; animation-delay: 7.4s; }
.bg-squares span:nth-child(20) { left: 71%; top: 14%; width: 19px; height: 19px; animation-delay: 8.6s; }
.bg-squares span:nth-child(21) { left: 78%; top: 58%; width: 28px; height: 28px; animation-delay: 9.2s; }
.bg-squares span:nth-child(22) { left: 85%; top: 34%; width: 16px; height: 16px; animation-delay: 10.1s; }
.bg-squares span:nth-child(23) { left: 91%; top: 20%; width: 22px; height: 22px; animation-delay: 11.2s; }
.bg-squares span:nth-child(24) { left: 95%; top: 72%; width: 18px; height: 18px; animation-delay: 12.1s; }

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 52px;
  background: rgba(8, 17, 36, 0.94);

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  z-index: 40;
  padding: 0 18px;
}

.brand {
  justify-self: start;
  color: var(--white);
  text-decoration: none;
  font-family: Anton, Montserrat, sans-serif;
  font-size: 2rem;
  letter-spacing: 0.01em;
}

.nav {
  display: flex;
  gap: 1.6rem;
}

.nav a {
  color: #b9c0ca;
  text-decoration: none;
  font-family: Montserrat, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.is-active {
  color: #ffffff;
}

.lang-pill {
  justify-self: end;
  background: linear-gradient(180deg, #17191d, #101215);
  border: 1px solid #3d320f;
  border-radius: 999px;
  color: #e8e8e8;
  height: 36px;
  padding: 0 12px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-family: Montserrat, sans-serif;
  font-size: 0.78rem;
}

.lang-flag {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 14px;
  border-radius: 2px;
  background: linear-gradient(#c10d22 0 33%, #f4c413 33% 66%, #c10d22 66%);
  color: #111;
  font-weight: 800;
  font-size: 0.6rem;
}

main {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  min-height: 95vh;
  padding-top: 74px;
  display: grid;
  place-content: center;
  justify-items: center;
  padding-bottom: 1.5rem;
}

.logo-wrap {
  width: min(560px, 95vw);
  text-align: center;
}

.logo-art {
  text-transform: uppercase;
  line-height: 0.9;
  text-shadow: 0 6px 35px rgba(46, 162, 255, 0.42);
}

.logo-top,
.logo-bottom {
  display: block;
  font-family: Anton, Montserrat, sans-serif;
  letter-spacing: 0.03em;
}

.logo-top {
  font-size: clamp(2.6rem, 11vw, 6.8rem);
  background: linear-gradient(180deg, #b7ecff 0%, #4ec7ff 42%, #1288e2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-bottom {
  margin-top: -8px;
  font-size: clamp(2.3rem, 9.5vw, 6rem);
  background: linear-gradient(180deg, #d4f4ff 0%, #57d8ff 50%, #198ae0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 0.75rem 0 0;
  color: #c4c8cf;
  font-size: 1.08rem;
}

.hero-subtitle::before {
  content: "◆";
  color: rgba(255, 179, 0, 0.28);
  margin-right: 8px;
}

.ip-bar {
  margin-top: 1rem;
  width: min(500px, 95vw);
  border-radius: 999px;
  border: 1px solid #2a240f;
  background: #090c10;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 170px;
  align-items: stretch;
  overflow: hidden;
}

.ip-stack {
  margin-top: 1rem;
  width: min(560px, 95vw);
  display: grid;
  gap: 0.55rem;
}

.ip-stack .ip-bar {
  margin-top: 0;
  width: 100%;
}

.ip-tag {
  display: grid;
  place-items: center;
  padding: 0.7rem 0.55rem;
  font-family: Montserrat, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #9db2c7;
  border-right: 1px solid #2a240f;
}

.ip-value {
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 0.7rem 1rem;
  color: var(--blue);
  font-family: Montserrat, sans-serif;
  letter-spacing: 0.05em;
}

.copy-btn {
  border: 0;
  width: 100%;
  height: 100%;
  border-left: 1px solid #2a240f;
  background: linear-gradient(180deg, #3fb3ff, #248de0);
  color: #06111d;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  padding: 0.76rem 1.1rem;
  cursor: pointer;
}

.online-line {
  margin: 0.7rem 0 0;
  color: #8f98a8;
  font-size: 1rem;
}

.online-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 8px rgba(56, 248, 167, 0.9);
  margin-right: 7px;
  animation: pulse 1.2s infinite;
}

.online-dot.is-offline {
  background: #ff6d79;
  box-shadow: 0 0 8px rgba(255, 109, 121, 0.9);
}

.social-row {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.social-row a,
.shop-link {
  background: transparent;
  border: 0;
  color: #949ba7;
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.74rem;
  text-decoration: none;
  cursor: pointer;
}

.social-row a:hover,
.shop-link:hover {
  color: #ffffff;
}

.shop-row {
  margin-top: 0.9rem;
  display: flex;
  justify-content: center;
}

.shop-cta {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: #031121;
  padding: 0.76rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #67c5ff 0%, #2298f3 100%);
  border: 1px solid rgba(106, 201, 255, 0.9);
  box-shadow: 0 0 24px rgba(46, 162, 255, 0.55), 0 4px 18px rgba(13, 86, 141, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.shop-cta:hover,
.shop-cta:focus-visible {
  transform: translateY(-1px) scale(1.02);
  filter: brightness(1.05);
  box-shadow: 0 0 30px rgba(46, 162, 255, 0.75), 0 8px 22px rgba(13, 86, 141, 0.55);
  outline: none;
}

.team {
  padding: 1.4rem 0 2.2rem;
}

.team h2 {
  margin: 0;
  text-align: center;
  font-family: Anton, Montserrat, sans-serif;
  letter-spacing: 0.03em;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: #2f9dff;
}

.team-line {
  width: 60px;
  height: 3px;
  margin: 0.35rem auto 1.3rem;
  background: #2f9dff;
  border-radius: 999px;
}

.team-grid {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.team-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 179, 0, 0.18);
  background: rgba(4, 8, 13, 0.9);
  min-height: 250px;
  padding: 1.35rem 1.1rem 1.2rem;
  text-align: center;
  display: grid;
  align-content: start;
  justify-items: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.team-card.has-avatar {
  min-height: 320px;
}

.team-card:hover {
  border-color: rgba(118, 177, 255, 0.8);
  border-width: 2.2px;
  box-shadow: 0 0 24px rgba(88, 160, 255, 0.3);
  transform: translateY(-1px);
}

.team-avatar-wrap {
  width: 76px;
  height: 76px;
  border-radius: 16px;
  overflow: hidden;
  background: #121821;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 8px 20px rgba(0, 0, 0, 0.45);
}

.team-avatar {
  width: 100%;
  height: 100%;
  display: block;
  image-rendering: pixelated;
}

.team-card h3 {
  margin: 0.2rem 0 0;
  color: #f3f8ff;
  font-family: Montserrat, sans-serif;
  font-size: 2.05rem;
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: 0;
}

.team-card.has-avatar h3 {
  margin-top: 0.95rem;
}

.team-card .team-role {
  margin: 0.42rem 0 0;
  color: #0698f5;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-family: Montserrat, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.team-card .team-desc {
  margin: 0.78rem auto 0;
  color: #9ea8b7;
  font-family: Montserrat, sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: 0;
  width: min(260px, 100%);
  text-align: left;
}

.faq {
  padding: 2.2rem 0 3.4rem;
}

.faq h2 {
  margin: 0;
  text-align: center;
  font-family: Anton, Montserrat, sans-serif;
  letter-spacing: 0.03em;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: #2f9dff;
}

.faq-line {
  width: 52px;
  height: 3px;
  margin: 0.35rem auto 1.4rem;
  background: #2f9dff;
  border-radius: 999px;
}

.faq-list {
  width: min(860px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  position: relative;
  border-radius: 10px;
  border: 1px solid rgba(255, 179, 0, 0.2);
  background: rgba(6, 10, 15, 0.82);
  transition: border-color 0.6s ease;
}

.faq-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 2.2px solid rgba(88, 160, 255, 0.82);
  box-shadow: 0 0 24px rgba(88, 160, 255, 0.32);
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
  }

  .faq-item.is-open {
  border-color: rgba(88, 160, 255, 0.82);
}

.faq-item.is-open::after {
  opacity: 1;
  transform: scale(1);
}

.faq-q {
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #e8eaee;
  font: 600 clamp(1.25rem, 2.8vw, 2rem)/1.2 Rajdhani, sans-serif;
  text-align: left;
  padding: 0.9rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-q:hover {
  color: #ffffff;
}

.faq-plus {
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 auto;
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #2495f2;
}

.faq-plus::before {
  width: 2px;
  height: 16px;
}

.faq-plus::after {
  width: 16px;
  height: 2px;
}

.faq-item.is-open .faq-plus::before {
  opacity: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: max-height 0.7s ease, opacity 0.6s ease, transform 0.6s ease;
}

.faq-item.is-open .faq-a {
  max-height: 170px;
  opacity: 1;
  transform: translateY(0);
}

.faq-a p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: #bcc6d6;
  font-size: 1rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.modal-content {
  position: relative;
  width: min(520px, calc(100% - 2rem));
  border-radius: 12px;
  border: 1px solid rgba(255, 179, 0, 0.24);
  background: #0a0f15;
  padding: 1rem;
  z-index: 1;
}

.modal-content h3 {
  margin: 0;
  font-family: Montserrat, sans-serif;
}

.modal-content p {
  color: #bec8d7;
}

.modal-content a {
  color: #2ea2ff;
}

.modal-close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.75; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes drift {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-22px) rotate(18deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

@media (max-width: 900px) {
  .topbar {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    height: auto;
    padding: 0.5rem 0.9rem 0.7rem;
  }

  .brand,
  .nav {
    justify-self: center;
  }

  .nav {
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .hero {
    padding-top: 128px;
    min-height: calc(100vh - 40px);
  }

  .logo-wrap {
    width: min(520px, 96vw);
  }

  .social-row {
    max-width: min(680px, 94vw);
  }

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

@media (max-width: 620px) {
  main {
    width: min(1180px, calc(100% - 1.1rem));
  }

  .topbar {
    padding-inline: 0.6rem;
  }

  .brand {
    font-size: 1.6rem;
    line-height: 1;
  }

  .nav a {
    font-size: 0.74rem;
    letter-spacing: 0.03em;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-subtitle {
    text-align: center;
    font-size: 0.95rem;
    padding-inline: 0.35rem;
  }

  .ip-bar {
    width: min(460px, 98vw);
    grid-template-columns: 1fr;
    border-radius: 14px;
  }

  .ip-stack {
    width: min(460px, 98vw);
  }

  .ip-tag {
    width: 100%;
    text-align: center;
    border-right: 0;
    border-bottom: 1px solid #2a240f;
    padding: 0.52rem 0.65rem;
  }

  .ip-value {
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    padding: 0.66rem 0.8rem;
    border-bottom: 1px solid #2a240f;
  }

  .copy-btn {
    width: 100%;
    border-left: 0;
    font-size: 0.78rem;
    padding: 0.7rem 0.8rem;
  }

  .social-row {
    gap: 0.55rem;
    row-gap: 0.45rem;
  }

  .social-row a {
    font-size: 0.68rem;
    padding: 0.2rem 0.08rem;
  }

  .shop-row {
    width: 100%;
    padding-inline: 0.35rem;
  }

  .shop-cta {
    width: min(420px, 100%);
    text-align: center;
    font-size: 0.86rem;
    padding: 0.72rem 1rem;
  }

  .faq {
    padding-top: 1.6rem;
  }

  .team {
    padding-top: 1.2rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 0.62rem;
  }

  .team-card {
    min-height: 220px;
    padding: 1.15rem 0.95rem 1rem;
  }

  .team-card.has-avatar {
    min-height: 290px;
  }

  .team-avatar-wrap {
    width: 70px;
    height: 70px;
    border-radius: 14px;
  }

  .team-card h3 {
    margin-top: 0.1rem;
    font-size: 1.55rem;
  }

  .team-card.has-avatar h3 {
    margin-top: 0.78rem;
  }

  .team-card .team-role {
    font-size: 1rem;
  }

  .team-card .team-desc {
    width: min(250px, 100%);
    font-size: 0.94rem;
    line-height: 1.28;
  }

  .faq-list {
    gap: 0.58rem;
  }

  .faq-q {
    font-size: 1.05rem;
    padding: 0.82rem 0.8rem;
    gap: 0.8rem;
  }

  .faq-a p {
    font-size: 0.92rem;
    padding: 0 0.8rem 0.85rem;
  }

  .faq-plus {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .bg-squares {
    display: none;
  }

  .topbar {
    top: 0;
    padding-top: 0.45rem;
  }

  .brand {
    font-size: 1.45rem;
  }

  .nav {
    gap: 0.5rem;
  }

  .nav a {
    font-size: 0.68rem;
  }

  .hero {
    padding-top: 110px;
  }

  .logo-wrap {
    width: 100%;
  }

  .hero-subtitle {
    font-size: 0.88rem;
  }

  .faq h2 {
    font-size: clamp(1.65rem, 8.5vw, 2.2rem);
  }
}
