@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("assets/fonts/nunito-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("assets/fonts/nunito-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  --paper: #fffdf6;
  --ink: #090909;
  --muted: #6d6d6d;
  --green: #47b64b;
  --purple: #875cff;
  --pink: #f45aa0;
  --blue: #5bc8ff;
  --yellow: #ffd91f;
  --coral: #ef6351;
  --coral-soft: #ffdcd4;
  --blue-soft: #d7ecfa;
  --radius: 26px;
  --max: 1060px;
  --stroke: 5px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  background-image: radial-gradient(rgba(9, 9, 9, 0.18) 1.15px, transparent 1.15px);
  background-size: 18px 18px;
  font-family: "Nunito", ui-rounded, "Arial Rounded MT Bold", Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus {
  outline: none;
}

a:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.brand:focus,
.brand:focus-visible {
  outline: none;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 58px;
  padding: 0 clamp(14px, 4vw, 36px);
  border-bottom: var(--stroke) solid var(--ink);
  background: rgba(255, 253, 246, 0.94);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 1000;
  letter-spacing: 0;
}

.brand-mark {
  display: block;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 1000;
}

.site-nav a,
.nav-toggle {
  border: 4px solid var(--ink);
  border-radius: 999px;
  padding: 7px 14px;
  background: #fff;
  box-shadow: 0 3px 0 var(--ink);
}

.site-nav a:nth-child(2) {
  background: var(--coral);
  color: #fff;
}

.site-nav a:nth-child(3) {
  background: var(--pink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 3px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 88px) 0 46px;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  transform: rotate(-3deg);
  border: 4px solid var(--ink);
  border-radius: 10px;
  padding: 7px 16px;
  color: #fff;
  background: var(--coral);
  box-shadow: 0 5px 0 var(--ink);
  font-size: 0.86rem;
  font-weight: 1000;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3.7rem, 8vw, 6.8rem);
  line-height: 0.88;
  font-weight: 1000;
  letter-spacing: 0;
}

.hero-title {
  font-size: clamp(2.5rem, 5.2vw, 4.5rem);
  line-height: 1.12;
}

.hero-title span {
  color: var(--coral);
}

.hero-copy {
  max-width: 760px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  font-weight: 700;
}

.hero-tags,
.chip-row,
.rules-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.hero-tags {
  margin-top: 22px;
}

.hero-tags span,
.chip-row span,
.rules-list span {
  border: 4px solid var(--ink);
  border-radius: 999px;
  padding: 7px 12px;
  background: #fff;
  box-shadow: 0 3px 0 var(--ink);
  font-size: 0.88rem;
  font-weight: 1000;
}

.hero-tags span:nth-child(1),
.chip-row span:nth-child(1) {
  background: var(--yellow);
}

.hero-tags span:nth-child(2),
.chip-row span:nth-child(2) {
  background: var(--green);
}

.hero-tags span:nth-child(3),
.chip-row span:nth-child(3) {
  background: var(--purple);
  color: #fff;
}

.action-box {
  width: min(820px, 100%);
  margin: 42px auto 0;
  border: var(--stroke) solid var(--ink);
  border-radius: 32px;
  padding: clamp(18px, 3vw, 28px);
  background: #fff;
  box-shadow: 0 9px 0 var(--ink);
}

.arcade-button {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  border: var(--stroke) solid var(--ink);
  border-radius: 18px;
  padding: 14px 22px;
  box-shadow: 0 7px 0 var(--ink);
  font-size: clamp(1rem, 2vw, 1.24rem);
  font-weight: 1000;
  line-height: 1.1;
}

.action-box .arcade-button {
  width: min(330px, 100%);
  margin: 0 5px 12px;
}

.arcade-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 0 var(--ink);
}

.arcade-button:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 var(--ink);
}

.arcade-button.primary {
  background: var(--coral);
  color: #fff;
}

.arcade-button.secondary {
  background: #fff;
}

.action-box p {
  max-width: 690px;
  margin: 4px auto 0;
  color: var(--muted);
  font-weight: 800;
}

.action-box p a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
}

.section {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 74px) 0;
  text-align: center;
}

h2 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  font-weight: 1000;
}

.category-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  border: var(--stroke) solid var(--ink);
  border-radius: 28px;
  padding: 32px;
  text-align: left;
  background: #fff;
  box-shadow: 0 8px 0 var(--ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.category-card:nth-child(1) {
  background: var(--coral-soft);
}

.category-card:nth-child(2) {
  background: var(--blue-soft);
}

.step-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  font-weight: 1000;
}

.card-emoji {
  display: block;
  margin-left: 54px;
  font-size: 1.55rem;
}

h3 {
  margin: 16px 0 10px;
  font-size: 1.45rem;
  line-height: 1.05;
  font-weight: 1000;
}

.category-card h3 {
  margin: 0 0 12px;
  font-size: 1.7rem;
}

.section-copy,
.contact-box p,
.legal-content p,
.legal-content li {
  color: var(--muted);
  font-weight: 700;
}

.category-card p {
  color: var(--ink);
  font-weight: 700;
}

.chip-row {
  justify-content: flex-start;
  margin-top: 18px;
}

.chip-row span {
  font-size: 0.78rem;
  padding: 5px 9px;
  border-width: 3px;
  box-shadow: none;
}

