:root {
  --cream: #fbefe1;
  --cream-light: #fffaf3;
  --paper: rgba(255, 251, 244, 0.88);
  --paper-solid: #fffaf3;
  --paper-warm: #f7dfc2;
  --ink: #2a211c;
  --muted: #6e5d52;
  --soft: #8a786d;
  --line: rgba(61, 43, 31, 0.12);
  --line-strong: rgba(61, 43, 31, 0.2);
  --tomato: #c94e2d;
  --tomato-deep: #8f2f1e;
  --saffron: #f5bf55;
  --basil: #567453;
  --olive: #8a7437;
  --broth: #b26920;
  --blue-pan: #343b59;
  --shadow-xl: 0 34px 90px rgba(69, 45, 28, 0.2);
  --shadow-lg: 0 22px 48px rgba(69, 45, 28, 0.16);
  --shadow-md: 0 12px 28px rgba(69, 45, 28, 0.12);
  --radius-xxl: 42px;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --frame-width: 1180px;
  --font-display: "Avenir Next Rounded", "Trebuchet MS", "Gill Sans", sans-serif;
  --font-body: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 8% 4%, rgba(245, 191, 85, 0.34), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(201, 78, 45, 0.2), transparent 25%),
    radial-gradient(circle at 14% 88%, rgba(86, 116, 83, 0.18), transparent 28%),
    linear-gradient(145deg, #fff8ef 0%, #f7e5cd 52%, #ece2d4 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.38;
  background-image:
    linear-gradient(30deg, rgba(102, 70, 42, 0.06) 12%, transparent 12.5%, transparent 87%, rgba(102, 70, 42, 0.06) 87.5%),
    linear-gradient(150deg, rgba(102, 70, 42, 0.06) 12%, transparent 12.5%, transparent 87%, rgba(102, 70, 42, 0.06) 87.5%);
  background-size: 54px 94px;
}

a {
  color: inherit;
}

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

button,
input,
summary {
  font: inherit;
}

.frame {
  width: min(var(--frame-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.topbar,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar {
  margin-bottom: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent),
    url("media/app-icon.png") center / cover no-repeat;
  box-shadow: var(--shadow-md);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.topnav,
.footer-nav,
.actions,
.pill-row,
.language-row,
.jump-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.topnav a,
.footer-nav a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.topnav a:hover,
.footer-nav a:hover,
.brand:hover,
.text-link:hover,
.inline-link:hover {
  opacity: 0.78;
}

.eyebrow,
.meta-line {
  margin: 0;
  color: var(--olive);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero,
.panel,
.pack-card,
.screen-card,
.faq-card,
.bundle-card {
  backdrop-filter: blur(14px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-xxl);
  background:
    radial-gradient(circle at 82% 4%, rgba(245, 191, 85, 0.26), transparent 30%),
    linear-gradient(135deg, rgba(255, 252, 246, 0.94), rgba(250, 231, 206, 0.86));
  box-shadow: var(--shadow-xl);
}

.hero::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -130px;
  bottom: -170px;
  border-radius: 50%;
  background: rgba(201, 78, 45, 0.1);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 30px;
}

.hero-grid > *,
.split-grid > *,
.step-grid > *,
.pack-grid > *,
.screen-grid > *,
.faq-grid > *,
.card-grid > *,
.offer-grid > * {
  min-width: 0;
}

.hero-home-grid,
.hero-support-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.title {
  margin: 0;
  max-width: 11ch;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 5.35rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
  overflow-wrap: break-word;
}

.subtitle,
.section-note,
.panel p,
.pack-card p,
.screen-card p,
.faq-card p,
.value,
.figure-note {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.68;
}

.hero-copy .subtitle {
  max-width: 42rem;
}

.button,
.jump-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.button:hover,
.jump-link:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fffaf3;
  background: linear-gradient(135deg, var(--tomato), var(--tomato-deep));
  box-shadow: 0 14px 28px rgba(143, 47, 30, 0.28);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.75);
  border-color: var(--line);
}

.button-small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.95rem;
}

.pill,
.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.93rem;
  line-height: 1;
}

.pill strong,
.eyebrow-chip {
  color: var(--ink);
  font-weight: 850;
}

.section {
  margin-top: 30px;
}

