:root {
  --bg: #07111f;
  --bg-alt: #0d1a2d;
  --panel: rgba(12, 22, 38, 0.88);
  --panel-strong: #12233d;
  --line: rgba(148, 163, 184, 0.18);
  --text: #e5eefb;
  --muted: #98abc6;
  --heading: #f8fbff;
  --brand: #3dc7ff;
  --brand-strong: #188dff;
  --accent: #4ff1d2;
  --success: #7ef7a9;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, #08111d 0%, #0a1421 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.008) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.008) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: -2;
}

a {
  color: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(8, 17, 29, 0.92);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  font-weight: 700;
  color: var(--heading);
}

.brand img {
  width: 238px;
  height: auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  color: var(--heading);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  position: relative;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

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

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--heading);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(61, 199, 255, 0.32);
  background: rgba(24, 141, 255, 0.1);
  color: var(--heading);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.8rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(61, 199, 255, 0.16);
  border-radius: 6px;
  background: #0d1727;
  color: #dbe9fb;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 4.8rem 0 3.4rem;
  background:
    linear-gradient(180deg, rgba(8, 17, 29, 0.72), rgba(8, 17, 29, 0.94)),
    url("hero-bg.png") center/cover no-repeat;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(7, 17, 31, 0), rgba(7, 17, 31, 0.98));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(79, 241, 210, 0.28);
  border-radius: 999px;
  background: rgba(9, 18, 31, 0.86);
  color: #d6eef2;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  line-height: 1.02;
}

.hero h1 span,
.page-hero h1 span,
.section-heading h2 span,
.cta-banner h2 span {
  color: var(--brand);
}

.hero p,
.page-hero p {
  max-width: 680px;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.08rem);
  line-height: 1.72;
}

.hero-actions,
.page-hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.activity-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(61, 199, 255, 0.18);
  border-radius: 6px;
  background: rgba(13, 23, 39, 0.82);
  color: var(--muted);
  min-height: 48px;
}

.activity-strip {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 58px;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(79, 241, 210, 0.22);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(79, 241, 210, 0.12), rgba(24, 141, 255, 0.12));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.activity-overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 45;
  pointer-events: none;
}

.activity-overlay .container {
  display: flex;
  justify-content: center;
}

.activity-overlay .activity-strip {
  width: min(100%, 920px);
  pointer-events: auto;
  backdrop-filter: blur(16px);
  background: linear-gradient(135deg, rgba(79, 241, 210, 0.16), rgba(24, 141, 255, 0.18));
  border-color: rgba(79, 241, 210, 0.28);
}

.activity-label {
  color: var(--heading);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.activity-text {
  color: #d9e7fb;
  font-size: 0.95rem;
  line-height: 1.4;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.15rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button {
  color: #04101c;
  background: linear-gradient(135deg, var(--accent), var(--brand));
  box-shadow: var(--shadow);
}

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

.button:hover,
.button-secondary:hover,
.button:focus-visible,
.button-secondary:focus-visible {
  transform: translateY(-1px);
}

.hero-grid,
.stats-grid,
.service-grid,
.plan-grid,
.feature-grid,
.support-grid,
.region-grid,
.legal-links {
  display: grid;
  gap: 1rem;
}

.hero-grid {
  align-items: stretch;
}

.hero-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.8rem;
}

.stat-card,
.service-card,
.plan-card,
.feature-card,
.support-card,
.region-card {
  background: #0d1727;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: none;
}

.stat-card {
  padding: 1rem;
}

.stat-card strong {
  display: block;
  color: var(--heading);
  font-size: 1.5rem;
}

.stat-card span {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.92rem;
}

section {
  padding: 4.25rem 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 1.6rem;
}

.section-heading h2,
.cta-banner h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(1.7rem, 2.9vw, 2.5rem);
  line-height: 1.12;
}

