:root {
  --bg: #0d1117;
  --bg-soft: #121826;
  --panel: rgba(17, 23, 35, 0.75);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f7f8fb;
  --muted: #a6b0c3;
  --accent: #46e7c1;
  --accent-2: #ffb443;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 16px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Outfit", sans-serif;
  background: radial-gradient(circle at 10% 0%, #1a2440 0%, transparent 35%),
    radial-gradient(circle at 90% 100%, #312013 0%, transparent 40%), var(--bg);
  color: var(--text);
  position: relative;
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.38;
  z-index: 0;
  pointer-events: none;
}

.bg-glow-1 {
  width: 280px;
  height: 280px;
  background: #4e7dff;
  left: -100px;
  top: 120px;
}

.bg-glow-2 {
  width: 320px;
  height: 320px;
  background: #ffa435;
  right: -140px;
  bottom: 40px;
}

.page {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 32px));
  margin: 28px auto 40px;
}

.hero,
.panel,
.footer {
  backdrop-filter: blur(8px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  padding: 22px;
  align-items: center;
}

.logo-wrap {
  width: 112px;
  height: 112px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.eyebrow {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

h1 {
  margin: 6px 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.15;
}

.subtitle {
  margin: 0;
  color: var(--muted);
}

.panel {
  margin-top: 16px;
  padding: 20px;
}

.panel-head h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
}

.panel-head p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.app-grid {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 14px;
}

.card h3 {
  margin: 0;
  font-size: 1.03rem;
}

.card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.app-main {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-copy {
  min-width: 0;
}

.app-icon {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex: 0 0 auto;
}

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

.btn {
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 13px;
  color: #0a0d14;
  background: linear-gradient(120deg, var(--accent), #91ffdf);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
  box-shadow: 0 8px 24px rgba(70, 231, 193, 0.32);
}

.btn.alt {
  background: linear-gradient(120deg, var(--accent-2), #ffd89b);
  box-shadow: 0 8px 24px rgba(255, 180, 67, 0.27);
}

.btn:hover {
  transform: translateY(-2px);
}

.soon-badge {
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px dashed rgba(255, 255, 255, 0.28);
}

.stat-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

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

.stat p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.stat strong {
  margin-top: 6px;
  display: block;
  font-size: 1.32rem;
  font-family: "Sora", sans-serif;
}

.footer {
  margin-top: 14px;
  padding: 14px 18px;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: fade-up 0.62s ease forwards;
}

.reveal:nth-child(2) {
  animation-delay: 0.1s;
}

.reveal:nth-child(3) {
  animation-delay: 0.18s;
}

.reveal:nth-child(4) {
  animation-delay: 0.26s;
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

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

  .card {
    flex-direction: column;
    align-items: flex-start;
  }

  .app-main {
    width: 100%;
  }
}
