:root {
  color-scheme: dark;
  --bg: #161711;
  --felt: #1d5a43;
  --felt-deep: #12392e;
  --panel: #f4efe3;
  --panel-strong: #fffaf0;
  --ink: #211f1a;
  --muted: #716b60;
  --line: #cfc4ad;
  --accent: #d69f3f;
  --accent-strong: #f0bd59;
  --danger: #a9413a;
  --card: #fffdf6;
  --shadow: 0 18px 50px rgb(0 0 0 / 0.28);
  --focus: #8ee6c2;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--panel-strong);
  background:
    linear-gradient(135deg, var(--felt-deep), var(--felt) 42%, #20231a);
}

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

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

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

h1,
h2,
h3,
h4,
p,
dl,
dd {
  margin: 0;
}

h1 {
  font-size: 4rem;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  font-size: 1rem;
  line-height: 1.2;
}

h4 {
  color: var(--ink);
  font-size: 0.98rem;
}

.button {
  min-height: 2.75rem;
  border: 2px solid #2a271f;
  border-radius: 8px;
  padding: 0.65rem 0.95rem;
  color: #1f1a10;
  background: var(--accent);
  box-shadow: 0 4px 0 #2a271f;
  font-weight: 800;
}

.button:hover:not(:disabled) {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.button:active:not(:disabled) {
  box-shadow: 0 2px 0 #2a271f;
  transform: translateY(2px);
}

.button:disabled {
  opacity: 0.5;
}

.muted {
  color: var(--muted);
}

.eyebrow {
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  h1 {
    font-size: 2.75rem;
  }
}
