:root {
  color-scheme: light;
  --paper: #fbfff9;
  --paper-warm: #fffaf0;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --ink: #1d342f;
  --muted: #5f756f;
  --line: rgba(29, 52, 47, 0.14);
  --accent: #54bea7;
  --accent-strong: #207c6e;
  --accent-soft: #e4f7f1;
  --accent-warm: #f2cf5b;
  --accent-alt: #69b9e8;
  --shadow: 0 22px 58px rgba(36, 77, 68, 0.14);
  --max: 1120px;
  font-family: ui-rounded, "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Yu Gothic", "YuGothic", "Noto Sans JP", "Noto Sans SC", "Noto Sans KR", "PingFang SC", "Microsoft YaHei", "Apple SD Gothic Neo", sans-serif;
  letter-spacing: 0;
}

.theme-hourglass {
  --paper: #fbfff9;
  --paper-warm: #fffaf0;
  --accent: #44b8a4;
  --accent-strong: #166a61;
  --accent-soft: #e8f8f3;
  --accent-warm: #f1cf5b;
  --accent-alt: #ef806f;
}

.theme-stamp {
  --paper: #fffdf6;
  --paper-warm: #fff7d7;
  --accent: #f2bd3a;
  --accent-strong: #9b6514;
  --accent-soft: #fff1b8;
  --accent-warm: #7dcf9a;
  --accent-alt: #69b9e8;
}

.theme-dounatta {
  --paper: #f8fffc;
  --paper-warm: #fffdf6;
  --accent: #62c7d7;
  --accent-strong: #2777a2;
  --accent-soft: #e0f3ff;
  --accent-warm: #75d3b8;
  --accent-alt: #ffd45a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body::selection {
  background: color-mix(in srgb, var(--accent) 28%, white);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.lead,
.section-head p,
.split-copy p,
.cta-band p,
.series-card p,
.feature-card p,
.route-item p,
.step p,
.scene-card p,
.story-copy p,
.rally-copy p,
.screen-copy p,
.praise-copy p,
.story-steps p,
.switch-lane p,
.starter-grid p,
.praise-steps p,
.screen-points p {
  overflow-wrap: anywhere;
}

.topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(29, 52, 47, 0.08);
  background: rgba(251, 255, 249, 0.88);
  backdrop-filter: blur(16px);
}

.topbar__inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand img {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(36, 77, 68, 0.12);
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 900;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--accent-strong);
}

.nav__primary {
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--accent-strong);
  color: #fff;
}

.language-menu {
  position: relative;
  flex: 0 0 auto;
}

.language-menu summary {
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  list-style: none;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu[open] summary {
  border-color: color-mix(in srgb, var(--accent) 42%, white);
}

.language-menu__panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 60;
  min-width: 154px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(36, 77, 68, 0.14);
}

.language-menu__panel a {
  display: block;
  padding: 9px 10px;
  border-radius: 7px;
  color: var(--ink);
  font-size: 0.84rem;
  text-decoration: none;
  white-space: nowrap;
}

.language-menu__panel a:hover,
.language-menu__panel a[aria-current="page"] {
  background: color-mix(in srgb, var(--accent) 15%, white);
  color: var(--accent-strong);
}

.hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.28) 52%, rgba(255, 255, 255, 0.08)),
    linear-gradient(165deg, var(--paper) 0%, var(--accent-soft) 64%, var(--paper-warm) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 88px;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--accent) 24%, transparent), transparent 38%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.42));
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 112px 0 78px;
}

.hero__copy {
  width: min(620px, 100%);
}

.hero__media {
  position: absolute;
  right: 0;
  bottom: 36px;
  z-index: -1;
  width: min(45%, 500px);
  min-height: 540px;
  pointer-events: none;
}

.hero__mascot {
  position: absolute;
  right: 4%;
  bottom: 8px;
  width: min(44%, 210px);
  opacity: 0.22;
  filter: drop-shadow(0 18px 26px rgba(36, 77, 68, 0.12));
}

.phone-shot {
  position: absolute;
  width: 230px;
  border: 8px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone-shot img {
  width: 100%;
  height: auto;
}

.phone-shot--main {
  right: 120px;
  bottom: 34px;
}

.phone-shot--tilt {
  right: 0;
  bottom: 88px;
  width: 205px;
  transform: rotate(4deg);
}

.phone-shot--back {
  right: 250px;
  bottom: 96px;
  width: 190px;
  transform: rotate(-5deg);
  opacity: 0.88;
}

.hero__media--series {
  width: min(48%, 560px);
  min-height: 460px;
  display: grid;
  align-items: center;
}

.series-hero {
  position: relative;
  width: 100%;
}

.series-hero__rail {
  display: flex;
  gap: 14px;
  align-items: start;
  justify-content: flex-end;
  width: 100%;
}

.series-hero__shot {
  position: relative;
  z-index: 2;
  flex: 1 1 0;
  max-width: 170px;
  min-width: 0;
  margin: 0;
  aspect-ratio: 390 / 844;
  border: 8px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  background: #fff;
  box-shadow:
    0 22px 58px color-mix(in srgb, var(--preview-accent, var(--accent)) 18%, transparent),
    var(--shadow);
  overflow: hidden;
}

.series-hero__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.series-hero__mascot {
  position: absolute;
  right: 0;
  bottom: -28px;
  z-index: 1;
  width: min(44%, 210px);
  opacity: 0.2;
  filter: drop-shadow(0 18px 26px rgba(36, 77, 68, 0.12));
}

.kicker {
  margin-bottom: 14px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 18px;
  font-size: 4.8rem;
  line-height: 0.98;
  font-weight: 900;
  text-wrap: balance;
}

h1 span {
  display: block;
}

.series-page h1 span,
.series-page .section-head h2 span {
  display: inline;
}

.product-parent h1 {
  font-size: 3.75rem;
  line-height: 1.08;
}

.product-parent .lead {
  font-size: 1.16rem;
}

.lead {
  width: min(560px, 100%);
  margin-bottom: 28px;
  color: #405b55;
  font-size: 1.24rem;
  line-height: 1.88;
  font-weight: 800;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 52px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  color: inherit;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button--primary {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #fff;
  box-shadow: 0 16px 28px color-mix(in srgb, var(--accent) 30%, transparent);
}

.button--secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.button[aria-disabled="true"] {
  opacity: 0.62;
  pointer-events: none;
}

.proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.proof span {
  padding: 8px 10px;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, white);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 900;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.scene-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 178px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(36, 77, 68, 0.07);
}

.scene-card span {
  justify-self: start;
  padding: 6px 9px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 13%, white);
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 900;
}

