:root {
  --bg: #0b1120;
  --bg-soft: #111827;
  --surface: rgba(255, 255, 255, .06);
  --surface-strong: rgba(255, 255, 255, .08);
  --border: rgba(255, 255, 255, .12);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --muted-2: #94a3b8;
  --primary: #00e5ff;
  --primary-2: #029cfe;
  --accent: #7a6bff;
  --success: #9be15d;
  --shadow: 0 20px 60px rgba(0, 0, 0, .28);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 229, 255, .08), transparent 30%),
    radial-gradient(circle at top right, rgba(122, 107, 255, .12), transparent 26%),
    linear-gradient(180deg, #08101d 0%, #111827 100%);
  line-height: 1.65;
}

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

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

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

.narrow {
  width: min(calc(100% - 32px), 780px);
  margin: 0 auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(8, 16, 29, .8);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.site-header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

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

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand-copy span {
  font-size: 13px;
  color: var(--muted-2);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  transition: color .2s ease, opacity .2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff;
}

.site-nav a.active {
  background: #2e404e;
  border-radius: 999px;
  padding: 8px 12px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 700;
  color: #03141d;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  border: 1px solid transparent;
  box-shadow: 0 16px 36px rgba(2, 156, 254, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 35px rgba(2, 156, 254, .45);
}

.lang-switcher {
  position: relative;
  margin-left: auto;
}

.lang-switcher select {
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .05);
  color: var(--text);
  border-radius: 999px;
  min-height: 44px;
  padding: 0 42px 0 16px;
  font: inherit;
}

.lang-switcher select option {
  background: #fff;
  color: #000;
}

.lang-switcher-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  min-width: 170px;
  padding: 0 14px 0 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  backdrop-filter: blur(8px);
}

.lang-switcher-toggle:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
}

.lang-switcher-toggle:focus-visible {
  outline: none;
  border-color: rgba(0, 229, 255, .45);
  box-shadow: 0 0 0 4px rgba(0, 229, 255, .12);
}

.lang-switcher-current {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.lang-switcher-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: .8;
  transition: transform .2s ease;
}

.lang-switcher.is-open .lang-switcher-chevron {
  transform: rotate(180deg);
}

.lang-switcher-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  z-index: 50;
  min-width: 220px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #111827;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(.98);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.lang-switcher.is-open .lang-switcher-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-switcher-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
  transition: background .18s ease, color .18s ease;
}

.lang-switcher-option:hover {
  background: rgba(255, 255, 255, .06);
}

.lang-switcher-option.is-active {
  background: rgba(0, 229, 255, .10);
}

.lang-flag {
  flex: 0 0 auto;
  font-size: 18px;
  line-height: 1;
}

.lang-label {
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
}

.lang-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00e5ff;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .05);
  border-radius: 14px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.hero {
  padding: 84px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 229, 255, .08);
  border: 1px solid rgba(0, 229, 255, .18);
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.hero h1,
.page-hero h1 {
  margin: 20px 0 14px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: .98;
  letter-spacing: -.04em;
}

.hero-lead,
.page-lead {
  margin: 0 0 20px 0;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

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

.btn-primary {
  color: #03141d !important;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  box-shadow: 0 16px 36px rgba(2, 156, 254, .28);
}

.btn-secondary {
  background: rgba(255, 255, 255, .06);
  border-color: var(--border);
  color: #fff;
}

.btn-block {
  width: 100%;
}

.hero-points {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points li {
  padding: 10px 14px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
}

.hero-panel,
.feature-box,
.card,
.trust-item,
.contact-card,
.mini-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 28px;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.panel-top img {
  max-height: 40px;
  width: auto;
}

.hero-card-badge {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.badge-live {
  background: rgba(110, 203, 73, .12);
  border: 1px solid rgba(110, 203, 73, .25);
  color: #b7f08a;
}

.badge-upcoming {
  background: rgba(254, 190, 48, .12);
  border: 1px solid rgba(254, 190, 48, .25);
  color: #ffd166;
}

.badge-maintenance {
  background: rgba(250, 103, 128, .12);
  border: 1px solid rgba(250, 103, 128, .25);
  color: #ff9aa9;
}

.pixel-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
  margin: 0 0 24px;
}

.pixel-grid span {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.pixel-grid-link {
  display: block;
  text-decoration: none;
  transition: transform .2s ease;
}

.pixel-grid-link:hover {
  transform: scale(1.02);
}

.pixel-grid .c1 {
  background: #029cfe;
}

.pixel-grid .c2 {
  background: #3bb3ff;
}

.pixel-grid .c3 {
  background: #5e45fd;
}

.pixel-grid .c4 {
  background: #7a6bff;
}

.pixel-grid .c5 {
  background: #00c2b8;
}

.pixel-grid .c6 {
  background: #6ecb49;
}

.pixel-grid .c7 {
  background: #9be15d;
}

.pixel-grid .c8 {
  background: #febb30;
}

.pixel-grid .c9 {
  background: #fe8234;
}

.pixel-grid .c10 {
  background: #ff9f5a;
}

.pixel-grid .c11 {
  background: #fa6780;
}

.pixel-grid .c12 {
  background: #eb308e;
}

.pixel-grid .c13 {
  background: #d759fa;
}

.pixel-grid .c14 {
  background: #00e5ff;
}

.pixel-grid .c15 {
  background: #ffd166;
}

.hero-panel h2,
.section h2,
.feature-box h2,
.cta-panel h2,
.page-main h2,
.faq-item h2 {
  margin: 0 0 12px;
  line-height: 1.1;
}

.hero-panel p,
.card p,
.feature-box p,
.mini-card p,
.trust-item p,
.content-block p,
.contact-card p,
.cta-panel p,
.faq-item p {
  margin: 0 0 20px;
  color: var(--muted);
}

.section {
  padding: 76px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, 0));
}

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

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}

