/* maxing.lol — sleek base */

:root {
  --bg: #f3f3f1;
  --bg-2: #ebebe8;
  --surface: rgba(255, 255, 255, 0.72);
  --ink: #0b0b0c;
  --ink-2: #3a3a3c;
  --muted: #8a8a8e;
  --line: rgba(11, 11, 12, 0.08);
  --line-strong: rgba(11, 11, 12, 0.14);
  --signal: #0b0b0c;
  --max: #1ee67a;
  --max-soft: rgba(30, 230, 122, 0.16);
  --danger: #ff3b30;
  --shadow: 0 20px 60px rgba(11, 11, 12, 0.1);
  --radius: 14px;
  --font: "Outfit", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --rail: 200px;
  --leader: 260px;
  --top: 52px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { height: 100%; }

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(900px 480px at 80% -10%, rgba(30, 230, 122, 0.09), transparent 55%),
    radial-gradient(700px 400px at 0% 100%, rgba(11, 11, 12, 0.04), transparent 50%),
    var(--bg);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}

body.is-drawer-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-weight: 560;
  font-size: 0.8125rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.15s var(--ease), background 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}

.btn:active { transform: scale(0.97); }
.btn-sm { padding: 0.4rem 0.75rem; font-size: 0.75rem; }

.btn-ink {
  background: var(--ink);
  color: #fff;
}
.btn-ink:hover { background: #000; }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink);
}
.btn-ghost:hover { background: rgba(11, 11, 12, 0.04); }

.btn-max {
  background: var(--max);
  color: #04140b;
  font-weight: 650;
}
.btn-max:hover { filter: brightness(1.05); }

.form-error { color: var(--danger); font-size: 0.75rem; font-weight: 500; min-height: 1rem; }

.db-banner {
  grid-column: 1 / -1;
  background: #fff8e7;
  border: 1px solid #ead9a8;
  color: #5c4b10;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 500;
}
