:root {
  --bg: #09090b;
  --surface: #18181b;
  --border: #27272a;
  --text: #fafafa;
  --muted: #a1a1aa;
  --accent: #f97316;
  --green: #22c55e;
  --venmo: #008cff;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
}
.glow {
  position: fixed; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 40% at 50% -10%, rgba(249,115,22,0.15), transparent);
}
.wrap { max-width: 680px; margin: 0 auto; padding: 1.5rem 1.25rem 3rem; position: relative; }
.nav { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.nav a {
  color: var(--muted); text-decoration: none; font-size: 0.8rem;
  padding: 0.35rem 0.7rem; border: 1px solid var(--border); border-radius: 999px;
}
.nav a:hover, .nav a.active { color: var(--text); border-color: var(--accent); }
.logo { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
h1 { font-size: clamp(1.5rem, 5vw, 2rem); font-weight: 800; line-height: 1.15; margin: 0.4rem 0 0.5rem; }
.tagline { color: var(--muted); margin-bottom: 1.5rem; }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 1rem; padding: 1.25rem; margin-bottom: 1rem;
}
input, textarea, select {
  width: 100%; background: var(--bg); border: 1px solid var(--border);
  border-radius: 0.6rem; color: var(--text); padding: 0.75rem; font-size: 0.95rem; font-family: inherit;
}
input:focus, textarea:focus { outline: none; border-color: var(--accent); }
.btn {
  width: 100%; padding: 0.9rem; border: none; border-radius: 0.75rem;
  font-size: 1rem; font-weight: 700; cursor: pointer; margin-top: 0.75rem;
}
.btn-primary { background: var(--accent); color: #000; }
.btn-venmo { background: var(--venmo); color: #fff; text-decoration: none; display: block; text-align: center; }
.stat-big { font-size: 2.5rem; font-weight: 800; color: var(--green); }
.stat-label { color: var(--muted); font-size: 0.85rem; }
.ad-slot:empty,
.ad-slot.ad-unfilled {
  display: none;
  margin: 0;
  padding: 0;
  border: none;
}
.ad-slot {
  background: var(--surface); border: 1px dashed var(--border);
  border-radius: 0.5rem; padding: 1rem; text-align: center;
  color: #52525b; font-size: 0.75rem; margin: 1.25rem 0;
}
.tip-jar {
  background: rgba(0,140,255,0.08); border: 1px solid rgba(0,140,255,0.25);
  border-radius: 0.75rem; padding: 1rem; text-align: center; margin-top: 1.5rem;
}
.tip-jar p { color: var(--muted); font-size: 0.85rem; margin-bottom: 0.5rem; }
footer { text-align: center; color: #52525b; font-size: 0.72rem; margin-top: 2rem; }
.tool-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0.75rem; margin: 1.5rem 0; }
.tool-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 0.75rem;
  padding: 1.1rem; text-decoration: none; color: var(--text); transition: border-color 0.15s;
}
.tool-card:hover { border-color: var(--accent); }
.tool-card b { display: block; margin-bottom: 0.3rem; }
.tool-card span { color: var(--muted); font-size: 0.82rem; }