@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@200;400;700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  touch-action: manipulation;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #07090f;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  overflow: hidden;
  position: relative;
}

/* ── Ambient Blobs ── */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 15s infinite alternate ease-in-out;
  z-index: 1;
  pointer-events: none;
}

.blob-1 {
  width: clamp(160px, 40vw, 300px);
  height: clamp(160px, 40vw, 300px);
  background: #3b82f6;
  top: -50px;
  left: 20%;
}

.blob-2 {
  width: clamp(200px, 50vw, 400px);
  height: clamp(200px, 50vw, 400px);
  background: #8b5cf6;
  bottom: -100px;
  right: 15%;
  animation-delay: -5s;
}

.blob-3 {
  width: clamp(130px, 30vw, 250px);
  height: clamp(130px, 30vw, 250px);
  background: #10b981;
  top: 40%;
  left: -50px;
  animation-delay: -10s;
  opacity: 0.4;
}

@keyframes float {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 50px) scale(1.1); }
}

/* ── Glass Panel (shared) ── */
.glass {
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.15);
  border-top: 1px solid rgba(255,255,255,0.3);
  border-left: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.1);
  border-radius: 30px;
}