:root {
  --bg: #fbf7f1;
  --paper: #ffffff;
  --ink: #1f2a44;
  --muted: #5b6478;
  --line: #ece4d8;
  --pink: #e0457b;
  --blue: #3f7fe0;
  --green: #3aa76d;
  --orange: #f08a2c;
  --purple: #8a5cd6;
  --radius: 20px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 18px/1.65 "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
h1, h2, h3, .brand { font-family: "Fredoka", "Nunito", sans-serif; letter-spacing: -0.3px; }
h1 { font-size: clamp(34px, 6vw, 56px); line-height: 1.08; margin: 0 0 20px; }
h2 { font-size: clamp(26px, 4vw, 36px); line-height: 1.15; margin: 0 0 16px; }
h3 { font-size: 21px; margin: 0 0 6px; }
p { margin: 0 0 16px; color: var(--muted); }
a { color: inherit; }
img { max-width: 100%; display: block; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }

/* Nav */
nav { position: sticky; top: 0; z-index: 10; background: rgba(251,247,241,0.92);
      backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { font-weight: 700; font-size: 28px; text-decoration: none; }
.brand span:nth-child(1) { color: var(--blue); }
.brand span:nth-child(2) { color: var(--pink); }
.brand span:nth-child(3) { color: var(--orange); }
.brand span:nth-child(4) { color: var(--green); }
nav ul { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; font-weight: 700; font-size: 16px; }
nav ul a { text-decoration: none; color: var(--muted); }
nav ul a:hover, nav ul a[aria-current] { color: var(--ink); }
@media (max-width: 640px) { nav ul { gap: 14px; font-size: 15px; } nav ul .hide-sm { display: none; } }

/* Buttons */
.btn { display: inline-block; padding: 14px 26px; border-radius: 999px; font-weight: 800;
       text-decoration: none; background: var(--ink); color: var(--bg); border: 0; font-size: 17px; }
.btn.alt { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--ink); }
.btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* Hero */
.hero { padding: 96px 0 72px; }
.hero .eyebrow { display: inline-block; font-weight: 800; font-size: 14px; letter-spacing: 1px;
                 text-transform: uppercase; color: var(--pink); margin-bottom: 18px; }
.hero p.lead { font-size: 21px; max-width: 620px; }

/* Cards */
.grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.card .dot { width: 14px; height: 14px; border-radius: 50%; margin-bottom: 14px; }
.card p { font-size: 16px; margin: 0; }
.tag { display: inline-block; font-size: 13px; font-weight: 800; color: var(--muted);
       background: var(--bg); border-radius: 999px; padding: 3px 10px; margin-top: 12px; }

/* How it works */
.steps { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); counter-reset: s; }
.steps .card::before { counter-increment: s; content: counter(s); display: grid; place-items: center;
  width: 36px; height: 36px; border-radius: 50%; background: var(--ink); color: var(--bg);
  font-family: "Fredoka", sans-serif; font-weight: 700; margin-bottom: 14px; }

/* Map */
.map { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.map figure { margin: 32px 0 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map figcaption { font-size: 15px; color: var(--muted); padding: 12px 4px 0; }

/* Founder */
.founder { display: grid; gap: 40px; grid-template-columns: 1fr 1.4fr; align-items: center; }
.founder .portrait { aspect-ratio: 4 / 5; border-radius: var(--radius); background:
  linear-gradient(135deg, #fde7ef, #e6effd); display: grid; place-items: center;
  font-family: "Fredoka", sans-serif; font-size: 88px; color: var(--pink); }
.founder .photo { width: 100%; border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; }
@media (max-width: 760px) { .founder { grid-template-columns: 1fr; } .founder .portrait { max-width: 320px; } }
blockquote { margin: 0 0 20px; padding-left: 18px; border-left: 4px solid var(--pink); }
blockquote p { color: var(--ink); font-size: 20px; }

/* Shop */
.product { display: grid; gap: 32px; grid-template-columns: 1fr 1fr; align-items: start; }
@media (max-width: 760px) { .product { grid-template-columns: 1fr; } }
.box-art { aspect-ratio: 1; border-radius: var(--radius); background:
  linear-gradient(145deg, #fff3d6, #fde7ef 55%, #e6effd); border: 1px solid var(--line);
  display: grid; place-items: center; text-align: center; padding: 24px; }
.box-art .brand { font-size: 56px; }
.box-art small { display: block; font-weight: 800; color: var(--muted); margin-top: 6px; letter-spacing: 1px; text-transform: uppercase; font-size: 14px; }
.soon { display: inline-block; font-weight: 800; font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
        color: var(--pink); background: #fde7ef; border-radius: 999px; padding: 6px 12px; margin-bottom: 14px; }
ul.check { list-style: none; padding: 0; margin: 0 0 20px; }
ul.check li { padding-left: 28px; position: relative; margin-bottom: 8px; color: var(--muted); }
ul.check li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.btn[aria-disabled] { opacity: 0.45; cursor: not-allowed; }

footer { border-top: 1px solid var(--line); padding: 36px 0; font-size: 15px; color: var(--muted); }
footer .wrap { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }

/* v2 additions */
.narrow { max-width: 760px; }
.tint { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
p.intro { max-width: 680px; margin-bottom: 32px; }
.hero { padding-bottom: 40px; }
.hero-img { margin: 48px 0 0; border-radius: 28px; overflow: hidden; border: 1px solid var(--line);
            box-shadow: 0 20px 50px -30px rgba(31,42,68,0.35); }
.hero-img img { width: 100%; height: auto; }
.feature { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: center; margin-top: 64px; }
.feature img { width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--line); }
h3.big { font-size: clamp(26px, 4vw, 34px); margin-bottom: 12px; }
@media (max-width: 760px) { .feature { grid-template-columns: 1fr; gap: 28px; } .feature img { max-width: 420px; } }
.map-img { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #fff; }
.map-img img { width: 100%; height: auto; }
.cta { text-align: center; }
.cta p { margin-left: auto; margin-right: auto; }
.btns.center { justify-content: center; }
.founder .photo { height: auto; }
.product-img { width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--line); }
.notfound { min-height: 60vh; display: grid; place-items: center; text-align: center; }
.card.game { padding: 0 0 22px; overflow: hidden; display: flex; flex-direction: column; }
.card.game .card-img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; margin-bottom: 18px; background: var(--bg); }
.card.game h3, .card.game p, .card.game .tag { margin-left: 22px; margin-right: 22px; }
.card.game .tag { align-self: flex-start; }
