:root {
  --c-bg: #05080f;
  --c-bg-card: #101214;
  --c-bg-elev: #131a30;
  --c-border: rgba(255, 255, 255, 0.06);
  --c-border-strong: rgba(255, 255, 255, 0.12);
  --c-border-blue: rgba(80, 130, 255, 0.35);
  --c-text: #ffffff;
  --c-muted: #b8bdd0;
  --c-muted-2: #7d839d;
  --c-gold: #f4c95d;
  --c-blue: #5ba8f5;
  --c-cta-grad: #5ba8f5;
  --c-cta-grad-hover: #6eb5f7;

  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  --container: 1440px;

  --font-display:
    "Urbanist", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  --font-body:
    "Urbanist", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 0.5em;
  letter-spacing: 0.02em;
}

p {
  margin: 0 0 1em;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.no-scroll {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition:
    transform 0.15s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
  line-height: 1;
}

.btn--primary {
  background: var(--c-cta-grad);
  color: #041018;
  box-shadow: 0 4px 14px rgba(91, 168, 245, 0.3);
}

.btn--primary:hover {
  background: var(--c-cta-grad-hover);
  transform: translateY(-1px);
}

.btn--primary[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.btn--ghost {
  background: transparent;
  color: var(--c-text);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.4);
}
