:root {
  --bg-primary: #090b12;
  --bg-secondary: #111522;
  --glass-bg: rgba(255, 255, 255, 0.055);
  --glass-border: rgba(255, 255, 255, 0.14);
  --glass-blur: blur(24px);
  --accent: #ff5e5b;
  --accent-warm: #ff9f68;
  --accent-cool: #6de0d4;
  --accent-glow: rgba(255, 94, 91, 0.35);
  --text-primary: rgba(255, 255, 255, 0.92);
  --text-dim: rgba(255, 255, 255, 0.4);
  --text-muted: rgba(255, 255, 255, 0.2);
  --line: rgba(255, 255, 255, 0.08);
  --progress-fill: linear-gradient(90deg, #ff5e5b, #ff9f68);
  --success: #58f0a2;
  --danger: #ff7d78;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--text-primary);
  background: radial-gradient(1200px 800px at 12% 8%, #1b1f33 0%, transparent 60%),
    radial-gradient(900px 700px at 90% 85%, #2a1820 0%, transparent 56%),
    linear-gradient(160deg, #05060c 0%, #0e111b 100%);
  overflow-x: hidden;
}

h1,
h2,
h3,
p {
  margin: 0;
}

button,
input,
select {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.app-shell {
  position: relative;
  z-index: 1;
}

.bg-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  animation: blobDrift 22s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.bg-blob.blob-a {
  width: 320px;
  height: 320px;
  top: -120px;
  right: -80px;
  background: rgba(255, 94, 91, 0.17);
}

.bg-blob.blob-b {
  width: 420px;
  height: 420px;
  left: -140px;
  bottom: -140px;
  background: rgba(109, 224, 212, 0.12);
}

@keyframes blobDrift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(36px, 28px) scale(1.1);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