.scene-card h3 {
  margin: 0;
  font-size: 1.14rem;
  line-height: 1.34;
}

.scene-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 800;
}

.section {
  padding: 76px 0;
}

.section--soft {
  background: linear-gradient(180deg, var(--accent-soft), var(--paper));
}

.section--ink {
  background: #18352f;
  color: #fff;
}

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

.section-head {
  width: min(720px, 100%);
  margin-bottom: 30px;
}

.section-head h2,
.split-copy h2,
.cta-band h2 {
  margin-bottom: 12px;
  font-size: 3.2rem;
  line-height: 1.1;
  font-weight: 900;
  text-wrap: balance;
}

.section-head p,
.split-copy p,
.cta-band p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
  font-weight: 800;
}

.section--ink .section-head p,
.section--ink .split-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.lineup-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.series-card,
.feature-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(36, 77, 68, 0.08);
  overflow: hidden;
  text-decoration: none;
}

.series-card:hover {
  border-color: color-mix(in srgb, var(--accent) 50%, white);
  transform: translateY(-2px);
}

.series-card__media,
.feature-card__media {
  display: grid;
  min-height: 260px;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), color-mix(in srgb, var(--accent-soft) 74%, white));
  overflow: hidden;
}

.series-card__media img {
  width: min(78%, 220px);
  max-height: 230px;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(36, 77, 68, 0.14));
}

.series-card__media--icon img {
  width: min(72%, 210px);
  aspect-ratio: 1;
  border-radius: 24px;
  box-shadow:
    0 10px 0 color-mix(in srgb, var(--accent) 26%, white),
    0 22px 36px color-mix(in srgb, var(--accent) 20%, transparent);
  object-fit: cover;
  filter: none;
}

.feature-card__media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top center;
}

.feature-card__media--contain img {
  width: min(76%, 230px);
  height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(36, 77, 68, 0.14));
}

.series-card__body,
.feature-card__body {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 2px 2px 8px;
}

.status-pill,
.feature-tag {
  justify-self: start;
  padding: 6px 9px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 14%, white);
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 900;
}

.series-card h3,
.feature-card h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.35;
}

.series-card p,
.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-weight: 800;
}

.card-link {
  margin-top: 6px;
  color: var(--accent-strong);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  align-items: center;
  gap: 42px;
}

.steps {
  display: grid;
  gap: 12px;
  counter-reset: steps;
}

.step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--accent-strong);
  font-weight: 900;
  box-shadow: 0 7px 16px rgba(36, 77, 68, 0.08);
}

.step h3 {
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 800;
}

.preview-stack {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
}

.preview-stack img {
  width: min(100%, 260px);
  border: 8px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.preview-stack__mascot {
  position: absolute;
  right: 10px;
  bottom: 6px;
  width: 112px;
  border: 0;
  box-shadow: none;
  filter: drop-shadow(0 14px 20px rgba(36, 77, 68, 0.12));
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: center;
  gap: 22px;
  padding: 34px 0;
}

.cta-band img {
  justify-self: center;
  width: 170px;
  filter: drop-shadow(0 14px 22px rgba(36, 77, 68, 0.14));
}

.route-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.route-item {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.route-item span {
  color: color-mix(in srgb, var(--accent-warm) 68%, white);
  font-size: 0.78rem;
  font-weight: 900;
}

.route-item h3 {
  margin: 8px 0 8px;
  font-size: 1.12rem;
}

.route-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.68;
  font-weight: 800;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid rgba(29, 52, 47, 0.08);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
}

.footer a {
  text-decoration: none;
}

.product-checkback {
  --paper: #f7fbfc;
  --paper-warm: #f2f8fb;
  --surface: rgba(255, 255, 255, 0.84);
  --shadow: 0 22px 52px rgba(28, 83, 109, 0.12);
}

.product-checkback .topbar {
  border-bottom: 1px solid rgba(39, 119, 162, 0.14);
  background: rgba(255, 255, 255, 0.92);
}

.product-checkback .nav__primary {
  min-height: 38px;
  border-radius: 10px;
  background: #2777a2;
}

.product-checkback .hero {
  min-height: 84svh;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.52)),
    linear-gradient(180deg, #f7fbfc, #e9f6fb 58%, #fffdf6);
}

.product-checkback .hero::before {
  height: 1px;
  background: rgba(39, 119, 162, 0.12);
}

.product-checkback .hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.68fr);
  align-items: center;
  gap: 52px;
  padding-top: 108px;
  padding-bottom: 70px;
}

.product-checkback .hero__copy {
  width: 100%;
}

.product-checkback h1 {
  width: min(650px, 100%);
  font-size: 4.05rem;
  line-height: 1.08;
}

.product-checkback .lead {
  color: #425d66;
  font-size: 1.1rem;
}

.product-checkback .button {
  min-height: 48px;
  border-radius: 10px;
  padding: 0 20px;
}

