:root {
  --color-pink: #ff5fa2;
  --color-mango: #ffb347;
  --color-lemon: #ffe66d;
  --color-lime: #8bd450;
  --color-berry: #6d2e8c;
  --color-cream: #fff7e8;
  --color-ink: #2b1b2f;
  --color-white: #ffffff;
  --color-muted: #76616f;
  --color-danger: #d73562;
  --shadow-soft: 0 20px 52px rgba(109, 46, 140, .16);
  --shadow-bold: 0 24px 60px rgba(120, 40, 90, .25);
  --radius-card: 24px;
  --radius-small: 12px;
  --max-width: 1120px;
  --header-height: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--color-ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 230, 109, .45), transparent 24rem),
    radial-gradient(circle at 92% 18%, rgba(255, 95, 162, .22), transparent 26rem),
    linear-gradient(180deg, #fffaf0 0%, #fff7e8 42%, #fffdf8 100%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(109, 46, 140, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 46, 140, .055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .7), transparent 78%);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-berry);
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

a:hover,
a:focus {
  color: var(--color-pink);
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
}

.narrow-container {
  width: min(100% - 32px, 860px);
}

.section {
  padding: clamp(56px, 8vw, 104px) 0;
  position: relative;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--color-ink);
  color: var(--color-white);
  border-radius: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 232, .92);
  border-bottom: 3px solid rgba(109, 46, 140, .12);
  backdrop-filter: blur(16px);
}

.site-header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-ink);
  text-decoration: none;
  min-width: 0;
}

.site-brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-pink), var(--color-lemon), var(--color-lime));
  box-shadow: 0 10px 26px rgba(109, 46, 140, .18);
  transform: rotate(-3deg);
  overflow: hidden;
}

.site-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-brand-text {
  display: grid;
  line-height: 1.1;
  min-width: 0;
}

.site-title {
  font-weight: 900;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-tagline {
  margin-top: 4px;
  font-size: .72rem;
  font-weight: 800;
  color: var(--color-berry);
  text-transform: uppercase;
}

.primary-navigation .menu {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-navigation a {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--color-ink);
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
}

.primary-navigation a:hover,
.primary-navigation a:focus {
  background: var(--color-white);
  color: var(--color-berry);
  box-shadow: 0 8px 22px rgba(109, 46, 140, .12);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(43, 27, 47, .2);
  border-radius: 14px;
  background: var(--color-white);
  color: var(--color-ink);
  cursor: pointer;
}

.menu-toggle-bar,
.menu-toggle-bar::before,
.menu-toggle-bar::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: auto;
  background: currentColor;
  border-radius: 99px;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle-bar::before,
.menu-toggle-bar::after {
  content: "";
  position: relative;
}

.menu-toggle-bar::before {
  transform: translateY(-7px);
}

.menu-toggle-bar::after {
  transform: translateY(5px);
}

.menu-open .menu-toggle-bar {
  transform: rotate(45deg);
}

.menu-open .menu-toggle-bar::before {
  opacity: 0;
}

.menu-open .menu-toggle-bar::after {
  transform: translateY(-2px) rotate(90deg);
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  padding-top: clamp(48px, 7vw, 86px);
  padding-bottom: clamp(64px, 8vw, 96px);
}

.hero-inner {
  display: grid;
  gap: clamp(32px, 7vw, 70px);
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3.1rem, 9vw, 6.9rem);
  line-height: .88;
  font-weight: 950;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 4px 4px 0 rgba(255, 179, 71, .45);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-berry);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--color-pink);
  box-shadow: 12px 0 0 var(--color-mango), 24px 0 0 var(--color-lime);
}

.hero-lead {
  margin: 22px 0 8px;
  font-size: clamp(1.35rem, 3vw, 2.3rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--color-berry);
}

.hero-description,
.section-lead {
  color: #422746;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
}

.hero-ja,
.ja-line {
  color: var(--color-muted);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 950;
  color: var(--color-ink);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 0 rgba(43, 27, 47, .15), 0 18px 32px rgba(109, 46, 140, .16);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.button:hover,
.button:focus {
  color: var(--color-ink);
  transform: translateY(-3px);
  box-shadow: 0 15px 0 rgba(43, 27, 47, .12), 0 24px 38px rgba(109, 46, 140, .2);
  filter: saturate(1.08);
}

.button-primary {
  background: linear-gradient(135deg, var(--color-pink), var(--color-mango));
}

.button-secondary {
  background: var(--color-white);
  border: 2px solid rgba(109, 46, 140, .18);
}

.hero-visual {
  display: flex;
  justify-content: center;
  order: -1;
}

.hero-logo-frame {
  width: min(100%, 340px);
  aspect-ratio: 1 / 1;
  position: relative;
  border-radius: 32px;
  padding: 1.15rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .9), transparent 35%),
    linear-gradient(135deg, #ff6fae, #ffd166, #8bd450);
  box-shadow: var(--shadow-bold);
  transform: rotate(2deg);
}