.section-heading p,
.cta-banner p,
.page-intro p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.services {
  background: transparent;
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.service-card,
.feature-card,
.support-card,
.region-card {
  padding: 1.2rem;
  background: #0d1727;
}

.service-card h3,
.feature-card h3,
.plan-card h3,
.support-card h3,
.region-card h3 {
  margin: 0;
  color: var(--heading);
  font-size: 1.15rem;
}

.service-card p,
.feature-card p,
.plan-card p,
.support-card p,
.region-card p,
.list-block li,
.comparison-list li {
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.service-link {
  display: inline-flex;
  margin-top: 1rem;
  color: #cbf6ff;
  text-decoration: none;
  font-weight: 700;
}

.panel-section {
  background: rgba(9, 17, 29, 0.58);
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.plan-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
}

.plan-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.3rem;
  background: #0d1727;
  border: 1px solid var(--line);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.plan-card.featured {
  border-color: rgba(79, 241, 210, 0.42);
  background: #101d31;
}

.plan-tag {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(79, 241, 210, 0.12);
  color: #c5fff5;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.plan-tag.placeholder {
  visibility: hidden;
}

.plan-card h3 {
  min-height: 2.8rem;
  display: flex;
  align-items: flex-end;
}

.plan-card > p {
  min-height: 5.8rem;
}

.plan-card .price {
  min-height: 5rem;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.web-plan-grid .plan-card > p {
  min-height: 5.9rem;
}

.web-plan-grid .plan-card .price {
  min-height: 4.8rem;
}

.game-plan-grid .plan-card > p {
  min-height: 6.8rem;
}

.game-plan-grid .plan-card .price {
  min-height: 5.2rem;
}

.plan-tagline {
  color: #dce8f8;
  font-weight: 600;
}

.plan-billing {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.plan-copy {
  min-height: 88px;
}

.price {
  margin-top: 1rem;
  color: var(--heading);
  font-size: 2.4rem;
  font-weight: 800;
}

.price small {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 600;
}

.list-block,
.comparison-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.plan-card .list-block {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.plan-card .hero-actions {
  display: flex;
  margin-top: auto;
  padding-top: 1.25rem;
  align-items: flex-end;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0d1727;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 0.9rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--heading);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.96rem;
}

.comparison-table td {
  color: var(--muted);
  line-height: 1.6;
}

.comparison-table td:first-child,
.comparison-table th:first-child {
  color: var(--heading);
  font-weight: 700;
  width: 18%;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.list-block li,
.comparison-list li {
  position: relative;
  padding-left: 1.1rem;
}

.list-block li::before,
.comparison-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.trust-layout,
.page-layout,
.comparison-layout,
.support-layout {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.text-panel {
  padding: 1.3rem;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #0d1727;
  box-shadow: none;
}

.text-panel h3 {
  margin: 0;
  color: var(--heading);
  font-size: 1.2rem;
}

.text-panel p + p {
  margin-top: 0.85rem;
}

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

.region-card ul,
.support-card ul,
.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0.95rem 0 0;
}

.region-card li,
.support-card li {
  color: var(--muted);
  line-height: 1.7;
  padding-left: 1rem;
  position: relative;
}

.region-card li::before,
.support-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74rem;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--brand);
}

.support-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.cta-banner {
  padding: 1.5rem;
  border: 1px solid rgba(79, 241, 210, 0.2);
  border-radius: 6px;
  background: #0e1a2c;
  box-shadow: none;
}

.page-hero {
  padding: 2.8rem 0 1.4rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  background: linear-gradient(180deg, rgba(8, 16, 28, 0.96), rgba(8, 16, 28, 0.84));
}

.page-intro {
  max-width: 760px;
}

.comparison-list {
  columns: 2;
  column-gap: 2rem;
}

.comparison-list li {
  break-inside: avoid;
}

.site-footer {
  padding: 3rem 0 6.8rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: #08111d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 1.25rem;
}

.footer-brand p,
.footer-column p {
  color: var(--muted);
  line-height: 1.75;
}

.footer-column h3 {
  margin: 0 0 0.8rem;
  color: var(--heading);
  font-size: 0.98rem;
}

.footer-column a {
  display: block;
  margin-top: 0.7rem;
  text-decoration: none;
  color: var(--muted);
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--heading);
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-page main {
  padding: 3rem 0 5rem;
}

.legal-shell {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 260px 1fr;
}

.legal-aside,
.legal-content {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.legal-aside {
  padding: 1.2rem;
  position: sticky;
  top: 92px;
  height: fit-content;
}

.legal-content {
  padding: 1.8rem;
}

.legal-content h1,
.legal-content h2,
.legal-content h3 {
  color: var(--heading);
}

.legal-content h1 {
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  margin-top: 0;
}

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

.legal-content a {
  color: #c8f8ff;
}

.legal-links {
  grid-template-columns: 1fr;
}

.legal-links a {
  text-decoration: none;
  padding: 0.7rem 0.8rem;
  border-radius: 6px;
  border: 1px solid transparent;
  color: var(--muted);
}

.legal-links a.active,
.legal-links a:hover,
.legal-links a:focus-visible {
  border-color: rgba(79, 241, 210, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--heading);
}

.not-found {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
}

.legal-hero {
  padding: 3rem 0 1.5rem;
  max-width: 860px;
}

.legal-hero h1 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  line-height: 1.05;
}

.legal-hero h1 span {
  color: var(--brand);
}

.legal-hero p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.legal-wrap {
  padding: 1rem 0 4rem;
}

.legal-card {
  background: #0d1727;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.legal-card h2 {
  margin: 0 0 1rem;
  color: var(--heading);
  font-size: 1.7rem;
}

.legal-card h3 {
  margin: 1.6rem 0 0.7rem;
  color: var(--heading);
  font-size: 1.05rem;
}

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

.legal-card ul {
  margin: 0.8rem 0 0 1.15rem;
  padding: 0;
}

.notice {
  background: #0e1a2c;
  border: 1px solid rgba(61, 199, 255, 0.2);
  border-radius: 6px;
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
}

.notice p {
  margin: 0;
}

.meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 0.8rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: none;
  max-width: 980px;
  margin: auto;
  background: rgba(8, 17, 29, 0.98);
  border: 1px solid rgba(61, 199, 255, 0.2);
  border-radius: 6px;
  padding: 1rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.cookie-banner.show {
  display: block;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-text h3 {
  margin: 0 0 0.35rem;
  color: var(--heading);
  font-size: 1rem;
}

.cookie-text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.cookie-text a {
  color: #c8f8ff;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn {
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--heading);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.cookie-btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--brand));
  color: #04101c;
}

@media (max-width: 1100px) {
  .hero-grid,
  .service-grid,
  .plan-grid,
  .feature-grid,
  .support-grid,
  .footer-grid,
  .trust-layout,
  .page-layout,
  .comparison-layout,
  .support-layout,
  .legal-shell {
    grid-template-columns: 1fr 1fr;
  }

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

  .comparison-list {
    columns: 1;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.8rem 1rem 1rem;
    background: rgba(7, 17, 31, 0.98);
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a,
  .site-nav .nav-cta {
    width: 100%;
    margin: 0;
    padding: 0.95rem 0;
  }

  .hero,
  .page-hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .hero-grid,
  .service-grid,
  .plan-grid,
  .feature-grid,
  .support-grid,
  .footer-grid,
  .trust-layout,
  .page-layout,
  .comparison-layout,
  .support-layout,
  .region-grid,
  .legal-shell {
    grid-template-columns: 1fr;
  }

  .brand img {
    width: 208px;
  }

  .legal-aside {
    position: static;
  }

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

  .cookie-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--max));
  }

  .hero {
    padding-bottom: 2.4rem;
  }

  .eyebrow {
    font-size: 0.76rem;
  }

  .hero-actions,
  .page-hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .activity-banner {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .activity-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .activity-overlay {
    bottom: 12px;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  section {
    padding: 4rem 0;
  }

  .cta-banner,
  .text-panel,
  .legal-content {
    padding: 1.2rem;
  }
}
