@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap");
@import url("./layout.css");
@import url("./components.css");

:root {
  --bg: #08110d;
  --bg-soft: #101b15;
  --surface: rgba(16, 28, 21, 0.88);
  --surface-strong: rgba(22, 36, 28, 0.96);
  --surface-muted: rgba(13, 22, 17, 0.72);
  --border: rgba(197, 255, 85, 0.14);
  --border-soft: rgba(255, 255, 255, 0.06);
  --shadow: 0 26px 60px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 18px 38px rgba(0, 0, 0, 0.28);
  --text: #eff7eb;
  --text-soft: #cad7cb;
  --muted: #92a29a;
  --muted-2: #7a8d83;
  --primary: #c9ff2f;
  --primary-2: #7dff83;
  --accent: #5cf2c5;
  --accent-2: #6ed7ff;
  --danger: #ff7d66;
  --danger-2: #ffb15d;
  --success: #9eff76;
  --dark: #050b08;
  --dark-2: #0b1510;
  --nav-bg: rgba(10, 18, 14, 0.9);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 34px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Space Grotesk", sans-serif;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 14%, rgba(201, 255, 47, 0.16), transparent 21%),
    radial-gradient(circle at 82% 10%, rgba(92, 242, 197, 0.14), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(110, 215, 255, 0.1), transparent 26%),
    linear-gradient(180deg, #040906 0%, #08110d 40%, #0d1712 100%);
  position: relative;
  animation: pageFade 0.35s ease;
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  filter: blur(10px);
}

body::before {
  top: -140px;
  right: -120px;
  width: 340px;
  height: 340px;
  background: linear-gradient(145deg, rgba(201, 255, 47, 0.18), rgba(92, 242, 197, 0.04));
}

body::after {
  left: -100px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  background: linear-gradient(145deg, rgba(110, 215, 255, 0.12), rgba(201, 255, 47, 0.04));
}

body,
button,
input,
select,
textarea {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

canvas {
  max-width: 100%;
}

button,
a {
  color: inherit;
  outline: 0 !important;
}

a {
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  color: inherit;
  text-decoration: none;
}

button:active,
a:active {
  transform: scale(0.98);
}

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

.text-center {
  text-align: center;
}

@keyframes spin {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.28;
  }
}

@keyframes pageFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