.product-checkback .button--primary {
  background: linear-gradient(135deg, #2777a2, #62c7d7);
  box-shadow: 0 12px 24px rgba(39, 119, 162, 0.18);
}

.product-checkback .button--secondary {
  background: rgba(255, 255, 255, 0.86);
}

.product-checkback .proof span {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.product-checkback .hero__media {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 1;
  width: 100%;
  min-height: 500px;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.product-checkback .phone-shot--main {
  left: 50%;
  right: auto;
  top: 52%;
  bottom: auto;
  width: min(72%, 280px);
  border-width: 8px;
  transform: translate(-50%, -50%);
}

.product-checkback .hero__mascot {
  right: 4%;
  bottom: 42px;
  z-index: 3;
  width: 118px;
  opacity: 0.72;
  filter: drop-shadow(0 14px 20px rgba(28, 83, 109, 0.12));
}

.checkback-note-card {
  position: absolute;
  top: 78px;
  left: 0;
  z-index: 4;
  width: min(72%, 290px);
  padding: 18px;
  border: 1px solid rgba(39, 119, 162, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(28, 83, 109, 0.12);
}

.checkback-note-card span {
  color: #2777a2;
  font-size: 0.78rem;
  font-weight: 900;
}

.checkback-note-card strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.35;
}

.checkback-note-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 920px) {
  h1 {
    font-size: 3.8rem;
  }

  .product-parent h1 {
    font-size: 3.2rem;
  }

  .product-checkback .hero__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
    gap: 34px;
  }

  .product-checkback h1 {
    font-size: 3.4rem;
  }

  .product-checkback .phone-shot--main {
    width: min(74%, 240px);
  }

  .checkback-note-card {
    width: min(76%, 250px);
  }

  .hero__media {
    width: 50%;
  }

  .hero__media--series {
    width: min(52%, 500px);
  }

  .phone-shot--back {
    display: none;
  }

  .lineup-grid,
  .feature-grid,
  .scene-grid,
  .route-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav a:not(.nav__primary) {
    display: none;
  }

  .nav {
    gap: 8px;
  }

  .nav .nav__primary {
    display: none;
  }

  .nav .language-menu a {
    display: block;
  }

  .language-menu summary {
    min-width: 42px;
    padding: 0 9px;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding: 104px 0 46px;
  }

  .product-checkback .hero__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 80px;
    padding-bottom: 48px;
  }

  .product-checkback h1 {
    font-size: 2.62rem;
  }

  .product-checkback .hero__media {
    order: -1;
    position: relative;
    width: min(100%, 400px);
    min-height: 300px;
    margin: 12px auto 22px;
  }

  .product-checkback .phone-shot--main {
    top: 152px;
    width: 160px;
  }

  .product-checkback .hero__mascot {
    right: 6%;
    bottom: 4px;
    width: 76px;
    opacity: 0.44;
  }

  .checkback-note-card {
    top: 10px;
    left: 50%;
    width: min(88%, 300px);
    transform: translateX(-50%);
  }

  .hero__media {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 0;
    width: min(100%, 420px);
    min-height: 480px;
    margin: 30px auto 0;
  }

  .hero__media--series {
    width: min(100%, 420px);
    min-height: 0;
    display: block;
  }

  .series-hero__rail {
    gap: 10px;
    justify-content: center;
  }

  .series-hero__shot {
    border-width: 6px;
  }

  .series-hero__mascot {
    right: auto;
    left: 8px;
    bottom: -22px;
    width: 118px;
    opacity: 0.3;
  }

  .phone-shot--main {
    right: 50%;
    top: 0;
    bottom: auto;
    width: 210px;
    transform: translateX(50%);
  }

  .phone-shot--tilt {
    right: 12px;
    top: 58px;
    bottom: auto;
    width: 150px;
    opacity: 0.74;
  }

  .hero__mascot {
    right: auto;
    left: 8px;
    bottom: 22px;
    width: 120px;
    opacity: 0.34;
  }

  h1 {
    font-size: 2.86rem;
  }

  .product-parent h1 {
    font-size: 2.34rem;
    line-height: 1.12;
  }

  .series-page h1 span,
  .series-page .section-head h2 span {
    display: block;
  }

  .series-page h1 {
    font-size: 2.68rem;
    line-height: 1.08;
  }

  .product-parent .lead {
    font-size: 1rem;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.76;
  }

  .actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .section-head h2,
  .split-copy h2,
  .cta-band h2 {
    font-size: 2.12rem;
  }

  .lineup-grid,
  .feature-grid,
  .scene-grid,
  .split,
  .cta-band,
  .route-list {
    grid-template-columns: 1fr;
  }

  .series-card__media {
    min-height: 220px;
  }

  .feature-card__media img {
    height: 390px;
  }

  .cta-band {
    text-align: center;
  }
}

@media (max-width: 420px) {
  .topbar__inner,
  .container,
  .hero__inner {
    width: min(var(--max), calc(100% - 24px));
  }

  .brand span {
    max-width: 174px;
  }

  h1 {
    font-size: 2.72rem;
  }

  .series-page h1 {
    font-size: 2.46rem;
  }

  .phone-shot--tilt {
    display: none;
  }

  .product-checkback h1 {
    font-size: 2.34rem;
  }

  .product-checkback .hero__media {
    min-height: 280px;
  }

  .product-checkback .phone-shot--main {
    top: 146px;
    width: 150px;
  }

  .checkback-note-card {
    padding: 15px;
  }
}

.pop-page {
  --pop-pink: #ff8fb3;
  --pop-coral: #ff8d6f;
  --pop-yellow: #ffd954;
  --pop-sky: #75c9f2;
  --pop-leaf: #7ed49f;
  --pop-ink: #17342f;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.52) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52) 1px, transparent 1px),
    var(--paper);
  background-size: 26px 26px, 26px 26px, auto;
}

.pop-page .topbar {
  border-bottom: 3px solid color-mix(in srgb, var(--accent) 42%, white);
  background: rgba(255, 255, 255, 0.9);
}

.pop-page .brand img {
  border: 2px solid #fff;
  border-radius: 8px;
  box-shadow:
    0 4px 0 color-mix(in srgb, var(--accent) 42%, white),
    0 10px 22px rgba(36, 77, 68, 0.12);
}

.pop-page .nav__primary {
  border: 2px solid #fff;
  box-shadow: 0 5px 0 color-mix(in srgb, var(--accent-strong) 78%, #1b3a34);
}

.pop-page .hero {
  min-height: 88svh;
  border-bottom: 6px solid rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.12)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.42) 0 14px, transparent 14px 28px),
    linear-gradient(150deg, var(--pop-hero-start), var(--pop-hero-mid) 52%, var(--pop-hero-end));
}

.pop-hourglass {
  --pop-hero-start: #fffdf6;
  --pop-hero-mid: #dff9f2;
  --pop-hero-end: #fff3b4;
  --pop-stage: #d7fff4;
  --pop-stage-2: #fff1a7;
  --pop-button: #26a990;
  --pop-button-2: #6ddcc6;
  --pop-shadow: #0d6f64;
  --pop-card: #44b8a4;
}

.pop-stamp {
  --pop-hero-start: #fffaf0;
  --pop-hero-mid: #fff0a9;
  --pop-hero-end: #ffd7e4;
  --pop-stage: #fff2a9;
  --pop-stage-2: #ffb8ca;
  --pop-button: #d28a15;
  --pop-button-2: #ffd54f;
  --pop-shadow: #966112;
  --pop-card: #f2bd3a;
}