.section-header {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.section-title {
  margin: 0;
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.95rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.split-grid,
.step-grid,
.pack-grid,
.screen-grid,
.faq-grid,
.card-grid,
.offer-grid {
  display: grid;
  gap: 18px;
}

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

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

.pack-grid,
.screen-grid,
.offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.panel,
.pack-card,
.screen-card,
.faq-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.panel {
  padding: 24px;
  border-radius: var(--radius-xl);
}

.panel h2,
.panel h3,
.pack-card h3,
.screen-card h3,
.faq-card summary,
.bundle-card h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.panel h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
}

.panel h3,
.pack-card h3,
.screen-card h3 {
  font-size: 1.36rem;
}

.panel-soft {
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.95), rgba(247, 223, 194, 0.74));
}

.panel-accent,
.panel-cta {
  color: #fffaf3;
  background:
    radial-gradient(circle at 88% 12%, rgba(245, 191, 85, 0.18), transparent 30%),
    linear-gradient(140deg, #2d3329, #5c3826);
}

.panel-accent .eyebrow,
.panel-accent p,
.panel-cta .eyebrow,
.panel-cta p {
  color: rgba(255, 250, 243, 0.82);
}

.panel-accent .button-secondary,
.panel-cta .button-secondary {
  color: #fffaf3;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.feature-list,
.panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.65;
}

.step-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 230px;
  padding-top: 76px;
}

.step-index {
  position: absolute;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fffaf3;
  background: linear-gradient(135deg, var(--tomato), var(--tomato-deep));
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(143, 47, 30, 0.24);
}

.hero-app-stack {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 10px 0 54px;
}

.phone-shell {
  width: min(100%, 360px);
  padding: 14px;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(234, 207, 181, 0.76)),
    #f8e6d2;
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-xl);
  transform: rotate(2deg);
}

.phone-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 390 / 844;
  border-radius: 30px;
  background: #d9a56a;
}

.screen-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen-topbar {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  z-index: 2;
}

.screen-topbar span,
.screen-controls button,
.price-card,
.mini-card span,
.pack-facts span {
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.78);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
}

.screen-topbar span {
  padding: 8px 10px;
}

.pot-preview {
  position: absolute;
  left: 7%;
  right: 7%;
  top: 20%;
  height: 38%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 43%, rgba(231, 151, 30, 0.93) 0 56%, rgba(159, 90, 16, 0.95) 72%),
    #b26920;
  border: 9px solid rgba(255, 246, 238, 0.92);
  box-shadow:
    inset 0 0 0 2px rgba(103, 55, 18, 0.14),
    0 18px 42px rgba(69, 45, 28, 0.28);
}

.board-grid {
  position: absolute;
  inset: 18% 9% 20%;
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 2px;
  opacity: 0.52;
}

.board-grid span {
  border: 1px solid rgba(255, 241, 220, 0.34);
  border-radius: 6px;
  background: rgba(111, 63, 24, 0.12);
}

.board-piece {
  position: absolute;
  z-index: 2;
  object-fit: contain;
  filter: drop-shadow(0 8px 9px rgba(48, 33, 24, 0.18));
}

.board-piece-one {
  width: 36%;
  left: 8%;
  top: 30%;
}

.board-piece-two {
  width: 25%;
  right: 14%;
  top: 20%;
  transform: rotate(90deg);
}

.board-piece-three {
  width: 42%;
  right: 14%;
  bottom: 19%;
}

.screen-controls {
  position: absolute;
  left: 23%;
  right: 23%;
  top: 63%;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.screen-controls button {
  min-height: 34px;
  border: 0;
}

.bowl-row {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 7%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.bowl-row span {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 0.72;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 62%, rgba(255, 255, 255, 0.94), rgba(238, 215, 188, 0.84) 58%, rgba(196, 145, 92, 0.32) 59%, rgba(172, 103, 39, 0.3) 100%);
  box-shadow: inset 0 -6px 14px rgba(91, 55, 28, 0.1);
}

.bowl-row img {
  width: 85%;
  height: 78%;
  object-fit: contain;
}

.bundle-ticket {
  position: absolute;
  right: 10px;
  bottom: 0;
  display: grid;
  gap: 6px;
  max-width: 260px;
  padding: 18px;
  border-radius: 24px;
  color: #fffaf3;
  background: linear-gradient(140deg, #2d3329, #88412c);
  box-shadow: var(--shadow-lg);
}

.bundle-ticket strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: -0.035em;
}

.bundle-ticket span:last-child {
  color: rgba(255, 250, 243, 0.78);
}

.pack-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.pack-media {
  aspect-ratio: 1.35 / 1;
  background: var(--paper-warm);
}

.pack-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pack-body {
  display: grid;
  gap: 13px;
  padding: 20px;
}

.starter-card .pack-media img {
  object-position: 45% 48%;
}

.ramen-card .pack-media img {
  object-position: 50% 45%;
}

.piece-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 70px;
}

