:root {
  color-scheme: light;
  --paper: #f7f9f7;
  --white: #ffffff;
  --ink: #10181a;
  --muted: #5b6968;
  --line: #dce6e1;
  --green: #11785f;
  --green-dark: #0b4f40;
  --mint: #e6f3ed;
  --mint-strong: #cdeade;
  --pokemon-panel: #eaf3ff;
  --red: #d93b34;
  --navy: #172b46;
  --gold: #d99b27;
  --shadow: 0 24px 70px rgba(16, 24, 26, 0.09);
  --shadow-soft: 0 12px 34px rgba(16, 24, 26, 0.06);
  --page-space: 64px;
  --heading-size: 38px;
  --title-size: 60px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: 0; }

.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(220, 230, 225, 0.9);
  background: rgba(247, 249, 247, 0.94);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}
.mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(16, 24, 26, 0.07);
}
.mark::before {
  width: 18px;
  height: 18px;
  border: 3px solid var(--green);
  border-top-color: #a3b2ad;
  border-radius: 50%;
  content: "";
  transform: rotate(-35deg);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
}
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--green-dark); }
.nav-cta { color: var(--green-dark) !important; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary { color: #fff; background: var(--green); box-shadow: 0 12px 26px rgba(17, 120, 95, 0.2); }
.button.primary:hover { box-shadow: 0 16px 30px rgba(17, 120, 95, 0.27); }
.button.secondary { color: var(--ink); border-color: var(--line); background: var(--white); }
.button.secondary:hover { border-color: rgba(17, 120, 95, 0.45); }
.button.full { width: 100%; }
.button:disabled { cursor: wait; opacity: 0.72; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(17, 120, 95, 0.18);
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--mint);
  font-size: 12px;
  font-weight: 850;
}
.eyebrow::before { width: 7px; height: 7px; border-radius: 50%; background: var(--green); content: ""; }
.eyebrow.red { color: #8b251f; border-color: rgba(217, 59, 52, 0.22); background: #fff0ee; }
.eyebrow.red::before { background: var(--red); }
.eyebrow.navy { color: var(--navy); border-color: rgba(23, 43, 70, 0.2); background: #edf2f8; }
.eyebrow.navy::before { background: var(--navy); }

.hero {
  padding: 72px 0 82px;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 74px;
  align-items: center;
}
.hero h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(52px, 7vw, 92px);
  line-height: 0.94;
}
.hero h1 em { color: var(--green); font-style: normal; }
.lead { max-width: 650px; margin-bottom: 28px; color: var(--muted); font-size: 19px; line-height: 1.56; }
.button-row { display: flex; flex-wrap: wrap; gap: 11px; }
.hero-note { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 30px; color: var(--muted); font-size: 12px; font-weight: 720; }
.hero-note span { display: inline-flex; align-items: center; gap: 7px; }
.hero-note span::before { width: 7px; height: 7px; border-radius: 50%; background: var(--green); content: ""; }

.hero-art { position: relative; min-height: 390px; }
.art-board {
  position: absolute;
  inset: 0 30px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.art-board::before,
.art-board::after { position: absolute; border: 1px solid var(--mint-strong); border-radius: 50%; content: ""; }
.art-board::before { width: 300px; height: 300px; right: -116px; top: -120px; }
.art-board::after { width: 190px; height: 190px; left: -88px; bottom: -90px; }
.art-label { position: absolute; top: 24px; left: 26px; color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.compass-ring {
  position: absolute;
  top: 66px;
  left: 54px;
  display: grid;
  place-items: center;
  width: 250px;
  height: 250px;
  border: 1px solid var(--mint-strong);
  border-radius: 50%;
}
.compass-ring::before { width: 174px; height: 174px; border: 1px solid var(--line); border-radius: 50%; content: ""; }
.compass-ring::after { position: absolute; width: 2px; height: 246px; background: var(--mint-strong); content: ""; transform: rotate(45deg); }
.compass-needle { position: absolute; z-index: 1; width: 6px; height: 178px; background: var(--green); clip-path: polygon(50% 0, 100% 62%, 50% 100%, 0 62%); transform: rotate(42deg); }
.compass-core { position: absolute; z-index: 2; width: 28px; height: 28px; border: 7px solid var(--white); border-radius: 50%; background: var(--green-dark); box-shadow: 0 0 0 1px var(--green); }
.art-word { position: absolute; right: 30px; bottom: 30px; color: var(--ink); font-size: 42px; font-weight: 950; line-height: 0.9; text-align: right; }
.art-word span { display: block; color: var(--green); font-size: 15px; letter-spacing: 0.11em; text-transform: uppercase; }
.game-tile {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 7px;
  width: 175px;
  min-height: 104px;
  padding: 16px;
  border: 1px solid rgba(16, 24, 26, 0.12);
  border-radius: 8px;
  color: var(--ink);
  background: var(--pokemon-panel);
  box-shadow: 0 18px 32px rgba(16, 24, 26, 0.13);
  transform: rotate(-7deg);
}
.game-tile strong { font-size: 19px; line-height: 1; }
.game-tile span { font-size: 11px; font-weight: 800; }
.game-tile.pokemon { right: 12px; top: 74px; background: var(--pokemon-panel); }
.game-tile.pokemon::before { position: absolute; width: 28px; height: 28px; right: 14px; bottom: 13px; border: 4px solid var(--red); border-radius: 50%; content: ""; }
.game-tile.onepiece { right: 28px; bottom: 82px; color: #fff; background: var(--navy); transform: rotate(6deg); }
.game-tile.onepiece::before { position: absolute; right: 13px; bottom: 13px; width: 30px; height: 16px; border: 3px solid var(--gold); border-radius: 50% 50% 45% 45%; content: ""; }

.section { padding: 86px 0; }
.section.band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.section-heading { display: grid; gap: 12px; max-width: 760px; margin-bottom: 34px; }
.section-heading h2 { margin-bottom: 0; font-size: clamp(32px, 4.5vw, 58px); line-height: 0.98; }
.section-heading p { max-width: 650px; margin-bottom: 0; color: var(--muted); font-size: 17px; line-height: 1.55; }
.section-kicker { margin-bottom: 0; color: var(--green); font-size: 12px; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }

.game-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.game-card {
  position: relative;
  display: grid;
  gap: 20px;
  min-height: 350px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.game-card::after { position: absolute; right: -50px; bottom: -80px; width: 220px; height: 220px; border: 1px solid currentColor; border-radius: 50%; content: ""; opacity: 0.13; }
.game-card.pokemon { color: var(--ink); border-top: 5px solid var(--red); }
.game-card.onepiece { color: var(--ink); border-top: 5px solid var(--navy); }
.game-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.game-card-head h3 { margin-bottom: 0; font-size: 30px; line-height: 1; }
.game-card-head p { margin: 6px 0 0; color: var(--muted); font-size: 12px; font-weight: 800; }
.game-symbol { display: grid; place-items: center; width: 58px; height: 58px; border: 1px solid rgba(16, 24, 26, 0.14); border-radius: 50%; font-size: 18px; font-weight: 950; }
.pokemon .game-symbol { background: var(--pokemon-panel); }
.onepiece .game-symbol { color: #fff; background: var(--navy); }
.game-card h4 { max-width: 430px; margin-bottom: 0; font-size: 22px; line-height: 1.1; }
.game-card-copy { max-width: 500px; margin-bottom: 0; color: var(--muted); line-height: 1.55; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { padding: 7px 9px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: var(--paper); font-size: 11px; font-weight: 800; }
.inline-link { color: var(--green-dark); font-size: 13px; font-weight: 850; text-decoration: none; }

.route-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.route-card { display: grid; gap: 13px; min-height: 188px; padding: 21px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); text-decoration: none; transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease; }
.route-card:hover { border-color: rgba(17, 120, 95, 0.42); box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.route-card .route-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 8px; color: #fff; background: var(--green); font-size: 13px; font-weight: 900; }
.route-card h3 { margin-bottom: 0; font-size: 19px; }
.route-card p { margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.route-card .route-link { align-self: end; color: var(--green-dark); font-size: 12px; font-weight: 850; }

.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px; }
.step { position: relative; padding-top: 55px; }
.step:not(:last-child)::after { position: absolute; top: 21px; left: 44px; width: calc(100% - 20px); height: 1px; background: var(--mint-strong); content: ""; }
.step-num { position: absolute; top: 0; left: 0; display: grid; place-items: center; width: 43px; height: 43px; border-radius: 50%; color: #fff; background: var(--green); font-size: 14px; font-weight: 900; }
.step h3 { margin-bottom: 9px; font-size: 19px; }
.step p { margin-bottom: 0; color: var(--muted); line-height: 1.55; }

.tool-preview { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 30px; align-items: stretch; }
.tool-copy { display: grid; align-content: center; gap: 16px; }
.tool-copy h2 { margin-bottom: 0; font-size: clamp(33px, 4.5vw, 56px); line-height: 0.98; }
.tool-copy p { max-width: 520px; margin-bottom: 0; color: var(--muted); font-size: 17px; line-height: 1.55; }
.brief-preview { padding: 26px; border: 1px solid var(--line); border-radius: 9px; background: var(--white); box-shadow: var(--shadow); }
.brief-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.brief-top strong { font-size: 18px; }
.brief-decision { display: grid; gap: 6px; margin: 19px 0; padding: 15px; border-left: 3px solid var(--green); background: var(--mint); }
.brief-decision strong { color: var(--green-dark); font-size: 14px; }
.brief-decision span { color: var(--muted); font-size: 13px; line-height: 1.4; }
.brief-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 0; padding: 0; list-style: none; }
.brief-list li { padding: 12px; border: 1px solid var(--line); border-radius: 7px; color: var(--muted); font-size: 12px; line-height: 1.4; }
.brief-list strong { display: block; margin-bottom: 5px; color: var(--ink); font-size: 12px; }

.final-cta { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 34px 0 0; border-top: 1px solid var(--line); }
.final-cta h2 { margin-bottom: 8px; font-size: clamp(28px, 4vw, 44px); line-height: 1; }
.final-cta p { max-width: 600px; margin-bottom: 0; color: var(--muted); line-height: 1.5; }
.footer { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; padding: 30px 0 36px; color: var(--muted); font-size: 12px; }
.footer a { text-decoration: none; }

/* Dedicated game pages */
.game-hero { padding: 72px 0 78px; border-bottom: 1px solid var(--line); }
.game-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 0.72fr; gap: 70px; align-items: center; }
.game-hero h1 { max-width: 720px; margin-bottom: 20px; font-size: clamp(46px, 6.7vw, 82px); line-height: 0.95; }
.game-hero h1 span { display: block; }
.pokemon-page .game-hero h1 span { color: var(--red); }
.onepiece-page .game-hero h1 span { color: var(--navy); }
.game-hero .lead { max-width: 630px; }
.game-showcase { position: relative; min-height: 330px; padding: 26px; border: 1px solid var(--line); border-radius: 9px; background: var(--white); box-shadow: var(--shadow); }
.showcase-frame { position: absolute; left: 26px; bottom: 26px; width: 190px; height: 250px; padding: 14px; border: 1px solid rgba(16, 24, 26, 0.14); border-radius: 9px; transform: rotate(-8deg); }
.pokemon-page .showcase-frame { background: var(--pokemon-panel); }
.onepiece-page .showcase-frame { color: #fff; background: var(--navy); }
.showcase-frame::before { display: block; width: 100%; height: 148px; margin-bottom: 12px; border: 1px solid currentColor; border-radius: 7px; content: ""; opacity: 0.5; }
.showcase-frame strong { display: block; font-size: 19px; line-height: 1.05; }
.showcase-frame span { display: block; margin-top: 8px; font-size: 11px; font-weight: 800; opacity: 0.8; }
.showcase-stamp { position: absolute; top: 30px; right: 28px; display: grid; place-items: center; width: 108px; height: 108px; border: 1px solid var(--line); border-radius: 50%; color: var(--green-dark); background: var(--mint); font-size: 13px; font-weight: 900; text-align: center; transform: rotate(9deg); }
.showcase-copy { position: absolute; right: 28px; bottom: 38px; width: 175px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.guide-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.guide-block { display: grid; gap: 14px; min-height: 260px; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.guide-block .number { color: var(--green); font-size: 12px; font-weight: 900; letter-spacing: 0.1em; }
.guide-block h3 { margin-bottom: 0; font-size: 22px; }
.guide-block p { margin-bottom: 0; color: var(--muted); line-height: 1.55; }
.guide-block ul { display: grid; gap: 8px; margin: auto 0 0; padding: 0; list-style: none; }
.guide-block li { position: relative; padding-left: 17px; color: var(--muted); font-size: 13px; line-height: 1.4; }
.guide-block li::before { position: absolute; top: 7px; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--green); content: ""; }
.source-row { display: flex; flex-wrap: wrap; gap: 16px; padding-top: 18px; border-top: 1px solid var(--line); }

/* Karta Check form */
.check-page .hero { padding-bottom: 58px; }
.check-layout { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 50px; align-items: start; }
.check-intro { position: sticky; top: 30px; }
.check-intro h1 { margin-bottom: 18px; font-size: clamp(42px, 6vw, 72px); line-height: 0.95; }
.check-intro p { color: var(--muted); font-size: 17px; line-height: 1.55; }
.check-note { display: grid; gap: 9px; margin-top: 26px; padding: 18px; border-left: 3px solid var(--green); background: var(--mint); }
.check-note strong { color: var(--green-dark); font-size: 13px; }
.check-note span { color: var(--muted); font-size: 12px; line-height: 1.45; }
.tool { overflow: hidden; border: 1px solid var(--line); border-radius: 9px; background: var(--white); box-shadow: var(--shadow); }
.tool-top { display: grid; gap: 8px; padding: 24px; border-bottom: 1px solid var(--line); }
.tool-top h2 { margin-bottom: 0; font-size: 26px; line-height: 1; }
.tool-top p { margin-bottom: 0; color: var(--muted); line-height: 1.5; }
.form { display: grid; gap: 16px; padding: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
label { display: grid; gap: 7px; color: var(--ink); font-size: 12px; font-weight: 800; }
.form .form-field { min-width: 0; gap: 8px; }
.field-label { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px; min-height: 17px; line-height: 1.35; }
@media (min-width: 701px) {
  .form .grid-2 > .form-field { grid-template-rows: 36px auto auto; align-content: start; }
  .form .grid-2 > .form-field > .field-label { min-height: 0; }
}
.context-fields { display: grid; gap: 16px; min-width: 0; margin: 0; padding: 19px 0 0; border: 0; border-top: 1px solid var(--line); }
.context-fields legend { padding: 0; color: var(--green-dark); font-size: 15px; font-weight: 900; line-height: 1.3; }
.context-fields > p { margin: -7px 0 1px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.contact-fields { gap: 13px; }
.contact-fields > p { margin-bottom: 1px; }
.contact-consent { color: var(--ink); font-weight: 720; }
.contact-inputs { opacity: 0.52; transition: opacity 160ms ease; }
.contact-inputs.is-enabled { opacity: 1; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 7px; color: var(--ink); background: var(--white); outline: none; }
input, select { min-height: 43px; padding: 0 11px; }
.form select { appearance: none; padding-right: 42px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23606d68' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-position: right 16px center; background-repeat: no-repeat; background-size: 18px; }
textarea { min-height: 118px; padding: 11px; line-height: 1.45; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(17, 120, 95, 0.12); }
.field-note { color: var(--muted); font-size: 11px; font-weight: 600; line-height: 1.35; }
.checkbox { display: flex; align-items: flex-start; gap: 9px; color: var(--muted); font-size: 12px; font-weight: 650; line-height: 1.45; }
.checkbox input { width: 17px; min-width: 17px; height: 17px; min-height: 17px; margin-top: 1px; }
.result { display: none; margin: 0 24px 24px; padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: #f4f8f5; }
.result.is-visible, .result.is-loading { display: block; }
.result-top { display: grid; gap: 6px; }
.result-kicker, .decision-kicker { color: var(--green-dark); font-size: 10px; font-weight: 900; letter-spacing: 0.07em; line-height: 1.2; text-transform: uppercase; }
.result h3 { margin-bottom: 0; font-size: 23px; line-height: 1.05; }
.result p { margin-bottom: 0; color: var(--muted); line-height: 1.45; }
.decision { display: grid; gap: 7px; margin-top: 16px; padding: 15px; border: 1px solid #cbded4; border-top: 3px solid var(--green); border-radius: 7px; background: var(--white); }
.decision strong { color: var(--green-dark); font-size: 18px; line-height: 1.15; }
.decision p { font-size: 13px; }
.decision-confidence { color: #47685b; font-size: 11px; font-weight: 700; line-height: 1.45; }
.decision-signals { margin-top: 14px; border: 1px solid var(--line); border-radius: 7px; background: var(--white); }
.decision-signals summary { display: flex; align-items: center; justify-content: space-between; min-height: 46px; padding: 0 13px; color: var(--ink); cursor: pointer; font-size: 12px; font-weight: 900; line-height: 1.3; list-style: none; }
.decision-signals summary::-webkit-details-marker { display: none; }
.decision-signals summary::after { content: "+"; color: var(--green-dark); font-size: 18px; font-weight: 500; }
.decision-signals[open] summary { border-bottom: 1px solid var(--line); }
.decision-signals[open] summary::after { content: "-"; }
.decision-signals summary:focus-visible { outline: 3px solid rgba(17, 120, 95, 0.18); outline-offset: 2px; }
.decision-signal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; padding: 10px; }
.decision-signal { display: grid; gap: 5px; min-height: 132px; padding: 12px 13px; border: 1px solid var(--line); border-top: 3px solid #829a8f; border-radius: 7px; background: var(--white); }
.decision-signal > span { color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: 0.07em; line-height: 1.2; text-transform: uppercase; }
.decision-signal strong { color: var(--ink); font-size: 13px; line-height: 1.28; }
.decision-signal p { font-size: 12px; line-height: 1.42; }
.decision-signal.is-ready { border-top-color: var(--green); }
.decision-signal.is-check { border-top-color: #6d8797; }
.decision-signal.is-caution { border-top-color: #b77945; }
.item-recognition { display: grid; gap: 5px; margin-top: 14px; padding: 13px 14px; border: 1px solid var(--line); border-radius: 7px; background: var(--white); }
.item-recognition > span { color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: 0.07em; line-height: 1.2; text-transform: uppercase; }
.item-recognition strong { color: var(--ink); font-size: 14px; line-height: 1.25; }
.item-recognition p { font-size: 12px; }
.item-recognition.is-confirmed { border-color: #bcd9c7; background: #f5fbf7; }
.item-recognition.is-confirmed strong { color: var(--green-dark); }
.item-recognition.is-unconfirmed { border-color: #e5d9b7; background: #fffdf7; }
.verification-links { display: flex; flex-wrap: wrap; gap: 8px 14px; margin: 10px 0 0; }
.verification-links a { display: inline-flex; align-items: center; min-height: 30px; color: var(--green-dark); border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 850; line-height: 1.25; text-decoration: none; }
.verification-links a:hover { color: var(--green); }
.verification-links a:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
.result-section-title { margin: 17px 0 0; color: var(--ink); font-size: 12px; font-weight: 900; }
.result-list { display: grid; gap: 7px; margin: 10px 0 0; padding: 0; list-style: none; }
.result-list li { padding: 9px 11px; border: 1px solid var(--line); border-radius: 7px; background: var(--white); font-size: 12px; line-height: 1.4; }
.visual-match { display: grid; gap: 10px; margin-top: 14px; padding: 13px; border: 1px solid var(--line); border-radius: 7px; background: var(--white); }
.visual-match p { font-size: 12px; }
.visual-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(125px, 1fr)); gap: 9px; }
.visual-card { display: grid; gap: 8px; padding: 8px; border: 1px solid var(--line); border-radius: 7px; background: #fbfdfc; text-decoration: none; }
.visual-card img { width: 100%; aspect-ratio: 245 / 342; object-fit: contain; border-radius: 5px; background: var(--paper); }
.visual-card strong { display: block; color: var(--ink); font-size: 12px; line-height: 1.25; }
.visual-card span { color: var(--muted); font-size: 11px; line-height: 1.35; }
.match-confirmation { display: grid; gap: 5px; margin-top: 14px; padding: 13px; border: 1px solid #d4e3da; border-radius: 7px; background: #fbfdfc; }
.match-confirmation strong { color: var(--green-dark); font-size: 13px; line-height: 1.35; }
.match-confirmation > span, .match-status { color: var(--muted); font-size: 12px; line-height: 1.4; }
.match-options { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.match-options button { min-height: 36px; padding: 0 12px; border: 1px solid var(--line); border-radius: 7px; color: var(--ink); background: var(--white); font-size: 12px; font-weight: 850; cursor: pointer; }
.match-options button:first-child { border-color: var(--green); color: var(--green-dark); background: var(--mint); }
.match-options button:hover { border-color: var(--green); }
.match-options button:focus-visible { outline: 3px solid rgba(17, 120, 95, 0.18); outline-offset: 2px; }
.match-options button:disabled { cursor: default; opacity: 0.7; }
.match-status { min-height: 17px; margin: 0 !important; }
.match-status strong { font-size: 12px; }
.match-confirmation.is-submitted { border-color: #c4dbcc; background: #f3faf5; }
.pay-signal, .feedback-signal { display: none; gap: 9px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.pay-signal.is-visible, .feedback-signal.is-visible { display: grid; }
.pay-signal p { display: grid; gap: 4px; }
.pay-signal p strong { color: var(--green-dark); font-size: 13px; }
.pay-signal p span { color: var(--muted); font-size: 12px; line-height: 1.45; }
.pay-options, .feedback-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; }
.pay-options button, .feedback-options button { min-height: 39px; border: 1px solid var(--line); border-radius: 7px; color: var(--ink); background: var(--white); font-size: 12px; font-weight: 800; cursor: pointer; }
.feedback-signal { margin-top: 18px; padding: 15px; border: 1px solid #d4e3da; border-radius: 8px; background: #fbfdfc; }
.feedback-heading { display: grid; gap: 4px; }
.feedback-heading strong { color: var(--green-dark); font-size: 13px; }
.feedback-heading span { color: var(--muted); font-size: 12px; line-height: 1.45; }
.feedback-rating { display: grid; gap: 8px; min-width: 0; margin: 0; padding: 0; border: 0; }
.feedback-rating legend { padding: 0; color: var(--ink); font-size: 12px; font-weight: 800; }
.feedback-option { position: relative; display: grid; min-height: 42px; place-items: center; padding: 8px; border: 1px solid var(--line); border-radius: 7px; color: var(--ink); background: var(--white); font-size: 12px; font-weight: 800; text-align: center; cursor: pointer; }
.feedback-option input { position: absolute; width: 1px; min-width: 1px; height: 1px; min-height: 1px; opacity: 0; }
.feedback-option:has(input:focus-visible) { outline: 3px solid rgba(17, 120, 95, 0.18); outline-offset: 2px; }
.feedback-option:has(input:checked) { border-color: var(--green); color: var(--green-dark); background: var(--mint); box-shadow: inset 0 0 0 1px var(--green); }
.feedback-option.is-disabled { color: var(--muted); background: var(--paper); cursor: default; }
.feedback-note { min-height: 82px; }
.feedback-submit { justify-self: start; min-height: 40px; padding: 0 15px; border: 0; border-radius: 7px; color: var(--white); background: var(--green-dark); font-size: 12px; font-weight: 850; cursor: pointer; }
.feedback-submit:hover { background: var(--green); }
.feedback-submit:disabled { cursor: default; opacity: 0.7; }
.feedback-submit.is-complete:disabled { opacity: 1; background: #467b5b; }
.feedback-status { min-height: 17px; margin: 0 !important; font-size: 12px; }
.feedback-status strong { color: var(--green-dark); }
.feedback-signal.is-submitted { border-color: #c4dbcc; background: #f3faf5; }
.submit-status { margin-top: 12px !important; font-size: 12px; }
.submit-status strong { color: var(--green-dark); }

@media (max-width: 980px) {
  .hero-grid, .game-hero-grid, .check-layout, .tool-preview { grid-template-columns: 1fr; gap: 38px; }
  .hero-art { min-height: 350px; }
  .check-intro { position: static; }
  .route-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .game-hero-grid { gap: 30px; }
}
@media (max-width: 700px) {
  .shell { width: min(100% - 24px, 1180px); }
  .nav { align-items: flex-start; flex-direction: column; padding: 16px 0; }
  .nav-links { width: 100%; justify-content: space-between; gap: 10px; overflow-x: auto; padding-bottom: 2px; font-size: 12px; }
  .nav-links a { white-space: nowrap; }
  .hero, .game-hero { padding: 47px 0 56px; }
  .hero h1, .game-hero h1 { font-size: clamp(46px, 15vw, 68px); }
  .lead { font-size: 17px; }
  .hero-art { min-height: 300px; }
  .art-board { inset: 0; }
  .compass-ring { top: 51px; left: 30px; width: 190px; height: 190px; }
  .compass-ring::before { width: 136px; height: 136px; }
  .compass-ring::after { height: 186px; }
  .compass-needle { height: 136px; }
  .art-word { right: 17px; bottom: 20px; font-size: 30px; }
  .art-word span { font-size: 11px; }
  .game-tile { width: 142px; min-height: 90px; padding: 12px; }
  .game-tile.pokemon { right: 8px; top: 45px; }
  .game-tile.onepiece { right: 8px; bottom: 48px; }
  .section { padding: 58px 0; }
  .game-grid, .route-grid, .guide-grid, .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .tool-preview { gap: 26px; }
  .brief-list, .grid-2, .pay-options, .feedback-options { grid-template-columns: 1fr; }
  .final-cta { align-items: flex-start; flex-direction: column; }
  .button-row .button { width: 100%; }
  .showcase-frame { left: 20px; width: 150px; height: 215px; }
  .showcase-frame::before { height: 120px; }
  .showcase-copy { right: 20px; width: 145px; font-size: 12px; }
  .showcase-stamp { right: 20px; width: 88px; height: 88px; font-size: 11px; }
  .result-top { grid-template-columns: 1fr; }
}

/* Homepage editorial layer: inspired by the reference's clear retail rhythm,
   adapted for guidance instead of product sales. */
.announcement { color: #fff; background: var(--green-dark); font-size: 12px; font-weight: 780; }
.announcement .shell { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 34px; }
.announcement a { color: #d7f4e6; text-decoration: none; }
.home-page .site-header { background: var(--white); }
.home-page .nav { min-height: 74px; }
.nav-action { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 9px 13px; border-radius: 6px; color: #fff; background: var(--green); font-size: 12px; font-weight: 850; text-decoration: none; }
.nav-action:hover { background: var(--green-dark); }
.home-hero { position: relative; min-height: 600px; overflow: hidden; background-color: #f4f7f4; background-image: none; background-position: center right; background-repeat: no-repeat; background-size: cover; }
.home-hero::after { position: absolute; inset: 0; background: rgba(255, 255, 255, 0.06); content: ""; pointer-events: none; }
.home-hero-inner { position: relative; z-index: 1; display: flex; align-items: center; min-height: 600px; }
.home-hero-copy { max-width: 620px; padding: 62px 0; }
.home-hero-copy .eyebrow { color: var(--green-dark); background: rgba(230, 243, 237, 0.94); }
.home-hero-copy h1 { max-width: 650px; margin-bottom: 22px; color: var(--green-dark); font-size: clamp(52px, 7vw, 92px); line-height: 0.91; }
.home-hero-copy h1 em { color: var(--green); font-style: normal; }
.home-hero-lead { max-width: 510px; margin-bottom: 28px; color: var(--green-dark); font-size: 18px; line-height: 1.52; }
.home-intro { padding: 46px 0 40px; background: var(--white); }
.home-intro-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.85fr); gap: 70px; align-items: end; }
.home-intro h2 { max-width: 560px; margin-bottom: 0; color: var(--green-dark); font-size: clamp(30px, 4.2vw, 50px); line-height: 0.98; }
.home-intro-grid > p { max-width: 480px; margin: 0 0 2px; color: var(--muted); font-size: 16px; line-height: 1.55; }
.home-section { padding: 82px 0; }
.home-games { background: var(--white); }
.home-games .section-heading { margin-bottom: 28px; }
.home-game-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.home-game-card { display: grid; grid-template-rows: 245px auto; overflow: hidden; border: 1px solid var(--line); border-radius: 7px; background: var(--paper); text-decoration: none; transition: transform 180ms ease, box-shadow 180ms ease; }
.home-game-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.home-game-art { position: relative; overflow: hidden; }
.home-game-art::before, .home-game-art::after { position: absolute; border: 1px solid rgba(255, 255, 255, 0.36); border-radius: 50%; content: ""; }
.home-game-art::before { width: 310px; height: 310px; top: -140px; right: -60px; }
.home-game-art::after { width: 190px; height: 190px; bottom: -125px; left: -35px; }
.home-game-card.pokemon .home-game-art { color: var(--pokemon-blue-dark); background: var(--pokemon-panel); }
.home-game-card.onepiece .home-game-art { color: #fff; background: var(--navy); }
.home-game-mark { position: absolute; left: 26px; bottom: 19px; font-size: 104px; font-weight: 950; line-height: 0.8; letter-spacing: -0.05em; }
.home-game-card.onepiece .home-game-mark { font-size: 76px; letter-spacing: -0.11em; }
.home-game-sticker { position: absolute; top: 22px; right: 24px; display: grid; place-items: center; width: 86px; height: 86px; border: 2px solid currentColor; border-radius: 50%; font-size: 10px; font-weight: 900; line-height: 1.15; text-align: center; transform: rotate(8deg); }
.home-game-copy { display: grid; gap: 10px; padding: 24px 25px 26px; }
.home-card-label { margin-bottom: 0; color: var(--green); font-size: 11px; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.home-game-copy h3 { max-width: 460px; margin-bottom: 8px; color: var(--green-dark); font-size: 26px; line-height: 1.02; }
.home-game-copy > span { color: var(--green); font-size: 13px; font-weight: 850; }
.home-choices { background: var(--paper); }
.home-choices .section-heading { margin-bottom: 24px; }
.choice-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.choice-grid a { display: grid; gap: 11px; min-height: 165px; padding: 21px 20px; border-right: 1px solid var(--line); color: var(--ink); text-decoration: none; transition: background 160ms ease; }
.choice-grid a:last-child { border-right: 0; }
.choice-grid a:hover { background: var(--white); }
.choice-grid span { color: var(--green); font-size: 12px; font-weight: 900; }
.choice-grid strong { font-size: 17px; line-height: 1.12; }
.choice-grid small { align-self: end; color: var(--muted); font-size: 12px; line-height: 1.4; }
.home-method { background: var(--white); }
.home-method .section-heading { margin-bottom: 34px; }
.method-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.method-grid article { position: relative; min-height: 190px; padding: 27px 28px 22px 0; border-right: 1px solid var(--line); }
.method-grid article + article { padding-left: 28px; }
.method-grid article:last-child { border-right: 0; }
.method-grid article > span { display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 22px; border-radius: 50%; color: #fff; background: var(--green); font-size: 12px; font-weight: 900; }
.method-grid h3 { margin-bottom: 9px; color: var(--green-dark); font-size: 19px; }
.method-grid p { max-width: 260px; margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.48; }
.home-check { background: var(--green-dark); }
.home-check-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 70px; align-items: center; }
.home-check h2 { margin-bottom: 15px; color: #fff; font-size: clamp(40px, 5vw, 67px); line-height: 0.95; }
.home-check .section-kicker { color: #a8e8ca; }
.home-check-grid > div > p:not(.section-kicker) { max-width: 500px; margin-bottom: 25px; color: #d4e8df; font-size: 16px; line-height: 1.55; }
.home-check .button.primary { color: var(--green-dark); background: #a8e8ca; box-shadow: none; }
.home-check-sample { padding: 23px; border-radius: 7px; color: var(--green-dark); background: var(--white); }
.sample-header { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
.sample-header strong { font-size: 16px; }
.sample-header > span { padding: 7px 9px; border: 1px solid #c9dfd2; border-radius: 999px; color: var(--green-dark); background: #f5fbf7; font-size: 10px; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; }
.sample-verdict { display: grid; gap: 6px; margin: 19px 0; padding: 17px; border-top: 3px solid var(--green); border-left: 0; background: var(--mint); }
.sample-verdict span { font-size: 10px; font-weight: 900; letter-spacing: 0.1em; }
.sample-verdict strong { font-size: 19px; }
.sample-verdict p { max-width: 430px; margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.sample-verdict small { color: var(--green-dark); font-size: 11px; font-weight: 750; line-height: 1.4; }
.sample-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.sample-points span { display: grid; gap: 5px; padding: 12px; border: 1px solid var(--line); border-radius: 5px; color: var(--muted); font-size: 12px; line-height: 1.4; }
.sample-points b { color: var(--green-dark); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; }
.home-final { background: var(--paper); }
.home-final-inner { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-top: 8px; border-top: 1px solid var(--line); }
.home-final h2 { max-width: 560px; margin-bottom: 11px; color: var(--green-dark); font-size: clamp(36px, 4.8vw, 61px); line-height: 0.96; }
.home-final p:not(.section-kicker) { max-width: 520px; margin-bottom: 0; color: var(--muted); font-size: 16px; line-height: 1.5; }

@media (max-width: 980px) {
  .nav-action { display: none; }
  .home-hero { min-height: 570px; background-position: 58% center; }
  .home-hero-inner { min-height: 570px; }
  .home-hero-copy { max-width: 530px; }
  .home-intro-grid, .home-check-grid { grid-template-columns: 1fr; gap: 24px; }
  .choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .choice-grid a:nth-child(2) { border-right: 0; }
  .choice-grid a:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .method-grid { gap: 0; }
}
@media (max-width: 700px) {
  .announcement .shell { align-items: flex-start; flex-direction: column; gap: 3px; padding: 7px 0; }
  .home-page .nav { min-height: 68px; }
  .home-hero { min-height: 560px; background-position: 65% center; }
  .home-hero::after { background: rgba(255, 255, 255, 0.22); }
  .home-hero-inner { min-height: 560px; align-items: flex-start; }
  .home-hero-copy { padding: 42px 0 0; }
  .home-hero-copy h1 { font-size: clamp(48px, 15vw, 68px); }
  .home-hero-lead { max-width: 360px; font-size: 16px; }
  .home-intro { padding: 39px 0 34px; }
  .home-game-grid, .method-grid { grid-template-columns: 1fr; }
  .home-game-card { grid-template-rows: 200px auto; }
  .choice-grid { grid-template-columns: 1fr; }
  .choice-grid a, .choice-grid a:nth-child(2) { min-height: 122px; border-right: 0; border-bottom: 1px solid var(--line); }
  .choice-grid a:last-child { border-bottom: 0; }
  .method-grid article, .method-grid article + article { min-height: 158px; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .method-grid article:last-child { border-bottom: 0; }
  .home-check-sample { padding: 18px; }
  .sample-points { grid-template-columns: 1fr; }
  .home-final-inner { align-items: flex-start; flex-direction: column; padding-top: 30px; }
}

/* TCG-first visual system v2. Shared across guides, decision pages and legal pages. */
:root {
  --paper: #f4f7f5;
  --white: #ffffff;
  --ink: #10201d;
  --muted: #55635f;
  --line: #d7e1dc;
  --green: #18795f;
  --green-dark: #103d34;
  --mint: #e5f1ea;
  --mint-strong: #c7e2d4;
  --pokemon-panel: #eaf3ff;
  --red: #c83b34;
  --navy: #162d4b;
  --gold: #bb8c35;
  --shadow: 0 18px 48px rgba(15, 41, 34, 0.1);
  --shadow-soft: 0 10px 28px rgba(15, 41, 34, 0.08);
}

html { -webkit-hyphens: none; hyphens: none; }
body { min-width: 320px; background: var(--paper); }
main { overflow: clip; }
h1, h2, h3, h4, strong, .button, .nav-links a, .choice-grid a, .guide-card {
  overflow-wrap: normal;
  word-break: normal;
  -webkit-hyphens: none;
  hyphens: none;
  text-wrap: balance;
}
p, li, small, .field-note, .check-note span { text-wrap: pretty; }

.shell { width: min(1180px, calc(100% - 48px)); }
.announcement { min-height: 36px; background: #0d352c; letter-spacing: 0; }
.announcement .shell { min-height: 36px; }
.announcement a { color: #a8e8ca; font-weight: 850; }
.site-header { border-bottom-color: var(--line); background: rgba(255, 255, 255, 0.96); }
.nav { min-height: 78px; gap: 30px; }
.brand { gap: 11px; color: var(--green-dark); font-size: 17px; letter-spacing: 0; }
.mark { width: 36px; height: 36px; overflow: visible; border: 0; border-radius: 7px; background: transparent; box-shadow: none; }
.mark::before { position: absolute; width: 18px; height: 25px; border: 2px solid var(--green); border-radius: 4px; background: var(--white); box-shadow: none; content: ""; transform: rotate(-4deg) translate(2px, -1px); }
.mark::after { position: absolute; width: 18px; height: 25px; border: 2px solid var(--mint-strong); border-radius: 4px; background: var(--mint); content: ""; transform: rotate(6deg) translate(-4px, 3px); }
.nav-links { gap: 26px; color: #50605b; font-size: 13px; }
.nav-links a { padding: 8px 0; white-space: nowrap; }
.nav-links a:hover { color: var(--green); }
.nav-action { min-height: 42px; padding: 10px 15px; border-radius: 6px; background: var(--green); box-shadow: none; }
.nav-action:hover { background: var(--green-dark); }
.button { min-height: 48px; padding: 13px 18px; border-radius: 6px; font-size: 14px; letter-spacing: 0; }
.button.primary { background: var(--green); box-shadow: none; }
.button.primary:hover { background: var(--green-dark); box-shadow: none; }
.button.secondary { border-color: #c7d5ce; background: var(--white); }
.button.secondary:hover { color: var(--green-dark); border-color: var(--green); }
.eyebrow { margin-bottom: 16px; padding: 6px 10px; border-radius: 999px; font-size: 11px; letter-spacing: 0.02em; }
.section-kicker { color: var(--green); line-height: 1.2; }
.section-heading { gap: 14px; max-width: 800px; margin-bottom: 36px; }
.section-heading h2 { font-size: clamp(34px, 4.3vw, 56px); line-height: 1.04; }
.section-heading p { max-width: 660px; font-size: 16px; line-height: 1.62; }
.footer { padding: 32px 0 38px; border-top: 1px solid var(--line); font-size: 12px; line-height: 1.5; }

/* Homepage */
.home-page .site-header { background: rgba(255, 255, 255, 0.96); }
.home-hero { min-height: 630px; background-color: #eff4f1; background-image: none; background-position: center right; background-size: cover; }
.home-hero::after { display: none; }
.home-hero-inner { min-height: 630px; align-items: center; }
.home-hero-copy { max-width: 570px; padding: 76px 0; }
.home-hero-copy .eyebrow { border-color: rgba(24, 121, 95, 0.2); background: rgba(255, 255, 255, 0.92); }
.home-hero-copy h1 { max-width: 570px; margin-bottom: 24px; color: var(--green-dark); font-size: clamp(52px, 6vw, 78px); line-height: 0.98; letter-spacing: 0; }
.home-hero-copy h1 em { color: var(--green); }
.home-hero-lead { max-width: 510px; margin-bottom: 30px; color: #34544a; font-size: 18px; line-height: 1.58; }
.home-intro { padding: 54px 0 52px; }
.home-intro-grid { grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr); gap: 88px; }
.home-intro h2 { max-width: 590px; font-size: clamp(34px, 4vw, 54px); line-height: 1.04; }
.home-intro-grid > p { max-width: 450px; font-size: 16px; line-height: 1.62; }
.home-section { padding: 90px 0; }
.home-games { background: var(--white); }
.home-game-grid { gap: 20px; }
.home-game-card { grid-template-rows: minmax(290px, 1fr) auto; border: 0; border-radius: 8px; background: var(--white); box-shadow: var(--shadow-soft); }
.home-game-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.home-game-art { min-height: 305px; background-position: center; background-size: cover; }
.home-game-art::before, .home-game-art::after, .home-game-mark { display: none; }
.home-game-card.pokemon .home-game-art { color: var(--ink); background-image: none; }
.home-game-card.onepiece .home-game-art { color: var(--ink); background-image: none; }
.home-game-sticker { top: auto; right: auto; bottom: 20px; left: 20px; width: auto; height: auto; padding: 8px 10px; border: 0; border-radius: 4px; color: var(--green-dark); background: rgba(255, 255, 255, 0.94); font-size: 10px; line-height: 1.2; text-align: left; transform: none; }
.home-game-copy { gap: 12px; padding: 27px 28px 29px; }
.home-card-label { color: var(--green); font-size: 11px; }
.home-game-copy h3 { max-width: 430px; margin-bottom: 4px; font-size: clamp(25px, 2.5vw, 32px); line-height: 1.08; }
.home-game-copy > span { margin-top: 4px; font-size: 13px; }
.home-choices { background: var(--paper); }
.choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.choice-grid a, .choice-grid a:last-child { min-height: 190px; padding: 27px 28px; border: 0; background: var(--white); }
.choice-grid a:hover { background: #f7fbf8; }
.choice-grid span { color: var(--green); font-size: 12px; }
.choice-grid strong { max-width: 365px; font-size: 21px; line-height: 1.16; }
.choice-grid small { max-width: 360px; margin-top: 4px; font-size: 13px; line-height: 1.48; }
.home-method { background: var(--white); }
.method-grid { gap: 0; border-top: 1px solid var(--line); }
.method-grid article { min-height: 206px; padding: 29px 30px 28px 0; }
.method-grid article + article { padding-left: 30px; }
.method-grid article > span { width: auto; height: auto; margin-bottom: 22px; border-radius: 0; color: var(--green); background: transparent; font-size: 13px; }
.method-grid h3 { font-size: 20px; line-height: 1.15; }
.method-grid p { max-width: 285px; font-size: 14px; line-height: 1.55; }
.home-check { background: #103d34; }
.home-check-grid { gap: 84px; }
.home-check h2 { font-size: clamp(42px, 5vw, 66px); line-height: 1; }
.home-check-sample { padding: 25px; border: 0; border-radius: 8px; box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16); }
.sample-verdict { padding: 18px; border-left-width: 4px; }
.sample-points span { padding: 12px 13px; border-radius: 5px; }
.home-final { background: var(--white); }
.home-final-inner { padding: 10px 0 0; }
.home-final h2 { font-size: clamp(38px, 4.8vw, 58px); line-height: 1.02; }

/* Game guides */
.game-hero { padding: 84px 0 86px; background: var(--white); }
.game-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(380px, 0.74fr); gap: 76px; }
.game-hero h1 { max-width: 660px; font-size: clamp(46px, 5.5vw, 72px); line-height: 1.02; }
.game-hero h1 span { margin-top: 8px; }
.game-hero .lead { max-width: 590px; font-size: 18px; line-height: 1.6; }
.game-showcase { min-height: 440px; overflow: hidden; border: 0; border-radius: 8px; background-position: center; background-size: cover; box-shadow: var(--shadow); }
.pokemon-visual { background-image: none; }
.onepiece-visual { background-image: none; }
.showcase-frame, .showcase-stamp, .showcase-copy { display: none; }
.game-showcase-label { position: absolute; right: 20px; bottom: 20px; left: 20px; display: grid; gap: 6px; padding: 14px 15px; border-radius: 5px; color: var(--green-dark); background: rgba(255, 255, 255, 0.94); }
.game-showcase-label span { color: var(--green); font-size: 10px; font-weight: 900; letter-spacing: 0.09em; text-transform: uppercase; }
.game-showcase-label strong { font-size: 16px; line-height: 1.2; }
.guide-grid { gap: 18px; }
.guide-block { min-height: 286px; gap: 16px; padding: 28px; border-color: var(--line); border-radius: 7px; box-shadow: 0 6px 18px rgba(15, 41, 34, 0.035); }
.guide-block h3 { font-size: 23px; line-height: 1.16; }
.guide-block p { line-height: 1.6; }
.guide-block li { padding-left: 18px; font-size: 13px; line-height: 1.48; }
.route-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.route-card { min-height: 176px; gap: 14px; padding: 23px; border-radius: 7px; box-shadow: none; }
.route-card h3 { font-size: 20px; line-height: 1.16; }
.route-card p { font-size: 13px; line-height: 1.55; }
.source-row { gap: 10px; padding-top: 20px; }
.final-cta { padding-top: 34px; }

/* Karta Check */
.check-page .hero { padding: 76px 0 88px; border-bottom: 0; background: var(--white); }
.check-layout { grid-template-columns: minmax(0, 0.76fr) minmax(540px, 1.24fr); gap: 74px; }
.check-intro { top: 28px; }
.check-intro h1 { font-size: clamp(48px, 5vw, 68px); line-height: 1; }
.check-intro p { font-size: 17px; line-height: 1.62; }
.check-note { padding: 19px; border-left-width: 4px; }
.tool { border: 0; border-radius: 8px; box-shadow: var(--shadow); }
.tool-top { gap: 10px; padding: 28px; }
.tool-top h2 { font-size: 28px; line-height: 1.16; }
.tool-top p { font-size: 15px; line-height: 1.55; }
.form { gap: 18px; padding: 28px; }
label { gap: 8px; font-size: 13px; }
input, select { min-height: 48px; padding: 0 13px; }
.form select { padding-right: 44px; background-position: right 18px center; }
textarea { min-height: 132px; padding: 13px; }
.result { margin: 0 28px 28px; }

/* Existing decision guides: Start, Nákup, Prodej, Grading, Sealed. */
.decision-page .hero { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.58fr); gap: 72px; align-items: end; padding: 86px 0 80px; border-bottom: 0; background: var(--white); }
.decision-page .hero h1 { max-width: 720px; margin-bottom: 20px; font-size: clamp(42px, 5vw, 68px); line-height: 1.04; }
.decision-page .hero .lead { max-width: 650px; margin-bottom: 28px; font-size: 18px; line-height: 1.62; }
.decision-page .signal { padding: 26px; border: 0; border-radius: 8px; color: #fff; background: var(--green-dark); box-shadow: var(--shadow); }
.decision-page .signal strong { display: block; margin-bottom: 10px; color: #a8e8ca; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.decision-page .signal p { margin: 0; color: #e2efe9; font-size: 14px; line-height: 1.6; }
.decision-page .band { border-color: var(--line); background: var(--paper); }
.decision-page .section { padding: 78px 0; }
.decision-page .section-head { max-width: 720px; margin-bottom: 34px; }
.decision-page .section-head h2 { margin-bottom: 13px; font-size: clamp(32px, 3.8vw, 50px); line-height: 1.07; }
.decision-page .section-head p { font-size: 16px; line-height: 1.62; }
.decision-page .cards { gap: 16px; }
.decision-page .guide-card { min-height: 220px; padding: 25px; border-color: var(--line); border-radius: 7px; background: var(--white); box-shadow: 0 5px 18px rgba(15, 41, 34, 0.035); }
.decision-page .guide-card strong { color: var(--green); font-size: 12px; letter-spacing: 0.06em; }
.decision-page .guide-card h3 { margin: 11px 0 10px; font-size: 21px; line-height: 1.2; }
.decision-page .guide-card p { font-size: 14px; line-height: 1.58; }
.decision-page .checklist { display: grid; gap: 12px; }
.decision-page .checklist li { line-height: 1.55; }
.decision-page .aside { padding: 24px; border-radius: 8px; background: var(--mint); }
.decision-page .aside h3 { font-size: 20px; }

/* Legal and empty states. */
.legal-page, .not-found-page { min-height: 100vh; background: var(--paper); }
.legal-hero { padding: 84px 0 62px; background: var(--white); }
.legal-hero h1 { max-width: 690px; margin-bottom: 18px; color: var(--green-dark); font-size: clamp(48px, 6vw, 76px); line-height: 1; }
.legal-hero p:not(.section-kicker) { max-width: 670px; margin-bottom: 0; color: var(--muted); font-size: 18px; line-height: 1.62; }
.legal-content { padding: 28px 0 78px; }
.legal-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.legal-grid article { min-height: 260px; padding: 27px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: 0 5px 18px rgba(15, 41, 34, 0.035); }
.legal-grid article > span { display: block; margin-bottom: 28px; color: var(--green); font-size: 12px; font-weight: 900; }
.legal-grid h2 { margin-bottom: 12px; font-size: 22px; line-height: 1.18; }
.legal-grid p, .legal-grid li { color: var(--muted); font-size: 14px; line-height: 1.62; }
.legal-grid ul { display: grid; gap: 8px; margin: 0; padding-left: 19px; }
.legal-grid a { color: var(--green); font-weight: 800; text-decoration: none; }
.not-found { display: grid; align-items: center; min-height: calc(100vh - 78px); padding: 80px 0; background-image: none; background-position: right center; background-repeat: no-repeat; background-size: cover; }
.not-found .shell { width: min(1180px, calc(100% - 48px)); }
.not-found h1 { max-width: 600px; margin-bottom: 18px; color: var(--green-dark); font-size: clamp(46px, 6vw, 78px); line-height: 1; }
.not-found p:not(.section-kicker) { max-width: 480px; margin-bottom: 28px; color: #34544a; font-size: 18px; line-height: 1.6; }

@media (max-width: 980px) {
  .nav-action { display: none; }
  .home-hero, .home-hero-inner { min-height: 580px; }
  .home-hero-copy { max-width: 490px; }
  .home-intro-grid, .home-check-grid, .game-hero-grid, .check-layout, .decision-page .hero { grid-template-columns: 1fr; gap: 34px; }
  .game-showcase { max-width: 620px; min-height: 390px; }
  .check-intro { position: static; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-grid article { min-height: auto; }
}

@media (max-width: 700px) {
  .shell, .not-found .shell { width: min(100% - 28px, 1180px); }
  .announcement .shell { align-items: center; flex-direction: row; min-height: 38px; padding: 6px 0; }
  .announcement span { max-width: 245px; line-height: 1.25; }
  .announcement a { white-space: nowrap; }
  .nav { gap: 14px; min-height: 74px; padding: 14px 0; }
  .nav-links { gap: 18px; justify-content: flex-start; padding-bottom: 4px; font-size: 12px; }
  .home-hero { min-height: 0; background-color: var(--white); background-position: center top; background-repeat: no-repeat; background-size: auto 205px; }
  .home-hero-inner { min-height: 0; }
  .home-hero-copy { max-width: 350px; padding: 224px 0 28px; }
  .home-hero-copy h1 { font-size: clamp(42px, 12vw, 54px); line-height: 1.02; }
  .home-hero-lead { max-width: 325px; font-size: 15px; line-height: 1.52; }
  .home-hero-copy .button-row { flex-wrap: nowrap; }
  .home-hero-copy .button-row .button { flex: 1; width: auto; padding-right: 10px; padding-left: 10px; white-space: nowrap; }
  .home-intro, .home-section { padding: 62px 0; }
  .home-intro-grid { gap: 18px; }
  .home-intro h2, .section-heading h2 { font-size: clamp(32px, 9.2vw, 46px); }
  .home-game-grid, .route-grid, .guide-grid, .method-grid, .choice-grid { grid-template-columns: 1fr; }
  .home-game-card { grid-template-rows: 248px auto; }
  .home-game-art { min-height: 248px; }
  .home-game-copy { padding: 23px; }
  .home-game-copy h3 { font-size: 27px; }
  .choice-grid a, .choice-grid a:last-child { min-height: 150px; padding: 23px; }
  .choice-grid strong { font-size: 20px; }
  .method-grid article, .method-grid article + article { min-height: auto; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .method-grid article:last-child { border-bottom: 0; }
  .home-check-grid { gap: 34px; }
  .home-check h2 { font-size: clamp(40px, 12vw, 54px); }
  .home-check-sample { padding: 18px; }
  .home-final-inner { gap: 24px; padding-top: 28px; }
  .game-hero { padding: 58px 0 64px; }
  .game-hero h1, .decision-page .hero h1 { font-size: clamp(40px, 11vw, 56px); line-height: 1.04; }
  .game-hero .lead, .decision-page .hero .lead { font-size: 16px; line-height: 1.6; }
  .game-showcase { min-height: 365px; }
  .guide-block { min-height: auto; padding: 23px; }
  .route-card { min-height: auto; padding: 21px; }
  .source-row .button { width: 100%; }
  .check-page .hero { padding: 56px 0 64px; }
  .tool-top, .form { padding: 22px; }
  .result { margin: 0 22px 22px; }
  .decision-page .hero { gap: 28px; padding: 58px 0 60px; }
  .decision-page .signal { padding: 22px; }
  .decision-page .section { padding: 60px 0; }
  .decision-page .guide-card { min-height: auto; padding: 22px; }
  .legal-hero { padding: 58px 0 44px; }
  .legal-hero h1 { font-size: clamp(44px, 12vw, 58px); }
  .legal-hero p:not(.section-kicker) { font-size: 16px; }
  .legal-content { padding: 20px 0 58px; }
  .legal-grid article { padding: 23px; }
  .not-found { min-height: calc(100vh - 74px); padding: 58px 0; background-position: 67% center; }
  .not-found h1 { font-size: clamp(44px, 12vw, 60px); }
  .not-found p:not(.section-kicker) { max-width: 330px; font-size: 16px; }
}

/* TCG Kompas illustration system: original CSS shapes, no generated imagery. */
.mark {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  box-shadow: 0 7px 17px rgba(15, 41, 34, 0.06);
}
.mark::before {
  width: 19px;
  height: 19px;
  border: 3px solid var(--green);
  border-top-color: #9bb0a6;
  border-radius: 50%;
  background: transparent;
  transform: rotate(-35deg);
}
.mark::after {
  position: absolute;
  width: 3px;
  height: 15px;
  border-radius: 99px;
  background: var(--green-dark);
  content: "";
  transform: rotate(38deg);
}

.home-hero {
  min-height: 620px;
  border-bottom: 1px solid var(--line);
  background-color: var(--paper);
  background-image: none;
}
.home-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
  gap: 74px;
  min-height: 620px;
}
.home-hero-copy { max-width: 590px; }
.home-compass-art { display: grid; align-items: center; min-width: 0; }
.compass-panel {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.compass-panel::before,
.compass-panel::after {
  position: absolute;
  border: 1px solid var(--mint-strong);
  border-radius: 50%;
  content: "";
}
.compass-panel::before { width: 230px; height: 230px; top: -112px; right: -96px; }
.compass-panel::after { width: 160px; height: 160px; bottom: -98px; left: -82px; }
.compass-label {
  position: absolute;
  z-index: 3;
  top: 23px;
  left: 24px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.compass-ring-large,
.compass-ring-small {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--mint-strong);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.compass-ring-large { width: 300px; height: 300px; }
.compass-ring-small { width: 202px; height: 202px; border-color: var(--line); }
.compass-axis {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 330px;
  background: var(--mint-strong);
  transform-origin: center;
}
.compass-axis-one { transform: translate(-50%, -50%) rotate(45deg); }
.compass-axis-two { transform: translate(-50%, -50%) rotate(-45deg); }
.compass-needle-large {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 224px;
  background: var(--green);
  clip-path: polygon(50% 0, 100% 58%, 50% 100%, 0 58%);
  transform: translate(-50%, -50%) rotate(42deg);
}
.compass-center {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border: 7px solid var(--white);
  border-radius: 50%;
  background: var(--green-dark);
  box-shadow: 0 0 0 1px var(--green);
  transform: translate(-50%, -50%);
}
.compass-card {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 102px;
  height: 145px;
  border: 1px solid rgba(16, 32, 29, 0.22);
  border-radius: 7px;
  font-size: 30px;
  font-weight: 950;
  letter-spacing: 0;
  box-shadow: 0 14px 25px rgba(15, 41, 34, 0.13);
}
.compass-card::after {
  position: absolute;
  inset: 9px;
  border: 1px solid currentColor;
  border-radius: 4px;
  content: "";
  opacity: 0.55;
}
.compass-card-pokemon { top: 88px; right: 42px; color: var(--white); background: var(--pokemon-blue); transform: rotate(8deg); }
.compass-card-onepiece { bottom: 62px; left: 46px; color: var(--gold); background: var(--navy); transform: rotate(-8deg); }
.compass-direction {
  position: absolute;
  z-index: 3;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.compass-direction-n { top: 75px; left: 50%; transform: translateX(-50%); }
.compass-direction-e { top: 50%; right: 20px; transform: translateY(-50%) rotate(90deg); }
.compass-direction-s { bottom: 31px; left: 50%; transform: translateX(-50%); }

.home-game-art { min-height: 305px; background-image: none; isolation: isolate; }
.home-game-art::before {
  position: absolute;
  z-index: -1;
  width: 156px;
  height: 215px;
  top: 46px;
  left: 50%;
  border: 1px solid rgba(16, 32, 29, 0.18);
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 20px 30px rgba(15, 41, 34, 0.13);
  content: "";
  transform: translateX(-50%) rotate(-8deg);
}
.home-game-art::after {
  position: absolute;
  z-index: -2;
  width: 210px;
  height: 210px;
  top: 47px;
  left: 50%;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.4;
  transform: translateX(-50%);
}
.home-game-card.pokemon .home-game-art { color: var(--pokemon-blue-dark); background: var(--pokemon-panel); }
.home-game-card.onepiece .home-game-art { color: var(--gold); background: var(--navy); }
.home-game-card.pokemon .home-game-art::before { border-color: rgba(200, 59, 52, 0.48); }
.home-game-card.onepiece .home-game-art::before { border-color: rgba(187, 140, 53, 0.64); background: #1e426b; transform: translateX(-50%) rotate(8deg); }
.home-game-mark {
  position: absolute;
  top: 89px;
  left: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 130px;
  height: 176px;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: var(--red);
  background: var(--white);
  font-size: 53px;
  font-weight: 950;
  letter-spacing: 0;
  transform: translateX(-50%) rotate(6deg);
}
.home-game-mark::before {
  position: absolute;
  inset: 11px;
  border: 1px solid currentColor;
  border-radius: 3px;
  content: "";
  opacity: 0.45;
}
.home-game-card.onepiece .home-game-mark { color: var(--gold); background: var(--navy); transform: translateX(-50%) rotate(-6deg); }
.home-game-sticker { z-index: 2; color: var(--green-dark); background: var(--white); box-shadow: 0 7px 15px rgba(15, 41, 34, 0.09); }
.home-game-card.onepiece .home-game-sticker { color: var(--navy); }

.game-showcase {
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  background-image: none;
  box-shadow: var(--shadow);
}
.pokemon-visual { color: var(--pokemon-blue-dark); background: var(--pokemon-panel); }
.onepiece-visual { color: var(--gold); background: var(--navy); }
.game-showcase::before {
  position: absolute;
  width: 305px;
  height: 305px;
  top: 50%;
  left: 50%;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.38;
  transform: translate(-50%, -50%);
}
.game-showcase::after {
  position: absolute;
  width: 190px;
  height: 1px;
  top: 50%;
  left: 50%;
  background: currentColor;
  content: "";
  opacity: 0.38;
  transform: translate(-50%, -50%) rotate(-42deg);
}
.showcase-card {
  position: absolute;
  display: grid;
  place-items: center;
  width: 157px;
  height: 225px;
  border: 1px solid currentColor;
  border-radius: 8px;
  box-shadow: 0 20px 32px rgba(15, 41, 34, 0.16);
}
.showcase-card::after { position: absolute; inset: 12px; border: 1px solid currentColor; border-radius: 4px; content: ""; opacity: 0.55; }
.showcase-card-back { top: 105px; left: calc(50% - 125px); background: rgba(255, 255, 255, 0.86); transform: rotate(-10deg); }
.showcase-card-front { top: 92px; left: calc(50% - 28px); background: var(--white); font-size: 57px; font-weight: 950; transform: rotate(8deg); }
.onepiece-visual .showcase-card-back { border-color: var(--gold); background: #21466f; }
.onepiece-visual .showcase-card-front { border-color: var(--gold); background: #18375c; }
.showcase-orbit { position: absolute; width: 212px; height: 212px; top: 50%; left: 50%; border: 1px solid currentColor; border-radius: 50%; opacity: 0.28; transform: translate(-50%, -50%); }
.game-showcase-label { z-index: 5; color: var(--green-dark); background: var(--white); }
.pokemon-visual .game-showcase-label span { color: var(--red); }
.onepiece-visual .game-showcase-label span { color: var(--navy); }

.not-found { position: relative; overflow: hidden; background: var(--white); background-image: none; }
.not-found::after { position: absolute; width: 430px; height: 430px; top: 50%; right: -95px; border: 1px solid var(--mint-strong); border-radius: 50%; content: ""; transform: translateY(-50%); }
.not-found::before { position: absolute; width: 8px; height: 310px; top: 50%; right: 105px; background: var(--green); clip-path: polygon(50% 0, 100% 58%, 50% 100%, 0 58%); content: ""; transform: translateY(-50%) rotate(42deg); }
.not-found .shell { position: relative; z-index: 1; }

@media (max-width: 980px) {
  .home-hero, .home-hero-inner { min-height: 0; }
  .home-hero-inner { grid-template-columns: 1fr; gap: 22px; padding: 58px 0; }
  .home-hero-copy { padding: 0; }
  .home-compass-art { max-width: 620px; width: 100%; }
  .compass-panel { min-height: 390px; }
}

@media (max-width: 700px) {
  .home-hero { background: var(--white); }
  .home-hero-inner { gap: 18px; padding: 28px 0 14px; }
  .home-hero-copy { max-width: 350px; padding: 0; }
  .home-hero-copy h1 { margin-bottom: 18px; font-size: clamp(42px, 12vw, 54px); }
  .home-hero-lead { max-width: 340px; margin-bottom: 24px; }
  .home-hero-copy .button-row { flex-wrap: wrap; }
  .home-hero-copy .button-row .button { flex: 0 1 auto; width: auto; padding-right: 14px; padding-left: 14px; }
  .home-intro { padding-top: 32px; }
  .compass-panel { min-height: 210px; }
  .compass-label { top: 15px; left: 16px; font-size: 8px; }
  .compass-ring-large { width: 172px; height: 172px; }
  .compass-ring-small { width: 112px; height: 112px; }
  .compass-axis { height: 192px; }
  .compass-needle-large { width: 9px; height: 126px; }
  .compass-center { width: 22px; height: 22px; border-width: 5px; }
  .compass-card { width: 63px; height: 92px; border-radius: 5px; font-size: 19px; }
  .compass-card::after { inset: 6px; }
  .compass-card-pokemon { top: 48px; right: 27px; }
  .compass-card-onepiece { bottom: 29px; left: 28px; }
  .compass-direction { font-size: 7px; }
  .compass-direction-n { top: 35px; }
  .compass-direction-e { right: 10px; }
  .compass-direction-s { bottom: 13px; }
  .home-game-art { min-height: 248px; }
  .home-game-art::before { width: 124px; height: 171px; top: 38px; }
  .home-game-art::after { width: 170px; height: 170px; top: 40px; }
  .home-game-mark { top: 69px; width: 104px; height: 143px; font-size: 42px; }
  .game-showcase { min-height: 330px; }
  .showcase-card { width: 116px; height: 166px; }
  .showcase-card-back { top: 82px; left: calc(50% - 100px); }
  .showcase-card-front { top: 73px; left: calc(50% - 15px); font-size: 42px; }
  .showcase-orbit, .game-showcase::before { width: 230px; height: 230px; }
  .not-found::after { width: 250px; height: 250px; right: -110px; }
  .not-found::before { height: 175px; right: 58px; }
}

/* Clarity pass: full-width reading bands and progressive form detail. */
.decision-page main > .shell.hero,
.decision-page main > .shell.section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
}
.decision-page main > .shell.hero { background: var(--white); }
.decision-page main > .shell.section { background: var(--white); }
.decision-page main > .band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.decision-page main > .band > .shell.section { background: transparent; }

.pokemon-page .section.band,
.onepiece-page .section.band { background: var(--paper); }
.pokemon-page .section:not(.band),
.onepiece-page .section:not(.band) { background: var(--white); }

.optional-details {
  display: grid;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.optional-details summary {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}
.optional-details summary::marker { color: var(--green); }
.optional-details > p { margin: -6px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.optional-details .grid-2 { margin-top: -2px; }

/* Decision guides share one source of truth instead of page-local style blocks. */
.decision-page .section-head { display: grid; gap: 12px; }
.decision-page .cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.decision-page .cards.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.decision-page .checklist { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.decision-page .checklist li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; padding: 14px; border: 1px solid var(--line); border-radius: 7px; color: var(--muted); background: var(--white); }
.decision-page .checklist li::before { width: 12px; height: 12px; margin-top: 5px; border: 3px solid var(--green); border-top-color: #9bb0a6; border-radius: 50%; content: ""; }
.decision-page .warning-list li::before { border-color: #9bb0a6; border-left-color: var(--green); }
.decision-page .split { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr); gap: 34px; align-items: start; }
.decision-page .aside { border: 1px solid rgba(17, 120, 95, 0.18); box-shadow: var(--shadow-soft); }
.decision-page .aside h3 { margin-bottom: 10px; }
.decision-page .aside p { margin-bottom: 18px; color: var(--muted); line-height: 1.55; }
.decision-page .signal { position: relative; overflow: hidden; }
.decision-page .signal > * { position: relative; z-index: 1; }
.decision-page .signal::before { position: absolute; width: 168px; height: 168px; top: -92px; right: -76px; border: 1px solid rgba(168, 232, 202, 0.34); border-radius: 50%; content: ""; }
.decision-page .signal::after { position: absolute; width: 5px; height: 80px; right: 43px; top: 24px; background: #a8e8ca; clip-path: polygon(50% 0, 100% 58%, 50% 100%, 0 58%); content: ""; opacity: 0.8; transform: rotate(42deg); }

/* Homepage prioritises a concrete choice over explaining the product twice. */
.home-page .choice-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }

@media (max-width: 700px) {
  .decision-page main > .shell.hero { padding: 46px max(14px, calc((100vw - 1180px) / 2)) 44px; }
  .decision-page main > .shell.section { padding: 60px max(14px, calc((100vw - 1180px) / 2)); }
  .decision-page main > .band > .shell.section { padding-top: 42px; padding-bottom: 48px; }
  .optional-details { gap: 14px; }
}

@media (max-width: 980px) {
  .decision-page .split { grid-template-columns: 1fr; gap: 30px; }
  .home-page .choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .decision-signal-grid { grid-template-columns: 1fr; }
  .decision-signal { min-height: 0; }
  .decision-page .cards,
  .decision-page .cards.two,
  .home-page .choice-grid { grid-template-columns: 1fr; }
  .decision-page .signal::after { right: 31px; top: 18px; height: 66px; }
}

/* Brand and component consistency pass: original compass mark, stable cards and clear dark-surface CTA. */
.brand { gap: 12px; }
.brand-name { display: inline-flex; align-items: baseline; gap: 5px; color: var(--green-dark); font-weight: 900; }
.brand-name > span { color: var(--green); }
.mark {
  display: block;
  width: 40px;
  height: 40px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.mark::before,
.mark::after { content: none; }
.mark img { display: block; width: 100%; height: 100%; }

.button.button-inverse {
  color: var(--green-dark);
  border-color: rgba(255, 255, 255, 0.4);
  background: var(--white);
  box-shadow: none;
}
.button.button-inverse:hover {
  color: var(--green-dark);
  border-color: #a8e8ca;
  background: #a8e8ca;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.home-check { position: relative; overflow: hidden; }
.home-check::before {
  position: absolute;
  top: 50%;
  right: max(-100px, calc((100vw - 1180px) / 2 - 150px));
  width: 360px;
  height: 360px;
  border: 1px solid rgba(168, 232, 202, 0.22);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}
.home-check::after {
  position: absolute;
  top: 50%;
  right: max(70px, calc((100vw - 1180px) / 2 + 55px));
  width: 8px;
  height: 214px;
  background: rgba(168, 232, 202, 0.26);
  clip-path: polygon(50% 0, 100% 58%, 50% 100%, 0 58%);
  content: "";
  transform: translateY(-50%) rotate(42deg);
}
.home-check-grid { position: relative; z-index: 1; }

.home-game-card {
  grid-template-rows: 305px minmax(224px, 1fr);
  min-height: 529px;
}
.home-game-art { align-self: stretch; }
.home-game-copy {
  grid-template-rows: auto minmax(70px, 1fr) auto;
  min-height: 224px;
}
.home-game-copy h3 {
  min-block-size: 2.16em;
  margin-bottom: 0;
}
.home-game-copy > span { align-self: end; }
.home-game-card.onepiece .home-game-mark,
.onepiece-visual .showcase-card-front {
  letter-spacing: 0;
  line-height: 1;
  text-indent: 0;
}
.home-game-card.onepiece .home-game-mark { font-size: 58px; }

/* Decision guides use a calm information panel, not a dark promotional card. */
.decision-page .signal {
  position: relative;
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 27px 28px 28px;
  overflow: hidden;
  border: 1px solid #cbded4;
  border-radius: 8px;
  color: var(--ink);
  background: #f4faf6;
  box-shadow: 0 10px 24px rgba(15, 61, 52, 0.05);
}
.decision-page .signal::before {
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  width: auto;
  height: 3px;
  border: 0;
  border-radius: 0 0 3px 3px;
  background: var(--green);
  content: "";
  opacity: 1;
  transform: none;
}
.decision-page .signal::after { content: none; }
.decision-page .signal > * { position: relative; z-index: auto; }
.decision-page .signal strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin: 0;
  padding: 6px 9px;
  border: 1px solid #cce6d8;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--white);
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}
.decision-page .signal strong::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}
.decision-page .signal p {
  margin: 0;
  color: #294b40;
  font-size: 15px;
  font-weight: 680;
  line-height: 1.62;
}

@media (max-width: 700px) {
  .decision-page .signal { gap: 14px; padding: 22px; }
  .decision-page .signal::before { right: 22px; left: 22px; }
}

@media (max-width: 700px) {
  .brand { gap: 10px; }
  .brand-name { font-size: 16px; }
  .mark { width: 38px; height: 38px; }
  .home-check::before { width: 270px; height: 270px; right: -128px; }
  .home-check::after { right: 32px; height: 150px; }
  .home-game-card { grid-template-rows: 248px minmax(208px, 1fr); min-height: 0; }
  .home-game-copy { min-height: 208px; }
}

/* Game colour systems: original TCG Kompas illustrations, not licensed artwork. */
:root {
  --pokemon-blue: #1f5fae;
  --pokemon-blue-dark: #143f7a;
  --pokemon-red: #dd4650;
  --onepiece-navy: #0b2342;
  --onepiece-panel: #fff7e2;
  --onepiece-gold: #e2b64e;
  --onepiece-gold-heading: #b57900;
  --onepiece-gold-deep: #8f5c00;
}

/* Shared home-page game signals. */
.compass-card-pokemon {
  border-color: var(--white);
  color: var(--pokemon-red);
  background: var(--pokemon-blue);
  box-shadow: 0 14px 25px rgba(31, 95, 174, 0.22);
}
.compass-card-pokemon::after { border-color: var(--white); }
.compass-card-onepiece {
  color: var(--onepiece-gold);
  background: var(--onepiece-navy);
  box-shadow: 0 14px 25px rgba(11, 35, 66, 0.22);
}
.game-tile.pokemon {
  border-color: rgba(42, 111, 189, 0.32);
  background: var(--pokemon-panel);
}
.game-tile.pokemon::before { border-color: var(--pokemon-blue); }
.game-tile.onepiece {
  border-color: rgba(226, 182, 78, 0.45);
  background: var(--onepiece-navy);
}
.game-tile.onepiece::before { border-color: var(--onepiece-gold); }

/* Homepage cards use the same focused card composition as the TCG Kompas panel. */
.home-game-card.pokemon .home-game-art {
  color: var(--pokemon-blue-dark);
  background: var(--pokemon-panel);
}
.home-game-card.pokemon .home-game-art::before {
  border: 2px solid var(--white);
  background: var(--pokemon-blue);
  box-shadow: 0 20px 30px rgba(20, 63, 122, 0.18);
}
.home-game-card.pokemon .home-game-art::after {
  border: 2px solid var(--pokemon-blue);
  opacity: 0.56;
}
.home-game-card.pokemon .home-game-mark {
  border-color: var(--white);
  color: var(--pokemon-red);
  background: var(--pokemon-blue);
  box-shadow: 0 14px 25px rgba(20, 63, 122, 0.2);
}
.home-game-card.pokemon .home-game-mark::before { border-color: var(--white); }
.home-game-card.pokemon .home-game-sticker {
  color: var(--pokemon-blue-dark);
  border-left: 3px solid var(--pokemon-red);
}
.home-game-card.pokemon .home-card-label,
.home-game-card.pokemon .home-game-copy > span { color: var(--pokemon-blue-dark); }
.home-game-card.pokemon .home-game-copy h3 { color: #173e77; }

.home-game-card.onepiece .home-game-art {
  color: var(--onepiece-navy);
  background: var(--onepiece-panel);
}
.home-game-card.onepiece .home-game-art::before {
  border: 2px solid var(--onepiece-gold);
  background: var(--onepiece-navy);
  box-shadow: 0 20px 30px rgba(11, 35, 66, 0.3);
}
.home-game-card.onepiece .home-game-art::after {
  border: 2px solid var(--onepiece-gold);
  opacity: 0.54;
}
.home-game-card.onepiece .home-game-mark {
  border-color: var(--onepiece-gold);
  color: var(--onepiece-gold);
  background: var(--onepiece-navy);
  box-shadow: 0 14px 25px rgba(11, 35, 66, 0.24);
}
.home-game-card.onepiece .home-game-sticker {
  color: var(--onepiece-gold-deep);
  border-left: 3px solid var(--onepiece-gold);
}
.home-game-card.onepiece .home-card-label,
.home-game-card.onepiece .home-game-copy > span { color: var(--onepiece-gold-deep); }
.home-game-card.onepiece .home-game-copy h3 { color: var(--onepiece-navy); }

/* Dedicated guide pages inherit the game, while the information surface stays calm. */
.pokemon-page .game-hero {
  border-color: #c9ddf1;
  background: #f5f9ff;
}
.pokemon-page .announcement { background: var(--pokemon-blue-dark); }
.pokemon-page .announcement a { color: #dcecff; }
.pokemon-page .eyebrow.red {
  color: var(--pokemon-blue-dark);
  border-color: rgba(42, 111, 189, 0.3);
  background: #eaf4ff;
}
.pokemon-page .eyebrow.red::before { background: var(--pokemon-red); }
.pokemon-page .game-hero h1 span { color: var(--pokemon-blue-dark); }
.pokemon-page .nav-links a:hover { color: var(--pokemon-blue-dark); }
.pokemon-page .nav-action { color: #fff; background: var(--pokemon-blue); }
.pokemon-page .nav-action:hover { background: var(--pokemon-blue-dark); }
.pokemon-page .button.primary { background: var(--pokemon-blue); }
.pokemon-page .button.primary:hover { background: var(--pokemon-blue-dark); }
.pokemon-page .button.secondary:hover { color: var(--pokemon-blue-dark); border-color: var(--pokemon-blue); }
.pokemon-page .section-kicker,
.pokemon-page .guide-block .number { color: var(--pokemon-blue-dark); }
.pokemon-page .guide-block li::before { background: var(--pokemon-blue); }
.pokemon-page .route-card .route-icon { background: var(--pokemon-blue); }
.pokemon-page .route-card:hover { border-color: rgba(31, 95, 174, 0.42); }

.onepiece-page .game-hero {
  border-color: #ead7a6;
  background: #fffaf0;
}
.onepiece-page .announcement { background: var(--onepiece-navy); }
.onepiece-page .announcement a { color: #ffe28d; }
.onepiece-page .eyebrow.navy {
  color: var(--onepiece-gold-deep);
  border-color: rgba(143, 92, 0, 0.28);
  background: #fff7e6;
}
.onepiece-page .eyebrow.navy::before { background: var(--onepiece-gold); }
.onepiece-page .game-hero h1 span,
.onepiece-page .section-heading h2,
.onepiece-page .guide-block h3,
.onepiece-page .route-card h3 { color: var(--onepiece-gold-heading); }
.onepiece-page .nav-links a:hover { color: var(--onepiece-gold-deep); }
.onepiece-page .nav-action,
.onepiece-page .button.primary {
  color: var(--onepiece-navy);
  background: var(--onepiece-gold);
}
.onepiece-page .nav-action:hover,
.onepiece-page .button.primary:hover {
  color: #fff;
  background: var(--onepiece-gold-deep);
}
.onepiece-page .button.secondary:hover {
  color: var(--onepiece-gold-deep);
  border-color: var(--onepiece-gold-deep);
}
.onepiece-page .section-kicker,
.onepiece-page .guide-block .number { color: var(--onepiece-gold-deep); }
.onepiece-page .guide-block li::before { background: var(--onepiece-gold); }
.onepiece-page .route-card .route-icon { color: var(--onepiece-navy); background: var(--onepiece-gold); }
.onepiece-page .route-card:hover { border-color: rgba(226, 182, 78, 0.55); }
.pokemon-page .section.band { background: #f5f9ff; }
.onepiece-page .section.band { background: #fffaf0; }

.pokemon-visual {
  color: var(--pokemon-blue-dark);
  background: var(--pokemon-panel);
}
.pokemon-visual::before,
.pokemon-visual::after,
.pokemon-visual .showcase-orbit { display: none; }
.pokemon-visual .showcase-card-back {
  border: 2px solid var(--white);
  background: var(--pokemon-blue);
}
.pokemon-visual .showcase-card-front {
  border: 2px solid var(--white);
  color: var(--pokemon-red);
  background: var(--pokemon-blue);
}
.pokemon-visual .showcase-card-front::after { border-color: var(--white); }
.pokemon-visual .game-showcase-label {
  border-left: 4px solid var(--pokemon-blue);
  color: #173e77;
}
.pokemon-visual .game-showcase-label span { color: var(--pokemon-blue-dark); }

.onepiece-visual {
  color: var(--onepiece-navy);
  background: var(--onepiece-panel);
}
.onepiece-visual::after { display: none; }
.onepiece-visual .showcase-card-back {
  border: 2px solid var(--onepiece-gold);
  background: var(--onepiece-navy);
}
.onepiece-visual .showcase-card-front {
  border: 2px solid var(--onepiece-gold);
  color: var(--onepiece-gold);
  background: var(--onepiece-navy);
}
.onepiece-visual .game-showcase-label {
  border-left: 4px solid var(--onepiece-gold);
  color: var(--onepiece-navy);
}
.onepiece-visual .game-showcase-label span { color: var(--onepiece-gold-deep); }

/* Start Kompas: product and game orientation. */
.start-page { background: var(--paper); }
.start-hero { padding: 80px 0 86px; border-bottom: 1px solid var(--line); background: var(--white); }
.start-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, 0.76fr); gap: 74px; align-items: center; }
.start-hero-copy h1 { max-width: 690px; margin-bottom: 21px; font-size: clamp(48px, 6.1vw, 78px); line-height: 0.98; }
.start-hero-copy h1 em { color: var(--green); font-style: normal; }
.start-hero-copy .lead { max-width: 630px; margin-bottom: 30px; }
.start-hero-points { display: flex; flex-wrap: wrap; gap: 9px 18px; margin-top: 26px; color: var(--muted); font-size: 12px; font-weight: 780; }
.start-hero-points span { display: inline-flex; align-items: center; gap: 7px; }
.start-hero-points span::before { width: 6px; height: 6px; border-radius: 50%; background: var(--green); content: ""; }
.start-atlas { position: relative; min-height: 420px; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: #fbfdfc; box-shadow: var(--shadow); }
.start-atlas::before, .start-atlas::after { position: absolute; border: 1px solid var(--mint-strong); border-radius: 50%; content: ""; }
.start-atlas::before { top: -110px; right: -90px; width: 230px; height: 230px; }
.start-atlas::after { bottom: -110px; left: -100px; width: 190px; height: 190px; }
.start-atlas-label { position: absolute; z-index: 3; top: 23px; left: 25px; color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.start-atlas-ring { position: absolute; top: 50%; left: 50%; border: 1px solid var(--mint-strong); border-radius: 50%; transform: translate(-50%, -50%); }
.start-atlas-ring-a { width: 260px; height: 260px; }
.start-atlas-ring-b { width: 166px; height: 166px; border-color: var(--line); }
.start-atlas-axis { position: absolute; top: 50%; left: 50%; width: 1px; height: 300px; background: var(--mint-strong); transform-origin: center; }
.start-atlas-axis-a { transform: translate(-50%, -50%) rotate(45deg); }
.start-atlas-axis-b { transform: translate(-50%, -50%) rotate(-45deg); }
.start-atlas-needle { position: absolute; z-index: 2; top: 50%; left: 50%; width: 12px; height: 196px; background: var(--green); clip-path: polygon(50% 0, 100% 58%, 50% 100%, 0 58%); transform: translate(-50%, -50%) rotate(42deg); }
.start-atlas-center { position: absolute; z-index: 3; top: 50%; left: 50%; width: 28px; height: 28px; border: 7px solid var(--white); border-radius: 50%; background: var(--green-dark); box-shadow: 0 0 0 1px var(--green); transform: translate(-50%, -50%); }
.start-atlas-card { position: absolute; z-index: 4; display: grid; place-items: center; width: 94px; height: 124px; border: 1px solid rgba(16, 24, 26, 0.15); border-radius: 7px; color: var(--ink); box-shadow: 0 13px 24px rgba(15, 41, 34, 0.12); font-size: 11px; font-weight: 950; letter-spacing: 0.07em; }
.start-atlas-card::before { position: absolute; inset: 8px; border: 1px solid currentColor; border-radius: 4px; content: ""; opacity: 0.28; }
.start-atlas-card-one { top: 94px; right: 31px; color: var(--navy); background: #eaf2fb; transform: rotate(8deg); }
.start-atlas-card-two { bottom: 42px; left: 32px; color: #8b251f; background: #fff0ee; transform: rotate(-8deg); }
.start-atlas-card-three { right: 87px; bottom: 36px; color: #80601b; background: #fff6df; transform: rotate(5deg); }
.start-section { padding: 84px 0; }
.start-basics { background: var(--white); }
.start-basics-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.start-basics-grid article { min-height: 204px; padding: 27px 28px 24px 0; border-right: 1px solid var(--line); }
.start-basics-grid article + article { padding-left: 28px; }
.start-basics-grid article:last-child { border-right: 0; }
.start-basic-number { display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 20px; border-radius: 50%; color: #fff; background: var(--green); font-size: 11px; font-weight: 900; }
.start-basics-grid h3 { margin-bottom: 9px; color: var(--green-dark); font-size: 21px; }
.start-basics-grid p { max-width: 280px; margin-bottom: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.start-games-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.start-games-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; }
.start-game { display: grid; grid-template-columns: 45px minmax(0, 1fr); align-items: center; gap: 13px; min-height: 108px; padding: 17px; border: 1px solid var(--line); border-radius: 7px; background: var(--white); }
a.start-game { text-decoration: none; transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease; }
a.start-game:hover { border-color: rgba(17, 120, 95, 0.42); box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.start-game-mark { display: grid; place-items: center; width: 45px; height: 58px; border: 1px solid rgba(16, 24, 26, 0.14); border-radius: 6px; font-size: 14px; font-weight: 950; }
.start-game strong, .start-game small, .start-game b { display: block; }
.start-game strong { margin-bottom: 5px; font-size: 14px; line-height: 1.2; }
.start-game small { color: var(--muted); font-size: 11px; line-height: 1.38; }
.start-game b { grid-column: 2; color: var(--green-dark); font-size: 11px; }
.start-game-pokemon { border-top: 3px solid var(--red); }
.start-game-pokemon .start-game-mark { color: #8b251f; background: var(--pokemon-panel); }
.start-game-onepiece { border-top: 3px solid var(--gold); }
.start-game-onepiece .start-game-mark { color: #fff; background: var(--navy); }
.start-game-neutral .start-game-mark { color: var(--green-dark); background: var(--mint); }
.start-path-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.start-path-grid article { display: flex; flex-direction: column; min-height: 290px; padding: 26px; border: 1px solid var(--line); border-radius: 7px; background: var(--white); }
.start-path-grid article > span { margin-bottom: 28px; color: var(--green); font-size: 11px; font-weight: 900; letter-spacing: 0.1em; }
.start-path-grid h3 { margin-bottom: 10px; font-size: 23px; line-height: 1.12; }
.start-path-grid p { margin-bottom: 20px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.start-path-grid a { margin-top: auto; padding-top: 10px; color: var(--green-dark); font-size: 12px; font-weight: 850; text-decoration: none; }
.start-products-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.start-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.start-product { min-height: 294px; padding: 21px; border: 1px solid var(--line); border-radius: 7px; background: #fbfdfc; }
.start-product-icon { display: grid; place-items: center; width: 37px; height: 37px; margin-bottom: 24px; border-radius: 7px; font-size: 11px; font-weight: 900; }
.start-product h3 { margin-bottom: 10px; font-size: 20px; line-height: 1.1; }
.start-product p { margin-bottom: 17px; color: var(--muted); font-size: 13px; line-height: 1.53; }
.start-product small { display: block; padding-top: 12px; border-top: 1px solid var(--line); color: var(--green-dark); font-size: 11px; font-weight: 850; line-height: 1.35; }
.start-product-pack .start-product-icon { color: var(--green-dark); background: var(--mint); }
.start-product-box .start-product-icon { color: #fff; background: var(--navy); }
.start-product-deck .start-product-icon { color: #8b251f; background: #fff0ee; }
.start-product-special .start-product-icon { color: #80601b; background: #fff6df; }
.start-product-notes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 14px; }
.start-product-notes article { padding: 18px; border-left: 3px solid var(--green); background: var(--paper); }
.start-product-notes strong { display: block; margin-bottom: 7px; font-size: 14px; }
.start-product-notes p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.start-game-detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.start-game-detail { padding: 29px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.start-game-detail-pokemon { border-top: 4px solid var(--red); }
.start-game-detail-onepiece { border-top: 4px solid var(--gold); }
.start-detail-heading { display: flex; align-items: center; gap: 13px; margin-bottom: 22px; }
.start-detail-heading > span { display: grid; place-items: center; width: 47px; height: 60px; border: 1px solid rgba(16, 24, 26, 0.15); border-radius: 6px; font-weight: 950; }
.start-game-detail-pokemon .start-detail-heading > span { color: #8b251f; background: var(--pokemon-panel); }
.start-game-detail-onepiece .start-detail-heading > span { color: #fff; background: var(--navy); }
.start-detail-heading strong, .start-detail-heading small { display: block; }
.start-detail-heading strong { margin-bottom: 5px; font-size: 21px; }
.start-detail-heading small { color: var(--muted); font-size: 12px; }
.start-game-detail > p { margin-bottom: 20px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.start-game-detail ul { display: grid; gap: 9px; margin: 0 0 20px; padding: 0; list-style: none; }
.start-game-detail li { color: var(--muted); font-size: 13px; line-height: 1.48; }
.start-game-detail li::before { display: inline-block; width: 14px; color: var(--green); content: "•"; }
.start-game-detail b { color: var(--ink); }
.start-game-detail > a { color: var(--green-dark); font-size: 12px; font-weight: 850; text-decoration: none; }
.start-truth-band { border-top: 1px solid #cfe3d9; border-bottom: 1px solid #cfe3d9; background: #edf7f1; }
.start-truth-grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr); gap: 70px; align-items: start; }
.start-truth-grid h2 { max-width: 600px; margin-bottom: 17px; font-size: clamp(34px, 4vw, 54px); line-height: 1.02; }
.start-truth-grid > div > p:not(.section-kicker) { max-width: 610px; margin-bottom: 0; color: #426159; font-size: 16px; line-height: 1.62; }
.start-truth-list { display: grid; gap: 10px; }
.start-truth-list div { display: grid; grid-template-columns: 53px minmax(0, 1fr); gap: 13px; padding: 16px; border: 1px solid rgba(17, 120, 95, 0.17); border-radius: 7px; background: rgba(255, 255, 255, 0.74); }
.start-truth-list span { display: grid; place-items: center; min-height: 30px; border-radius: 5px; color: var(--green-dark); background: #dcefe4; font-size: 10px; font-weight: 950; }
.start-truth-list div:nth-child(2) span { color: #8b251f; background: #fff0ee; }
.start-truth-list p { margin: 0; color: #426159; font-size: 13px; line-height: 1.5; }
.start-truth-list strong { color: var(--ink); }
.start-checklist-panel { display: grid; grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr) auto; gap: 36px; align-items: center; padding: 30px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: var(--shadow-soft); }
.start-checklist-panel h2 { max-width: 280px; margin-bottom: 0; font-size: 30px; line-height: 1.08; }
.start-checklist-panel ol { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.start-checklist-panel li { display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 10px; align-items: start; }
.start-checklist-panel li span { display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; color: #fff; background: var(--green); font-size: 10px; font-weight: 900; }
.start-checklist-panel li p { margin: 2px 0 0; color: var(--muted); font-size: 13px; line-height: 1.43; }
.start-sources-band { border-top: 1px solid var(--line); background: var(--paper); }

@media (max-width: 980px) {
  .start-hero-grid, .start-truth-grid { grid-template-columns: 1fr; gap: 36px; }
  .start-atlas { max-width: 620px; min-height: 390px; }
  .start-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .start-checklist-panel { grid-template-columns: 0.82fr 1.18fr; }
  .start-checklist-panel .button { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 700px) {
  .start-hero { padding: 56px 0 62px; }
  .start-hero-copy h1 { font-size: clamp(42px, 11vw, 56px); line-height: 1.02; }
  .start-hero-copy .lead { font-size: 16px; line-height: 1.6; }
  .start-atlas { min-height: 330px; }
  .start-atlas-ring-a { width: 220px; height: 220px; }
  .start-atlas-ring-b { width: 138px; height: 138px; }
  .start-atlas-axis { height: 255px; }
  .start-atlas-needle { height: 165px; }
  .start-atlas-card { width: 74px; height: 96px; font-size: 9px; }
  .start-atlas-card-one { top: 74px; right: 18px; }
  .start-atlas-card-two { bottom: 28px; left: 18px; }
  .start-atlas-card-three { right: 62px; bottom: 24px; }
  .start-section { padding: 60px 0; }
  .start-basics-grid, .start-games-grid, .start-path-grid, .start-product-grid, .start-product-notes, .start-game-detail-grid { grid-template-columns: 1fr; }
  .start-basics-grid { border-top: 0; }
  .start-basics-grid article, .start-basics-grid article + article { min-height: auto; padding: 23px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .start-basics-grid article:last-child { border-bottom: 0; }
  .start-games-grid { gap: 10px; }
  .start-game { min-height: 96px; }
  .start-path-grid article { min-height: 0; padding: 23px; }
  .start-product { min-height: 0; padding: 22px; }
  .start-product-notes article { padding: 17px; }
  .start-game-detail { padding: 23px; }
  .start-truth-grid { gap: 28px; }
  .start-truth-grid h2 { font-size: clamp(32px, 9.2vw, 45px); }
  .start-checklist-panel { grid-template-columns: 1fr; gap: 24px; padding: 23px; }
  .start-checklist-panel .button { grid-column: auto; justify-self: stretch; }
  .start-sources-band .source-row .button { width: 100%; }
}

/* Shared reading rhythm and responsive alignment for every public route. */
body { background: #fff; }
body :is(h1, h2, h3, h4, p, span, a, strong, small, label) { letter-spacing: 0; }
:is(h1, h2, h3, h4) { font-weight: 750; }
:is(h1, h2, h3, h4, p, li) { overflow-wrap: break-word; }
strong, b { font-weight: 700; }
:is(a, button, input, select, textarea, summary):focus-visible { outline: 3px solid var(--green); outline-offset: 4px; }
:is(section[id], h2[id]) { scroll-margin-top: 24px; }
.announcement { font-size: 12px; font-weight: 550; }
.announcement .shell { min-height: 32px; }
.announcement a { font-weight: 650; }
.nav, .home-page .nav { min-height: 80px; }
.brand { font-size: 21px; }
.brand-name { font-weight: 750; }
.nav-links { gap: 28px; font-size: 14px; font-weight: 600; }
.nav-links a { position: relative; padding: 12px 0; }
.nav-links a[aria-current="page"] { color: var(--green-dark); }
.nav-links a[aria-current="page"]::after { position: absolute; bottom: 3px; left: 0; right: 0; height: 2px; background: var(--green); content: ""; }
.nav-action { font-size: 13px; font-weight: 650; }
.button { font-weight: 650; line-height: 1.35; text-align: center; }
.button:hover { transform: none; }
.eyebrow { padding: 0; border: 0; border-radius: 0; background: transparent; font-size: 12px; font-weight: 650; }
.home-hero-copy .eyebrow, .pokemon-page .eyebrow.red, .onepiece-page .eyebrow.navy { background: transparent; }
.section-heading, .decision-page .section-head { gap: 12px; max-width: 820px; margin-bottom: 28px; }
.section-heading h2, .decision-page .section-head h2, .start-truth-grid h2 { margin: 0; font-size: var(--heading-size); line-height: 1.16; }
.section-heading p, .decision-page .section-head p { max-width: 690px; margin: 0; font-size: 16px; line-height: 1.65; }
.section-heading .section-kicker, .section-kicker { margin: 0 0 12px; color: var(--green); font-size: 12px; font-weight: 650; line-height: 1.4; }
.section-heading .section-kicker { margin: 0; }
.section, .home-section, .start-section, .decision-page .section { padding: var(--page-space) 0; }
.home-hero-inner, .start-hero-grid { grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.85fr); gap: 56px; }
.home-hero, .home-hero-inner { min-height: 0; }
.home-hero-inner { padding: 56px 0; }
.home-hero-copy { max-width: none; padding: 0; }
.home-hero-copy h1, .start-hero-copy h1 { max-width: 660px; margin-bottom: 22px; font-size: var(--title-size); line-height: 1.06; text-wrap: initial; }
.home-hero-lead, .start-hero-copy .lead { max-width: 550px; margin-bottom: 26px; font-size: 18px; line-height: 1.65; color: var(--muted); }
.compass-panel, .start-atlas { min-height: 390px; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.compass-panel::before, .compass-panel::after, .start-atlas::before, .start-atlas::after { content: none; }
.compass-label, .start-atlas-label { top: 8px; left: 0; font-size: 10px; font-weight: 600; }
.compass-direction { font-weight: 650; }
.compass-direction-n { top: 38px; }
.compass-direction-e { top: 70%; right: 4px; }
.compass-direction-s { bottom: 4px; }
.compass-card-pokemon { top: 60px; right: 22px; }
.compass-card-onepiece { left: 22px; bottom: 40px; }
.home-game-card { grid-template-rows: 256px auto; min-height: 0; border: 1px solid var(--line); box-shadow: none; }
.home-game-art { min-height: 0; }
.home-game-copy { min-height: 0; grid-template-rows: auto 1fr auto; gap: 12px; padding: 24px 28px; }
.home-game-copy h3 { min-block-size: 0; font-size: 28px; line-height: 1.18; }
.home-card-label, .home-game-copy > span { margin: 0; font-size: 13px; font-weight: 650; }
.home-game-art::before { top: 26px; width: 135px; height: 185px; }
.home-game-mark { top: 58px; width: 122px; height: 164px; font-size: 48px; }
.home-game-card.onepiece .home-game-mark { font-size: 46px; }
.home-game-art::after { content: none; }
.home-game-sticker { left: 24px; bottom: 18px; box-shadow: none; font-size: 10px; }
.home-game-card:hover { box-shadow: 0 10px 28px rgb(16 24 26 / 7%); transform: translateY(-2px); }
.home-page .choice-grid { gap: 16px; border: 0; background: transparent; }
.choice-grid a, .choice-grid a:last-child { grid-template-rows: auto 1fr auto; gap: 14px; min-height: 0; padding: 20px 0; border-top: 1px solid var(--line); background: transparent; }
.choice-grid strong { font-size: 18px; line-height: 1.3; }
.choice-grid small { margin: 0; font-size: 14px; line-height: 1.5; }
.choice-grid span { font-weight: 650; }
.choice-grid a:hover { background: transparent; border-top-color: var(--green); }
.choice-grid a:hover strong { color: var(--green); }
.home-check { border-top: 1px solid var(--line); background: #fff; }
.home-check::before, .home-check::after { content: none; }
.home-check-grid { gap: 64px; }
.home-check h2 { color: var(--ink); font-size: 44px; line-height: 1.1; }
.home-check .section-kicker { color: var(--green); }
.home-check-grid > div > p:not(.section-kicker) { color: var(--muted); font-size: 17px; line-height: 1.65; }
.home-check .button.primary { color: #fff; background: var(--green); }
.home-check .button.primary:hover { color: #fff; background: var(--green-dark); }
.home-check-sample { padding: 24px; border: 1px solid var(--line); background: #fff; box-shadow: 0 10px 28px rgb(16 24 26 / 5%); }
.sample-header { align-items: center; }
.sample-header > span { font-size: 12px; font-weight: 600; }
.sample-verdict { margin: 20px 0; padding: 0 0 0 18px; border-radius: 0; background: transparent; }
.sample-verdict strong { font-size: 23px; line-height: 1.25; }
.sample-verdict p { font-size: 14px; line-height: 1.6; }
.sample-points { gap: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.sample-points span { padding: 0; border: 0; border-radius: 0; background: transparent; font-size: 13px; line-height: 1.55; }
.sample-points b { margin-bottom: 6px; }

/* Game identity is shared by the hero, links, bullets and illustration. */
.game-hero { padding: 56px 0; }
.game-hero-grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: 64px; }
.game-hero h1 { font-size: 52px; line-height: 1.08; }
.game-hero .lead { font-size: 17px; }
.game-showcase { min-height: 370px; border: 0; border-radius: 0; box-shadow: none; background: transparent; }
.game-showcase::before, .showcase-orbit { display: none; }
.showcase-card-back { top: 55px; }
.showcase-card-front { top: 42px; }
.game-showcase-label { left: 0; right: 0; bottom: 0; padding: 12px 16px; background: transparent; }
.game-showcase-label strong { font-weight: 600; }
.pokemon-visual .showcase-card-back::after { border-color: var(--white); }
.pokemon-page .nav-links a[aria-current="page"], .pokemon-page .section-heading .section-kicker { color: var(--pokemon-blue-dark); }
.pokemon-page .nav-links a[aria-current="page"]::after { background: var(--pokemon-blue); }
.pokemon-page .eyebrow.red::before { background: var(--pokemon-blue); }
.onepiece-page .nav-links a[aria-current="page"], .onepiece-page .section-heading .section-kicker { color: var(--onepiece-gold-deep); }
.onepiece-page .nav-links a[aria-current="page"]::after { background: var(--onepiece-gold-deep); }
.onepiece-page .section-heading h2, .onepiece-page .guide-block h3, .onepiece-page .route-card h3 { color: #9b6800; }
.guide-grid { gap: 16px; }
.guide-block { display: grid; grid-template-rows: subgrid; grid-row: span 4; gap: 14px; min-height: 0; padding: 24px; box-shadow: none; }
.guide-block h3 { font-size: 22px; }
.guide-block .number { font-size: 11px; font-weight: 650; }
.guide-block p { font-size: 15px; }
.guide-block ul { margin: 0; align-content: start; }
.guide-block li { font-size: 14px; }
.route-grid { gap: 16px 40px; }
.route-card { grid-template-columns: 36px minmax(0, 1fr); align-content: start; gap: 6px 16px; min-height: 0; padding: 22px 0; border: 0; border-top: 1px solid var(--line); border-radius: 0; background: transparent; }
.route-card .route-icon { grid-row: span 2; width: 34px; height: 34px; font-weight: 650; }
.route-card h3 { font-size: 20px; line-height: 1.35; }
.route-card p { grid-column: 2; font-size: 15px; }
.source-row { padding-top: 0; border: 0; }
.final-cta { padding-top: 0; border: 0; }
.final-cta h2 { font-size: 32px; line-height: 1.2; }
.final-cta .button { flex-shrink: 0; }

/* Reading guides use the same heading scale and full-width section backgrounds. */
.decision-page main > .shell.hero { grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr); gap: 64px; padding-top: 56px; padding-bottom: 56px; align-items: center; }
.decision-page .hero h1 { font-size: 48px; line-height: 1.1; }
.decision-page .hero .lead { font-size: 17px; }
.decision-page .signal { gap: 14px; padding: 24px; background: #f4f8f6; box-shadow: none; }
.decision-page .signal::before { content: none; }
.decision-page .signal strong { padding: 0; border: 0; border-radius: 0; background: transparent; font-size: 12px; font-weight: 650; text-transform: none; }
.decision-page .signal strong::before { content: none; }
.decision-page .signal p { font-size: 16px; font-weight: 500; }
.decision-page .guide-card { display: grid; grid-template-rows: subgrid; grid-row: span 3; gap: 12px; min-height: 0; padding: 24px; box-shadow: none; }
.decision-page .guide-card h3 { margin: 0; font-size: 22px; }
.decision-page .guide-card p { margin: 0; font-size: 15px; }
.decision-page .guide-card > strong { font-weight: 650; }
.decision-page .split { grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.7fr); gap: 64px; }
.decision-page .aside { box-shadow: none; background: #f4f8f6; }
.decision-page .checklist { gap: 0; }
.decision-page .checklist li { padding: 16px 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; font-size: 15px; }
.decision-page .checklist li::before { width: 8px; height: 8px; margin-top: 8px; border: 0; border-radius: 2px; background: var(--green); }
.decision-page .checklist li:last-child { border-bottom: 0; }

/* Long legal text reads as a document, with each topic directly beside its copy. */
.legal-page { background: #fff; }
.legal-hero { padding: 56px 0 36px; }
.legal-hero h1 { font-size: 52px; line-height: 1.1; }
.legal-hero p:not(.section-kicker) { font-size: 17px; }
.legal-content { padding: 0 0 var(--page-space); background: #fff; }
.legal-grid { display: block; }
.legal-grid article { display: grid; grid-template-columns: 36px 230px minmax(0, 1fr); column-gap: 24px; row-gap: 12px; min-height: 0; padding: 28px 0; border: 0; border-top: 1px solid var(--line); border-radius: 0; box-shadow: none; }
.legal-grid article > span { grid-column: 1; grid-row: 1; margin: 4px 0 0; font-size: 12px; font-weight: 650; }
.legal-grid h2 { grid-column: 2; grid-row: 1; margin: 0; font-size: 20px; line-height: 1.4; }
.legal-grid p, .legal-grid ul { grid-column: 3; max-width: 690px; margin: 0; }
.legal-grid p, .legal-grid li { font-size: 15px; line-height: 1.7; }
.legal-grid a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; overflow-wrap: anywhere; }
.footer { gap: 16px 32px; padding: 28px 0; }
.footer a:hover { color: var(--green); text-decoration: underline; }

/* Karta Check keeps related fields together and provides room for every label. */
.check-page .hero { padding: 48px 0 64px; background: #f7faf8; }
.check-layout { grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr); gap: 64px; }
.check-intro { position: static; }
.check-intro h1 { font-size: 48px; line-height: 1.1; }
.check-intro p.eyebrow { font-size: 12px; line-height: 1.4; }
.check-note { padding: 16px 0 16px 16px; border-left-width: 2px; background: transparent; }
.check-note strong { font-size: 14px; font-weight: 650; }
.check-note span { font-size: 13px; }
.tool { border: 1px solid var(--line); box-shadow: 0 8px 28px rgb(16 24 26 / 4%); }
.tool-top { padding: 24px 28px; gap: 8px; }
.tool-top h2 { font-size: 24px; }
.form { gap: 24px; }
.form .grid-2 { gap: 14px; }
.form .form-field { gap: 9px; align-content: start; font-weight: 600; }
.form .grid-2 > .form-field { grid-template-rows: auto auto auto; }
.field-label { min-height: 0; font-size: 14px; line-height: 1.4; }
input, select, textarea { font-size: 16px; font-weight: 400; }
input::placeholder, textarea::placeholder { color: #74817c; }
.field-note { font-size: 12px; font-weight: 400; line-height: 1.5; }
.context-fields { gap: 20px; padding-top: 22px; }
.context-fields legend { padding: 0 10px 0 0; font-size: 17px; font-weight: 650; }
.context-fields > p { margin: 0; font-size: 13px; }
.checkbox { font-size: 13px; font-weight: 400; line-height: 1.55; }
.checkbox input { margin: 3px 0 0; accent-color: var(--green); }
.contact-inputs:not(.is-enabled) { display: none; }
.result { padding: 20px; background: #fff; }
.result h3 { font-size: 24px; line-height: 1.2; }
.decision { padding: 18px 0; border: 0; border-top: 2px solid var(--green); border-radius: 0; }
.decision strong { font-size: 23px; line-height: 1.25; }
.decision p { font-size: 15px; line-height: 1.6; }
.decision-signals { border-right: 0; border-left: 0; border-radius: 0; }
.decision-signals summary { padding: 12px 0; font-size: 14px; font-weight: 650; gap: 16px; }
.decision-signal-grid { gap: 0 20px; padding: 16px 0; }
.decision-signal { min-height: 0; padding: 12px 0; border: 0; border-radius: 0; }
.decision-signal strong { font-size: 14px; }
.decision-signal p { font-size: 13px; }
.visual-match { padding: 16px 0; border: 0; border-top: 1px solid var(--line); border-radius: 0; }
.visual-card { max-width: 280px; }
.feedback-signal { padding: 18px 0 0; border: 0; border-top: 1px solid var(--line); border-radius: 0; background: transparent; gap: 14px; }
.feedback-heading strong { font-size: 17px; }
.feedback-heading span { font-size: 13px; }
.feedback-submit { min-height: 44px; padding: 12px 16px; font-size: 14px; line-height: 1.4; }
.feedback-rating legend { margin-bottom: 8px; font-size: 13px; }
.feedback-options { gap: 8px; }
.feedback-option { font-size: 13px; font-weight: 600; }
.feedback-signal.is-submitted { background: transparent; }
.result [role="status"], .feedback-status { line-height: 1.55; }

/* The beginner guide shares the brand and game artwork with the rest of the site. */
.start-page { background: #fff; }
.start-hero { padding: 48px 0; background: var(--paper); }
.start-atlas-card { font-size: 11px; }
.start-atlas-card-one { color: var(--pokemon-red); border-color: #fff; background: var(--pokemon-blue); }
.start-atlas-card-one::before { border-color: #fff; opacity: 0.65; }
.start-atlas-card-two { color: var(--onepiece-gold); border-color: var(--onepiece-gold); background: var(--onepiece-navy); }
.start-atlas-card-three { color: var(--green-dark); background: var(--mint); }
.page-topics { border-bottom: 1px solid var(--line); background: #fff; }
.page-topics .shell { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 28px; padding-top: 16px; padding-bottom: 16px; }
.page-topics span { margin-right: auto; color: var(--muted); font-size: 12px; }
.page-topics a { color: var(--green-dark); font-size: 14px; font-weight: 600; text-decoration: none; }
.page-topics a:hover { text-decoration: underline; text-underline-offset: 4px; }
.start-basics-grid article, .start-basics-grid article + article { min-height: 0; padding: 24px; }
.start-basics-grid article:first-child { padding-left: 0; }
.start-basics-grid article:last-child { padding-right: 0; }
.start-basic-number { width: auto; height: auto; place-items: start; margin-bottom: 14px; color: var(--green); background: transparent; font-size: 12px; font-weight: 650; }
.start-basics-grid h3 { font-size: 22px; }
.start-basics-grid p { max-width: none; font-size: 15px; line-height: 1.6; }
.start-games-grid { gap: 16px; }
.start-game { grid-template-columns: 45px minmax(0, 1fr); grid-template-rows: 1fr auto; min-height: 0; padding: 20px; gap: 12px 16px; }
.start-game-mark { grid-column: 1; grid-row: 1 / 3; }
.start-game strong { font-size: 16px; line-height: 1.4; }
.start-game small, .start-game b { font-size: 13px; }
.start-game-neutral { grid-template-rows: 1fr; }
.start-game-neutral .start-game-mark { grid-row: 1; background: #f2f5f4; color: var(--muted); }
.start-game-pokemon { border-top: 1px solid var(--line); }
.start-game-onepiece { border-top: 1px solid var(--line); }
.start-game-pokemon .start-game-mark, .start-game-detail-pokemon .start-detail-heading > span { color: var(--pokemon-red); border-color: #fff; background: var(--pokemon-blue); }
.start-game-onepiece .start-game-mark, .start-game-detail-onepiece .start-detail-heading > span { color: var(--onepiece-gold); border-color: var(--onepiece-gold); background: var(--onepiece-navy); }
.start-game-pokemon b { color: var(--pokemon-blue-dark); }
.start-game-onepiece b { color: var(--onepiece-gold-deep); }
.start-product-grid { gap: 16px; }
.start-product { display: grid; grid-template-rows: subgrid; grid-row: span 4; gap: 12px; min-height: 0; padding: 22px; background: #fff; }
.start-product .start-product-icon { width: auto; height: auto; place-items: start; margin: 0; border-radius: 0; color: var(--green); background: transparent; font-size: 12px; font-weight: 650; }
.start-product h3 { margin: 0; font-size: 20px; line-height: 1.3; }
.start-product p { margin: 0; font-size: 14px; line-height: 1.6; }
.start-product small { margin-top: 4px; font-size: 12px; font-weight: 600; }
.start-product-notes { margin-top: 24px; gap: 24px; }
.start-product-notes article { padding: 0; border: 0; background: transparent; }
.start-product-notes strong { font-size: 15px; }
.start-product-notes p { font-size: 14px; line-height: 1.6; }
.start-game-detail { display: flex; flex-direction: column; padding: 24px; border-top-width: 1px; }
.start-game-detail-pokemon { border-color: #c9ddf1; background: #f5f9ff; }
.start-game-detail-onepiece { border-color: #ead7a6; background: #fffaf0; }
.start-detail-heading { align-items: center; min-height: 66px; margin-bottom: 20px; }
.start-detail-heading > span { flex-shrink: 0; }
.start-detail-heading strong { font-size: 22px; line-height: 1.3; }
.start-game-detail > p { font-size: 15px; }
.start-game-detail ul { margin: auto 0 20px; gap: 12px; }
.start-game-detail li { position: relative; padding-left: 16px; font-size: 14px; }
.start-game-detail li::before { position: absolute; left: 0; }
.start-game-detail-pokemon li::before, .start-game-detail-pokemon > a { color: var(--pokemon-blue-dark); }
.start-game-detail-onepiece li::before, .start-game-detail-onepiece > a { color: var(--onepiece-gold-deep); }
.start-game-detail > a { font-size: 14px; font-weight: 650; }
.start-truth-band { background: #f4f8f6; }
.start-truth-grid { gap: 64px; }
.start-truth-grid h2 { margin-bottom: 18px; }
.start-truth-list { gap: 0; }
.start-truth-list div { grid-template-columns: 24px minmax(0, 1fr); padding: 18px 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; }
.start-truth-list div:first-child { padding-top: 0; }
.start-truth-list div:last-child { border-bottom: 0; padding-bottom: 0; }
.start-truth-list div span { align-self: start; color: var(--green); background: transparent; font-size: 12px; font-weight: 650; }
.start-truth-list p { font-size: 15px; }
.start-truth-list strong { display: block; margin-bottom: 4px; }
.start-checklist-panel { grid-template-columns: 1fr 1.4fr; gap: 20px 64px; padding: 0; border: 0; border-radius: 0; box-shadow: none; }
.start-checklist-panel h2 { max-width: none; font-size: var(--heading-size); }
.start-checklist-panel ol { grid-column: 2; grid-row: 1 / 3; gap: 16px; }
.start-checklist-panel li p { margin: 0; font-size: 15px; line-height: 1.5; }
.start-checklist-panel li span { margin-top: 1px; font-weight: 650; }
.start-checklist-panel .button { grid-column: 1; justify-self: start; }
.start-sources-band { background: #fff; }
.not-found { min-height: 500px; }
.not-found h1 { font-size: 52px; }
.not-found::before, .not-found::after { content: none; }

@media (min-width: 701px) {
  .form .grid-2 { align-items: stretch; row-gap: 9px; }
  .form .grid-2 > .form-field { grid-row: span 3; grid-template-rows: subgrid; }
  .form .grid-2 > .form-field > .field-label { min-height: 0; align-items: end; }
  .form .grid-2 > .form-field > input, .form .grid-2 > .form-field > select { align-self: start; }
}
@media (max-width: 1100px) {
  :root { --title-size: 52px; --heading-size: 34px; }
  .home-hero-inner, .start-hero-grid, .game-hero-grid { gap: 32px; }
  .home-hero-copy h1, .start-hero-copy h1 { font-size: var(--title-size); }
  .game-hero h1 { font-size: 46px; }
  .nav { gap: 20px; }
  .nav-links { gap: 20px; }
  .start-games-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .start-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .check-layout { gap: 32px; grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr); }
  .decision-page main > .shell.hero { gap: 36px; }
  .decision-page .hero h1 { font-size: 42px; }
  .legal-grid article { grid-template-columns: 28px 190px minmax(0, 1fr); gap: 16px; }
}
@media (max-width: 980px) {
  .home-page .choice-grid { grid-template-columns: 1fr; gap: 0; }
  .choice-grid a, .choice-grid a:last-child { grid-template-columns: 28px minmax(0, 1fr) minmax(0, 1fr); grid-template-rows: auto; align-items: center; min-height: 76px; gap: 20px; padding: 18px 0; }
  .choice-grid small { align-self: center; }
  .home-check-grid { grid-template-columns: 1fr 1.2fr; gap: 32px; }
  .home-compass-art, .start-atlas, .game-showcase { max-width: none; }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-block { grid-row: auto; grid-template-rows: auto; gap: 12px; }
  .check-layout, .decision-page main > .shell.hero, .decision-page .split, .start-truth-grid { grid-template-columns: 1fr; gap: 32px; }
  .check-intro { max-width: 690px; }
  .check-intro h1 { font-size: 44px; }
  .check-note { margin-top: 16px; }
  .decision-page .signal { max-width: none; }
  .legal-grid article { grid-template-columns: 28px minmax(0, 1fr); }
  .legal-grid h2 { grid-column: 2; }
  .legal-grid p, .legal-grid ul { grid-column: 2; }
}
@media (max-width: 700px) {
  :root { --page-space: 44px; --title-size: 40px; --heading-size: 30px; }
  .shell, .not-found .shell { width: calc(100% - 40px); }
  .announcement .shell { gap: 16px; min-height: 38px; }
  .announcement span { max-width: 220px; font-size: 11px; }
  .announcement a { font-size: 11px; }
  .nav, .home-page .nav { gap: 10px; padding: 14px 0 10px; min-height: 0; }
  .brand-name { font-size: 20px; }
  .mark { width: 34px; height: 34px; }
  .nav-links { gap: 0; justify-content: space-between; overflow: visible; padding: 0; font-size: 12px; }
  .nav-links a { padding: 8px 0; }
  .button { font-size: 14px; min-height: 46px; padding: 12px 16px; }
  .button-row { gap: 10px; }
  .home-hero-copy .button-row .button { flex: auto; padding: 12px 14px; white-space: normal; }
  .home-hero-inner, .start-hero-grid, .game-hero-grid { grid-template-columns: 1fr; gap: 26px; }
  .home-hero-inner { gap: 18px; padding: 28px 0 20px; }
  .home-hero-copy { max-width: none; }
  .home-hero-copy h1, .start-hero-copy h1 { font-size: var(--title-size); line-height: 1.1; }
  .home-hero-lead, .start-hero-copy .lead { max-width: none; font-size: 16px; margin-bottom: 22px; }
  .compass-panel { min-height: 180px; }
  .compass-label { top: 0; left: 0; font-size: 9px; }
  .compass-direction-n { top: 23px; }
  .compass-direction-s { bottom: 0; }
  .compass-card-pokemon { top: 30px; right: 22px; }
  .compass-card-onepiece { bottom: 26px; left: 20px; }
  .home-game-grid { gap: 20px; }
  .home-game-card { grid-template-rows: 220px auto; }
  .home-game-art { min-height: 0; }
  .home-game-art::before { width: 115px; height: 158px; top: 22px; }
  .home-game-mark { width: 102px; height: 143px; top: 44px; font-size: 42px; }
  .home-game-card.onepiece .home-game-mark { font-size: 38px; }
  .home-game-copy { padding: 22px; min-height: 0; gap: 10px; }
  .home-game-copy h3 { font-size: 26px; }
  .home-game-sticker { left: 16px; bottom: 14px; font-size: 9px; }
  .choice-grid a, .choice-grid a:last-child { grid-template-columns: 24px minmax(0, 1fr); gap: 5px 16px; min-height: 0; padding: 20px 0; }
  .choice-grid a > span { grid-row: span 2; align-self: start; margin-top: 3px; }
  .choice-grid small { grid-column: 2; }
  .choice-grid strong { font-size: 19px; }
  .home-check-grid { grid-template-columns: 1fr; gap: 28px; }
  .home-check h2 { font-size: 36px; }
  .home-check-sample { padding: 20px; }
  .sample-points { grid-template-columns: 1fr; gap: 16px; }
  .game-hero { padding: 36px 0; }
  .game-hero h1 { font-size: 38px; }
  .game-hero .lead { font-size: 16px; }
  .game-showcase { min-height: 270px; }
  .showcase-card-back { top: 28px; }
  .showcase-card-front { top: 20px; font-size: 42px; }
  .game-showcase-label { padding: 8px 12px; }
  .guide-block { padding: 22px; }
  .guide-block h3 { font-size: 22px; }
  .route-grid { gap: 0; }
  .final-cta { gap: 22px; }
  .final-cta h2 { font-size: 28px; }
  .final-cta .button { width: 100%; }
  .decision-page main > .shell.hero { padding: 36px 20px; }
  .decision-page main > .shell.section { padding: var(--page-space) 20px; }
  .decision-page main > .band > .shell.section { padding: var(--page-space) 0; }
  .decision-page .hero h1 { font-size: 36px; }
  .decision-page .hero .lead { font-size: 16px; }
  .decision-page .guide-card { grid-row: auto; grid-template-rows: auto; gap: 12px; padding: 22px; }
  .decision-page .signal { padding: 20px; }
  .legal-hero { padding: 36px 0 28px; }
  .legal-hero h1 { font-size: 40px; }
  .legal-grid article { column-gap: 12px; row-gap: 14px; padding: 24px 0; }
  .legal-grid p, .legal-grid ul { grid-column: 1 / -1; }
  .legal-grid h2 { font-size: 21px; }
  .check-page .hero { padding: 36px 0 44px; }
  .check-layout { gap: 24px; }
  .check-intro h1 { font-size: 40px; }
  .check-intro p { font-size: 16px; }
  .tool-top, .form { padding: 22px 18px; }
  .tool-top h2 { font-size: 23px; }
  .form .grid-2 { gap: 20px; }
  .field-label { font-size: 14px; }
  .contact-fields .grid-2 { gap: 18px; }
  .result { margin: 0 18px 22px; padding: 0; border: 0; }
  .feedback-options { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .feedback-option { padding: 8px 4px; font-size: 12px; }
  .decision-signal-grid { grid-template-columns: 1fr; }
  .start-hero { padding: 36px 0 24px; }
  .start-atlas { min-height: 280px; }
  .start-atlas-label { top: 0; left: 0; }
  .start-atlas-card-one { top: 44px; }
  .start-atlas-card-two { bottom: 16px; }
  .start-atlas-card-three { bottom: 16px; }
  .page-topics .shell { gap: 10px 18px; padding: 16px 0; }
  .page-topics span { width: 100%; }
  .page-topics a { font-size: 13px; }
  .start-basics-grid article, .start-basics-grid article + article { padding: 22px 0; }
  .start-games-grid { grid-template-columns: 1fr; }
  .start-game { padding: 18px; }
  .start-product-grid { grid-template-columns: 1fr; }
  .start-product { grid-row: auto; grid-template-rows: auto; gap: 12px; padding: 22px; }
  .start-product-notes { gap: 20px; }
  .start-product-notes article { padding: 0; }
  .start-game-detail { padding: 22px; }
  .start-detail-heading { gap: 12px; min-height: 0; }
  .start-detail-heading strong { font-size: 20px; }
  .start-detail-heading > span { width: 40px; height: 54px; }
  .start-game-detail ul { margin-top: 0; }
  .start-truth-list div { padding: 18px 0; }
  .start-checklist-panel { grid-template-columns: 1fr; gap: 24px; padding: 0; }
  .start-checklist-panel ol { grid-column: 1; grid-row: auto; }
  .start-checklist-panel .button { grid-column: 1; justify-self: stretch; }
  .footer { padding: 24px 0; font-size: 12px; }
  .not-found { min-height: 420px; padding: 44px 0; }
  .not-found h1 { font-size: 36px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0s !important; }
}
