:root {
  --accent: #e8631f;
  --accent-dark: #c94f16;
  --shade: #f2f2f2;
  --shade-dark: #4a4a4a;
  --text: #222;
  --max-w: 640px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: #fff;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

header.site-header {
  padding: 24px;
  text-align: center;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 20px;
}

/* gray shading band — same device TG Edition uses behind title/subtitle/section headers */
.band {
  background: var(--shade);
  padding: 28px 24px;
  text-align: center;
}

.band.dark {
  background: var(--shade-dark);
  color: #fff;
}

.title-stack h1 {
  font-size: 30px;
  font-weight: 900;
  margin: 0 0 6px;
  line-height: 1.15;
}

.title-stack p {
  margin: 0;
  font-size: 15px;
  opacity: 0.85;
}

.section {
  padding: 32px 24px;
  text-align: center;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 36px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn:hover { background: var(--accent-dark); }

form.optin input[type="email"],
form.optin input[type="text"] {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 0 auto 12px;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.covers-grid {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 12px 0 28px;
}

.covers-grid img {
  width: 120px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.disclosure {
  font-size: 12px;
  color: #777;
  padding: 16px 24px 32px;
  text-align: center;
}

.qr-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 0;
}

.qr-block img { width: 110px; height: 110px; }