.hero-logo-frame::before,
.hero-logo-frame::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--color-white);
  opacity: .8;
}

.hero-logo-frame::before {
  width: 42px;
  height: 42px;
  top: -12px;
  right: 36px;
}

.hero-logo-frame::after {
  width: 26px;
  height: 26px;
  bottom: 26px;
  left: -8px;
  background: var(--color-lemon);
}

.hero-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 22px;
  background: rgba(255, 255, 255, .38);
}

.fruit-float {
  position: absolute;
  z-index: -1;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 950;
  opacity: .65;
  animation: fruitFloat 7s ease-in-out infinite;
}

.fruit-float-one {
  top: 18%;
  left: 4%;
  width: 54px;
  height: 54px;
  background: var(--color-lemon);
}

.fruit-float-two {
  right: 7%;
  bottom: 12%;
  width: 74px;
  height: 74px;
  color: var(--color-pink);
  background: rgba(255, 95, 162, .16);
  animation-delay: -2s;
}

@keyframes fruitFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(8deg);
  }
}

.card,
.official-notice,
.warning-card {
  background: rgba(255, 255, 255, .82);
  border: 2px solid rgba(109, 46, 140, .12);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.official-notice {
  padding: clamp(22px, 4vw, 34px);
  border-left: 10px solid var(--color-mango);
  background:
    linear-gradient(90deg, rgba(255, 230, 109, .35), rgba(255, 255, 255, .9)),
    repeating-linear-gradient(-45deg, rgba(109, 46, 140, .045) 0 8px, transparent 8px 18px);
}

.official-notice p:not(.section-kicker) {
  margin: 0;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 900;
}

.official-notice .ja-line {
  margin-top: 8px;
  font-size: 1rem;
}

.two-column {
  display: grid;
  gap: 28px;
}

.section-copy h2,
.section-heading h2,
.warning-card h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 950;
  text-wrap: balance;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.profile-card {
  padding: clamp(22px, 4vw, 34px);
}

.profile-card h3 {
  margin: 0 0 20px;
  font-size: 1.45rem;
  font-weight: 950;
}

.profile-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.profile-card dl > div {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 247, 232, .86);
}

.profile-card dt {
  color: var(--color-berry);
  font-size: .76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.profile-card dd {
  margin: 0;
  font-weight: 900;
}

.profile-card dd span {
  display: block;
  margin-top: 2px;
  color: var(--color-muted);
  font-size: .9rem;
  font-weight: 700;
}

.power-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .36), rgba(255, 230, 109, .18)),
    radial-gradient(circle at 80% 24%, rgba(139, 212, 80, .26), transparent 24rem);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 28px;
}

.stats-grid,
.moves-grid {
  display: grid;
  gap: 16px;
}

.stat-card {
  padding: 18px;
  overflow: hidden;
}

.stat-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.stat-head h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 950;
}

.stat-head strong {
  color: var(--color-berry);
  font-size: 1.25rem;
  white-space: nowrap;
}

.stat-bar {
  height: 15px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(109, 46, 140, .12);
  overflow: visible;
}

.stat-bar span {
  display: block;
  width: min(var(--bar-width), 122%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-lime), var(--color-lemon), var(--color-pink));
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .7);
}

.stat-special .stat-head strong,
.stat-vitamin .stat-head strong {
  color: var(--color-pink);
  text-shadow: 2px 2px 0 rgba(255, 230, 109, .9);
}

.stat-critical {
  border-color: rgba(215, 53, 98, .34);
}

.stat-critical .stat-bar span {
  background: linear-gradient(90deg, var(--color-berry), var(--color-danger), var(--color-pink));
}

.move-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
}

.move-card::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 230, 109, .8), rgba(255, 95, 162, .24));
}

.move-icon {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, var(--color-white), transparent 28%),
    linear-gradient(135deg, var(--color-pink), var(--color-mango));
  box-shadow: 13px 5px 0 var(--color-lime);
}

.move-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 950;
}

.move-card p {
  margin: 0 0 8px;
}

.classified-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 95, 162, .16), transparent 22rem),
    linear-gradient(135deg, #201326, #321c3d 58%, #171016);
  color: #f7ead4;
}

