:root {
  --bg: #e8d5b7;
  --bg-alt: #ddd0ba;
  --card: #f2e6d2;
  --accent: #fc3a52;
  --accent-dark: #e3344a;
  --ink: #2b2b2b;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}
a { color: var(--accent-dark); }
code { background: rgba(0,0,0,0.06); padding: 0.12em 0.4em; border-radius: 4px;
  font-size: 0.92em; font-family: "SFMono-Regular", Menlo, Consolas, monospace; }
.hero {
  background: linear-gradient(rgba(20,10,10,0.62), rgba(20,10,10,0.62)),
              radial-gradient(circle at 30% 20%, #3a2a2a, #140a0a);
  color: #fff;
  text-align: center;
  padding: 4.5rem 1.5rem 4rem;
}
.hero .sprite { width: 96px; height: auto; display: inline-block; vertical-align: middle;
  cursor: pointer; filter: drop-shadow(0 6px 14px rgba(0,0,0,0.45));
  animation: float-sat 4s ease-in-out infinite; }
.hero .sprite.no-float { animation: none; }
.punching { cursor: none !important; }
.caco-guy { position: fixed; top: 0; left: 0; height: 132px; width: auto;
  pointer-events: none; z-index: 9998; transform: translate(-50%, -56%);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5)); }
.hero .voice { position: relative; display: flex; flex-direction: column; align-items: center;
  gap: 0.55rem; margin: 0.9rem auto 0.2rem; cursor: pointer; }
.fist-punch, .fist-follow { position: fixed; top: 0; left: 0; width: 140px; height: auto;
  pointer-events: none; z-index: 9999;
  transform: translate(-80%, -60%); filter: drop-shadow(0 3px 6px rgba(0,0,0,0.5)); }
.fist-follow { display: none; }
.hero .tip { position: absolute; top: calc(100% + 11px); left: 50%;
  transform: translateX(-50%) translateY(4px); background: var(--bg); color: var(--ink);
  padding: 0.5rem 0.85rem; border-radius: 8px; font-size: 0.85rem; line-height: 1.35;
  font-weight: 700; max-width: 270px; text-align: center; white-space: normal;
  box-shadow: 0 10px 26px rgba(0,0,0,0.55); opacity: 0; pointer-events: none;
  transition: opacity 0.08s ease, transform 0.08s ease; z-index: 5; }
.hero .tip::before { content: ""; position: absolute; bottom: 100%; left: 50%;
  transform: translateX(-50%); border: 7px solid transparent; border-bottom-color: var(--bg); }
.hero .voice:hover .tip, .hero .voice:focus-within .tip {
  opacity: 1; transform: translateX(-50%) translateY(0); }
.hero .voice.played .tip { display: none; }
.hero .waveform { display: flex; align-items: center; justify-content: center;
  gap: 2px; height: 48px; }
.hero .waveform i { width: 3px; height: 100%; background: var(--accent);
  border-radius: 2px; transform: scaleY(0.06); transform-origin: center;
  opacity: 0.45; transition: opacity 0.08s linear; }
.hero .waveform i.on { opacity: 1; }
.hero h1 { font-size: 2.6rem; margin: 0.6rem 0 0.3rem; text-shadow: 0 2px 6px rgba(0,0,0,0.5); }
.hero .tagline { font-size: 1.35rem; color: var(--accent); font-weight: 700; margin: 0.2rem auto 1rem; }
.hero p { max-width: 620px; margin: 0 auto; font-size: 1.08rem; opacity: 0.95; }
.hero .punch { margin: 0.35rem auto 0; }
@keyframes float-sat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.content { max-width: 820px; margin: 0 auto; padding: 2.5rem 1.5rem 4rem; }
section { margin-bottom: 2.8rem; }
h2 { font-size: 1.6rem; border-bottom: 3px solid var(--accent); display: inline-block; padding-bottom: 0.15rem; }
.content section > p, .content section > ul li { font-size: 1.12rem; }
.steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; margin-top: 1.2rem; }
.step { background: var(--card); border-radius: 10px; padding: 1.1rem 1.2rem; box-shadow: 0 2px 5px rgba(0,0,0,0.08); }
.step .n { color: var(--accent-dark); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; }
.step h3 { margin: 0.2rem 0 0.4rem; font-size: 1.1rem; }
.step p { margin: 0; font-size: 0.97rem; }
.runs { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; margin-top: 1.2rem; }
.run { background: var(--bg-alt); border-radius: 10px; padding: 1.2rem 1.3rem; border-left: 5px solid var(--accent); }
.run h3 { margin: 0 0 0.3rem; }
.run .when { color: var(--accent-dark); font-weight: 600; font-size: 0.92rem; }
.run .deb { margin: 0.7rem 0 0; font-size: 0.92rem; font-weight: 600; }
.quote { background: var(--card); border-radius: 10px; padding: 1rem 1.3rem; font-style: italic; margin-top: 1rem; }
.postcard { margin: 1.4rem 0 0; text-align: center; }
.postcard img, .postcard video { max-width: 100%; border-radius: 10px; box-shadow: 0 4px 14px rgba(0,0,0,0.25); }
.postcard figcaption { font-size: 0.9rem; opacity: 0.8; margin-top: 0.5rem; }
.links { list-style: none; padding: 0; }
.links li { margin: 0.4rem 0; }
footer { background: var(--bg-alt); text-align: center; padding: 2rem 1.5rem; font-size: 0.92rem; }
footer a { font-weight: 600; }
.credit { max-width: 820px; margin: 0 auto; }
