:root{
  --bg: #FFFCF0;
  --card: #FFFCF0;
  --text: #0f172a;
  --muted: #64748b;
  --accent: #2563eb;
  --ring: #e9e2cf;
}
@font-face {
  font-family: "Libre Caslon Display";
  src: url("LibreCaslonDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Light-first palette; add dark mode later if needed */
*{ box-sizing: border-box }
html,body{ height:100% }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height:1.6;
  color:var(--text);
  background: #FFFCF0;
  display:grid;
  place-items:center;
  padding: 12px;
}
.card{
  width: min(920px, 92vw);
  height: min(86vh, 760px);
  background: var(--card);
  border: 0;
  border-radius: 28px;
  box-shadow: none;
  display:flex;
  align-items:center;
  justify-content:center;
  padding-bottom: 0;
}
.note{
  margin: 0 20px;
  text-align: center;
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: clamp(18px, 2.4vw, 22px);
  color: #374151;
}
.note a{ color: inherit; text-decoration: underline; text-underline-offset: 2px }
.note a:hover{ text-decoration-thickness: 2px }
.content{
  max-width:720px;
  background: var(--card);
  border:1px solid var(--ring);
  border-radius:16px;
  padding: 28px 24px;
  box-shadow: 0 6px 18px rgba(2,6,23,0.06);
}
.tagline{
  font-size: clamp(18px, 3.4vw, 22px);
  margin: 8px 0 2px;
}
.status{ color:var(--muted); margin: 0 0 16px }
.actions{ display:flex; gap:12px; flex-wrap:wrap }
.btn{
  appearance:none;
  text-decoration:none;
  color:white;
  background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 90%, white), var(--accent));
  padding:10px 14px;
  border-radius:10px;
  border:1px solid color-mix(in oklab, var(--accent) 30%, black);
  box-shadow: 0 6px 16px rgba(37,99,235,0.35), inset 0 -6px 10px rgba(0,0,0,0.15);
  font-weight:600;
}
.btn:hover{ filter:saturate(1.1) brightness(1.02) }
.link{
  text-decoration:none;
  color:var(--accent);
  border-radius:10px;
  padding:10px 12px;
  border:1px dashed color-mix(in oklab, var(--accent) 35%, transparent);
}
.link:hover{ background: color-mix(in oklab, var(--accent) 7%, transparent) }
.footer{ margin-top:14px; text-align:center; color:var(--muted) }