.classified-document {
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid rgba(255, 247, 232, .32);
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 247, 232, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 247, 232, .055) 1px, transparent 1px),
    rgba(18, 11, 22, .88);
  background-size: 28px 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

.classified-stamp {
  display: inline-flex;
  margin: 0 0 24px;
  padding: 8px 12px;
  border: 2px solid #ff8aa1;
  color: #ffb3c3;
  font-weight: 950;
  letter-spacing: .08em;
  transform: rotate(-2deg);
}

.classified-grid {
  display: grid;
  gap: 22px;
}

.classified-grid p,
.classified-page p {
  margin: 0 0 10px;
  font-family: "Courier New", monospace;
  font-weight: 700;
}

.classified-page {
  color: #f7ead4;
}

.classified-page h1,
.classified-page h2 {
  color: #fff7e8;
  font-family: "Courier New", monospace;
}

.warning-card,
.contact-card {
  padding: clamp(26px, 5vw, 46px);
}

.warning-card {
  border: 4px dashed rgba(255, 95, 162, .42);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 230, 109, .46), transparent 16rem),
    var(--color-white);
}

.contact-section {
  padding-bottom: clamp(80px, 10vw, 128px);
}

.contact-card {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(139, 212, 80, .18), transparent 18rem),
    var(--color-white);
}

.contact-card .eyebrow {
  justify-content: center;
}

.fruit-message {
  max-width: 620px;
  margin: 22px auto 0;
  padding: 15px 18px;
  border-radius: 18px;
  color: var(--color-ink);
  background: linear-gradient(135deg, rgba(255, 230, 109, .92), rgba(139, 212, 80, .72));
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .28s ease, transform .28s ease;
}

.fruit-message.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fruit-message strong,
.fruit-message span {
  display: block;
}

.site-footer {
  padding: 36px 0;
  color: var(--color-white);
  background: var(--color-ink);
}

.site-footer-inner {
  display: grid;
  gap: 4px;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.footer-note {
  color: rgba(255, 255, 255, .68);
  font-size: .9rem;
}

.content-page {
  padding: clamp(48px, 7vw, 84px) 0;
}

.page-header {
  margin-bottom: 28px;
}

.page-header h1,
.entry-header h1,
.not-found-card h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1;
  font-weight: 950;
}

.archive-description {
  max-width: 720px;
  color: var(--color-muted);
  font-weight: 700;
}

.post-list {
  display: grid;
  gap: 18px;
}

.post-card {
  display: grid;
  overflow: hidden;
}

.entry-thumbnail,
.entry-thumbnail-large {
  display: block;
  background: rgba(255, 230, 109, .18);
}

.entry-thumbnail-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.entry-summary-content,
.entry-content-card {
  padding: clamp(22px, 4vw, 36px);
}

.entry-summary-content h2,
.entry-content h2,
.empty-card h2 {
  margin-top: 0;
}

.entry-summary-content h2 a {
  color: var(--color-ink);
  text-decoration: none;
}

.entry-meta {
  color: var(--color-muted);
  font-size: .92rem;
  font-weight: 800;
}

.entry-content {
  margin-top: 22px;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content img {
  border-radius: 16px;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
}

.entry-content th,
.entry-content td {
  padding: 10px;
  border: 1px solid rgba(109, 46, 140, .18);
}

.pagination,
.post-navigation {
  margin-top: 28px;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.post-navigation a,
.pagination a,
.pagination span {
  display: inline-flex;
  margin: 4px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-berry);
  font-weight: 900;
  text-decoration: none;
}

.empty-card,
.not-found-card {
  padding: clamp(26px, 5vw, 46px);
}

.not-found-card {
  text-align: center;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 680px) {
  .stats-grid,
  .moves-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .post-card {
    grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr);
  }
}

@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  }

  .hero-visual {
    order: initial;
  }

  .hero-logo-frame {
    width: min(100%, 390px);
  }

  .two-column {
    grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
    align-items: center;
  }

  .classified-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .moves-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 68px;
  }

  .site-header-inner {
    min-height: var(--header-height);
  }

  .site-brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .site-tagline {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .primary-navigation {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    padding: 14px;
    border: 2px solid rgba(109, 46, 140, .12);
    border-radius: 20px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease;
  }

  .menu-open .primary-navigation {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-navigation .menu {
    display: grid;
    gap: 4px;
  }

  .primary-navigation a {
    display: flex;
    padding: 12px 14px;
  }

  .hero-copy h1 {
    max-width: 9ch;
  }

  .hero-logo-frame {
    max-width: 310px;
  }

  .hero-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
