/* PokeJourney: an expedition journal, built around the world rather than UI cards. */
@font-face {
  font-family: Outfit;
  src: url("assets/fonts/Outfit-variable.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: BarlowCondensed;
  src: url("assets/fonts/BarlowCondensed-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --bg: #071c27;
  --panel: #102d39;
  --panel-deep: #0b2430;
  --ink: #f4f7ed;
  --muted: #a7c0c7;
  --line: #29434c;
  --yellow: #ffda63;
  --teal: #6de3c5;
  --blue: #57bddd;
  --shell: min(1320px, calc(100% - 96px));
  --header: 92px;
  --radius: 14px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --display: Outfit, "Segoe UI", system-ui, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 16px/1.65 var(--font);
  font-synthesis: none;
  overflow-x: clip;
}
body.has-drawer {
  overflow: hidden;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
img {
  max-width: 100%;
  display: block;
}
button {
  border: 0;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(32px, 4.2vw, 58px);
  font-weight: 800;
}
h3 {
  font-size: 24px;
  font-weight: 750;
}
em {
  font-style: normal;
  color: var(--yellow);
}
p {
  color: var(--muted);
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
.shell {
  width: var(--shell);
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  padding: 12px 24px;
  z-index: 1000;
  background: var(--yellow);
  color: var(--bg);
  transform: translateY(-200%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: relative;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.site-nav {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.brand-copy {
  font-family: var(--display);
  display: grid;
  line-height: 1.1;
  gap: 6px;
}
.brand-copy strong {
  font-size: 24px;
  letter-spacing: -0.045em;
  font-weight: 900;
}
.brand-copy strong b {
  color: var(--yellow);
}
.brand-copy small {
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.19em;
  color: var(--muted);
}
.brand-emblem {
  width: 46px;
  height: 46px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}
.nav-menu > a {
  font-size: 14px;
  font-weight: 650;
  transition: color 0.2s;
}
.nav-menu > a:hover {
  color: var(--yellow);
}
.nav-menu .nav-download {
  color: var(--yellow);
}
.nav-download span {
  margin-left: 5px;
}
.nav-toggle {
  display: none;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  min-height: 56px;
  padding: 15px 25px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  letter-spacing: 0.04em;
  font-weight: 600;
  line-height: 1.4;
  transition:
    transform 0.22s,
    background 0.22s,
    box-shadow 0.22s;
}
.button:hover {
  transform: translateY(-3px);
}
.button--primary {
  color: #102931;
  background: var(--yellow);
  box-shadow: 0 5px 0 #b59135;
}
.button--primary:hover {
  background: #ffe48a;
  box-shadow: 0 8px 26px #ffda6324;
}
.button--ghost,
.button--outline {
  border-color: #547078;
  background: transparent;
}
.button--ghost:hover,
.button--outline:hover {
  background: var(--panel);
}
.button--compact {
  font-size: 13px;
  min-height: 42px;
  padding: 10px 17px;
  letter-spacing: 0;
}
.button--full {
  width: 100%;
}
.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 750;
  min-height: 44px;
  background: none;
}
.text-link:hover,
.card-link:hover {
  color: var(--yellow);
}
.card-link {
  color: var(--teal);
}
.hero {
  position: relative;
  min-height: min(850px, calc(100svh - var(--header)));
  height: 760px;
  max-height: 1000px;
  isolation: isolate;
  overflow: hidden;
}
.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}
.hero-slide {
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  transition:
    opacity 0.85s,
    visibility 0.85s;
  background-size: cover;
  background-position: center;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero-slide--01 {
  background-image: url("assets/hero-pokemon-01.webp");
}
.hero-slide--02 {
  background-image: url("assets/hero-pokemon-02.webp");
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 24, 33, 0.94) 0%,
      rgba(5, 24, 33, 0.84) 26%,
      rgba(5, 24, 33, 0.42) 49%,
      rgba(5, 24, 33, 0.02) 75%
    ),
    linear-gradient(0deg, var(--bg), transparent 28%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  padding-block: 40px 115px;
}
.eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--teal);
  font-size: 12px;
  letter-spacing: 0.19em;
  font-weight: 800;
}
.eyebrow span {
  color: var(--yellow);
  font-size: 20px;
}
.hero h1,
.hero h2 {
  font-size: clamp(42px, 4.65vw, 72px);
  font-weight: 850;
  max-width: 750px;
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin-bottom: 24px;
  text-shadow: 0 4px 26px #05182130;
}
.hero h1 em,
.hero h2 em {
  display: inline-block;
}
.hero-lead {
  max-width: 435px;
  font-size: 17px;
  line-height: 1.75;
  color: #d7e4e4;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.hero-bottom {
  position: absolute;
  z-index: 5;
  bottom: 25px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.hero-pagination {
  display: flex;
  gap: 20px;
}
.hero-dot {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 44px;
  background: none;
  font-size: 13px;
  color: #b4c7c9;
  font-weight: 750;
}
.hero-dot span {
  width: 36px;
  height: 2px;
  background: #647f84;
  transition:
    width 0.3s,
    background 0.3s;
}
.hero-dot.is-active {
  color: var(--yellow);
}
.hero-dot.is-active span {
  width: 76px;
  background: var(--yellow);
}
.hero-controls {
  display: flex;
  border: 1px solid #68858a70;
  background: #071c2770;
  border-radius: 30px;
  align-items: center;
  overflow: hidden;
}
.hero-controls button {
  min-width: 44px;
  min-height: 44px;
  background: none;
  font-size: 16px;
}
.hero-controls .hero-pause {
  font-size: 12px;
  min-width: 82px;
}
.hero-controls button:hover {
  background: #ffffff15;
}
.scroll-cue {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: #c0d7d9;
}
.scroll-cue > span:last-child {
  font-size: 24px;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.section {
  padding-block: 104px;
}
.kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading p:not(.kicker) {
  max-width: 580px;
  margin: 18px 0 0;
}
.section-heading--center {
  justify-content: center;
  text-align: center;
}
.section-heading--center p {
  margin-inline: auto !important;
}
.signal-bar {
  border-block: 1px solid var(--line);
  background: #0d2630;
}
.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 25px;
}
.signal-grid p {
  margin: 0;
  padding-inline: 26px;
  border-right: 1px solid var(--line);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.signal-grid p:first-child {
  padding-left: 0;
}
.signal-grid p:last-child {
  border: 0;
}
.signal-grid strong {
  font-size: 16px;
  color: var(--ink);
}
.signal-grid small {
  font-size: 12px;
  color: var(--muted);
}
.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.news-card {
  min-width: 0;
  border-bottom: 1px solid var(--line);
  transition: transform 0.3s;
}
.news-card:hover {
  transform: translateY(-6px);
}
.news-art {
  height: 216px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: right center;
}
.news-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #071c2733, transparent);
}
.news-art--aurora {
  background-image: url("assets/hero-pokemon-01.webp");
}
.news-art--arena {
  background-image: url("assets/hero-pokemon-02.webp");
}
.news-art--guild {
  background-image: url("assets/journey-world-r1.webp");
}
.news-art > span {
  display: none;
}
.news-content {
  padding: 24px 0;
}
.news-content h3 {
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.news-content > p:not(.news-meta) {
  font-size: 15px;
}
.news-meta {
  font-size: 12px;
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--muted);
}
.news-meta > span {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 750;
}
.section--universe {
  position: relative;
  background: #0d2933;
  border-block: 1px solid var(--line);
}
.universe-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.universe-copy p {
  max-width: 510px;
}
.universe-art {
  height: 440px;
  border-radius: 150px 16px 150px 16px;
  background: url("assets/hero-pokemon-02.webp") 76% center/cover;
  position: relative;
  border: 1px solid #80cecb4a;
  box-shadow: 0 20px 70px #0004;
}
.universe-orbit > * {
  display: none;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-top: 62px;
}
.pillar {
  padding-top: 22px;
  border-top: 1px solid #51727a;
}
.pillar-number {
  color: var(--teal);
  font-size: 13px;
}
.pillar h3 {
  margin: 16px 0 12px;
  font-size: 22px;
}
.pillar p {
  font-size: 15px;
  margin: 0;
}
.journal-tag {
  position: absolute;
  bottom: 30px;
  left: -25px;
  background: var(--yellow);
  color: var(--bg);
  padding: 20px 28px;
  transform: rotate(-5deg);
  border-radius: 4px;
  font-weight: 800;
  box-shadow: 4px 8px 0 #071c27;
}
.journal-tag small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
}
.rankings-intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 36px;
}
.rankings-intro h2 {
  margin-bottom: 14px;
}
.rankings-intro p:last-child {
  margin-bottom: 0;
}
.demo-badge,
.status-pill {
  font-size: 12px;
  line-height: 1.6;
  border: 1px solid #566744;
  padding: 6px 12px;
  color: var(--yellow);
  border-radius: 4px;
  white-space: nowrap;
}
.rankings-panel {
  background: var(--panel-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.ranking-toolbar {
  padding: 24px;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
}
.ranking-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ranking-tabs button,
.account-tabs button {
  background: transparent;
  padding: 12px 16px;
  min-height: 44px;
  color: var(--muted);
  font-size: 14px;
  border-radius: 5px;
}
.ranking-tabs button[aria-selected="true"],
.account-tabs button[aria-selected="true"] {
  background: var(--yellow);
  color: var(--bg);
  font-weight: 750;
}
.ranking-tabs span {
  margin-right: 8px;
}
.ranking-filters {
  display: flex;
  gap: 16px;
}
.ranking-filters label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}
.ranking-filters select,
input,
.demo-form select {
  border: 1px solid #49626b;
  background: var(--bg);
  color: var(--ink);
  border-radius: 5px;
  padding: 10px 12px;
  min-height: 44px;
  font-size: 15px;
}
.ranking-summary {
  padding: 26px 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.ranking-summary p {
  font-size: 12px;
  max-width: 365px;
}
.ranking-season {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ranking-summary h3 {
  margin: 0;
  font-size: 26px;
}
.ranking-podium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 28px 30px;
}
.podium-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #163542;
  border: 1px solid #36545f;
  border-radius: 8px;
  min-height: 200px;
  padding: 25px 15px;
}
.podium-card--1 {
  grid-column: 2;
  grid-row: 1;
  background: linear-gradient(145deg, #45412b, #23382e);
  border-color: #8d773c;
}
.podium-card--2 {
  grid-column: 1;
  grid-row: 1;
}
.podium-card--3 {
  grid-column: 3;
  grid-row: 1;
}
.podium-place {
  position: absolute;
  left: 16px;
  top: 12px;
  font-size: 13px;
  color: var(--muted);
}
.podium-crown {
  color: var(--yellow);
  line-height: 1;
}
.podium-avatar,
.player-avatar {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: #2c5262;
  color: #d4eceb;
  border: 1px solid #527786;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 750;
  width: 42px;
  height: 42px;
}
.podium-avatar {
  height: 58px;
  width: 58px;
  font-size: 18px;
}
.podium-card strong {
  font-size: 17px;
}
.podium-card small {
  font-size: 12px;
  color: var(--muted);
}
.podium-card b {
  font-size: 24px;
  color: var(--yellow);
}
.table-wrap {
  margin: 0 30px;
  overflow: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
th {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 650;
}
th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
}
td {
  font-size: 14px;
}
tbody tr:hover {
  background: #ffffff04;
}
.rank-position {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.player-cell {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 650;
}
.world-tag {
  font-size: 12px;
  color: var(--teal);
}
.score-value {
  color: var(--yellow);
  font-weight: 750;
}
.ranking-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 30px;
}
.ranking-pagination p,
.ranking-pagination span {
  margin: 0;
  font-size: 12px;
}
.ranking-pagination > div {
  display: flex;
  align-items: center;
  gap: 15px;
}
.ranking-pagination button {
  background: #1e414e;
  min-height: 44px;
  padding: 10px 13px;
  border-radius: 5px;
  font-size: 12px;
}
.ranking-footnote {
  font-size: 12px;
  text-align: center;
  padding: 0 24px 22px;
  margin: 0;
}
.ranking-mobile-list {
  display: none;
}
.player-search {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 16px 30px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.player-search h3 {
  font-size: 22px;
  margin: 0;
}
.player-search .kicker {
  margin-bottom: 8px;
}
.search-form {
  display: flex;
  gap: 10px;
}
.search-form input {
  min-width: 0;
  flex: 1;
}
.search-form button {
  min-height: 44px;
}
.search-help {
  font-size: 12px;
  margin: 0;
  grid-column: 2;
}
.search-result {
  grid-column: 1/-1;
}
.profile-result {
  display: flex;
  align-items: center;
  gap: 25px;
  background: var(--panel);
  padding: 20px;
  margin-top: 10px;
  border-radius: 6px;
}
.profile-result small,
.profile-stat span {
  display: block;
  font-size: 12px;
  color: var(--muted);
}
.profile-stat {
  margin-left: auto;
}
.profile-stat b {
  display: block;
}
.empty-result {
  margin: 0;
}
.section--ecosystem {
  background: #0d2933;
}
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ecosystem-card {
  padding: 26px;
  border-top: 2px solid var(--teal);
  background: var(--panel-deep);
  border-radius: 3px 3px 10px 10px;
}
.ecosystem-card--wide {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.ecosystem-card h3 {
  font-size: 23px;
  margin-top: 18px;
}
.ecosystem-card p,
.ecosystem-card li {
  font-size: 14px;
}
.ecosystem-card ul {
  padding-left: 18px;
  color: var(--muted);
}
.system-icon {
  font-size: 28px;
  color: var(--yellow);
  margin-bottom: 12px;
}
.status-pill {
  display: inline-block;
  white-space: normal;
  font-size: 11px;
}
.support-links {
  display: flex;
  gap: 14px;
}
.support-links button {
  min-width: 90px;
  min-height: 44px;
  background: var(--panel);
  padding: 12px;
}
.section--download {
  background: #071c27;
  position: relative;
  overflow: hidden;
}
.download-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.download-copy h2 {
  font-size: clamp(36px, 4vw, 60px);
}
.download-copy p {
  max-width: 450px;
}
.compatibility {
  font-size: 12px;
  color: var(--teal);
}
.download-options {
  display: grid;
  gap: 18px;
}
.download-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px;
  background: #123340;
  border: 1px solid #365e6b;
  border-radius: 8px;
}
.download-card h3 {
  font-size: 26px;
  margin: 0;
}
.download-card p {
  font-size: 12px;
  margin: 5px 0 0;
}
.download-card small {
  font-size: 12px;
  color: var(--teal);
}
.platform-icon {
  font-size: 36px;
  color: var(--yellow);
}
.download-card button,
.download-card > a {
  margin-left: auto;
  width: 48px;
  min-height: 48px;
  border-radius: 50%;
  font-size: 22px;
  background: var(--yellow);
  color: var(--bg);
  display: grid;
  place-items: center;
}
.download-card--muted {
  background: none;
  border-color: var(--line);
}
.download-atmosphere {
  display: none;
}
.closing-cta {
  padding: 90px 0;
  background: #123842;
}
.closing-inner {
  text-align: center;
}
.closing-inner h2 {
  max-width: 800px;
  margin: 0 auto 32px;
}
.closing-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.closing-inner > .brand-mark {
  display: none;
}
.site-footer {
  padding: 66px 0 24px;
  background: #051720;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
}
.footer-brand p {
  max-width: 330px;
  font-size: 14px;
  margin-top: 24px;
}
.footer-grid h2 {
  font-size: 16px;
  letter-spacing: 0;
  margin-bottom: 22px;
}
.footer-grid > div:not(:first-child) a,
.footer-grid > div:not(:first-child) button {
  display: block;
  background: none;
  font-size: 13px;
  margin-bottom: 9px;
  padding: 0;
  min-height: 28px;
  color: var(--muted);
}
.footer-grid a:hover,
.footer-grid button:hover {
  color: var(--yellow) !important;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 35px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.footer-bottom p {
  font-size: 11px;
  margin: 0;
  max-width: 570px;
}
.account-layer {
  position: fixed;
  inset: 0;
  z-index: 100;
}
.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: #021019c9;
  opacity: 0;
  transition: opacity 0.4s;
}
.account-drawer {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(520px, 100%);
  padding: 36px;
  overflow: auto;
  background: var(--panel-deep);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 0.4s;
}
.is-open .drawer-backdrop {
  opacity: 1;
}
.is-open .account-drawer {
  transform: none;
}
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.drawer-head h2 {
  font-size: 30px;
}
.drawer-close {
  width: 44px;
  height: 44px;
  background: #234754;
  border-radius: 6px;
  font-size: 28px;
}
.drawer-notice {
  display: flex;
  gap: 15px;
  padding: 16px;
  border: 1px solid #566744;
  background: #29392e;
  border-radius: 6px;
}
.drawer-notice p {
  font-size: 13px;
  margin: 0;
  color: #e0d9af;
}
.account-tabs {
  display: flex;
  gap: 5px;
  margin-block: 26px;
}
.account-panel h3 {
  font-size: 25px;
}
.account-panel > p {
  font-size: 14px;
}
.demo-form {
  display: grid;
  gap: 10px;
}
.demo-form label {
  font-size: 14px;
  margin-top: 6px;
}
.demo-form .button {
  margin-top: 16px;
}
.form-row {
  display: flex;
  gap: 15px;
}
.form-row > div {
  flex: 1;
  min-width: 0;
}
.form-row select {
  width: 100%;
}
.toast {
  position: fixed;
  z-index: 200;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 15px);
  opacity: 0;
  transition:
    opacity 0.22s,
    transform 0.22s;
  width: max-content;
  max-width: calc(100% - 32px);
  background: #173d49;
  border: 1px solid #67918e;
  border-radius: 8px;
  padding: 18px 26px;
  display: flex;
  gap: 15px;
  box-shadow: 0 15px 60px #0006;
}
.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
.toast p {
  margin: 0;
  font-size: 14px;
  color: var(--ink);
}
.noscript {
  position: fixed;
  z-index: 50;
  bottom: 0;
  background: var(--yellow);
  color: var(--bg);
  padding: 10px 20px;
  width: 100%;
  text-align: center;
  font-size: 13px;
}
.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s,
    transform 0.65s;
}
.reveal-ready .reveal.is-revealed {
  opacity: 1;
  transform: none;
}
.news-card.reveal:nth-child(2),
.pillar.reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.news-card.reveal:nth-child(3),
.pillar.reveal:nth-child(3) {
  transition-delay: 0.16s;
}
@media (min-width: 1700px) {
  .hero {
    height: 840px;
  }
  .hero h1,
  .hero h2 {
    font-size: 80px;
  }
}
@media (max-width: 1150px) {
  :root {
    --shell: calc(100% - 56px);
  }
  .nav-menu {
    gap: 16px;
  }
  .brand-copy strong {
    font-size: 21px;
  }
  .nav-menu > a {
    font-size: 13px;
  }
  .nav-menu .button {
    display: none;
  }
  .hero {
    height: 720px;
  }
  .hero h1,
  .hero h2 {
    font-size: 58px;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #051821ed, #051821a6 45%, #05182110),
      linear-gradient(0deg, var(--bg), transparent 30%);
  }
  .ecosystem-grid {
    grid-template-columns: 1fr 1fr;
  }
  .download-layout,
  .universe-layout {
    gap: 40px;
  }
  .signal-grid p {
    padding-inline: 15px;
  }
  .news-grid {
    gap: 20px;
  }
  .footer-grid {
    gap: 28px;
  }
}
@media (max-width: 820px) {
  :root {
    --header: 78px;
    --shell: calc(100% - 40px);
  }
  .nav-toggle {
    display: grid;
    gap: 5px;
    padding: 12px;
    background: var(--panel);
    border-radius: 5px;
    width: 44px;
    height: 44px;
    align-content: center;
  }
  .nav-toggle > span:not(.sr-only) {
    height: 2px;
    background: var(--ink);
    width: 20px;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 20px;
    box-shadow: 0 20px 40px #0005;
  }
  .nav-menu.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-menu > a {
    font-size: 16px;
    padding: 13px;
  }
  .nav-menu .button {
    display: flex;
    margin: 12px;
  }
  .hero {
    height: 760px;
    max-height: none;
    min-height: 0;
  }
  .hero-content {
    padding-bottom: 110px;
  }
  .hero h1,
  .hero h2 {
    font-size: clamp(40px, 6.8vw, 58px);
  }
  .hero-slide {
    background-position: 64% center;
  }
  .hero-lead {
    max-width: 380px;
    font-size: 16px;
  }
  .hero-actions {
    gap: 20px;
  }
  .scroll-cue {
    display: none;
  }
  .hero-bottom {
    bottom: 26px;
  }
  .section {
    padding-block: 72px;
  }
  .signal-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .signal-grid p:nth-child(3) {
    padding-left: 0;
  }
  .signal-grid p:nth-child(even) {
    border: 0;
  }
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
  .news-card--featured {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 24px;
  }
  .news-card--featured .news-art {
    height: 100%;
    min-height: 230px;
  }
  .news-card--featured .news-content {
    padding-top: 0;
  }
  .universe-layout,
  .download-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .universe-art {
    height: 380px;
    max-width: 620px;
    width: 100%;
    margin-inline: auto;
  }
  .pillars-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rankings-intro {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }
  .ranking-pagination {
    flex-direction: column;
    align-items: start;
  }
  .ranking-podium {
    padding-inline: 18px;
  }
  .podium-card strong {
    font-size: 14px;
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 2;
  }
  .footer-brand {
    grid-row: span 2;
  }
  .closing-inner h2 {
    font-size: 40px;
  }
  .player-search {
    grid-template-columns: 1fr;
  }
  .search-help {
    grid-column: 1;
  }
  .brand-copy small {
    font-size: 8px;
  }
  .hero-controls .hero-pause {
    min-width: 74px;
  }
}
@media (max-width: 540px) {
  :root {
    --shell: calc(100% - 36px);
    --header: 74px;
  }
  .hero {
    height: 780px;
  }
  .hero-slide {
    align-items: start;
    background-position: 67% center;
  }
  .hero-shade {
    background:
      linear-gradient(
        180deg,
        #051821b8 0%,
        #0518218a 50%,
        #05182100 67%,
        var(--bg) 98%
      ),
      linear-gradient(90deg, #05182185, transparent);
  }
  .hero-content {
    padding-top: 48px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
  }
  .hero h1,
  .hero h2 {
    font-size: clamp(37px, 10vw, 51px);
    margin-bottom: 18px;
    letter-spacing: -0.05em;
  }
  .hero-lead {
    font-size: 15px;
    max-width: 330px;
    line-height: 1.65;
    margin-bottom: 24px;
  }
  .hero-actions {
    gap: 13px;
  }
  .hero-actions .button {
    font-size: 12px;
    gap: 22px;
    padding-inline: 20px;
    min-height: 52px;
  }
  .hero-actions .text-link {
    font-size: 13px;
  }
  .hero-bottom {
    gap: 8px;
    bottom: 18px;
  }
  .hero-pagination {
    gap: 8px;
  }
  .hero-dot {
    gap: 7px;
  }
  .hero-dot span {
    width: 16px;
  }
  .hero-dot.is-active span {
    width: 32px;
  }
  .hero-controls .hero-pause {
    font-size: 11px;
    min-width: 62px;
  }
  .hero-controls button {
    min-width: 38px;
  }
  .signal-grid {
    gap: 22px 16px;
    padding-block: 24px;
  }
  .signal-grid p {
    font-size: 12px;
    padding-inline: 0;
    border: 0;
  }
  .signal-grid strong {
    font-size: 14px;
  }
  .section {
    padding-block: 58px;
  }
  .section-heading {
    gap: 20px;
    align-items: start;
    flex-direction: column;
    margin-bottom: 28px;
  }
  .section-heading h2 {
    font-size: 36px;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-card--featured {
    display: block;
  }
  .news-art,
  .news-card--featured .news-art {
    height: 220px;
    min-height: 0;
  }
  .news-card--featured .news-content {
    padding-top: 24px;
  }
  .news-content {
    padding-block: 20px;
  }
  .news-content h3 {
    font-size: 25px;
  }
  .universe-art {
    height: 310px;
    border-radius: 85px 12px 85px 12px;
  }
  .journal-tag {
    left: -8px;
    bottom: 20px;
    font-size: 14px;
    padding: 14px 22px;
  }
  .pillars-grid {
    gap: 26px 20px;
    margin-top: 40px;
  }
  .pillar h3 {
    font-size: 20px;
  }
  .pillar p {
    font-size: 14px;
  }
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }
  .ecosystem-card--wide {
    display: block;
  }
  .support-links {
    flex-wrap: wrap;
  }
  .ranking-tabs {
    gap: 3px;
  }
  .ranking-tabs button {
    font-size: 12px;
    padding: 10px;
  }
  .ranking-tabs span {
    display: none;
  }
  .ranking-toolbar {
    padding: 18px;
  }
  .ranking-filters {
    flex-wrap: wrap;
  }
  .ranking-filters label {
    width: 100%;
    justify-content: space-between;
  }
  .ranking-filters select {
    min-width: 185px;
  }
  .ranking-summary {
    display: block;
    padding-inline: 18px;
  }
  .ranking-podium {
    gap: 7px;
    padding: 16px 12px;
  }
  .podium-card {
    min-height: 192px;
    padding: 26px 6px 15px;
    gap: 5px;
  }
  .podium-avatar {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }
  .podium-card strong {
    font-size: 12px;
    text-align: center;
    line-height: 1.4;
  }
  .podium-card small {
    font-size: 10px;
    text-align: center;
  }
  .podium-card b {
    font-size: 19px;
  }
  .podium-place {
    left: 8px;
    top: 9px;
    font-size: 11px;
  }
  .table-wrap {
    display: none;
  }
  .ranking-mobile-list {
    display: grid;
    padding: 0 14px;
    gap: 5px;
  }
  .ranking-mobile-card {
    display: grid;
    grid-template-columns: 24px 1fr auto;
    gap: 10px;
    padding: 12px 0;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }
  .ranking-mobile-card .player-avatar {
    display: none;
  }
  .ranking-mobile-card strong {
    display: block;
    font-size: 14px;
  }
  .ranking-mobile-card small {
    font-size: 11px;
    color: var(--muted);
    display: block;
  }
  .mobile-score {
    text-align: right;
  }
  .mobile-score b {
    font-size: 14px;
    color: var(--yellow);
  }
  .ranking-pagination {
    padding: 20px 14px;
    gap: 12px;
  }
  .ranking-pagination > div {
    gap: 8px;
    width: 100%;
    justify-content: space-between;
  }
  .ranking-pagination button {
    padding: 8px;
    font-size: 11px;
  }
  .ranking-footnote {
    padding: 0 14px 20px;
    text-align: left;
    font-size: 11px;
  }
  .search-form button {
    padding-inline: 15px;
    font-size: 12px;
  }
  .profile-result {
    flex-wrap: wrap;
    gap: 15px;
  }
  .profile-stat {
    margin: 0;
  }
  .download-card {
    padding: 20px 16px;
    gap: 13px;
  }
  .platform-icon {
    font-size: 30px;
  }
  .download-card p {
    font-size: 11px;
  }
  .closing-cta {
    padding: 60px 0;
  }
  .closing-inner h2 {
    font-size: 37px;
  }
  .closing-actions {
    flex-direction: column;
    align-items: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-brand {
    grid-column: 1/-1;
    grid-row: auto;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
  }
  .account-drawer {
    padding: 25px;
  }
  .account-tabs {
    gap: 0;
  }
  .account-tabs button {
    font-size: 13px;
    padding-inline: 12px;
  }
  .form-row {
    flex-direction: column;
  }
}
/* Illustrated world, small ambient effects, and editorial sections. */
.hero-slide--01 {
  background-image: url("assets/journey-world-r1.webp");
}
.hero h1,
.hero h2 {
  font-family: BarlowCondensed, var(--font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  font-size: clamp(54px, 5.7vw, 88px);
  line-height: 0.98;
}
.hero-shade {
  background:
    linear-gradient(90deg, #071c2799 0%, #071c2766 35%, transparent 64%),
    linear-gradient(0deg, var(--bg), transparent 22%);
}
.hero-slide--02 .hero-shade {
  background:
    linear-gradient(90deg, #071c27ed, #071c27ad 35%, #071c2710 75%),
    linear-gradient(0deg, var(--bg), transparent 28%);
}
.hero-scene {
  position: absolute;
  inset: 0;
  background: inherit;
  pointer-events: none;
  transform-origin: 65% 50%;
}
.hero-slide.is-active .hero-scene {
  animation: world-drift 24s ease-in-out infinite alternate;
}
@keyframes world-drift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.035);
  }
}
.hero-content {
  animation: copy-arrive 0.8s both;
}
.hero-slide:not(.is-active) .hero-content {
  animation: none;
}
@keyframes copy-arrive {
  from {
    opacity: 0;
    translate: 0 16px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
.effects-toggle {
  background: none;
  text-align: left;
  padding: 0;
  min-height: 30px;
  font-size: 13px;
  color: var(--teal);
  display: flex;
  gap: 12px;
  align-items: center;
}
.effects-toggle:disabled {
  opacity: 1;
  cursor: default;
}
.signal-grid a {
  font-size: 15px;
  color: var(--yellow);
}
.section-side-note {
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: 0.05em;
  color: var(--muted);
  max-width: 300px;
}
.news-art--aurora {
  background-image: url("assets/journey-world-r1.webp");
  background-position: 77% 60%;
}
.news-art--community {
  background-image: url("assets/hero-pokemon-01.webp");
  background-position: 90% center;
}
.news-art {
  transition: filter 0.3s;
}
.news-card:hover .news-art {
  filter: brightness(1.09);
}
.section--steps {
  padding-bottom: 0;
}
.journey-steps {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.journey-steps li {
  display: flex;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.journey-steps li > span {
  font:
    700 52px/1 BarlowCondensed,
    var(--font);
  color: #51818a;
}
.journey-steps h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.journey-steps p {
  font-size: 15px;
}
.section--download::before {
  content: "";
  position: absolute;
  inset: auto -200px -420px auto;
  width: 750px;
  height: 750px;
  border: 1px solid #2c5b624d;
  border-radius: 50%;
  pointer-events: none;
}
.section--faq {
  background: #0b2530;
  border-block: 1px solid var(--line);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.faq-list details {
  border-bottom: 1px solid #38545d;
  padding: 20px 0;
}
.faq-list details:first-child {
  border-top: 1px solid #38545d;
}
.faq-list summary {
  cursor: pointer;
  font-size: 17px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  font-size: 23px;
  color: var(--yellow);
  line-height: 1;
  flex-shrink: 0;
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list details[open] summary {
  color: var(--yellow);
}
.faq-list p {
  font-size: 15px;
  line-height: 1.8;
  margin: 18px 25px 3px 0;
}
.closing-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, #071c27c7, #071c27dc),
    url("assets/journey-world-r1.webp") center 40% / cover;
}
.closing-inner h2 {
  font-family: BarlowCondensed, var(--font);
  font-size: clamp(46px, 5.4vw, 76px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
}
.article-dialog {
  padding: 46px;
  width: min(650px, calc(100% - 36px));
  max-height: 85svh;
  overflow: auto;
  color: var(--ink);
  background: var(--panel-deep);
  border: 1px solid #527681;
  border-radius: 14px;
  box-shadow: 0 35px 120px #0008;
}
.article-dialog::backdrop {
  background: #021019c9;
}
.article-dialog .drawer-close {
  float: right;
  margin: -20px -20px 10px 20px;
}
.article-dialog h2 {
  font-size: 40px;
  clear: both;
}
.article-dialog p {
  line-height: 1.8;
}
.hero-away .hero-slide .hero-scene,
.page-hidden .hero-slide .hero-scene {
  animation-play-state: paused;
}
.effects-off *,
.effects-off *::before,
.effects-off *::after {
  animation: none !important;
  transition: none !important;
}
.effects-off .hero-particles {
  display: none;
}
.effects-off .reveal-ready .reveal,
.effects-off.reveal-ready .reveal {
  opacity: 1;
  transform: none;
}
html:has(.effects-off) {
  scroll-behavior: auto;
}
@media (max-width: 820px) {
  .hero h1,
  .hero h2 {
    font-size: clamp(52px, 8vw, 76px);
  }
  .journey-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .journey-steps li {
    padding-top: 24px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-slide {
    background-position: 67% center;
    animation: none !important;
  }
}
@media (max-width: 540px) {
  .hero {
    height: 800px;
  }
  .hero h1,
  .hero h2 {
    font-size: clamp(47px, 12vw, 64px);
  }
  .hero-slide {
    background-size: auto 470px;
    background-repeat: no-repeat;
    background-position: 75% bottom;
    background-color: var(--bg);
  }
  .hero-shade {
    background: linear-gradient(
      180deg,
      var(--bg) 39%,
      #071c2780 59%,
      transparent 74%,
      var(--bg) 99%
    );
  }
  .hero-slide--02 .hero-shade {
    background: linear-gradient(
      180deg,
      var(--bg) 40%,
      #071c27af 57%,
      transparent 73%,
      var(--bg) 99%
    );
  }
  .hero-content {
    padding-top: 38px;
  }
  .hero-lead {
    max-width: 100%;
    font-size: 15px;
  }
  .hero-actions {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }
  .hero-actions .text-link {
    min-height: 40px;
  }
  .hero-bottom {
    bottom: 8px;
  }
  .article-dialog {
    padding: 28px;
  }
  .article-dialog .drawer-close {
    margin: -12px -12px 10px 15px;
  }
  .article-dialog h2 {
    font-size: 32px;
  }
  .section-side-note {
    font-size: 12px;
  }
  .signal-grid small {
    font-size: 11px;
  }
  .closing-inner h2 {
    font-size: 46px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .hero-particles {
    display: none;
  }
  .reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