.pop-page .hero::before {
  height: 18px;
  background:
    repeating-linear-gradient(90deg, var(--pop-pink) 0 34px, var(--pop-yellow) 34px 68px, var(--pop-sky) 68px 102px, var(--pop-leaf) 102px 136px);
  opacity: 0.78;
}

.pop-page .hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.74fr);
  align-items: center;
  gap: 56px;
  padding-top: 106px;
  padding-bottom: 66px;
}

.pop-page .hero__copy {
  width: 100%;
}

.pop-page .kicker {
  display: inline-grid;
  min-height: 34px;
  place-items: center;
  margin-bottom: 18px;
  padding: 0 12px;
  border: 2px solid color-mix(in srgb, var(--accent) 42%, white);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--accent-strong);
  box-shadow: 0 4px 0 color-mix(in srgb, var(--accent) 24%, white);
}

.pop-page.product-parent h1 {
  width: min(650px, 100%);
  color: var(--pop-ink);
  font-size: 4.15rem;
  line-height: 1.02;
  text-shadow:
    0 3px 0 #fff,
    0 8px 0 color-mix(in srgb, var(--accent) 22%, transparent);
}

.pop-page.product-parent .lead {
  color: #39574f;
  font-size: 1.18rem;
  line-height: 1.9;
}

.pop-page .button {
  border: 2px solid #fff;
  box-shadow:
    0 6px 0 var(--pop-shadow),
    0 18px 28px rgba(36, 77, 68, 0.14);
}

.pop-page .button--primary {
  background: linear-gradient(135deg, var(--pop-button), var(--pop-button-2));
}

.pop-page .button--secondary {
  border-color: color-mix(in srgb, var(--accent) 26%, white);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 6px 0 color-mix(in srgb, var(--accent) 18%, white),
    0 14px 24px rgba(36, 77, 68, 0.08);
}

.pop-hourglass.product-parent h1 {
  font-size: 3.9rem;
  text-shadow:
    0 3px 0 #fff,
    0 7px 0 rgba(68, 184, 164, 0.12);
}

.pop-hourglass .button {
  min-height: 54px;
  border-radius: 24px;
  box-shadow:
    0 5px 0 #187066,
    0 16px 26px rgba(36, 77, 68, 0.12);
}

.pop-hourglass .button--secondary {
  border-radius: 20px;
  box-shadow:
    0 5px 0 rgba(68, 184, 164, 0.18),
    0 12px 22px rgba(36, 77, 68, 0.08);
}

.pop-stamp.product-parent h1 {
  font-size: 4rem;
  text-shadow:
    0 3px 0 #fff,
    0 8px 0 rgba(242, 189, 58, 0.2);
}

.pop-stamp .nav__primary,
.pop-stamp .button {
  border-radius: 14px;
}

.pop-stamp .button {
  min-height: 56px;
  box-shadow:
    0 7px 0 #a96e16,
    0 18px 28px rgba(126, 86, 16, 0.14);
}

.pop-stamp .button--secondary {
  border: 2px dashed color-mix(in srgb, var(--accent) 42%, white);
  box-shadow:
    0 6px 0 #efd584,
    0 14px 24px rgba(126, 86, 16, 0.08);
}

.pop-stamp .proof span {
  border-radius: 12px;
}

.pop-page .proof span {
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 4px 0 color-mix(in srgb, var(--accent) 20%, white);
}

.pop-page .hero__media {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 1;
  width: 100%;
  min-height: 520px;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.pop-page .hero__media::before {
  content: "";
  position: absolute;
  inset: 40px 0 22px;
  border: 6px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.52) 0 16px, transparent 16px 32px),
    linear-gradient(150deg, var(--pop-stage), var(--pop-stage-2));
  box-shadow:
    0 8px 0 color-mix(in srgb, var(--accent) 30%, white),
    0 30px 54px rgba(36, 77, 68, 0.14);
}

.pop-page .phone-shot {
  border: 10px solid #fff;
  border-radius: 8px;
  box-shadow:
    0 10px 0 color-mix(in srgb, var(--accent) 34%, white),
    0 28px 48px rgba(36, 77, 68, 0.18);
}

.pop-page .phone-shot--main {
  left: 50%;
  right: auto;
  top: 50%;
  bottom: auto;
  width: min(80%, 314px);
  transform: translate(-50%, -50%) rotate(var(--phone-tilt, -2deg));
}

.pop-hourglass .phone-shot--main {
  --phone-tilt: -3deg;
}

.pop-stamp .phone-shot--main {
  --phone-tilt: 2deg;
}

.pop-stamp .hero__inner {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 0.78fr);
  gap: 44px;
}

.pop-stamp .hero__media {
  order: -1;
  min-height: 560px;
}

.pop-stamp .hero__media::before {
  inset: 30px 18px 30px;
  transform: rotate(-2deg);
}

.pop-stamp .phone-shot--main {
  left: auto;
  right: 2%;
  top: 52%;
  width: min(48%, 214px);
  transform: translateY(-50%) rotate(6deg);
}

.stamp-hero-board {
  position: absolute;
  top: 90px;
  left: 0;
  z-index: 3;
  width: min(74%, 370px);
  padding: 22px;
  border: 6px solid #fff;
  border-radius: 8px;
  background:
    repeating-linear-gradient(-8deg, rgba(255, 255, 255, 0.38) 0 12px, transparent 12px 24px),
    linear-gradient(180deg, #fffdf0, #ffe986);
  box-shadow:
    0 10px 0 #efc658,
    0 28px 46px rgba(126, 86, 16, 0.16);
  transform: rotate(-3deg);
}

.stamp-hero-board__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  color: #61410f;
  font-weight: 900;
}

.stamp-hero-board__head strong {
  display: grid;
  min-width: 72px;
  min-height: 42px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #fff5aa;
  color: #9b6514;
  box-shadow: 0 4px 0 #dfb94e;
}

.stamp-hero-slots {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
  margin-bottom: 16px;
}

.stamp-hero-slots span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 2px dashed #d9b354;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.stamp-hero-slots .is-filled {
  border-style: solid;
  background: #fff4a5;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.52);
}

.stamp-hero-slots img {
  width: 76%;
  transform: rotate(-7deg);
  filter: sepia(1) saturate(2.2) drop-shadow(0 4px 0 rgba(255, 255, 255, 0.9));
}

.stamp-hero-board p {
  margin: 0;
  color: #9b6514;
  font-weight: 900;
  text-align: center;
}

