:root {
  --bg: #050505;
  --bg-soft: rgba(255, 255, 255, 0.03);
  --bg-softer: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.1);
  --text: rgba(255, 255, 255, 0.96);
  --text-soft: rgba(255, 255, 255, 0.68);
  --text-muted: rgba(255, 255, 255, 0.46);
  --accent: #b14cff;
  --accent-2: #7c3aed;
  --accent-3: #d8b4fe;
  --success: #4ade80;
  --shadow: 0 0 45px rgba(177, 76, 255, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(177, 76, 255, 0.14), transparent 28%),
    radial-gradient(circle at left, rgba(124, 58, 237, 0.10), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 20%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow::before,
.glow::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
}

.glow::before {
  width: 340px;
  height: 340px;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(177, 76, 255, 0.22);
}

.glow::after {
  width: 420px;
  height: 420px;
  right: -120px;
  bottom: -80px;
  background: rgba(124, 58, 237, 0.16);
}

.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(5, 5, 5, 0.62);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(177, 76, 255, 0.34);
  background: linear-gradient(135deg, rgba(177, 76, 255, 0.28), rgba(124, 58, 237, 0.18));
  box-shadow: var(--shadow);
  color: #f3e8ff;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.brand-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.brand-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 14px;
  color: var(--text-soft);
  transition: color .2s ease, opacity .2s ease;
}

.nav a:hover {
  color: var(--accent-3);
}

.hero {
  padding: 64px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(177, 76, 255, 0.25);
  background: rgba(177, 76, 255, 0.10);
  color: #ecd9ff;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 11px;
}

h1 {
  margin: 18px 0 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.hero-accent {
  display: block;
  margin-top: 10px;
  background: linear-gradient(90deg, #f0abfc, #c4b5fd, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead,
.sublead {
  max-width: 760px;
  line-height: 1.9;
  font-size: 17px;
}

.lead {
  margin: 28px 0 0;
  color: var(--text-soft);
}

.sublead {
  margin: 14px 0 0;
  color: var(--text-muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 18px;
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  border-color: rgba(177, 76, 255, 0.45);
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 34px rgba(177, 76, 255, 0.24);
}

.btn-secondary {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.88);
}

.stats {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stat-card,
.panel,
.about-box,
.service-card,
.status-block {
  border: 1px solid var(--border);
  background: var(--bg-soft);
  backdrop-filter: blur(10px);
}

.stat-card {
  padding: 18px;
  border-radius: var(--radius-lg);
}

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.38);
}

.stat-value {
  margin-top: 10px;
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  line-height: 1.5;
}

.panel-wrap {
  width: 100%;
}

.panel {
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.10);
}

.panel-inner {
  border-radius: 28px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid var(--border);
  padding: 24px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.panel-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(240, 171, 252, 0.72);
}

.panel-title {
  margin-top: 8px;
  font-size: 24px;
  font-weight: 600;
}

.status-pill {
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  border: 1px solid rgba(74, 222, 128, 0.22);
  background: rgba(74, 222, 128, 0.10);
  color: #9bf2bb;
  white-space: nowrap;
}

.panel-list {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.panel-item,
.panel-note {
  border-radius: 18px;
  padding: 14px 16px;
  line-height: 1.8;
  font-size: 14px;
}

.panel-item {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  color: rgba(255,255,255,0.74);
}

.panel-note {
  margin-top: 16px;
  border: 1px solid rgba(177, 76, 255, 0.22);
  background: linear-gradient(90deg, rgba(177, 76, 255, 0.08), rgba(124, 58, 237, 0.08));
  color: rgba(255,255,255,0.70);
}

.section {
  padding: 24px 0;
}

.about-box {
  border-radius: var(--radius-xl);
  padding: 32px;
}

.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(240, 171, 252, 0.70);
  margin-bottom: 14px;
}

.about-grid,
.status-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.about-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.about-text,
.status-text,
.service-desc {
  color: var(--text-soft);
  line-height: 1.9;
  font-size: 16px;
}

.services-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 22px;
}

.services-note {
  font-size: 14px;
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  border-radius: 28px;
  padding: 24px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(177, 76, 255, 0.24);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.service-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.service-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.soon-badge,
.dev-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.soon-badge {
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.48);
  color: rgba(255,255,255,0.44);
}

.service-desc {
  margin: 14px 0 0;
  font-size: 15px;
}

.dev-badge {
  margin-top: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(177, 76, 255, 0.22);
  background: rgba(177, 76, 255, 0.10);
  color: rgba(236, 217, 255, 0.88);
  letter-spacing: 0.06em;
  text-transform: none;
  font-size: 12px;
}

.status-block {
  border-radius: var(--radius-xl);
  padding: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  margin-bottom: 72px;
}

.status-grid {
  grid-template-columns: 1fr auto;
}

.launch-card {
  min-width: 160px;
  text-align: center;
  padding: 22px 18px;
  border-radius: 28px;
  border: 1px solid rgba(177, 76, 255, 0.20);
  background: rgba(0, 0, 0, 0.42);
  box-shadow: 0 0 34px rgba(177, 76, 255, 0.10);
}

.launch-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.36);
}

.launch-value {
  margin-top: 10px;
  font-size: 40px;
  line-height: 1;
  color: #ecd9ff;
  font-weight: 700;
}

.launch-sub {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.50);
}

.footer {
  padding: 0 0 42px;
}

.footer-inner {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 14px;
}

@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .status-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .panel-wrap {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: auto;
    padding: 16px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    gap: 18px;
  }

  .hero {
    padding-top: 34px;
  }

  .lead,
  .sublead,
  .about-text,
  .status-text,
  .service-desc {
    font-size: 15px;
  }

  .stats,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-box,
  .panel,
  .status-block {
    padding: 22px;
  }

  .panel-inner {
    padding: 20px;
  }

  .services-head,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}