:root {
  color-scheme: dark;
  --bg: #08090d;
  --panel: rgba(18, 20, 25, 0.82);
  --panel-strong: rgba(28, 22, 26, 0.94);
  --line: rgba(255, 82, 91, 0.2);
  --text: #fff3f4;
  --muted: #a9a8af;
  --red: #e3101a;
  --red-hot: #ff333d;
  --red-deep: #7b050b;
  --steel: #9fb7c8;
  --amber: #ffb75a;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 12%, rgba(227, 16, 26, 0.28), transparent 28rem),
    radial-gradient(circle at 82% 10%, rgba(159, 183, 200, 0.1), transparent 24rem),
    linear-gradient(180deg, #08090d 0%, #121217 46%, #09090c 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

.page-glow {
  position: fixed;
  inset: auto;
  z-index: -1;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.24;
  pointer-events: none;
}

.page-glow-a {
  top: 12%;
  left: -10rem;
  background: var(--red);
}

.page-glow-b {
  right: -12rem;
  bottom: 16%;
  background: var(--red-deep);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: Orbitron, Inter, system-ui, sans-serif;
  font-weight: 900;
  font-size: 1.18rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  align-items: center;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(227, 16, 26, 0.1);
  box-shadow: 0 0 28px rgba(227, 16, 26, 0.34);
  overflow: hidden;
}

.brand-mark img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-word {
  color: var(--text);
  text-shadow:
    0 0 18px rgba(227, 16, 26, 0.34),
    0 0 1px rgba(255, 255, 255, 0.9);
}

.nav {
  display: flex;
  gap: 1.25rem;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}

.nav a {
  transition: color 180ms ease;
}

.nav a:hover {
  color: var(--text);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.social-link {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(227, 16, 26, 0.08);
  box-shadow: 0 0 22px rgba(227, 16, 26, 0.12);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 82, 91, 0.58);
  background: rgba(227, 16, 26, 0.16);
  box-shadow: 0 12px 34px rgba(227, 16, 26, 0.24);
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta,
.header-web-cta {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(227, 16, 26, 0.1);
  font-weight: 700;
}

.header-web-cta {
  color: var(--text);
  background: linear-gradient(135deg, rgba(255, 82, 91, 0.22), rgba(227, 16, 26, 0.1));
  box-shadow: 0 0 22px rgba(227, 16, 26, 0.14);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.header-web-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 82, 91, 0.58);
  box-shadow: 0 14px 34px rgba(227, 16, 26, 0.24);
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 5rem;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 52px 0 86px;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red-hot);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 1.2rem;
  font-family: Orbitron, Inter, system-ui, sans-serif;
  font-weight: 900;
  max-width: 9ch;
  font-size: clamp(3.4rem, 6.4vw, 6.25rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 0 34px rgba(227, 16, 26, 0.32),
    0 2px 0 rgba(123, 5, 11, 0.8);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.1;
}

.hero-lead,
.section-heading p,
.locations p,
.telegram-cta p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-lead {
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #fff7f7;
  background: linear-gradient(135deg, var(--red-hot), var(--red) 52%, var(--red-deep));
  box-shadow: 0 14px 42px rgba(227, 16, 26, 0.34);
}

.button-secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.button-secondary:hover {
  border-color: rgba(255, 82, 91, 0.5);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-row span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.phone-frame {
  position: relative;
  width: min(430px, 100%);
  min-height: 620px;
  padding: 22px;
  border: 1px solid rgba(255, 82, 91, 0.26);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(58, 22, 28, 0.5), rgba(12, 12, 16, 0.9)),
    url("https://images.unsplash.com/photo-1639322537228-f710d846310a?auto=format&fit=crop&w=900&q=80");
  background-size: cover;
  background-position: center;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.46),
    0 0 70px rgba(227, 16, 26, 0.18);
  overflow: hidden;
}

.phone-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 11, 16, 0.68);
}

.phone-frame > * {
  position: relative;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  color: var(--text);
  font-weight: 800;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red-hot);
  box-shadow: 0 0 18px var(--red-hot);
}

.power-core {
  position: relative;
  display: grid;
  place-items: center;
  height: 300px;
}

.power-core button {
  width: 136px;
  height: 136px;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 30%, rgba(255, 255, 255, 0.35), transparent 30%),
    linear-gradient(145deg, #371216, #09090d);
  box-shadow:
    inset 0 0 24px rgba(255, 255, 255, 0.08),
    0 0 48px rgba(227, 16, 26, 0.42);
}

.power-core button::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  margin: 47px auto;
  border: 5px solid rgba(238, 249, 251, 0.7);
  border-top-color: transparent;
  border-radius: 50%;
}

.power-ring {
  position: absolute;
  border: 1px solid rgba(255, 82, 91, 0.36);
  border-radius: 50%;
  animation: pulse 3.8s ease-in-out infinite;
}

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

.ring-two {
  width: 270px;
  height: 270px;
  animation-delay: 900ms;
}

