:root {
  --ink: #14110f;
  --paper: #faf8f5;
  --accent: #d9410e;
  --muted: #6b625c;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 17px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: 34rem;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}

.stage {
  margin: 0 -1.25rem 1.5rem;
  background: #000;
}

.stage video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 78vh;
  object-fit: cover;
}

h1 {
  font-size: clamp(1.9rem, 7vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.sub { color: var(--muted); margin: 0 0 1.5rem; }

button {
  width: 100%;
  padding: 1.15rem 1rem;
  border: 0;
  border-radius: 0.75rem;
  background: var(--accent);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
}

button:active { transform: translateY(1px); }

.ship {
  margin: 0.6rem 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.bullets {
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.bullets li {
  padding: 0.65rem 0 0.65rem 1.6rem;
  border-bottom: 1px solid #e7e1da;
  position: relative;
}

.bullets li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.fine, .legal { font-size: 0.9rem; color: var(--muted); }
.fine h2 { font-size: 1rem; color: var(--ink); margin: 1.5rem 0 0.35rem; }

.thanks { padding-top: 3rem; }
.thanks .ref { font-size: 1.1rem; }

a { color: var(--accent); }

@media (prefers-color-scheme: dark) {
  :root { --ink: #f5f1ec; --paper: #131110; --muted: #a49a92; }
  .bullets li { border-bottom-color: #2a2622; }
}
