:root {
  --bg: #070a12;
  --bg2: #0a0f1f;
  --text: #eaf0ff;
  --muted: rgba(234, 240, 255, 0.75);
  --muted2: rgba(234, 240, 255, 0.6);
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.09);
  --stroke: rgba(255, 255, 255, 0.12);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  --shadow2: 0 20px 70px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
  --accent: #7c5cff;
  --accent2: #37d3ff;
  --accent3: #2ef2a4;
  --focus: rgba(124, 92, 255, 0.6);
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 900px at 20% -10%, rgba(124, 92, 255, 0.35), transparent 55%),
    radial-gradient(1000px 800px at 95% 10%, rgba(55, 211, 255, 0.25), transparent 55%),
    radial-gradient(900px 700px at 55% 110%, rgba(46, 242, 164, 0.18), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--stroke);
  padding: 10px 12px;
  border-radius: 12px;
  z-index: 9999;
}
.skip-link:focus {
  left: 12px;
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 10, 18, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.site-header.is-elevated {
  background: rgba(7, 10, 18, 0.72);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.14), 0 16px 34px rgba(124, 92, 255, 0.18);
}
.brand-name {
  font-size: 14px;
  opacity: 0.95;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-link {
  font-size: 13px;
  color: rgba(234, 240, 255, 0.85);
  padding: 8px 10px;
  border-radius: 12px;
  transition: background 140ms ease, color 140ms ease, transform 140ms ease;
}
.nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(234, 240, 255, 0.95);
}
.nav-link:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.pill {
  border: 0;
  background: transparent;
  color: rgba(234, 240, 255, 0.85);
  font-weight: 600;
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease, color 160ms ease;
}
.pill:hover {
  background: rgba(255, 255, 255, 0.06);
}
.pill.is-active {
  background: rgba(124, 92, 255, 0.22);
  color: rgba(234, 240, 255, 0.98);
}
.pill:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 650;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(234, 240, 255, 0.92);
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}
.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}
.btn:active {
  transform: translateY(0);
}
.btn:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.btn-primary {
  border-color: rgba(124, 92, 255, 0.5);
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.95), rgba(55, 211, 255, 0.75));
  color: #07101f;
}
.btn-primary:hover {
  border-color: rgba(124, 92, 255, 0.65);
  background: linear-gradient(135deg, rgba(124, 92, 255, 1), rgba(55, 211, 255, 0.86));
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
}

.icon-btn {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(234, 240, 255, 0.92);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  cursor: pointer;
}
.icon-btn:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}
.icon-btn-lines {
  display: block;
  width: 18px;
  height: 12px;
  margin: 0 auto;
  position: relative;
}
.icon-btn-lines::before,
.icon-btn-lines::after,
.icon-btn-lines {
  background: transparent;
}
.icon-btn-lines::before,
.icon-btn-lines::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: rgba(234, 240, 255, 0.9);
}
.icon-btn-lines::before {
  top: 0;
}
.icon-btn-lines::after {
  bottom: 0;
}
.icon-btn-lines {
  border-top: 2px solid rgba(234, 240, 255, 0.9);
  border-radius: 2px;
}