.section-header h2 {
  font-size: clamp(30px, 4.4vw, 52px);
  letter-spacing: -.03em;
  margin: 0 0 14px;
}

.section-header p {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}

.cards {
  display: grid;
  gap: 20px;
}

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

.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  padding: 26px;
}

.card h3,
.mini-card h3,
.trust-item h3 {
  margin: 0 0 10px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-box {
  padding: 30px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 700;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.mini-card {
  padding: 20px;
  border-radius: 20px;
}

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

.trust-item {
  padding: 24px;
  text-align: center;
}

.cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(0, 229, 255, .16), transparent 36%),
    radial-gradient(circle at bottom left, rgba(122, 107, 255, .18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .05));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.page-hero {
  padding: 74px 0 18px;
}

.page-main h1 {
  margin-top: 8px;
}

.content-block+.content-block,
.faq-item+.faq-item {
  margin-top: 26px;
}

.inline-cta {
  margin-top: 30px;
}

.faq-list,
.content-block {
  max-width: 100%;
}

.faq-item,
.contact-card {
  padding: 26px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.contact-card a {
  color: var(--primary);
}

.site-footer {
  margin-top: 20px;
  padding: 56px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
}

.footer-grid h3 {
  margin: 0 0 12px;
  font-size: 16px;
}

.footer-grid p {
  margin: 16px 0 0;
  color: var(--muted);
}

.footer-logo {
  height: 34px;
  width: auto;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

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

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: var(--muted-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    font-size: 14px;
  }
}

@media (max-width: 1080px) {

  .hero-grid,
  .split-grid,
  .trust-grid,
  .footer-grid,
  .cta-panel,
  .cards-3,
  .cards-4 {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cta-panel {
    align-items: flex-start;
  }
}

@media (max-width: 1000px) {
  .site-nav {
    gap: 12px;
  }

  .site-nav a {
    font-size: 13px;
  }
}

@media (max-width: 980px) {
  .site-header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, .05);
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--text);
    border-radius: 2px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    background: rgba(8, 16, 29, .98);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    z-index: 1001;
  }

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

  .site-nav a:not(.nav-cta) {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 12px 14px;
    font-size: 15px;
    line-height: 1.4;
    border-radius: 12px;
    color: var(--text);
    background: transparent;
    transition: background .2s ease, color .2s ease, transform .2s ease;
  }

  .site-nav a:not(.nav-cta):hover {
    background: rgba(255, 255, 255, .05);
  }

  .site-nav a:not(.nav-cta).active {
    background: rgba(255, 255, 255, .06);
    color: #fff;
    padding-left: 16px;
    box-shadow: inset 3px 0 0 var(--primary);
  }

  .site-nav a:not(.nav-cta):hover {
    background: rgba(255, 255, 255, .05);
    color: #fff;
  }

  .site-nav a.active {
    background: rgba(255, 255, 255, .06);
    color: #fff;
    padding-left: 16px;
    box-shadow: inset 3px 0 0 var(--primary);
  }

  .site-nav .nav-cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    margin-top: 10px;

    color: #03141d !important;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(2, 156, 254, .25);
  }

  .header-actions {
    display: none;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-lead,
  .page-lead,
  .section-header p {
    font-size: 17px;
  }

  .cards-4,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .brand-copy span {
    display: none;
  }
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .lang-switcher {
    width: 100%;
    margin-left: 0;
  }

  .lang-switcher-toggle {
    width: 100%;
    min-width: 0;
  }

  .lang-switcher-menu {
    left: 0;
    right: 0;
    min-width: 0;
  }
}

@media (max-width: 560px) {

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

  .lang-switcher select {
    min-height: 40px;
    padding-right: 34px;
  }

  .brand img {
    height: 36px;
  }

  .hero-panel,
  .feature-box,
  .card,
  .contact-card,
  .faq-item {
    padding: 22px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .panel-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card-badge {
    position: static;
    display: inline-block;
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }
}

.site-nav a.active {
  color: #fff;
  background: #2e404e;
  border-radius: 999px;
  padding: 8px 12px;
}

@media (max-width: 980px) {
  .site-nav a.active {
    border-radius: 12px;
  }
}