:root {
  --bg: #070b17;
  --bg2: #0b1220;
  --text: #e6e9f0;
  --muted: #a9b0c3;
  --card: rgba(255, 255, 255, 0.05);
  --card-b: rgba(255, 255, 255, 0.12);
  --ring: rgba(255, 255, 255, 0.18);
  --b1: #38bdf8;
  --b2: #7c3aed;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, "Helvetica Neue", Arial;
  color: var(--text);
  background: radial-gradient(
      1000px 500px at 80% -10%,
      rgba(56, 189, 248, 0.15),
      transparent
    ),
    radial-gradient(
      800px 400px at 20% -10%,
      rgba(124, 58, 237, 0.18),
      transparent
    ),
    linear-gradient(to bottom, var(--bg2), var(--bg));
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(1.2) blur(8px);
  background: rgba(7, 11, 23, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 6px 18px rgba(124, 58, 237, 0.25));
}
.nav {
  display: none;
  gap: 24px;
  align-items: center;
}
.nav a {
  color: #c8cfe4;
  font-size: 14px;
}
.nav a:hover {
  color: #fff;
}
.lang {
  display: flex;
  gap: 8px;
  align-items: center;
}
.lang button {
  border: 1px solid var(--ring);
  background: rgba(255, 255, 255, 0.06);
  color: #cfe2ff;
  padding: 6px 10px;
  border-radius: 12px;
  font-size: 12px;
  cursor: pointer;
}
.lang button.active {
  background: linear-gradient(90deg, var(--b1), var(--b2));
  color: #0a0f1a;
  border-color: transparent;
}
.hamb {
  display: inline-flex;
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--ring);
  background: rgba(255, 255, 255, 0.06);
}
.mobile {
  display: none;
  gap: 8px;
  margin-top: 12px;
}
.mobile.open {
  display: grid;
}
@media (min-width: 768px) {
  .nav {
    display: flex;
  }
  .hamb {
    display: none;
  }
  #mobile {
    display: none !important;
  }
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: #9aa3bb;
}
.hero {
  padding: 64px 0 96px;
}
.hero-grid {
  display: grid;
  gap: 32px;
}
.hero-text {
  margin-top: 16px;
  display: grid;
  gap: 12px;
  font-size: 18px;
}
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}
.gradient {
  background: linear-gradient(90deg, var(--b1), var(--b2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
}
.cta {
  padding: 10px 16px;
  border-radius: 16px;
  font-weight: 600;
  background: linear-gradient(90deg, var(--b1), var(--b2));
  color: #0a0f1a;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.25);
}
.ghost {
  padding: 10px 16px;
  border-radius: 16px;
  font-weight: 600;
  border: 1px solid var(--ring);
}
.dots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  font-size: 14px;
  color: #b9c0d4;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--b1), var(--b2));
  display: inline-block;
  margin-right: 8px;
}
.card {
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: 24px;
  padding: 20px;
}
.glass {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.center {
  text-align: center;
}
.section {
  padding: 80px 0;
}
.cards {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 840px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.small {
  font-size: 14px;
}
.center-row {
  justify-content: center;
}
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 0;
  color: #aeb6cb;
}
.footer-grid {
  display: grid;
  gap: 24px;
}
.foot-title {
  color: #dfe4f4;
  font-weight: 600;
}
.foot-addr {
  font-style: normal;
  color: #b7bed3;
}
.copy {
  text-align: center;
  font-size: 12px;
  margin-top: 24px;
}
.logo-lg {
  height: 80px;
  margin: 0 auto;
}
