:root {
  --paper: #ffffee;
  --ink: #111;
  --red: #c41e3a;
  --panel: #fff;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--paper); color: var(--ink); }
body {
  font-family: "Comic Neue", "Comic Sans MS", "Chalkboard SE", cursive, sans-serif;
  min-height: 100vh;
  border-top: 8px solid var(--red);
}
a { color: inherit; }
.wrap { width: min(980px, 92vw); margin: 0 auto; }
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4vw 8px;
  gap: 16px;
}
.brand {
  font-weight: 800;
  font-size: 28px;
  text-decoration: none;
  color: var(--red);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  font-weight: 700;
  font-size: 18px;
}
nav a { text-decoration: none; }
nav a:hover { text-decoration: underline; }
.hero { text-align: center; padding: 18px 0 40px; }
h1 {
  font-size: clamp(64px, 14vw, 120px);
  line-height: 0.9;
  letter-spacing: -2px;
  color: var(--red);
  text-shadow: 4px 4px 0 #111;
}
.tag {
  margin: 8px auto 18px;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: 2px;
}
.face {
  width: min(640px, 92vw);
  margin: 8px auto 22px;
  display: block;
  background: #fff;
  border: 4px solid #111;
}
.btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
  padding: 12px 28px;
  border: 3px solid #111;
}
.btn:hover { background: #111; }
.btn.disabled { opacity: 0.7; cursor: default; }
section { padding: 48px 0; }
h2 {
  font-size: clamp(36px, 6vw, 64px);
  color: var(--red);
  text-align: center;
  margin-bottom: 18px;
  text-shadow: 2px 2px 0 #111;
}
.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}
.about p {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 14px;
}
.about img {
  width: min(280px, 100%);
  margin: 0 auto;
  display: block;
  border: 4px solid #111;
  background: #fff;
}
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.card {
  background: var(--panel);
  border: 3px solid #111;
  padding: 18px;
}
.card h3 { font-size: 22px; margin-bottom: 8px; }
.card p { font-size: 17px; font-weight: 700; line-height: 1.35; }
.token { text-align: center; }
.token .num {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: var(--red);
  margin: 8px 0 16px;
}
.token p { font-size: 20px; font-weight: 700; }
.phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}
.phase {
  background: #111;
  color: #fff;
  padding: 22px 12px;
  font-weight: 800;
  font-size: 22px;
}
.phase span { display: block; color: var(--red); font-size: 14px; margin-bottom: 8px; }
.disclaimer {
  padding: 10px 0 48px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  max-width: 760px;
  margin: 0 auto;
  opacity: 0.85;
}
.ca {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
  word-break: break-all;
}
footer { text-align: center; padding: 0 0 28px; font-weight: 800; color: var(--red); }
@media (max-width: 720px) {
  nav ul { display: none; }
  .about, .steps, .phases { grid-template-columns: 1fr; }
}

.origin {
  margin-top: 36px;
  text-align: center;
}
.origin figcaption {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 10px;
}
.origin img {
  width: 100%;
  max-width: 720px;
  background: #fff;
  border: 4px solid #111;
  display: block;
  margin: 0 auto;
}
