:root {
  --bg: #0A0F17;
  --surface: rgba(15, 20, 30, 0.6);
  --surface-2: #101722;
  --text: #ffffff;
  --muted: #b5b5b5;
  --muted-2: #7A8699;
  --line: rgba(0, 134, 255, 0.1);
  --green: #0086FF;
  --blue: #0086FF;
  --blue-2: #0066FF;
  --silver: #C0C6CF;
  --amber: #C0C6CF;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 20px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 134, 255, 0.13), transparent 30%),
    radial-gradient(circle at 85% 18%, rgba(0, 102, 255, 0.1), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: "Exo 2", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

.site-header {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(10, 15, 23, 0.75);
  border: 1px solid rgba(0, 134, 255, 0.15);
  display: flex;
  height: var(--header-height);
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 5vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

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

.brand-logo {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: block;
  height: 54px;
  object-fit: contain;
  padding: 0;
  width: 228px;
}

.brand-text {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.brand-text strong {
  font-family: Orbitron, "Exo 2", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-text small {
  color: var(--silver);
  font-size: 0.72rem;
  font-weight: 600;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 22px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--text);
  text-shadow: 0 0 16px rgba(0, 134, 255, 0.35);
}

.site-nav .nav-cta {
  background: linear-gradient(90deg, var(--blue-2), var(--blue));
  border: 1px solid rgba(0, 134, 255, 0.32);
  border-radius: 999px;
  color: var(--text);
  padding: 10px 18px;
}

.language-switch {
  align-items: center;
  border-left: 1px solid var(--line);
  display: inline-flex;
  gap: 8px;
  padding-left: 16px;
}

.language-switch a {
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.76rem;
  padding: 6px 8px;
}

.language-switch a.is-active {
  background: rgba(0, 134, 255, 0.12);
  border-color: rgba(0, 134, 255, 0.3);
  color: var(--text);
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  padding: 8px;
}

.nav-toggle span {
  background: var(--text);
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 24px;
}

.section-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
}

.hero {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  min-height: calc(100vh - var(--header-height));
  padding-bottom: 76px;
  padding-top: 76px;
  position: relative;
}

.hero::before {
  background: radial-gradient(circle, rgba(0, 134, 255, 0.15), transparent 58%);
  content: "";
  height: min(58vw, 620px);
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(58vw, 620px);
  z-index: -1;
}

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

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

h1 {
  font-family: "Exo 2", system-ui, sans-serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 24px;
}

h2 {
  font-family: "Exo 2", system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
  margin-bottom: 0;
}

h3 {
  font-family: "Exo 2", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.hero-subtitle {
  color: var(--text);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 600;
  margin-bottom: 18px;
  max-width: 720px;
}

.hero-copy,
.text-block p,
.compliance-card p,
.product-card p {
  color: var(--muted);
  font-size: 1rem;
}

.hero-copy {
  max-width: 690px;
}

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

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover,
.site-nav .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 134, 255, 0.35);
}

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

.btn-primary {
  background: linear-gradient(90deg, var(--blue-2), var(--blue));
  color: var(--text);
}

.btn-secondary {
  background: rgba(0, 134, 255, 0.06);
  border: 1px solid rgba(0, 134, 255, 0.25);
  color: var(--text);
}

.hero-panel,
.product-card,
.contact-panel,
.compliance-card {
  backdrop-filter: blur(10px);
  background: rgba(15, 20, 30, 0.6);
  border: 1px solid rgba(0, 134, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-panel:hover,
.product-card:hover,
.contact-panel:hover,
.compliance-card:hover {
  border-color: rgba(0, 134, 255, 0.22);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.42), 0 0 25px rgba(0, 134, 255, 0.12);
  transform: translateY(-4px);
}

.hero-panel {
  padding: 24px;
}

.status-line {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.9rem;
  gap: 10px;
  margin-bottom: 20px;
}

.status-dot {
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(0, 134, 255, 0.8);
  height: 9px;
  width: 9px;
}

.signal-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.signal-grid div,
.platform-card {
  background: rgba(10, 15, 23, 0.44);
  border: 1px solid rgba(0, 134, 255, 0.1);
  border-radius: 16px;
  padding: 18px;
}

.signal-grid strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
}

.signal-grid span,
.platform-card {
  color: var(--muted);
  font-size: 0.9rem;
}

.platform-card {
  margin-top: 14px;
}

.platform-card.muted {
  border-left: 3px solid var(--blue);
}

.progress-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  height: 8px;
  margin-top: 14px;
  overflow: hidden;
}

.progress-track span {
  animation: pulseWidth 4s ease-in-out infinite;
  background: linear-gradient(90deg, var(--blue-2), var(--blue));
  border-radius: inherit;
  display: block;
  height: 100%;
  width: 74%;
}

.content-section,
.compliance {
  padding-bottom: 92px;
  padding-top: 26px;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 30px;
  max-width: 780px;
}

.text-block {
  backdrop-filter: blur(10px);
  background: rgba(15, 20, 30, 0.42);
  border-left: 3px solid var(--blue);
  border-radius: 0 20px 20px 0;
  max-width: 920px;
  padding: 26px 28px;
}

.text-block p:last-child,
.product-card p:last-child,
.compliance-card p:last-child {
  margin-bottom: 0;
}

.product-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
  min-height: 310px;
  padding: 28px;
  position: relative;
}