.server-list {
  position: relative;
  display: grid;
  gap: 10px;
  max-height: 238px;
  padding-right: 8px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 82, 91, 0.7) rgba(255, 255, 255, 0.06);
  mask-image: linear-gradient(180deg, #000 0%, #000 84%, transparent 100%);
}

.server-list::-webkit-scrollbar {
  width: 6px;
}

.server-list::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.server-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg, var(--red-hot), var(--red-deep));
}

.server-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 11, 16, 0.62);
  backdrop-filter: blur(16px);
}

.server-item.active {
  border-color: rgba(255, 82, 91, 0.54);
  box-shadow: 0 0 24px rgba(227, 16, 26, 0.16);
}

.flag {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.server-item strong,
.server-item small {
  display: block;
}

.server-item small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
}

.server-item > span:last-child {
  color: var(--red-hot);
  font-weight: 800;
}

.features,
.pricing,
.faq {
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.feature-card,
.price-card,
.faq details,
.telegram-cta,
.locations {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.feature-card::before,
.price-card::before,
.locations::before,
.telegram-cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(227, 16, 26, 0.26), transparent 38%, rgba(159, 183, 200, 0.1));
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.feature-card:hover::before,
.price-card:hover::before,
.locations:hover::before,
.telegram-cta:hover::before {
  opacity: 1;
}

.feature-card,
.price-card {
  padding: 24px;
}

.feature-card p,
.price-card p,
.faq p {
  color: var(--muted);
  line-height: 1.65;
}

.icon-orbit {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--red-hot);
  border: 1px solid rgba(255, 82, 91, 0.34);
  background: rgba(227, 16, 26, 0.1);
  font-weight: 800;
}

.locations {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
  min-height: 420px;
  padding: 34px;
}

.location-map {
  position: relative;
  min-height: 320px;
  border: 1px solid rgba(255, 82, 91, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 82, 91, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(159, 183, 200, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  overflow: hidden;
}

.location-pill {
  position: absolute;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 16, 22, 0.78);
  box-shadow: 0 0 24px rgba(227, 16, 26, 0.14);
  font-weight: 800;
}

.se { top: 20%; left: 15%; }
.ch { top: 52%; left: 34%; }
.nl { top: 31%; right: 14%; }
.us { bottom: 15%; right: 21%; }

.pulse-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-hot), transparent);
  animation: scan 4s linear infinite;
}

.line-a {
  top: 40%;
  left: 12%;
  width: 72%;
}

.line-b {
  top: 65%;
  left: 18%;
  width: 58%;
  animation-delay: 1.4s;
}

.price-card {
  min-height: 470px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: var(--panel-strong);
  border-color: rgba(255, 82, 91, 0.48);
  transform: translateY(-12px);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.34),
    0 0 70px rgba(227, 16, 26, 0.16);
}

.badge {
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: 7px 10px;
  border-radius: 999px;
  color: #170608;
  background: var(--amber);
  font-weight: 800;
  font-size: 0.78rem;
}

.plan-name {
  color: var(--red-hot);
  font-weight: 800;
  text-transform: uppercase;
}

.price-card h3 {
  margin-bottom: 1rem;
  font-size: 3rem;
}

.price-card h3 span {
  color: var(--muted);
  font-size: 1rem;
}

.price-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 1.6rem;
  padding: 0;
  list-style: none;
  color: var(--text);
}

.price-card li::before {
  content: "✓";
  margin-right: 0.55rem;
  color: var(--red-hot);
}

.price-card .button {
  margin-top: auto;
}

.telegram-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 34px;
}

.telegram-cta div {
  max-width: 720px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
}

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

.faq details {
  padding: 20px 22px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  margin: 14px 0 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 44px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-social {
  width: 38px;
  height: 38px;
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.legal-page {
  padding: 54px 0 86px;
}

.legal-page h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.legal-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--muted);
  font-weight: 800;
  transition: color 180ms ease;
}

.legal-back:hover {
  color: var(--red-hot);
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.legal-meta span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
}

.legal-card {
  max-width: 980px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.32),
    0 0 80px rgba(227, 16, 26, 0.08);
}

.legal-card h2 {
  margin: 34px 0 14px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-card p {
  margin-bottom: 12px;
}

.legal-card ul {
  display: grid;
  gap: 8px;
  margin: 10px 0 18px;
  padding-left: 1.25rem;
}

.legal-card li::marker {
  color: var(--red-hot);
}

.legal-card a {
  color: var(--red-hot);
  font-weight: 800;
}

.legal-footer {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

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

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.75;
  }
}

@keyframes scan {
  0% {
    transform: translateX(-35%);
    opacity: 0;
  }
  25%,
  70% {
    opacity: 1;
  }
  100% {
    transform: translateX(35%);
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

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

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .phone-frame {
    min-height: 560px;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .telegram-cta,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: min(100% - 24px, 1180px);
  }

  .brand-word {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .header-web-cta {
    padding: 10px 12px;
    font-size: 0.84rem;
  }

  .section-shell,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: 3.35rem;
  }

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

  .phone-frame {
    min-height: 520px;
    padding: 16px;
  }

  .locations,
  .telegram-cta {
    padding: 22px;
  }
}