.pop-page .hero__mascot {
  right: 6%;
  bottom: 34px;
  z-index: 3;
  width: min(38%, 190px);
  opacity: 0.94;
  filter:
    drop-shadow(0 4px 0 #fff)
    drop-shadow(0 16px 22px rgba(36, 77, 68, 0.16));
}

.pop-stamp .hero__mascot {
  right: 1%;
  bottom: 44px;
  width: min(34%, 148px);
}

.pop-page .section--soft {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px),
    linear-gradient(180deg, color-mix(in srgb, var(--accent-soft) 72%, white), var(--paper));
  background-size: 24px 24px, 24px 24px, auto;
}

.pop-page .scene-card,
.pop-page .feature-card,
.pop-page .step {
  border: 3px solid #fff;
  box-shadow:
    0 7px 0 color-mix(in srgb, var(--card-pop, var(--pop-card)) 28%, white),
    0 16px 30px rgba(36, 77, 68, 0.08);
}

.pop-page .scene-card:nth-child(1),
.pop-page .feature-card:nth-child(1) {
  --card-pop: var(--pop-yellow);
}

.pop-page .scene-card:nth-child(2),
.pop-page .feature-card:nth-child(2) {
  --card-pop: var(--pop-sky);
}

.pop-page .scene-card:nth-child(3),
.pop-page .feature-card:nth-child(3) {
  --card-pop: var(--pop-pink);
}

.pop-page .scene-card:nth-child(4) {
  --card-pop: var(--pop-leaf);
}

.pop-page .scene-card {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--card-pop) 24%, white), rgba(255, 255, 255, 0.92));
}

.pop-page .scene-card span,
.pop-page .feature-tag,
.pop-page .status-pill {
  border: 2px solid #fff;
  background: color-mix(in srgb, var(--card-pop, var(--accent)) 28%, white);
  box-shadow: 0 3px 0 color-mix(in srgb, var(--card-pop, var(--accent)) 28%, white);
}

.pop-page .feature-card__media {
  border: 3px dashed color-mix(in srgb, var(--card-pop, var(--accent)) 62%, white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), color-mix(in srgb, var(--card-pop, var(--accent)) 22%, white));
}

.pop-stamp .feature-card__media,
.pop-stamp .scene-card {
  background:
    repeating-linear-gradient(-8deg, rgba(255, 255, 255, 0.34) 0 12px, transparent 12px 24px),
    linear-gradient(180deg, color-mix(in srgb, var(--card-pop) 24%, white), rgba(255, 255, 255, 0.92));
}

.switch-story {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px),
    linear-gradient(180deg, #f4fffb, #fffdf3);
  background-size: 24px 24px, 24px 24px, auto;
}

.story-board {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.story-copy h2,
.rally-copy h2,
.screen-copy h2,
.praise-copy h2 {
  margin-bottom: 14px;
  font-size: 3.2rem;
  line-height: 1.1;
}

.story-copy p,
.rally-copy p,
.screen-copy p,
.praise-copy p {
  color: var(--muted);
  line-height: 1.85;
  font-weight: 800;
}

.story-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.story-steps article {
  position: relative;
  min-height: 250px;
  padding: 20px;
  border: 4px solid #fff;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), color-mix(in srgb, var(--accent-soft) 65%, white));
  box-shadow:
    0 8px 0 color-mix(in srgb, var(--accent) 28%, white),
    0 18px 34px rgba(36, 77, 68, 0.1);
}

.story-steps article:nth-child(2) {
  transform: translateY(-16px);
}

.story-steps article:nth-child(3) {
  transform: translateY(12px);
}

.story-steps span,
.starter-grid span,
.praise-steps span {
  display: inline-grid;
  min-width: 42px;
  height: 34px;
  place-items: center;
  margin-bottom: 14px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 34%, white);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 4px 0 color-mix(in srgb, var(--accent) 18%, white);
}

.story-steps h3,
.switch-lane h3,
.starter-grid h3,
.praise-steps h3,
.screen-points h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.35;
}

.story-steps p,
.switch-lane p,
.starter-grid p,
.praise-steps p,
.screen-points p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-weight: 800;
}

.switch-lane {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.switch-lane article {
  display: grid;
  align-content: start;
  min-height: 196px;
  padding: 18px;
  border: 3px solid #fff;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 7px 0 color-mix(in srgb, var(--accent) 24%, white),
    0 16px 28px rgba(36, 77, 68, 0.08);
}

.switch-lane span {
  justify-self: start;
  margin-bottom: 12px;
  padding: 6px 9px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 18%, white);
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 900;
}

.switch-screen__inner,
.praise-loop__inner,
.stamp-rally__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.screen-ticket,
.praise-screen {
  margin: 0;
  padding: 12px;
  border: 5px solid #fff;
  border-radius: 8px;
  background:
    repeating-linear-gradient(-6deg, rgba(255, 255, 255, 0.4) 0 12px, transparent 12px 24px),
    linear-gradient(150deg, var(--pop-stage), var(--pop-stage-2));
  box-shadow:
    0 9px 0 color-mix(in srgb, var(--accent) 26%, white),
    0 22px 42px rgba(36, 77, 68, 0.12);
  overflow: hidden;
}

.screen-ticket img,
.praise-screen img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
}

.screen-points,
.praise-steps {
  display: grid;
  gap: 12px;
}

.screen-points article,
.praise-steps article {
  padding: 16px;
  border: 3px solid #fff;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 6px 0 color-mix(in srgb, var(--accent) 20%, white);
}

.stamp-rally {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.52) 0 18px, transparent 18px 36px),
    linear-gradient(180deg, #fff8cf, #fff5ea);
}

.stamp-rally__inner {
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.58fr);
}

.rally-board {
  padding: 22px;
  border: 6px solid #fff;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), #fff8c8);
  box-shadow:
    0 10px 0 #f1c75b,
    0 24px 42px rgba(126, 86, 16, 0.13);
}

.rally-board__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--ink);
  font-weight: 900;
}

.rally-board__head strong {
  display: grid;
  min-width: 76px;
  min-height: 44px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #fff4a8;
  color: #9b6514;
  box-shadow: 0 4px 0 #e6bd4c;
}

.rally-stamps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.rally-stamps span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 2px dashed #eac866;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.rally-stamps .is-filled {
  border-style: solid;
  background: #fff3a7;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.58);
}

