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

:root {
  --bg: #090909;
  --bg-soft: #121212;
  --surface: rgba(18, 18, 18, 0.9);
  --surface-strong: #171717;
  --surface-muted: rgba(28, 28, 28, 0.84);
  --border: rgba(255, 210, 122, 0.18);
  --border-soft: rgba(255, 210, 122, 0.1);
  --shadow: 0 28px 64px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 18px 34px rgba(0, 0, 0, 0.28);
  --text: #f5e7bf;
  --text-soft: #d7c38c;
  --muted: #a79770;
  --muted-2: #877552;
  --primary: #d6a23a;
  --primary-2: #f3d98a;
  --accent: #bb8523;
  --accent-2: #ffd979;
  --danger: #ff6b6b;
  --danger-2: #ff8e53;
  --success: #12b981;
  --success-2: #34d399;
  --dark: #181818;
  --dark-2: #0b0b0b;
  --nav-bg: rgba(11, 11, 11, 0.92);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 26px;
  --radius-xl: 32px;
}

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

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

body {
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(243, 217, 138, 0.18), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(214, 162, 58, 0.14), transparent 18%),
    radial-gradient(circle at bottom right, rgba(255, 230, 160, 0.1), transparent 18%),
    linear-gradient(180deg, #050505 0%, #111111 42%, #080808 100%);
  position: relative;
  animation: pageFade 0.35s ease;
}

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

body::before {
  width: 360px;
  height: 360px;
  top: -120px;
  right: -140px;
  background: rgba(255, 214, 106, 0.12);
}

body::after {
  width: 280px;
  height: 280px;
  left: -120px;
  bottom: 40px;
  background: rgba(193, 146, 41, 0.12);
}

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;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 214, 106, 0.2);
  background: rgba(255, 214, 106, 0.08);
  color: var(--primary-2);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

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

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

  50% {
    opacity: 0.25;
  }
}

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

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