/* GLAAS — shared minimal styling. Dumbest version that works: no framework,
   no build step, just a hand-written stylesheet a future Claude can read in
   one pass. Dark, CRT-adjacent palette because the product is analog glitch. */

:root {
  --bg: #0b0b0d;
  --bg-panel: #16161a;
  --fg: #e8e6df;
  --fg-dim: #9a988f;
  --accent: #ff5d3b;   /* warm CRT-orange accent */
  --accent-2: #35d0ba; /* cool phosphor-green-ish secondary */
  --border: #2a2a30;
  --danger: #ff6161;
  font-size: 16px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

header.site {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
}

header.site .logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
  color: var(--accent);
  text-decoration: none;
}

header.site nav a {
  color: var(--fg-dim);
  text-decoration: none;
  margin-left: 1.25rem;
  font-size: 0.9rem;
}

h1 {
  font-size: 1.9rem;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

h2 {
  font-size: 1.15rem;
  color: var(--accent-2);
  margin: 2rem 0 0.75rem;
}

p.lede {
  color: var(--fg-dim);
  font-size: 1.05rem;
  max-width: 55ch;
}

.panel {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.25rem 0;
}

.tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
@media (max-width: 560px) {
  .tiers { grid-template-columns: 1fr; }
}

.tier-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.1rem;
  background: var(--bg-panel);
}
.tier-card h3 { margin: 0 0 0.25rem; font-size: 1rem; }
.tier-card .price { color: var(--accent); font-weight: 700; font-size: 1.3rem; }
.tier-card .fine { color: var(--fg-dim); font-size: 0.82rem; }

.cta {
  display: inline-block;
  background: var(--accent);
  color: #1a0d08;
  font-weight: 700;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
}
.cta:hover { opacity: 0.9; }
.cta.secondary {
  background: transparent;
  border: 1px solid var(--accent-2);
  color: var(--accent-2);
}

label {
  display: block;
  font-size: 0.85rem;
  color: var(--fg-dim);
  margin: 1.1rem 0 0.35rem;
}

input[type="text"],
input[type="email"],
input[type="file"],
select {
  width: 100%;
  background: #0e0e11;
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 0.6rem 0.7rem;
  border-radius: 6px;
  font-size: 0.95rem;
}

input[type="range"] { width: 100%; accent-color: var(--accent); }

.radio-row { display: flex; gap: 1.5rem; margin-top: 0.4rem; }
.radio-row label { display: flex; align-items: center; gap: 0.4rem; margin: 0; color: var(--fg); font-size: 0.95rem; }
.radio-row input { width: auto; }

.price-box {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px dashed var(--accent-2);
  border-radius: 8px;
  font-size: 0.95rem;
}
.price-box .amount { font-size: 1.6rem; font-weight: 700; color: var(--accent-2); }
.price-box .breakdown { color: var(--fg-dim); font-size: 0.8rem; margin-top: 0.4rem; }

.status-line {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--fg-dim);
}
.status-line.error { color: var(--danger); }

button.submit {
  width: 100%;
  margin-top: 1.5rem;
  background: var(--accent);
  color: #1a0d08;
  font-weight: 700;
  border: none;
  padding: 0.85rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}
button.submit:disabled { opacity: 0.5; cursor: not-allowed; }

footer.site {
  margin-top: 3rem;
  color: var(--fg-dim);
  font-size: 0.78rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

code { color: var(--accent-2); }