.rally-stamps img {
  width: 74%;
  transform: rotate(-7deg);
  filter: sepia(1) saturate(2.3) drop-shadow(0 4px 0 rgba(255, 255, 255, 0.88));
}

.rally-board p {
  margin: 0;
  color: #9b6514;
  font-weight: 900;
  text-align: center;
}

.starter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.starter-grid article {
  min-height: 206px;
  padding: 18px;
  border: 3px solid #fff;
  border-radius: 8px;
  background:
    repeating-linear-gradient(-8deg, rgba(255, 255, 255, 0.34) 0 12px, transparent 12px 24px),
    linear-gradient(180deg, #fffbea, #fff3c4);
  box-shadow:
    0 7px 0 #efcb65,
    0 16px 28px rgba(126, 86, 16, 0.1);
}

.praise-loop {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.44) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.44) 1px, transparent 1px),
    #fffaf0;
  background-size: 24px 24px, 24px 24px, auto;
}

.praise-loop__inner {
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 0.82fr);
}

@media (max-width: 920px) {
  .pop-page.product-parent h1 {
    font-size: 3.45rem;
  }

  .pop-hourglass.product-parent h1 {
    font-size: 3.25rem;
  }

  .pop-stamp.product-parent h1 {
    font-size: 3.32rem;
  }

  .pop-page .hero__inner {
    grid-template-columns: minmax(0, 0.98fr) minmax(260px, 0.72fr);
    gap: 32px;
  }

  .pop-stamp .hero__inner {
    grid-template-columns: minmax(310px, 0.78fr) minmax(0, 0.82fr);
  }

  .stamp-hero-board {
    top: 106px;
    width: min(74%, 320px);
  }

  .pop-stamp .phone-shot--main {
    width: min(46%, 190px);
  }

  .story-copy h2,
  .rally-copy h2,
  .screen-copy h2,
  .praise-copy h2 {
    font-size: 2.7rem;
  }

  .story-board,
  .switch-screen__inner,
  .praise-loop__inner,
  .stamp-rally__inner {
    grid-template-columns: 1fr;
  }

  .story-steps,
  .switch-lane,
  .starter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .pop-page .hero {
    min-height: auto;
  }

  .pop-page .hero__inner {
    display: block;
    padding-top: 96px;
    padding-bottom: 48px;
  }

  .pop-page.product-parent h1 {
    font-size: 2.74rem;
    line-height: 1.08;
  }

  .pop-hourglass.product-parent h1 {
    font-size: 2.58rem;
  }

  .pop-stamp.product-parent h1 {
    font-size: 2.66rem;
  }

  .pop-page .hero__media {
    width: min(100%, 420px);
    min-height: 450px;
    margin: 28px auto 0;
  }

  .pop-page .hero__media::before {
    inset: 26px 8px 18px;
  }

  .pop-stamp .hero__media {
    min-height: 430px;
  }

  .pop-stamp .hero__media::before {
    inset: 20px 6px 14px;
    transform: rotate(-1deg);
  }

  .pop-page .phone-shot--main {
    width: min(72%, 250px);
  }

  .pop-stamp .phone-shot--main {
    left: auto;
    right: 5%;
    top: 236px;
    width: 150px;
    transform: rotate(5deg);
  }

  .pop-page .hero__mascot {
    right: 2%;
    bottom: 20px;
    width: 128px;
  }

  .pop-stamp .hero__mascot {
    right: auto;
    left: 5%;
    bottom: 18px;
    width: 118px;
  }

  .pop-stamp .hero__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 78px;
  }

  .pop-stamp .hero__media {
    order: -1;
    width: min(100%, 380px);
    min-height: 320px;
    margin: 12px auto 24px;
  }

  .pop-stamp .hero__media::before {
    inset: 48px 12px 8px;
  }

  .pop-stamp .stamp-hero-board {
    top: 8px;
    width: min(92%, 318px);
    padding: 15px;
  }

  .pop-stamp .phone-shot--main {
    top: 164px;
    right: 5%;
    width: 126px;
  }

  .pop-stamp .hero__mascot {
    left: 3%;
    bottom: 8px;
    width: 98px;
  }

  .pop-stamp .hero__copy {
    text-align: left;
  }

  .stamp-hero-board {
    top: 22px;
    left: 50%;
    width: min(86%, 300px);
    padding: 18px;
    transform: translateX(-50%) rotate(-2deg);
  }

  .pop-stamp .stamp-hero-board {
    top: 8px;
    width: min(92%, 318px);
    padding: 15px;
  }

  .story-copy h2,
  .rally-copy h2,
  .screen-copy h2,
  .praise-copy h2 {
    font-size: 2.1rem;
  }

  .story-steps,
  .switch-lane,
  .starter-grid {
    grid-template-columns: 1fr;
  }

  .story-steps article,
  .story-steps article:nth-child(2),
  .story-steps article:nth-child(3) {
    min-height: auto;
    transform: none;
  }

  .screen-ticket img,
  .praise-screen img {
    height: 430px;
  }
}

@media (max-width: 420px) {
  .pop-page.product-parent h1 {
    font-size: 2.38rem;
  }

  .pop-hourglass.product-parent h1 {
    font-size: 2.28rem;
  }

  .pop-stamp.product-parent h1 {
    font-size: 2.34rem;
  }

  .pop-page .hero__media {
    min-height: 410px;
  }

  .pop-stamp .hero__media {
    min-height: 306px;
  }

  .pop-page .phone-shot--main {
    width: min(74%, 236px);
  }

  .pop-stamp .phone-shot--main {
    top: 154px;
    right: 4%;
    width: 118px;
  }

  .stamp-hero-board {
    width: min(92%, 282px);
    padding: 15px;
  }

  .pop-stamp .stamp-hero-board {
    top: 8px;
    width: min(92%, 300px);
  }

  .stamp-hero-slots {
    gap: 6px;
  }

  .pop-stamp .hero__mascot {
    width: 100px;
  }
}