.mobile-menu {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(7, 10, 18, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.mobile-menu-inner {
  display: grid;
  gap: 6px;
  padding: 12px 0 18px;
}

/* Hero */
.hero {
  padding: 78px 0 40px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 42px;
}
.eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(234, 240, 255, 0.72);
}
.hero-title {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.hero-subtitle {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
  max-width: 56ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.metric {
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.metric-kicker {
  font-size: 12px;
  color: rgba(234, 240, 255, 0.65);
  margin-bottom: 6px;
}
.metric-value {
  font-size: 13px;
  font-weight: 650;
}

.hero-visual {
  position: relative;
  min-height: 360px;
}
.glass-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow2);
  overflow: hidden;
}
.glass-card-top {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(234, 240, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.glass-card-body {
  padding: 18px 16px 18px;
}
.sparkline {
  height: 86px;
  border-radius: 18px;
  background:
    radial-gradient(140px 90px at 20% 10%, rgba(124, 92, 255, 0.38), transparent 60%),
    radial-gradient(180px 120px at 70% 40%, rgba(55, 211, 255, 0.25), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.sparkline::after {
  content: "";
  position: absolute;
  inset: -60px -40px;
  background: radial-gradient(circle at 30% 60%, rgba(46, 242, 164, 0.22), transparent 45%);
  transform: rotate(10deg);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 16px;
}
.chip {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(234, 240, 255, 0.9);
}
.progress-label {
  font-size: 12px;
  color: rgba(234, 240, 255, 0.75);
  margin-bottom: 8px;
}
.progress-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.progress-bar > span {
  display: block;
  height: 100%;
  width: 78%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124, 92, 255, 0.95), rgba(46, 242, 164, 0.9));
  box-shadow: 0 10px 30px rgba(124, 92, 255, 0.25);
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(0px);
  opacity: 0.85;
}
.orb-1 {
  width: 220px;
  height: 220px;
  right: -40px;
  top: -36px;
  background: radial-gradient(circle at 30% 30%, rgba(124, 92, 255, 0.8), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(55, 211, 255, 0.55), transparent 55%);
  filter: blur(1px);
}
.orb-2 {
  width: 260px;
  height: 260px;
  left: -60px;
  bottom: -70px;
  background: radial-gradient(circle at 30% 40%, rgba(46, 242, 164, 0.55), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(124, 92, 255, 0.45), transparent 55%);
  filter: blur(1px);
}

/* Sections */
.section {
  padding: 64px 0;
}
.section-alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}
.section-title {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.03em;
}
.section-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.card:hover {
  transform: translateY(-2px);
  background: var(--card2);
  border-color: rgba(255, 255, 255, 0.16);
}
.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(124, 92, 255, 0.16);
  border: 1px solid rgba(124, 92, 255, 0.22);
  margin-bottom: 12px;
  font-weight: 800;
}
.card-title {
  margin: 0 0 8px;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.card-text {
  margin: 0;
  color: rgba(234, 240, 255, 0.76);
  font-size: 14px;
}
.card-soft {
  background: rgba(255, 255, 255, 0.03);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.stack {
  display: grid;
  gap: 12px;
}
.feature {
  padding: 18px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
}
.feature-title {
  margin: 0 0 8px;
  font-size: 15px;
}
.feature-text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.timeline {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 14px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 12px 10px;
  border-radius: 16px;
}
.timeline-item + .timeline-item {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.timeline-badge {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 12px;
  color: rgba(7, 10, 18, 0.95);
  background: linear-gradient(135deg, rgba(55, 211, 255, 0.95), rgba(124, 92, 255, 0.85));
}
.timeline-title {
  font-weight: 750;
  margin-bottom: 4px;
}
.timeline-text {
  color: var(--muted);
  font-size: 13px;
}

/* CTA */
.section-cta {
  padding: 72px 0;
}
.cta {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: stretch;
  border-radius: 28px;
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(124, 92, 255, 0.22), transparent 60%),
    radial-gradient(800px 520px at 100% 60%, rgba(46, 242, 164, 0.14), transparent 60%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow2);
  overflow: hidden;
}
.cta-copy {
  padding: 26px 22px;
}
.cta-title {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -0.03em;
}
.cta-text {
  margin: 0 0 16px;
  color: var(--muted);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.cta-note {
  margin: 0;
  font-size: 12px;
  color: var(--muted2);
}
.cta-panel {
  padding: 26px 22px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.cta-list {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}
.cta-item {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  align-items: start;
}
.cta-bullet {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.95), rgba(55, 211, 255, 0.85));
}
.cta-item-text {
  color: rgba(234, 240, 255, 0.86);
}
.cta-tagline {
  font-size: 12px;
  color: rgba(234, 240, 255, 0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Location */
.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
}
.map-card {
  position: relative;
  height: 280px;
  min-height: 280px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}
.map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 22px;
}
.map-label {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(7, 10, 18, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.map-city {
  font-weight: 800;
  letter-spacing: -0.02em;
}
.map-meta {
  font-size: 12px;
  color: var(--muted);
}
.location-title {
  margin: 0 0 8px;
  font-size: 18px;
}
.location-text {
  margin: 0 0 12px;
  color: var(--muted);
}
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 26px 0;
  background: rgba(0, 0, 0, 0.15);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand-footer .brand-name {
  font-size: 13px;
}
.footer-text {
  margin: 10px 0 0;
  color: rgba(234, 240, 255, 0.7);
  font-size: 13px;
}
.footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(234, 240, 255, 0.75);
  font-size: 13px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-link {
  color: rgba(234, 240, 255, 0.88);
  border-bottom: 1px solid transparent;
}
.footer-link:hover {
  border-bottom-color: rgba(234, 240, 255, 0.3);
}
.footer-sep {
  opacity: 0.4;
}

/* Responsive */
@media (max-width: 960px) {
  .nav {
    display: none;
  }
  .icon-btn {
    display: inline-grid;
    place-items: center;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 300px;
  }
  .glass-card {
    margin: 0;
    max-width: 520px;
  }
  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .split {
    grid-template-columns: 1fr;
  }
  .cta {
    grid-template-columns: 1fr;
  }
  .cta-panel {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .location {
    grid-template-columns: 1fr;
  }
  .hero-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--max), calc(100% - 32px));
  }
  .header-inner {
    padding: 12px 0;
  }
  .hero {
    padding: 58px 0 30px;
  }
  .section {
    padding: 52px 0;
  }
  .cards-4,
  .cards-3 {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn,
  .card,
  .nav-link,
  .pill {
    transition: none !important;
  }
}
