:root {
  /* Color */
  --bg: #0a0c11;
  --surface: #14171f;
  --surface-raised: #1c2029;
  --surface-hover: #242834;
  --border: #262b36;
  --accent: #e8b34d;
  --accent-dim: #a67f3a;
  --accent-soft: rgba(232, 179, 77, 0.14);
  --text-primary: #f5f3ee;
  --text-secondary: #9aa0ac;
  --text-tertiary: #656b78;
  --success: #4ade80;
  --danger: #f16063;
  --danger-soft: rgba(241, 96, 99, 0.14);

  /* Type */
  --font: "Manrope", -apple-system, "Segoe UI", sans-serif;

  /* Radius */
  --r-lg: 28px;
  --r-md: 16px;
  --r-sm: 10px;
  --r-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

#app {
  min-height: 100vh;
}

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

button {
  font-family: var(--font);
  border: none;
  cursor: pointer;
  color: inherit;
}

input {
  font-family: var(--font);
  color: inherit;
}

::selection {
  background: var(--accent-soft);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
