:root {
  --paper: #f7f5f0;
  --card: #ffffff;
  --ink: #17140e;
  --muted: #6f6a60;
  --line: #ddd8ce;
  --accent: #e45d62;
  --green: #2f7d64;
}

* { box-sizing: border-box; }

html { color-scheme: light; background: var(--paper); }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(228, 93, 98, 0.08), transparent 34rem),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; }

.site-head {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 28px;
  border-bottom: 1px solid rgba(23, 20, 14, 0.08);
  background: rgba(247, 245, 240, 0.86);
  backdrop-filter: blur(16px);
}

.brand, .back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
}

.brand img { width: 28px; height: 28px; object-fit: contain; }
.back-link { color: var(--muted); font-weight: 600; }
.back-link:hover { color: var(--ink); }

main {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 62px 0 72px;
}

.intro { max-width: 820px; margin: 0 auto 34px; text-align: center; }

.eyebrow {
  color: #8c6d38;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1 {
  margin: 14px 0 13px;
  font-size: clamp(2.1rem, 5vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.lede {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.65;
}

.player-card {
  overflow: hidden;
  border: 1px solid rgba(23, 20, 14, 0.12);
  border-radius: 22px;
  background: #0b1220;
  box-shadow: 0 36px 90px -42px rgba(23, 20, 14, 0.55);
}

video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0b1220;
  object-fit: contain;
}

.player-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 17px;
  background: #101827;
  color: #cbd5e1;
  font-size: 12px;
}

.truth {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.04em;
}

.truth::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #f59e0b; }

.next-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
}

.button.secondary { background: transparent; color: var(--ink); border-color: var(--line); }
.button:hover { transform: translateY(-1px); }

.transcript {
  max-width: 900px;
  margin: 42px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.transcript summary {
  cursor: pointer;
  list-style: none;
  padding: 19px 2px;
  font-weight: 750;
}

.transcript summary::-webkit-details-marker { display: none; }
.transcript summary::after { content: "+"; float: right; color: var(--muted); }
.transcript[open] summary::after { content: "−"; }

.transcript-body { padding: 0 2px 22px; color: var(--muted); line-height: 1.65; }
.transcript-body ol { margin: 0; padding-left: 1.25rem; }
.transcript-body li + li { margin-top: 8px; }
.disclaimer { margin-top: 18px; font-size: 13px; color: #8a6a34; }

@media (max-width: 720px) and (orientation: portrait) {
  .site-head { height: 60px; padding: 0 16px; }
  .back-label { display: none; }
  main { width: min(100% - 24px, 560px); padding: 34px 0 50px; }
  .intro { margin-bottom: 24px; }
  h1 { font-size: clamp(2rem, 11vw, 3.1rem); }
  .player-card { border-radius: 18px; }
  video { aspect-ratio: 4 / 5; max-height: 72vh; }
  .player-note { align-items: flex-start; flex-direction: column; }
  .next-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .button:hover { transform: none; }
}