.series-showcase {
  --series-ink: #17342f;
  --series-grid: rgba(255, 255, 255, 0.48);
  background:
    linear-gradient(90deg, rgba(68, 184, 164, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(68, 184, 164, 0.07) 1px, transparent 1px),
    #fffdf7;
  background-size: 28px 28px, 28px 28px, auto;
}

.series-showcase .topbar {
  border-bottom: 2px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 28px rgba(36, 77, 68, 0.06);
}

.series-showcase .brand img {
  padding: 2px;
  background: #fffdf4;
  object-fit: contain;
}

.series-showcase .nav__primary {
  border-radius: 8px;
  background: var(--series-ink);
  color: #fff;
}

.series-showcase .hero {
  min-height: 88svh;
  border-bottom: 6px solid rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.28) 58%, rgba(255, 255, 255, 0.58)),
    linear-gradient(90deg, var(--series-grid) 1px, transparent 1px),
    linear-gradient(180deg, var(--series-grid) 1px, transparent 1px),
    linear-gradient(145deg, #fffdf5 0%, #e9faf4 44%, #fff1bd 74%, #eaf8fb 100%);
  background-size: auto, 28px 28px, 28px 28px, auto;
}

.series-showcase .hero::before {
  height: 22px;
  background:
    repeating-linear-gradient(90deg, #44b8a4 0 48px, #f2bd3a 48px 96px, #62c7d7 96px 144px, #ff8fb3 144px 192px);
  opacity: 0.7;
}

.series-showcase .hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.74fr);
  align-items: center;
  gap: 46px;
  padding-top: 112px;
  padding-bottom: 68px;
}

.series-showcase .hero__copy {
  width: 100%;
}

.series-showcase h1 {
  width: min(760px, 100%);
  margin-bottom: 16px;
  color: var(--series-ink);
  font-size: 4.82rem;
  line-height: 1.02;
  word-break: keep-all;
  overflow-wrap: normal;
  text-shadow:
    0 3px 0 #fff,
    0 8px 0 rgba(68, 184, 164, 0.1);
}

.series-showcase h1 span {
  display: block;
}

.series-showcase .lead {
  width: min(650px, 100%);
  margin-bottom: 0;
  color: #405b55;
  font-size: 1.16rem;
  line-height: 1.9;
}

.series-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(690px, 100%);
  margin: 24px 0 22px;
}

.series-picker__item {
  min-width: 0;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 2px 10px;
  align-items: center;
  padding: 12px;
  border: 2px solid #fff;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), color-mix(in srgb, var(--route) 17%, white));
  box-shadow:
    0 5px 0 color-mix(in srgb, var(--route) 24%, white),
    0 14px 24px color-mix(in srgb, var(--route) 16%, transparent);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.series-picker__item:hover {
  transform: translateY(-2px);
  box-shadow:
    0 7px 0 color-mix(in srgb, var(--route) 28%, white),
    0 18px 30px color-mix(in srgb, var(--route) 18%, transparent);
}

.series-picker__item img {
  grid-row: 1 / 4;
  width: 46px;
  height: 46px;
  border: 2px solid #fff;
  border-radius: 8px;
  background: #fff;
  object-fit: cover;
  box-shadow: 0 8px 16px color-mix(in srgb, var(--route) 18%, transparent);
}

.series-picker__item span,
.series-picker__item strong,
.series-picker__item small {
  min-width: 0;
  overflow-wrap: anywhere;
}

.series-picker__item span {
  color: var(--route-strong);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.16;
}

.series-picker__item strong {
  color: var(--series-ink);
  font-size: 0.98rem;
  line-height: 1.25;
}

.series-picker__item small {
  color: #58716a;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.18;
}

.series-showcase .button {
  border-radius: 8px;
}

.series-showcase .button--primary {
  background: linear-gradient(135deg, #17342f, #44b8a4);
  box-shadow:
    0 6px 0 #0f5d55,
    0 18px 30px rgba(36, 77, 68, 0.14);
}

.series-showcase .button--secondary {
  border: 2px solid rgba(255, 255, 255, 0.96);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 6px 0 rgba(68, 184, 164, 0.16),
    0 12px 24px rgba(36, 77, 68, 0.08);
}

.series-showcase .hero__media {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 1;
  width: 100%;
  min-height: 520px;
  margin: 0;
  pointer-events: none;
}

.series-showcase .series-hero {
  display: grid;
  min-height: 520px;
  align-items: center;
  padding: 44px 20px 38px;
  border: 6px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background:
    repeating-linear-gradient(-8deg, rgba(255, 255, 255, 0.36) 0 14px, transparent 14px 28px),
    linear-gradient(145deg, rgba(232, 248, 243, 0.96), rgba(255, 241, 184, 0.9) 58%, rgba(224, 243, 255, 0.96));
  box-shadow:
    0 9px 0 rgba(68, 184, 164, 0.18),
    0 28px 52px rgba(36, 77, 68, 0.15);
}

.series-hero__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  display: inline-grid;
  min-height: 30px;
  place-items: center;
  padding: 0 10px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #166a61;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.series-showcase .series-hero__rail {
  gap: 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.series-showcase .series-hero__shot {
  flex: 1 1 0;
  max-width: 158px;
  border-width: 7px;
  background: #fff;
}

.series-showcase .series-hero__shot:nth-child(2) {
  transform: translateY(-16px);
}

.series-showcase .series-hero__mascot {
  right: 10px;
  bottom: 2px;
  z-index: 3;
  width: 126px;
  opacity: 0.92;
  filter:
    drop-shadow(0 4px 0 #fff)
    drop-shadow(0 16px 20px rgba(36, 77, 68, 0.16));
}

.series-showcase .section--soft {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.46) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.46) 1px, transparent 1px),
    linear-gradient(180deg, #fff8d6, #f7fff9 72%, #fffdf7);
  background-size: 26px 26px, 26px 26px, auto;
}

.series-showcase .section-head {
  width: min(760px, 100%);
}

.series-showcase .section-head h2 {
  word-break: keep-all;
  overflow-wrap: normal;
}

.series-showcase .lineup-grid {
  gap: 16px;
}

.series-showcase .series-card {
  gap: 0;
  padding: 0;
  border: 3px solid #fff;
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 8px 0 color-mix(in srgb, var(--accent) 24%, white),
    0 20px 34px rgba(36, 77, 68, 0.1);
}

.series-showcase .series-card:hover {
  border-color: #fff;
  box-shadow:
    0 10px 0 color-mix(in srgb, var(--accent) 32%, white),
    0 26px 42px color-mix(in srgb, var(--accent) 16%, transparent);
}

.series-showcase .series-card__media {
  min-height: 188px;
  border-radius: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 20%, white);
  background:
    repeating-linear-gradient(-8deg, rgba(255, 255, 255, 0.36) 0 12px, transparent 12px 24px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), color-mix(in srgb, var(--accent-soft) 82%, white));
}

