:root {
  --bg: #05070f;
  --panel: rgba(8, 11, 22, 0.8);
  --card: rgba(16, 21, 38, 0.78);
  --card-strong: rgba(12, 18, 34, 0.82);
  --text: #eaf0ff;
  --muted: #a7b4cf;
  --accent: #79f2c0;
  --accent-2: #8da3ff;
  --accent-3: #ffd4ff;
  --danger: #f87171;
  --success: #22c55e;
  --radius: 18px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  --max-width: 1160px;
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  background: radial-gradient(circle at 18% 18%, rgba(141, 163, 255, 0.16), transparent 32%),
    radial-gradient(circle at 78% 12%, rgba(121, 242, 192, 0.16), transparent 36%),
    radial-gradient(circle at 70% 80%, rgba(255, 212, 255, 0.12), transparent 32%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  padding: 32px;
  position: relative;
}

.glow {
  position: absolute;
  filter: blur(60px);
  opacity: 0.6;
  z-index: 0;
}

.glow.one {
  width: 320px;
  height: 320px;
  background: #5de4c7;
  top: -40px;
  left: -60px;
}

.glow.two {
  width: 360px;
  height: 360px;
  background: #7c8cf8;
  bottom: -120px;
  right: -80px;
}

.main {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: linear-gradient(160deg, rgba(12, 16, 28, 0.88), rgba(8, 11, 22, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 30px 30px 34px;
  margin: 0 auto 32px;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(93, 228, 199, 0.12);
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.3px;
  width: fit-content;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(93, 228, 199, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.app-icon {
  width: 78px;
  height: 78px;
  border-radius: 20px;
  background: linear-gradient(145deg, #11172b, #0a0f1f);
  box-shadow: 0 18px 46px rgba(92, 132, 255, 0.32);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.app-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: radial-gradient(circle at 30% 30%, rgba(121, 242, 192, 0.2), transparent 40%);
}

.title {
  font-size: 38px;
  margin: 0;
  line-height: 1.12;
}

.brand-kicker {
  margin: 0;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.2px;
}

.lead {
  color: var(--muted);
  margin: 6px 0 12px;
  max-width: 820px;
  font-size: 16px;
}

.grid {
  display: grid;
  gap: 16px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.grid {
  display: grid;
  gap: 16px;
}


.card {
  background: linear-gradient(175deg, rgba(16, 21, 38, 0.8), rgba(10, 14, 28, 0.92));
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
}

.card h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

.card p {
  margin: 0 0 8px;
  color: var(--muted);
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}


.btn {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform 120ms ease, box-shadow 160ms ease, opacity 120ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0a0f1c;
  box-shadow: 0 10px 32px rgba(141, 163, 255, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
}

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

.meta {
  color: var(--muted);
  font-size: 13px;
}

.section {
  margin-top: 22px;
}
.section:first-of-type {
  margin-top: 28px;
}

.panel-strong {
  background: linear-gradient(145deg, rgba(17, 27, 64, 0.95), rgba(11, 16, 35, 0.92));
  border: 1px solid rgba(124, 140, 248, 0.25);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

.stat {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat strong {
  display: block;
  font-size: 18px;
}

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

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-ctas {
  align-items: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  margin: 16px 0;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
}

.list-check li {
  margin: 8px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
  box-shadow: 0 0 0 6px rgba(93, 228, 199, 0.16);
}

.status-ok {
  color: var(--success);
  font-weight: 700;
}

.status-cancel {
  color: var(--danger);
  font-weight: 700;
}

.small {
  font-size: 14px;
  color: var(--muted);
}

.footer {
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

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

@media (max-width: 900px) {
  body {
    padding: 20px;
  }

  .main {
    padding: 24px;
    margin: 0 auto 20px;
  }

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

  .title {
    font-size: 32px;
  }

  .app-icon {
    width: 64px;
    height: 64px;
  }
}