.piece-strip img {
  width: 74px;
  height: 62px;
  padding: 5px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 0 0 1px rgba(90, 57, 34, 0.08);
}

.pack-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pack-facts span {
  padding: 8px 10px;
  background: rgba(250, 235, 214, 0.82);
}

.bundle-card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 24px;
  overflow: hidden;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-xxl);
  background:
    radial-gradient(circle at 88% 18%, rgba(245, 191, 85, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(47, 51, 41, 0.96), rgba(105, 58, 40, 0.95));
  color: #fffaf3;
  box-shadow: var(--shadow-xl);
}

.bundle-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.bundle-copy .eyebrow,
.bundle-copy p {
  color: rgba(255, 250, 243, 0.78);
}

.bundle-copy h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
}

.bundle-copy .pill {
  color: rgba(255, 250, 243, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.bundle-copy .pill strong {
  color: #fffaf3;
}

.bundle-art {
  position: relative;
  min-height: 330px;
}

.bundle-art img {
  position: absolute;
  width: 57%;
  height: 82%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 22px 46px rgba(14, 9, 7, 0.34);
}

.bundle-art-left {
  left: 2%;
  top: 7%;
  transform: rotate(-4deg);
}

.bundle-art-right {
  right: 1%;
  top: 14%;
  transform: rotate(5deg);
}

.screen-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-xl);
}

.mini-device {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border-radius: 30px;
  background: #f1dbc2;
  box-shadow: inset 0 0 0 1px rgba(75, 50, 30, 0.1);
}

.chooser-preview {
  display: grid;
  gap: 14px;
  padding: 18px;
  background:
    radial-gradient(circle at 28% 12%, rgba(245, 191, 85, 0.32), transparent 28%),
    linear-gradient(180deg, #fff4e2, #ebd0af);
}

.mini-card {
  overflow: hidden;
  display: grid;
  gap: 8px;
  padding-bottom: 12px;
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.9);
  box-shadow: var(--shadow-md);
}

.mini-card img {
  width: 100%;
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
}

.mini-card strong,
.mini-card span {
  margin: 0 12px;
}

.mini-card strong {
  font-family: var(--font-display);
}

.mini-card span {
  width: fit-content;
  padding: 7px 10px;
}

.gameplay-preview > img,
.purchase-preview > img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.mini-pot {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 27%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  min-height: 150px;
  padding: 22px;
  border-radius: 50%;
  border: 8px solid rgba(255, 247, 239, 0.92);
  background: radial-gradient(circle, rgba(217, 139, 24, 0.92), rgba(115, 63, 20, 0.86));
  box-shadow: var(--shadow-md);
}

.mini-pot img {
  width: 100%;
  height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 5px 6px rgba(48, 33, 24, 0.16));
}

.price-card {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 4px;
  padding: 15px;
  border-radius: 20px;
  background: rgba(255, 250, 243, 0.9);
  box-shadow: var(--shadow-md);
}

.price-card strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.support-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-xxl);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.support-card img {
  width: 128px;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.support-card strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.support-card span {
  color: var(--muted);
}

.faq-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.faq-card summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 20px;
  font-size: 1.12rem;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--tomato-deep);
  background: rgba(201, 78, 45, 0.12);
  font-weight: 900;
}

.faq-card[open] summary::after {
  content: "-";
}

.faq-card p {
  padding: 0 20px 20px;
}

.support-list,
.meta-list {
  display: grid;
  gap: 12px;
}

.list-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.72fr) minmax(0, 1.28fr);
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.list-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.label {
  color: var(--olive);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inline-link,
.text-link {
  color: var(--tomato-deep);
  font-weight: 800;
  text-underline-offset: 0.16em;
}

.notice-card {
  margin-top: 18px;
}

.art-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-xl);
  background: var(--paper-solid);
  box-shadow: var(--shadow-lg);
}

.art-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-page {
  color: #202124;
  background: #f7f8f5;
}

.home-page::before,
.home-page .hero::after {
  display: none;
}

