* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0c0c0c;
  --surface: #161616;
  --border: rgba(255, 255, 255, 0.06);
  --text: #e4e4e4;
  --muted: #6b6b6b;
  --accent: #7dd3a8;
  --accent-dim: rgba(125, 211, 168, 0.35);
}

body {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
  font-weight: 400;
}

.landing {
  max-width: 640px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

.hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.tagline.glyphs {
  font-size: 1.5rem;
  letter-spacing: 0.4em;
  color: var(--muted);
  margin-top: 0.25rem;
}

.sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.twitch-cta {
  margin-bottom: 2.5rem;
}

.twitch-cta h2 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.twitch-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin-bottom: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.twitch-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.15s, border-color 0.15s, color 0.15s;
}

.btn:hover {
  opacity: 0.85;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.support {
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
}

.support h2 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.support-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.donate-form {
  margin-bottom: 1.25rem;
}

.donate-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.donate-row .currency {
  font-size: 0.9rem;
  color: var(--muted);
}

.donate-form .amount-input {
  width: 6rem;
  padding: 0.6rem 0.75rem;
  font-family: inherit;
  font-size: 0.85rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text);
}

.donate-form .amount-input:focus {
  outline: none;
  border-color: var(--accent-dim);
}

.donate-form .amount-input::placeholder {
  color: var(--muted);
}

.donate-hint {
  font-size: 0.75rem;
  color: var(--muted);
}

.btn-donate {
  background: var(--accent);
  color: var(--bg);
}

.btn-patron {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
}

.btn-patron:hover {
  background: rgba(125, 211, 168, 0.06);
}

footer {
  text-align: center;
  padding: 1.5rem 0;
  color: var(--muted);
  font-size: 1.25rem;
}
