/* Make or Break. Loud, cartoon, cheap-looking on purpose in the way an arcade cabinet is: thick
   black lines, flat colour, hard shadows, nothing subtle. Warm palette only — no blue anywhere. */

:root {
  --cream: #fdf4e3;
  --paper: #fffaf0;
  --ink: #17120f;
  --orange: #f26722;
  --lime: #b8d436;
  --red: #d94f3d;
  --green: #4f9d4f;
  --muted: #6d6055;
  --line: 3px solid var(--ink);
  --pop: 6px 6px 0 var(--ink);
  --pop-sm: 4px 4px 0 var(--ink);
  --page: 1120px;
  --gap: clamp(3.5rem, 8vw, 6.5rem);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: ui-rounded, "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--page); margin: 0 auto; padding: 0 clamp(1rem, 5vw, 2rem); }
section { padding: var(--gap) 0; }

h1, h2, h3 { margin: 0 0 0.6rem; letter-spacing: -0.02em; line-height: 1.02; }
h1 { font-size: clamp(2.7rem, 8vw, 5.5rem); font-weight: 900; text-transform: uppercase; }
h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 900; text-transform: uppercase; }
h3 { font-size: 1.2rem; font-weight: 800; }
p { margin: 0 0 1rem; max-width: 60ch; }
.lead { font-size: clamp(1.0625rem, 2vw, 1.35rem); font-weight: 500; max-width: 46ch; }
.muted { color: var(--muted); }
.big-num { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 900; line-height: 1; }

/* Splash words */
.pop-orange { color: var(--orange); }
.pop-red { color: var(--red); }
.pop-lime { -webkit-text-stroke: 2px var(--ink); color: var(--lime); }
mark { background: var(--lime); padding: 0 0.15em; }

/* Bar */
.top { background: var(--ink); color: var(--cream); position: sticky; top: 0; z-index: 50; }
.top-in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.85rem 0; }
.mark { font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; color: var(--cream); text-decoration: none; font-size: 1.05rem; }
.mark b { color: var(--orange); }
.nav { display: flex; gap: 1.25rem; align-items: center; }
.nav a { color: var(--cream); text-decoration: none; font-weight: 700; font-size: 0.9375rem; }
.nav a:hover { color: var(--lime); }

/* Buttons */
.btn {
  display: inline-block; padding: 1rem 1.75rem; background: var(--orange); color: var(--ink);
  border: var(--line); border-radius: 14px; box-shadow: var(--pop); font-weight: 900;
  text-transform: uppercase; text-decoration: none; font-size: 1rem; letter-spacing: -0.01em;
}
.btn:hover { transform: translate(2px, 2px); box-shadow: var(--pop-sm); }
.btn:active { transform: translate(6px, 6px); box-shadow: none; }
.btn.lime { background: var(--lime); }
.btn.ghost { background: var(--paper); }
.btn.small { padding: 0.6rem 1.1rem; font-size: 0.875rem; box-shadow: var(--pop-sm); }
.btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.75rem; align-items: center; }

/* Hero — full-bleed card, not flush-to-fold, so the JPEG is not clipped */
.hero { background: var(--orange); border-bottom: var(--line); padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3.25rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.hero h1 { color: var(--cream); text-shadow: 5px 5px 0 var(--ink); }
.hero .lead { color: var(--ink); font-weight: 600; }
.hero-art {
  border: var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--pop);
  transform: rotate(-1.5deg);
  background: var(--paper);
  line-height: 0;
}
.hero-art img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}
.pricetag {
  display: inline-block; background: var(--lime); border: var(--line); border-radius: 999px;
  padding: 0.35rem 0.9rem; font-weight: 900; transform: rotate(-3deg); box-shadow: var(--pop-sm);
}

/* Cards and boxes */
.box { background: var(--paper); border: var(--line); border-radius: 18px; box-shadow: var(--pop); padding: clamp(1.5rem, 3vw, 2rem); }
.grid { display: grid; gap: 1.5rem; }
.grid.three { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid.four { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.step-n { display: inline-block; background: var(--ink); color: var(--cream); font-weight: 900; border-radius: 999px; width: 2.1rem; height: 2.1rem; line-height: 2.1rem; text-align: center; margin-bottom: 0.75rem; }

.dark { background: var(--ink); color: var(--cream); border-top: var(--line); border-bottom: var(--line); }
.dark h2 { color: var(--cream); }
.dark .box { background: #221b17; color: var(--cream); }
.dark .muted { color: #b3a79b; }

/* The two outcomes */
.outcomes { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.outcome { border: var(--line); border-radius: 18px; padding: 1.75rem; box-shadow: var(--pop); }
.outcome.make { background: var(--lime); }
.outcome.break { background: var(--red); color: var(--cream); }
.outcome h3 { font-size: 1.6rem; text-transform: uppercase; }
.outcome ul { list-style: none; padding: 0; margin: 1rem 0 0; }
.outcome li { padding: 0.4rem 0 0.4rem 1.6rem; position: relative; font-weight: 600; }
.outcome.make li::before { content: "\2714"; position: absolute; left: 0; }
.outcome.break li::before { content: "\2716"; position: absolute; left: 0; }

/* Board */
table { width: 100%; border-collapse: separate; border-spacing: 0 0.5rem; }
th { text-align: left; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); padding: 0 0.75rem; }
td { background: var(--paper); border-top: var(--line); border-bottom: var(--line); padding: 0.85rem 0.75rem; font-weight: 600; }
td:first-child { border-left: var(--line); border-radius: 12px 0 0 12px; }
td:last-child { border-right: var(--line); border-radius: 0 12px 12px 0; }
.pill { display: inline-block; border: 2px solid var(--ink); border-radius: 999px; padding: 0.1rem 0.6rem; font-size: 0.8125rem; font-weight: 800; }
.pill.made { background: var(--lime); }
.pill.broke { background: var(--red); color: var(--cream); }
.pill.building { background: var(--paper); }

/* FAQ */
details { border: var(--line); border-radius: 14px; background: var(--paper); padding: 1rem 1.25rem; margin-bottom: 0.85rem; box-shadow: var(--pop-sm); }
summary { cursor: pointer; font-weight: 800; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--orange); font-weight: 900; }
details[open] summary::after { content: "\2212"; }
details p { margin: 0.75rem 0 0; color: var(--muted); }

footer { background: var(--ink); color: #b3a79b; padding: 2.5rem 0; font-size: 0.875rem; }
footer a { color: var(--cream); }

.span-2 { grid-column: span 2; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; }
  .span-2 { grid-column: auto; }
  .nav a:not(.btn) { display: none; }
}

/* The stamp. Three moods, used where the page is making a judgement. */
.stamp { display: block; width: clamp(110px, 16vw, 170px); height: auto; }
.stamp.tilt { transform: rotate(-6deg); }
.outcome { position: relative; }
.outcome .stamp { position: absolute; right: -10px; bottom: -18px; width: clamp(92px, 12vw, 130px); }
.outcome ul { padding-right: clamp(90px, 12vw, 130px); }
.mascot-row { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2rem); flex-wrap: wrap; }