.series-showcase .series-card__media img {
  width: min(54%, 156px);
  max-height: 156px;
  filter: drop-shadow(0 14px 20px rgba(36, 77, 68, 0.14));
}

.series-showcase .series-card__media--icon img {
  width: min(58%, 164px);
  border-radius: 22px;
  box-shadow:
    0 8px 0 color-mix(in srgb, var(--accent) 22%, white),
    0 20px 30px color-mix(in srgb, var(--accent) 18%, transparent);
  object-fit: cover;
  filter: none;
}

.series-showcase .series-card__body {
  gap: 10px;
  padding: 18px;
}

.series-showcase .status-pill {
  border: 2px solid #fff;
  background: color-mix(in srgb, var(--accent) 18%, white);
  box-shadow: 0 3px 0 color-mix(in srgb, var(--accent) 18%, white);
}

.series-showcase .series-card h3 {
  color: var(--series-ink);
  font-size: 1.34rem;
  line-height: 1.34;
}

.series-showcase .series-card p {
  line-height: 1.72;
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  padding: 6px 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, white);
  color: var(--accent-strong);
  font-size: 0.73rem;
  font-weight: 900;
  line-height: 1;
}

.series-showcase .card-link {
  margin-top: 3px;
  color: var(--accent-strong);
  font-size: 0.95rem;
}

.series-showcase #flow {
  background: #fffdf7;
}

.series-showcase .split {
  align-items: start;
}

.series-showcase .step {
  border: 3px solid #fff;
  background: rgba(255, 255, 255, 0.84);
  box-shadow:
    0 7px 0 rgba(68, 184, 164, 0.16),
    0 16px 28px rgba(36, 77, 68, 0.08);
}

.series-showcase .step::before {
  border: 2px solid #fff;
  background: linear-gradient(180deg, #fff, #e8f8f3);
}

.series-showcase .section--ink {
  background:
    linear-gradient(135deg, rgba(68, 184, 164, 0.14), transparent 48%),
    linear-gradient(180deg, #17342f, #102821);
}

.series-showcase .route-list {
  gap: 16px;
}

.series-showcase .route-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 4px 14px;
  align-items: start;
  padding: 18px;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.series-showcase .route-item:hover {
  background: rgba(255, 255, 255, 0.12);
}

.series-showcase .route-item img {
  grid-row: 1 / 4;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  background: #fff;
  object-fit: cover;
}

.series-showcase .route-item span,
.series-showcase .route-item h3,
.series-showcase .route-item p {
  min-width: 0;
}

.series-showcase .route-item h3 {
  margin: 4px 0 4px;
}

@media (max-width: 920px) {
  .series-showcase .hero {
    min-height: auto;
  }

  .series-showcase .hero__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 100px;
    padding-bottom: 56px;
  }

  .series-showcase h1 {
    font-size: 3.36rem;
  }

  .series-showcase .hero__media {
    width: min(100%, 610px);
    min-height: 430px;
    margin: 0 auto;
  }

  .series-showcase .series-hero {
    min-height: 430px;
  }

  .series-picker {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .series-showcase .hero {
    background-size: auto, 22px 22px, 22px 22px, auto;
  }

  .series-showcase .hero::before {
    height: 14px;
  }

  .series-showcase .hero__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 82px;
    padding-bottom: 44px;
  }

  .series-showcase h1 {
    margin-bottom: 12px;
    font-size: 2.54rem;
    line-height: 1.1;
  }

  .series-showcase .lead {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .series-picker {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 16px 0 18px;
  }

  .series-picker__item {
    min-height: 68px;
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 10px 12px;
  }

  .series-picker__item img {
    width: 48px;
    height: 48px;
  }

  .series-picker__item strong {
    font-size: 1rem;
  }

  .series-showcase .button {
    min-height: 48px;
  }

  .series-showcase .hero__media {
    width: min(100%, 420px);
    min-height: 0;
    margin: 2px auto 0;
  }

  .series-showcase .series-hero {
    min-height: 0;
    padding: 48px 10px 30px;
    border-width: 4px;
  }

  .series-showcase .series-hero__badge {
    top: 10px;
    left: 10px;
    min-height: 26px;
    font-size: 0.62rem;
  }

  .series-showcase .series-hero__rail {
    gap: 6px;
  }

  .series-showcase .series-hero__shot {
    max-width: none;
    border-width: 4px;
  }

  .series-showcase .series-hero__shot:nth-child(2) {
    transform: translateY(-8px);
  }

  .series-showcase .series-hero__mascot {
    right: 0;
    bottom: -8px;
    width: 78px;
  }

  .series-showcase .lineup-grid {
    gap: 14px;
  }

  .series-showcase .series-card {
    grid-template-columns: 92px minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: stretch;
  }

  .series-showcase .series-card__media {
    min-height: auto;
    height: 100%;
    border-right: 1px solid color-mix(in srgb, var(--accent) 20%, white);
    border-bottom: 0;
  }

  .series-showcase .series-card__media img {
    width: 64px;
    max-height: 84px;
  }

  .series-showcase .series-card__media--icon img {
    width: 66px;
    border-radius: 14px;
    box-shadow:
      0 5px 0 color-mix(in srgb, var(--accent) 20%, white),
      0 12px 18px color-mix(in srgb, var(--accent) 18%, transparent);
  }

  .series-showcase .series-card__body {
    gap: 8px;
    padding: 14px 12px;
  }

  .series-showcase .status-pill {
    font-size: 0.66rem;
  }

  .series-showcase .series-card h3 {
    font-size: 1.08rem;
  }

  .series-showcase .series-card p {
    font-size: 0.88rem;
    line-height: 1.62;
  }

  .mini-list {
    gap: 5px;
  }

  .mini-list li {
    padding: 5px 7px;
    font-size: 0.66rem;
  }

  .series-showcase .split {
    gap: 22px;
  }

  .series-showcase .step {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 13px;
  }

  .series-showcase .step::before {
    width: 38px;
    height: 38px;
  }

  .series-showcase .route-item {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 14px;
  }

  .series-showcase .route-item img {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 420px) {
  .series-showcase h1 {
    font-size: 2.34rem;
  }

  .series-showcase .series-card {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .series-showcase .series-card__media img,
  .series-showcase .series-card__media--icon img {
    width: 58px;
  }

  .series-showcase .series-card__body {
    padding: 13px 10px;
  }
}