.home-page .frame {
  width: min(1040px, calc(100% - 32px));
  padding-bottom: 48px;
}

.home-page .topbar {
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dcded8;
}

.home-page .brand-copy strong,
.home-page .title,
.home-page .section-title,
.home-page .fact-card h3,
.home-page .panel h2 {
  letter-spacing: 0;
}

.home-page .eyebrow,
.home-page .meta-line {
  color: #5f6f4c;
}

.home-page .topnav a,
.home-page .footer-nav a {
  color: #4f5650;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid #dcded8;
  border-radius: 8px;
  background: #ffffff;
}

.home-page .title {
  max-width: 10ch;
  font-size: clamp(3rem, 8vw, 5.9rem);
  line-height: 0.96;
}

.home-page .subtitle,
.home-page .section-note,
.home-page .fact-card p,
.home-page .level-row,
.home-page .panel p {
  color: #505652;
}

.game-screenshots {
  display: grid;
  grid-template-columns: minmax(0, min(100%, 440px));
  gap: 16px;
  align-items: start;
  justify-content: center;
}

.game-screenshot {
  margin: 0;
}

.game-screenshot img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
  border: 1px solid #d9dcd4;
  border-radius: 8px;
  background: #e9ece6;
}

.game-screenshot figcaption {
  margin-top: 8px;
  color: #636965;
  font-size: 0.9rem;
}

.facts-section,
.levels-section {
  display: grid;
  gap: 18px;
}

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

.fact-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid #dcded8;
  border-radius: 8px;
  background: #ffffff;
}

.fact-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
}

.fact-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.58;
}

.level-list {
  overflow: hidden;
  border: 1px solid #dcded8;
  border-radius: 8px;
  background: #ffffff;
}

.level-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.55fr) minmax(0, 1fr);
  gap: 18px;
  padding: 16px 18px;
  border-top: 1px solid #e5e7e1;
  line-height: 1.45;
}

.level-row:first-child {
  border-top: 0;
}

.level-row span:first-child {
  color: #202124;
  font-weight: 850;
}

.home-page .panel,
.home-page .pack-card,
.home-page .screen-card,
.home-page .faq-card {
  border-color: #dcded8;
  background: #ffffff;
  box-shadow: none;
}

.home-page .panel {
  border-radius: 8px;
}

.home-page .button-secondary {
  color: #202124;
  background: #ffffff;
  border-color: #cfd4cc;
}

.footer {
  margin-top: 30px;
  padding: 20px 4px 0;
  border-top: 1px solid var(--line);
}

.footer-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-version {
  color: var(--soft);
}

@media (max-width: 1100px) {
  .hero-home-grid,
  .hero-support-grid,
  .split-grid,
  .bundle-card {
    grid-template-columns: 1fr;
  }

  .step-grid,
  .pack-grid,
  .screen-grid,
  .offer-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .title,
  .section-title {
    max-width: 100%;
  }

  .home-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .frame {
    width: min(var(--frame-width), calc(100% - 20px));
    padding-top: 18px;
    padding-bottom: 40px;
  }

  .topbar,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding: 22px;
    border-radius: 30px;
  }

  .title {
    font-size: clamp(2.35rem, 13vw, 3.5rem);
  }

  .hero-copy .subtitle {
    max-width: 29ch;
  }

  .step-grid,
  .pack-grid,
  .screen-grid,
  .offer-grid,
  .faq-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .phone-shell {
    width: min(100%, 320px);
    transform: none;
  }

  .bundle-ticket {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: 100%;
    margin-top: -24px;
  }

  .bundle-art {
    min-height: 250px;
  }

  .bundle-art img {
    height: 78%;
  }

  .mini-device {
    min-height: 280px;
  }

  .gameplay-preview > img,
  .purchase-preview > img {
    min-height: 280px;
  }

  .button,
  .jump-link {
    width: 100%;
  }

  .actions,
  .language-row,
  .jump-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .list-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .home-page .frame {
    width: min(1040px, calc(100% - 20px));
  }

  .home-hero {
    padding: 20px;
  }

  .fact-grid,
  .level-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .brand-mark {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .topnav {
    gap: 10px;
  }

  .piece-strip {
    min-height: 58px;
  }

  .piece-strip img {
    width: 62px;
    height: 54px;
  }

  .bundle-card,
  .panel,
  .pack-body,
  .screen-card {
    padding: 18px;
  }
}
