* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #ffffff;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.25), transparent 35%),
    radial-gradient(circle at bottom right, rgba(168, 85, 247, 0.25), transparent 35%),
    linear-gradient(135deg, #020617, #0f172a);
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 70px 0 30px;
}

.hero {
  text-align: center;
  margin-bottom: 50px;
}

.badge {
  display: inline-block;
  padding: 8px 18px;
  margin-bottom: 20px;
  border: 1px solid rgba(56, 189, 248, 0.45);
  border-radius: 999px;
  color: #7dd3fc;
  background: rgba(15, 23, 42, 0.75);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1;
  margin-bottom: 18px;
  background: linear-gradient(90deg, #38bdf8, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 680px;
  margin: 0 auto;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.6;
}

.dashboard {
  width: min(760px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 120px;
  padding: 24px 28px;
  border-radius: 24px;
  text-decoration: none;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;

  display: flex;
  align-items: center;
  gap: 22px;
}

.card:hover {
  transform: translateX(8px) scale(1.01);
  border-color: rgba(56, 189, 248, 0.75);
  box-shadow: 0 0 45px rgba(56, 189, 248, 0.25);
}

.icon {
  width: 62px;
  height: 62px;
  min-width: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-size: 32px;
  background: rgba(255, 255, 255, 0.08);
}

.card h2 {
  margin-bottom: 8px;
  font-size: 24px;
}

.card p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.5;
}

footer {
  margin-top: 55px;
  text-align: center;
  color: #64748b;
  font-size: 14px;
}

@media (max-width: 600px) {
  .container {
    padding-top: 45px;
  }

  .card {
    min-height: 180px;
    padding: 24px;
  }

  .hero p {
    font-size: 16px;
  }
}