.product-card.accent {
  border-color: rgba(0, 102, 255, 0.2);
}

.product-icon {
  align-items: center;
  background: rgba(10, 15, 23, 0.5);
  border: 1px solid rgba(0, 134, 255, 0.16);
  border-radius: 16px;
  display: inline-flex;
  height: 52px;
  justify-content: center;
  margin-bottom: 22px;
  overflow: hidden;
  padding: 5px;
  width: 52px;
}

.product-icon img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.accent .product-icon {
  border-color: rgba(0, 102, 255, 0.24);
}

.text-link {
  color: var(--green);
  display: inline-flex;
  font-weight: 800;
  margin-top: 12px;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.text-link:hover {
  text-shadow: 0 0 18px rgba(0, 134, 255, 0.45);
}

.tech-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tech-grid span {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--text);
  font-weight: 700;
  min-height: 68px;
  padding: 20px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.tech-grid span:hover {
  border-color: rgba(0, 134, 255, 0.24);
  box-shadow: 0 0 25px rgba(0, 134, 255, 0.12);
  transform: translateY(-4px);
}

.compliance-card {
  border-color: rgba(0, 134, 255, 0.22);
  padding: clamp(28px, 5vw, 46px);
}

.contact-panel {
  padding: 28px;
}

.contact-panel dl {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.contact-panel div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.contact-panel dt {
  color: var(--muted-2);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.contact-panel dd {
  color: var(--text);
  margin: 0;
}

.contact-panel a:hover {
  color: var(--green);
}

.site-footer {
  background: rgba(10, 15, 23, 0.74);
  border-top: 1px solid rgba(0, 134, 255, 0.15);
  padding: 32px clamp(20px, 5vw, 72px);
}

.footer-inner {
  align-items: center;
  color: var(--muted);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 12px;
}

.footer-logo {
  border-radius: 0;
  box-shadow: none;
  height: 42px;
  object-fit: contain;
  width: 180px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

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

.legal-page {
  min-height: 100vh;
}

.legal-main {
  margin: 0 auto;
  max-width: 920px;
  padding: 64px clamp(20px, 5vw, 72px) 92px;
}

.legal-main h1 {
  font-family: "Exo 2", system-ui, sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 700;
}

.legal-main h2 {
  font-family: "Exo 2", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 34px;
}

.legal-main p,
.legal-main li {
  color: var(--muted);
}

.legal-main a {
  color: var(--green);
  font-weight: 700;
}

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

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

@keyframes pulseWidth {
  0%,
  100% {
    width: 68%;
  }
  50% {
    width: 86%;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    backdrop-filter: blur(12px);
    background: rgba(10, 15, 23, 0.96);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 16px 20px 22px;
    position: absolute;
    right: 0;
    top: var(--header-height);
  }

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

  .site-nav a {
    padding: 13px 0;
    width: 100%;
  }

  .language-switch {
    border-left: 0;
    border-top: 1px solid var(--line);
    margin-top: 8px;
    padding-left: 0;
    padding-top: 14px;
    width: 100%;
  }

  .language-switch a {
    width: auto;
  }

  .site-nav .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

}

@media (max-width: 680px) {
  .site-header {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-text small {
    display: none;
  }

  .brand-logo {
    height: 44px;
    width: 184px;
  }

  .hero {
    gap: 34px;
    padding-bottom: 58px;
    padding-top: 52px;
  }

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

  .product-grid,
  .contact-panel dl,
  .signal-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .content-section,
  .compliance {
    padding-bottom: 68px;
  }

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

  .footer-inner nav {
    justify-content: flex-start;
  }
}
