:root {
  --bg-top: #0d1124;
  --bg-bottom: #08101d;
  --panel: rgba(255,255,255,0.08);
  --text: #f4f1ea;
  --muted: #b4b8c3;
  --rule: rgba(255,255,255,0.12);
  --primary: #0a0dab;
  --secondary: #006b45;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
}

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(100%, 520px);
  padding: 28px;
  border-radius: 28px;
  background: var(--panel);
  border: 1px solid var(--rule);
  backdrop-filter: blur(14px);
}

.kicker {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(40px, 7vw, 58px);
  line-height: 0.95;
  font-weight: 500;
  font-style: italic;
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
}

.lede,
.note {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.meta {
  display: grid;
  gap: 6px;
  padding: 18px 0 14px;
}

.meta-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.meta-value {
  font-size: 16px;
  color: var(--text);
  word-break: break-all;
}

.actions {
  display: grid;
  gap: 12px;
  margin: 22px 0 18px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
}

.button-primary {
  background: var(--primary);
  color: var(--text);
}

.button-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border: 1px solid var(--rule);
}