.app-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
}

.app-row a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 4px solid var(--ink);
  border-radius: 999px;
  padding: 12px 20px;
  background: #fff;
  box-shadow: 0 4px 0 var(--ink);
  font-size: 1.02rem;
  font-weight: 1000;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.app-row a::after {
  content: "→";
  font-size: 0.95em;
}

.app-row a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--ink);
}

.app-row a:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--ink);
}

.rules-list {
  max-width: 820px;
  margin: 0 auto;
}

.rules-list span:nth-child(3n + 1) {
  background: var(--blue);
}

.rules-list span:nth-child(3n + 2) {
  background: var(--pink);
}

.rules-list span:nth-child(3n + 3) {
  background: var(--green);
}

.policy-section {
  padding-top: clamp(70px, 10vw, 110px);
}

.section-copy {
  max-width: 680px;
  margin: -10px auto 22px;
  font-size: 1.08rem;
}

.policy-links {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.policy-links a {
  min-height: 180px;
  border: 4px solid var(--ink);
  border-radius: 18px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 5px 0 var(--ink);
  font-weight: 1000;
  text-align: left;
}

.policy-links a:nth-child(2) {
  background: var(--blue);
}

.policy-links a:nth-child(3) {
  background: var(--pink);
}

.policy-links strong,
.policy-links span {
  display: block;
}

.policy-links strong {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1;
}

.policy-links span {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.35;
  font-weight: 800;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  max-width: 940px;
  margin: 0 auto;
  text-align: left;
}

.why-item h3 {
  margin: 0 0 8px;
  font-size: 1.32rem;
  color: var(--coral);
}

.why-item p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 720px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 420px;
  }
}

.contact-box {
  width: min(860px, calc(100% - 28px));
  margin: 38px auto 76px;
  border: var(--stroke) solid var(--ink);
  border-radius: 32px;
  padding: clamp(22px, 4vw, 34px);
  text-align: center;
  background: #fff;
  box-shadow: 0 9px 0 var(--ink);
}

.notify-box {
  margin-bottom: 38px;
  background: var(--blue-soft);
}

.notify-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 560px;
  margin: 20px auto 0;
}

.notify-input {
  flex: 1 1 260px;
  min-height: 62px;
  border: var(--stroke) solid var(--ink);
  border-radius: 18px;
  padding: 14px 20px;
  background: #fff;
  box-shadow: 0 7px 0 var(--ink);
  font: inherit;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  color: var(--ink);
}

.notify-input::placeholder {
  color: var(--muted);
}

.notify-input:focus {
  outline: none;
}

.notify-input:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.notify-form .arcade-button {
  flex: 0 0 auto;
  cursor: pointer;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-sticker {
  display: inline-grid;
  width: 84px;
  height: 84px;
  place-items: center;
  margin-bottom: 18px;
  transform: rotate(-4deg);
  border: 4px solid var(--ink);
  border-radius: 22px;
  background: var(--yellow);
  box-shadow: 0 5px 0 var(--ink);
  font-size: 2.4rem;
}

.app-sticker.pink {
  background: var(--pink);
}

.app-sticker.blue {
  background: var(--blue);
}

.app-sticker.green {
  background: var(--green);
}

.contact-box h2 {
  margin-bottom: 10px;
}

.contact-box .arcade-button {
  margin-top: 14px;
}

.site-footer {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  padding: 30px 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 900;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-page {
  width: min(920px, calc(100% - 28px));
  margin: 0 auto;
  padding: 76px 0;
}

.legal-content {
  border: var(--stroke) solid var(--ink);
  border-radius: 30px;
  padding: clamp(22px, 4vw, 42px);
  background: #fff;
  box-shadow: 0 8px 0 var(--ink);
}

.legal-content h1 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  line-height: 0.95;
}

.legal-content h2 {
  margin: 34px 0 10px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  text-align: left;
}

.legal-content a {
  text-decoration: underline;
  text-decoration-thickness: 3px;
}

.updated {
  margin: 14px 0 24px;
  color: var(--muted);
  font-weight: 900;
}

.legal-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 20px;
}

.legal-content th,
.legal-content td {
  padding: 14px;
  border-bottom: 3px solid var(--ink);
  text-align: left;
  vertical-align: top;
}

.legal-content th {
  background: var(--blue);
}

.legal-content tr:last-child td {
  border-bottom: 0;
}

.notice {
  margin-top: 22px;
  border: 4px solid var(--ink);
  border-radius: 18px;
  padding: 16px;
  background: var(--blue-soft);
}

@media (max-width: 860px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 4px solid var(--ink);
    border-radius: 20px;
    padding: 10px;
    background: #fff;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-block;
  }

  .category-board {
    grid-template-columns: 1fr;
  }

  .policy-links {
    grid-template-columns: 1fr;
  }

  .policy-links a {
    min-height: 0;
  }

  .category-card:nth-child(2),
  .category-card:nth-child(3) {
    transform: none;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(3.05rem, 16vw, 4rem);
  }

  .action-box .arcade-button,
  .contact-box .arcade-button {
    width: 100%;
  }

  .site-header {
    height: 62px;
  }

  .brand span:last-child {
    font-size: 0.92rem;
  }
}
