:root {
  color-scheme: dark;
  --bg: #050816;
  --surface: rgba(18, 31, 63, 0.8);
  --surface-strong: rgba(255, 255, 255, 0.09);
  --text: #f7f9ff;
  --muted: #9bb0ff;
  --accent: #6d7cff;
  --accent-soft: rgba(109, 124, 255, 0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  min-height: 100%;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, rgba(109, 124, 255, 0.32), transparent 26%),
              radial-gradient(circle at bottom right, rgba(86, 255, 182, 0.16), transparent 28%),
              linear-gradient(180deg, #050816 0%, #0d1632 100%);
  color: var(--text);
  overflow: hidden;
}

.page-wrap {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero {
  position: relative;
  z-index: 2;
  max-width: 760px;
  width: 100%;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(10, 18, 42, 0.92), rgba(6, 10, 24, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 3.2rem;
  box-shadow: 0 40px 120px rgba(12, 18, 42, 0.32);
  animation: fadeInUp 1.2s ease both;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--accent);
  background: rgba(109, 124, 255, 0.12);
  margin-bottom: 1.8rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 2.2rem;
}

.details {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.detail-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 1.35rem 1rem;
  text-align: center;
  backdrop-filter: blur(12px);
  animation: popIn 0.9s ease both;
}

.detail-card:nth-child(2) {
  animation-delay: 0.12s;
}

.detail-card:nth-child(3) {
  animation-delay: 0.22s;
}

.detail-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.detail-card span:last-child {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(109, 124, 255, 0.24), rgba(86, 255, 182, 0.16));
  color: #e8efff;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.decorative-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.8;
  animation: float 12s ease-in-out infinite;
}

.blob-1 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(109, 124, 255, 0.28) 0%, rgba(109, 124, 255, 0) 70%);
  top: -80px;
  left: -80px;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(86, 255, 182, 0.22) 0%, rgba(86, 255, 182, 0) 65%);
  right: -140px;
  bottom: -120px;
  animation-delay: 2.3s;
}

.lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 100% 70px;
  opacity: 0.12;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-24px) scale(1.04); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 640px) {
  .hero {
    padding: 2.4rem 1.6rem;
  }

  .details {
    grid-template-columns: 1fr 1fr;
  }

  .detail-card:nth-child(3) {
    grid-column: span 2;
  }
}
