:root {
  --bg1: #0b1020;
  --bg2: #121a33;
  --text: #f5f7ff;
  --muted: rgba(245, 247, 255, 0.72);
  --line: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, #6b5cff55 0%, transparent 30%),
    radial-gradient(circle at top right, #00d4ff44 0%, transparent 28%),
    radial-gradient(circle at bottom center, #ff4fd833 0%, transparent 35%),
    linear-gradient(135deg, var(--bg1), var(--bg2));
}

.page {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.55;
  pointer-events: none;
  animation: float 10s ease-in-out infinite;
}

.blob1 {
  width: 280px;
  height: 280px;
  background: #6f5cff;
  top: 8%;
  left: 8%;
}

.blob2 {
  width: 220px;
  height: 220px;
  background: #00d4ff;
  right: 10%;
  top: 18%;
  animation-delay: -3s;
}

.blob3 {
  width: 260px;
  height: 260px;
  background: #ff4fd8;
  bottom: 8%;
  left: 18%;
  animation-delay: -6s;
}

.hero {
  position: relative;
  width: min(1100px, 100%);
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(10, 15, 30, 0.5);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.desc {
  max-width: 60ch;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.desc a {
  color: #fff;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

.card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--glass);
  color: #fff;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    transparent 40%,
    rgba(255, 255, 255, 0.08)
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.card:hover::before {
  opacity: 1;
}

.tag {
  display: inline-flex;
  padding: 7px 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.card h2 {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

.card p {
  margin: 10px 0 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.websites {
  background: linear-gradient(
    135deg,
    rgba(111, 92, 255, 0.32),
    rgba(255, 255, 255, 0.08)
  );
}
.android {
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.28),
    rgba(255, 255, 255, 0.08)
  );
}
.windows {
  background: linear-gradient(
    135deg,
    rgba(255, 79, 216, 0.26),
    rgba(255, 255, 255, 0.08)
  );
}

@media (min-width: 760px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-18px) scale(1.05);
  }
}
