:root {
  color-scheme: light;
  --night: #030817;
  --night-2: #07152f;
  --night-3: #0c2146;
  --paper: #f3ecda;
  --paper-2: #fffaf0;
  --cream: #fff3ca;
  --gold: #edbd58;
  --gold-light: #ffe6a0;
  --cyan: #8eeaf2;
  --red: #d84b32;
  --ink: #111a2b;
  --muted: #687180;
  --line: rgba(17, 26, 43, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", sans-serif;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

img { max-width: 100%; }

.studio-page {
  min-height: 100vh;
  overflow-x: hidden;
  color: #17191d;
  background: #f4f5f7;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", sans-serif;
}

.studio-header {
  position: sticky;
  z-index: 30;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 17px clamp(22px, 5vw, 72px);
  border-bottom: 1px solid #dfe2e7;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.studio-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #17191d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.studio-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: #17191d;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.studio-header nav { display: flex; gap: clamp(20px, 3vw, 38px); }
.studio-header nav a { color: #626873; font-size: 12px; font-weight: 750; text-decoration: none; }
.studio-header nav a:hover,
.studio-header nav a:focus-visible { color: #111; }

.studio-games { min-height: calc(100vh - 75px); padding: 58px clamp(22px, 6vw, 88px) 100px; color: #17191d; background: #f4f5f7; }
.studio-section-heading {
  display: flex;
  max-width: 1280px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto 34px;
}
.studio-section-heading .section-index { margin-bottom: 5px; color: #4461d9; font-size: 10px; letter-spacing: 0.14em; }
.studio-section-heading h1 { margin: 0; font-size: clamp(30px, 3.2vw, 44px); font-weight: 800; line-height: 1.2; letter-spacing: -0.035em; }
.studio-section-heading > p { margin: 0 0 4px; color: #747b87; font-size: 13px; }

.studio-game-grid {
  display: grid;
  max-width: 920px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 380px));
  justify-content: center;
  align-items: start;
  gap: 28px;
  margin: 0 auto;
}
.studio-game-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  color: #17191d;
  border: 1px solid #dfe2e7;
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}
.studio-game-card:hover,
.studio-game-card:focus-visible { border-color: #929aa8; transform: translateY(-2px); }
.studio-game-visual { position: relative; display: grid; width: 100%; aspect-ratio: 941 / 1672; place-items: center; overflow: hidden; border-bottom: 1px solid #dfe2e7; background: #0b1222; }
.studio-game-visual img { display: block; width: 100%; height: 100%; object-fit: contain; }
.studio-game-status { display: inline-flex; width: max-content; padding: 6px 11px; border-radius: 999px; color: #3d4552; background: #eef0f3; font-size: 10px; font-weight: 800; }
.studio-game-body { position: relative; flex: 1; padding: 24px 24px 28px; }
.studio-game-meta { margin: 0; color: #59616e; font-size: 9px; font-weight: 800; letter-spacing: 0.13em; }
.studio-game-status + .studio-game-meta { margin-top: 17px; }
.studio-game-body h3 { margin: 9px 0 0; font-size: clamp(29px, 3vw, 36px); font-weight: 800; line-height: 1.2; letter-spacing: -0.035em; }
.studio-game-title-en { margin-left: 12px; color: #9197a1; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 9px; letter-spacing: 0.1em; vertical-align: middle; }
.studio-game-copy { margin: 16px 0 0; color: #272b31; font-size: 17px; font-weight: 750; }
.studio-game-description { max-width: 560px; margin: 9px 0 0; color: #666e7a; font-size: 13px; }
.studio-game-facts { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 0; padding: 0; list-style: none; }
.studio-game-facts li { padding: 6px 10px; border-radius: 6px; color: #555d69; background: #f0f2f5; font-size: 9px; font-weight: 750; }
.studio-game-action { display: inline-flex; align-items: center; gap: 9px; margin-top: 26px; color: #3853c9; font-size: 12px; font-weight: 850; }
.studio-game-action::after { content: "→"; font-size: 17px; transition: transform 160ms ease; }
.studio-game-card:hover .studio-game-action::after { transform: translateX(4px); }
.catalog-status { max-width: 1280px; margin: 24px auto 0; color: #666e7a; font-size: 12px; }
.studio-footer { color: #777e89; border-top: 1px solid #dfe2e7; background: #fff; }

.game-brand-stack { display: grid; gap: 5px; }
.parent-brand { width: max-content; color: rgba(255, 224, 139, 0.67); font-size: 8px; font-weight: 850; letter-spacing: 0.17em; text-decoration: none; }
.game-site-header .brand { gap: 9px; font-size: 16px; }
.game-site-header .brand img { width: 34px; height: 34px; border-radius: 9px; }
.game-site-header .site-nav { align-self: center; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(22px, 5vw, 72px);
  color: rgba(255, 248, 224, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 224, 139, 0.36);
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(229, 183, 71, 0.18);
}

.site-nav { display: flex; gap: clamp(16px, 3vw, 38px); }

.site-nav a {
  color: rgba(255, 248, 224, 0.68);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible { color: #fff; }

.lp-hero {
  position: relative;
  display: grid;
  min-height: 860px;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(30px, 5vw, 90px);
  overflow: hidden;
  padding: 130px clamp(24px, 7vw, 110px) 80px;
  color: var(--cream);
  background:
    radial-gradient(circle at 73% 31%, rgba(67, 198, 226, 0.18), transparent 24%),
    radial-gradient(circle at 15% 82%, rgba(216, 75, 50, 0.13), transparent 25%),
    linear-gradient(143deg, #020611, var(--night) 48%, #0a1b38);
}

.stars,
.stars::before,
.stars::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    radial-gradient(circle at 8% 12%, #fff 0 1px, transparent 1.6px),
    radial-gradient(circle at 27% 32%, #f3cf72 0 1px, transparent 1.7px),
    radial-gradient(circle at 43% 15%, #fff 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 60% 62%, #fff 0 1px, transparent 1.7px),
    radial-gradient(circle at 81% 19%, #f3cf72 0 1px, transparent 1.8px),
    radial-gradient(circle at 91% 70%, #fff 0 1px, transparent 1.7px),
    radial-gradient(circle at 16% 72%, #9bdde9 0 1px, transparent 1.7px);
  opacity: 0.62;
}

.stars::before { transform: translate(5%, 16%) scale(0.72); opacity: 0.42; }
.stars::after { transform: translate(-7%, 38%) scale(1.12); opacity: 0.28; }

.hero-copy { position: relative; z-index: 3; max-width: 690px; }

.eyebrow,
.section-index {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.eyebrow.dark { position: static; color: #9b6f19; }

.release-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 223, 139, 0.24);
  border-radius: 999px;
  color: rgba(255, 246, 216, 0.72);
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.release-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(237, 189, 88, 0.8);
}

.lp-hero h1 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(54px, 6.5vw, 94px);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.07em;
  text-wrap: balance;
  text-shadow: 0 0 36px rgba(237, 189, 88, 0.14);
}

.hero-lead {
  margin: 30px 0 0;
  color: rgba(255, 246, 216, 0.67);
  font-size: clamp(14px, 1.45vw, 18px);
}

.hero-actions { display: flex; align-items: center; gap: 25px; margin-top: 40px; }

.primary-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  color: #181406;
  border-radius: 4px;
  background: linear-gradient(105deg, #ffe080, #eea83e);
  box-shadow: 0 14px 40px rgba(235, 175, 60, 0.2);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-button:hover,
.primary-button:focus-visible { transform: translateY(-2px); box-shadow: 0 18px 48px rgba(235, 175, 60, 0.3); }

.text-button { color: rgba(255, 246, 216, 0.65); font-size: 12px; text-underline-offset: 5px; }

.hero-numbers {
  display: flex;
  gap: clamp(24px, 4vw, 52px);
  margin: 54px 0 0;
}

.hero-numbers div { display: grid; grid-template-columns: auto auto; align-items: baseline; gap: 8px; }
.hero-numbers dt { color: var(--gold-light); font-family: Georgia, "Yu Mincho", serif; font-size: 28px; line-height: 1; white-space: nowrap; }
.hero-numbers dd { max-width: 92px; margin: 0; color: rgba(255, 246, 216, 0.52); font-size: 10px; font-weight: 700; line-height: 1.45; }

.hero-visual {
  position: relative;
  z-index: 2;
  justify-self: center;
  width: min(100%, 470px);
  perspective: 1200px;
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: min(76vw, 365px);
  margin: 0 auto;
  overflow: hidden;
  border: 8px solid #111522;
  border-radius: 54px;
  background: #020611;
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.5), 0 0 100px rgba(63, 189, 223, 0.08);
  transform: rotateY(-5deg) rotateZ(2deg);
}

.phone-frame::before {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 50%;
  width: 31%;
  height: 22px;
  content: "";
  border-radius: 999px;
  background: #05060a;
  transform: translateX(-50%);
}

.phone-frame img { display: block; width: 100%; aspect-ratio: 862 / 1825; object-fit: cover; }

.visual-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(117, 224, 240, 0.25);
  border-radius: 50%;
}

.orbit-one { inset: 12% -16% 19% -18%; transform: rotate(20deg); }
.orbit-two { inset: 25% -34% 31% -32%; border-style: dashed; transform: rotate(-16deg); }

.floating-note {
  position: absolute;
  z-index: 4;
  right: -4%;
  bottom: 15%;
  padding: 10px 13px;
  color: rgba(145, 236, 244, 0.72);
  border-left: 1px solid rgba(145, 236, 244, 0.5);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: 0.12em;
}

.manifesto {
  position: relative;
  display: flex;
  min-height: 620px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 125px 30px 135px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 250, 230, 0.72), transparent 37%),
    var(--paper);
}

.manifesto::before,
.manifesto::after {
  position: absolute;
  width: min(76vw, 960px);
  height: 230px;
  content: "";
  border: 1px solid rgba(45, 122, 149, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.manifesto::before { top: -175px; transform: rotate(-8deg); }
.manifesto::after { bottom: -185px; border-style: dashed; transform: rotate(8deg); }

.manifesto-kicker {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #a4731a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.manifesto-kicker strong { color: #8e5b0c; font-weight: 900; }

.manifesto-star {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(72vw, 530px);
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin: 24px 0 20px;
  color: #c48e2f;
  font-size: 18px;
}

.manifesto-star::before,
.manifesto-star::after { width: 100%; height: 1px; content: ""; background: linear-gradient(90deg, transparent, rgba(164, 115, 26, 0.6)); }
.manifesto-star::after { background: linear-gradient(90deg, rgba(164, 115, 26, 0.6), transparent); }

.manifesto h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: "Yu Mincho", serif;
  font-size: clamp(48px, 6.4vw, 86px);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.manifesto h2 em { color: #0b2850; font-style: normal; text-shadow: 0 10px 38px rgba(21, 67, 101, 0.1); }
.manifesto-body { position: relative; z-index: 2; max-width: 680px; margin: 34px auto 0; color: var(--muted); font-size: 14px; }

.how-to { padding: 110px clamp(24px, 7vw, 110px) 130px; background: var(--paper-2); }

.section-heading { display: flex; max-width: 1180px; align-items: end; justify-content: space-between; gap: 30px; margin: 0 auto 58px; }
.section-heading h2 { margin: 0; font-family: "Yu Mincho", serif; font-size: clamp(40px, 5vw, 68px); font-weight: 500; line-height: 1.25; letter-spacing: -0.055em; }
.section-heading .section-index { flex: 0 0 auto; margin-bottom: 14px; color: #a4731a; }

.step-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  background: rgba(17, 26, 43, 0.11);
  border: 1px solid rgba(17, 26, 43, 0.11);
}

.step-grid li { position: relative; min-height: 290px; padding: 38px clamp(28px, 3.5vw, 48px) 44px; background: #f8f3e8; }
.step-label { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.step-number { color: #9d6e18; font-family: Georgia, serif; font-size: 44px; line-height: 1; }
.step-action { padding: 6px 11px; color: #7c5612; border: 1px solid rgba(157, 110, 24, 0.28); border-radius: 999px; font-size: 10px; font-weight: 900; letter-spacing: 0.08em; }
.step-copy { margin-top: 54px; padding-top: 24px; border-top: 1px solid rgba(17, 26, 43, 0.13); }
.step-grid h3 { margin: 0 0 12px; font-family: "Yu Mincho", serif; font-size: 27px; font-weight: 600; line-height: 1.45; }
.step-grid p { margin: 0; color: var(--muted); font-size: 13px; }

.feature-section {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 0.85fr) minmax(400px, 1.15fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  overflow: hidden;
  padding: 110px clamp(24px, 7vw, 110px);
  color: var(--cream);
  background: linear-gradient(145deg, var(--night-2), #040a18 65%);
}

.feature-copy { position: relative; z-index: 3; max-width: 560px; }
.feature-copy h2 { margin: 0; font-family: "Yu Mincho", serif; font-size: clamp(44px, 5.2vw, 72px); font-weight: 500; line-height: 1.27; letter-spacing: -0.06em; }
.feature-copy > p:not(.section-index) { margin: 28px 0 0; color: rgba(255, 246, 216, 0.62); font-size: 14px; }

.celestial-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 38px 0 0; padding: 0; list-style: none; }
.celestial-list li { display: flex; align-items: center; gap: 11px; color: rgba(255, 246, 216, 0.72); font-size: 12px; }
.planet { display: inline-block; width: 24px; aspect-ratio: 1; border-radius: 50%; }
.planet-moon { background: radial-gradient(circle at 33% 25%, #fff4c4, #81785e); }
.planet-sun { background: #f08b36; box-shadow: 0 0 14px #e45124; }
.planet-blackhole { border: 3px solid #8a4b3e; background: #020204; box-shadow: 0 0 9px #dc6b42; }
.planet-antigravity { background: radial-gradient(circle at 35% 30%, #d5c8ff, #7c50b3); box-shadow: 0 0 12px #ac7be5; }

.gravity-stage { position: relative; min-height: 580px; }
.stage-star { position: absolute; z-index: 2; top: 50%; left: 55%; width: clamp(180px, 24vw, 330px); aspect-ratio: 1; border: 2px solid rgba(255, 212, 102, 0.62); border-radius: 50%; background: radial-gradient(circle at 36% 27%, #fff9cf, #d78437 43%, #9d321d 71%); box-shadow: 0 0 30px #e16d2c, 0 0 100px rgba(221, 71, 31, 0.52), 0 0 190px rgba(233, 131, 53, 0.18); transform: translate(-50%, -50%); }
.gravity-ring { position: absolute; z-index: 1; top: 50%; left: 55%; aspect-ratio: 1; border: 1px solid rgba(240, 133, 51, 0.24); border-radius: 50%; transform: translate(-50%, -50%); }
.ring-a { width: 55%; }
.ring-b { width: 80%; }
.ring-c { width: 108%; }
.route-line { position: absolute; z-index: 3; left: 3%; top: 43%; width: 70%; height: 36%; border-top: 5px dotted rgba(131, 237, 243, 0.82); border-radius: 50%; filter: drop-shadow(0 0 7px rgba(131, 237, 243, 0.6)); transform: rotate(-17deg); }
.stage-letter {
  position: absolute;
  z-index: 4;
  top: 26%;
  left: 10%;
  width: 62px;
  height: 42px;
  overflow: hidden;
  border: 2px solid #fff3cf;
  border-radius: 7px;
  background: linear-gradient(145deg, #fff8df, #d8c49d);
  box-shadow: 0 0 24px rgba(255, 221, 140, 0.4), 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: rotate(14deg);
}

.stage-letter::before,
.stage-letter::after {
  position: absolute;
  top: -2px;
  width: 44px;
  height: 30px;
  content: "";
  border-bottom: 1.5px solid #9b8464;
}

.stage-letter::before { left: -20px; transform: rotate(31deg); }
.stage-letter::after { right: -20px; transform: rotate(-31deg); }

.stage-letter span {
  position: absolute;
  z-index: 2;
  right: 5px;
  bottom: 5px;
  width: 12px;
  height: 12px;
  border: 1px solid #7e281e;
  border-radius: 3px;
  background: #cf4330;
  box-shadow: 0 0 5px rgba(207, 67, 48, 0.4);
}
.danger-label { position: absolute; z-index: 4; right: 2%; bottom: 8%; color: #e98c5f; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; letter-spacing: 0.17em; }

.contents-section { padding: 120px clamp(24px, 7vw, 110px) 135px; color: var(--cream); background: #020611; }
.light-heading { max-width: 1180px; }
.light-heading h2 { max-width: 750px; }
.content-grid { display: grid; max-width: 1180px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin: 0 auto; }
.content-card { position: relative; min-height: 330px; overflow: hidden; padding: clamp(30px, 5vw, 58px); border: 1px solid rgba(255, 238, 184, 0.13); background: linear-gradient(150deg, rgba(17, 38, 76, 0.86), rgba(6, 14, 31, 0.88)); }
.content-card::after { position: absolute; right: -12%; bottom: -38%; width: 48%; aspect-ratio: 1; content: ""; border-radius: 50%; background: rgba(255, 255, 255, 0.04); box-shadow: 0 0 90px rgba(85, 194, 218, 0.1); }
.content-kicker { margin: 0; color: #8bc9d6 !important; font-size: 9px !important; font-weight: 800; letter-spacing: 0.2em; }
.content-card strong { display: block; margin-top: 13px; color: var(--gold-light); font-family: Georgia, serif; font-size: 84px; font-weight: 400; line-height: 1; }
.content-card h3 { margin: 18px 0 9px; font-family: "Yu Mincho", serif; font-size: 30px; font-weight: 500; }
.content-card > p:last-child { max-width: 390px; margin: 0; color: rgba(255, 246, 216, 0.53); font-size: 13px; }
.shuffle-mark, .replay-mark { display: grid; width: 92px; height: 92px; margin-top: 20px; place-items: center; color: var(--gold-light); border: 1px solid rgba(255, 224, 128, 0.2); border-radius: 50%; background: rgba(255, 221, 124, 0.05); font-size: 42px; }
.replay-mark { font-size: 30px; }
.random-card { background: radial-gradient(circle at 83% 19%, rgba(130, 84, 177, 0.27), transparent 33%), linear-gradient(150deg, rgba(25, 26, 66, 0.95), rgba(7, 12, 29, 0.93)); }
.achievement-card { background: radial-gradient(circle at 82% 18%, rgba(237, 189, 88, 0.19), transparent 34%), linear-gradient(150deg, rgba(23, 37, 67, 0.95), rgba(7, 13, 28, 0.93)); }

.experience-section { display: grid; grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr); gap: clamp(45px, 8vw, 120px); align-items: center; padding: 125px clamp(24px, 9vw, 145px); background: var(--paper-2); }
.experience-visual { position: relative; max-width: 620px; justify-self: end; }
.experience-visual::before { position: absolute; inset: 10%; content: ""; border-radius: 45%; background: rgba(51, 197, 222, 0.18); filter: blur(70px); }
.experience-visual img { position: relative; display: block; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 28px; box-shadow: 0 35px 80px rgba(4, 13, 31, 0.22); }
.experience-copy { max-width: 600px; }
.experience-copy h2 { margin: 0; font-family: "Yu Mincho", serif; font-size: clamp(43px, 5vw, 70px); font-weight: 500; line-height: 1.3; letter-spacing: -0.06em; }
.experience-copy > p:not(.section-index) { margin: 28px 0 0; color: var(--muted); font-size: 14px; }
.experience-copy .section-index { color: #a4731a; }
.sound-bars { display: flex; height: 50px; align-items: center; gap: 7px; margin-top: 34px; }
.sound-bars span { width: 3px; height: 18%; border-radius: 9px; background: #36a5b9; box-shadow: 0 0 8px rgba(54, 165, 185, 0.28); }
.sound-bars span:nth-child(2), .sound-bars span:nth-child(8) { height: 40%; }
.sound-bars span:nth-child(3), .sound-bars span:nth-child(7) { height: 72%; }
.sound-bars span:nth-child(4), .sound-bars span:nth-child(6) { height: 100%; }
.sound-bars span:nth-child(5) { height: 55%; }

.closing-section { position: relative; overflow: hidden; padding: 120px 24px 110px; color: var(--cream); text-align: center; background: radial-gradient(circle at 50% 45%, #102b59, var(--night) 48%, #02050d); }
.closing-icon { position: relative; z-index: 2; width: 118px; border: 1px solid rgba(255, 232, 158, 0.33); border-radius: 25%; box-shadow: 0 0 50px rgba(237, 189, 88, 0.16); }
.closing-section .eyebrow { position: relative; z-index: 2; margin-top: 30px; }
.closing-section h2 { position: relative; z-index: 2; margin: 0; font-family: "Yu Mincho", serif; font-size: clamp(60px, 8vw, 96px); font-weight: 500; letter-spacing: -0.06em; }
.closing-section > p:not(.eyebrow) { position: relative; z-index: 2; margin: 4px 0 0; color: rgba(255, 246, 216, 0.68); }
.coming-soon { position: relative; z-index: 2; display: inline-block; margin-top: 34px; padding: 12px 24px; color: #181406; border-radius: 999px; background: linear-gradient(105deg, #ffe080, #eea83e); font-size: 12px; font-weight: 850; }
.support-links { position: relative; z-index: 2; display: flex; justify-content: center; gap: 25px; margin-top: 42px; }
.support-links a { color: rgba(255, 246, 216, 0.54); font-size: 11px; text-underline-offset: 5px; }

.document-shell { min-height: calc(100vh - 84px); padding: clamp(28px, 6vw, 72px) 20px 90px; }
.document-shell nav { max-width: 780px; margin: 0 auto 28px; font-size: 12px; font-weight: 700; }
.document-shell nav a { text-decoration: none; }
.document-nav { display: flex; align-items: center; gap: 9px; }
.document-nav span { color: rgba(17, 26, 43, 0.32); }

.document {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(32px, 7vw, 76px);
  border: 1px solid var(--line);
  background: #fffdf7;
  box-shadow: 0 24px 70px rgba(6, 17, 39, 0.09);
}

.document h1 { margin: 0; font-family: "Yu Mincho", serif; font-size: clamp(38px, 7vw, 68px); font-weight: 500; line-height: 1.15; letter-spacing: -0.04em; }
.document h2 { margin: 54px 0 12px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 20px; line-height: 1.45; }
.document h3 { margin: 26px 0 8px; font-size: 16px; }
.document p, .document li { color: #394253; font-size: 15px; }
.document a { color: #8e3022; text-underline-offset: 3px; }
.effective { margin: 12px 0 42px; color: var(--muted) !important; font-size: 12px !important; }
.operator { margin-top: 42px; color: var(--muted) !important; font-size: 12px !important; }
.note { padding: 16px 18px; border-left: 3px solid var(--gold); background: #faf4e2; }

.support-form {
  display: grid;
  gap: 22px;
  margin: 34px 0 26px;
  padding: clamp(22px, 5vw, 38px);
  border: 1px solid rgba(17, 26, 43, 0.12);
  border-radius: 16px;
  background: #faf6eb;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field { display: grid; gap: 8px; }

.form-field label,
.consent-field {
  color: #273044;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.55;
}

.form-field label span { color: var(--muted); font-size: 10px; font-weight: 600; }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  margin: 0;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid rgba(17, 26, 43, 0.22);
  border-radius: 8px;
  outline: none;
  background: #fff;
  font: inherit;
  font-size: 14px;
  line-height: 1.55;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.form-field textarea { min-height: 180px; resize: vertical; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #ad7821;
  box-shadow: 0 0 0 3px rgba(237, 189, 88, 0.22);
}

.field-help,
.field-meta {
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 11px !important;
}

.field-meta { display: flex; justify-content: space-between; gap: 12px; }

.consent-field { display: flex; align-items: flex-start; gap: 10px; }
.consent-field input { flex: 0 0 auto; width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--red); }
.consent-field a { font-weight: 800; }

.form-trap {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.turnstile-container { min-height: 10px; }

.form-status {
  min-height: 1.5em;
  margin: -8px 0 0 !important;
  font-size: 12px !important;
  font-weight: 700;
}

.form-status[data-kind="success"] { color: #267043 !important; }
.form-status[data-kind="error"] { color: #a33125 !important; }

.support-submit {
  min-height: 52px;
  padding: 0 24px;
  color: #fff;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 10px 24px rgba(201, 71, 50, 0.18);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  transition: transform 150ms ease, opacity 150ms ease;
}

.support-submit:not(:disabled):hover,
.support-submit:not(:disabled):focus-visible { transform: translateY(-1px); }
.support-submit:disabled { cursor: not-allowed; opacity: 0.45; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(24px, 8vw, 110px);
  color: rgba(255, 246, 216, 0.46);
  background: #01040b;
  font-size: 9px;
  letter-spacing: 0.1em;
}

footer a { color: inherit; text-underline-offset: 3px; }

@media (max-width: 960px) {
  .lp-hero { grid-template-columns: 1fr 0.72fr; padding-left: 48px; padding-right: 48px; }
  .phone-frame { width: 310px; }
  .step-grid { grid-template-columns: 1fr; }
  .step-grid li {
    display: grid;
    min-height: 190px;
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: center;
    column-gap: 40px;
    padding: 34px 38px;
  }
  .step-label { align-items: flex-start; flex-direction: column; justify-content: center; }
  .step-number { font-size: 48px; }
  .step-copy { margin: 0; padding: 0 0 0 38px; border-top: 0; border-left: 1px solid rgba(17, 26, 43, 0.13); }
  .feature-section { grid-template-columns: 1fr 1fr; padding-left: 48px; padding-right: 48px; }
  .content-card { min-height: 350px; }
}

@media (max-width: 760px) {
  .studio-header { padding: 13px 18px; }
  .studio-wordmark { font-size: 11px; }
  .studio-mark { width: 36px; height: 36px; border-radius: 9px; }
  .studio-header nav a { font-size: 10px; }
  .studio-games { padding: 34px 18px 72px; }
  .studio-section-heading { display: block; margin-bottom: 24px; }
  .studio-section-heading h1 { font-size: 30px; }
  .studio-section-heading > p { margin: 6px 0 0; }
  .studio-game-grid { grid-template-columns: minmax(0, 420px); }
  .studio-game-body { padding: 24px 22px 28px; }
  .studio-game-title-en { display: block; margin: 8px 0 0; }
  .site-header { position: absolute; padding: 18px 20px; }
  .brand img { width: 38px; height: 38px; }
  .brand span { font-size: 15px; }
  .site-nav a:not(:last-child) { display: none; }
  .site-nav a { font-size: 10px; }

  .lp-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 54px;
    padding: 105px 22px 75px;
    text-align: center;
  }

  .hero-copy { margin: 0 auto; }
  .eyebrow { font-size: 9px; }
  .lp-hero h1 { font-size: clamp(46px, 14vw, 66px); line-height: 1.22; }
  .hero-lead { font-size: 13px; }
  .hero-actions { flex-direction: column; gap: 16px; }
  .primary-button { width: min(100%, 340px); }
  .hero-numbers { justify-content: center; gap: 22px; }
  .hero-numbers div { display: block; }
  .hero-numbers dd { margin-top: 7px; }
  .hero-visual { width: 100%; }
  .phone-frame { width: min(74vw, 330px); transform: rotateZ(1deg); }
  .floating-note { right: 2%; }

  .manifesto { min-height: 560px; padding: 92px 22px 100px; }
  .manifesto h2 { font-size: clamp(44px, 12.5vw, 64px); }
  .manifesto-body { max-width: 520px; margin-top: 28px; }

  .how-to { padding: 80px 20px 90px; }
  .section-heading { display: block; text-align: center; }
  .section-heading .section-index { margin-bottom: 15px; }
  .step-grid li { display: block; min-height: 0; padding: 30px 26px 36px; }
  .step-label { align-items: center; flex-direction: row; justify-content: space-between; }
  .step-number { font-size: 42px; }
  .step-copy { margin-top: 28px; padding: 22px 0 0; border-top: 1px solid rgba(17, 26, 43, 0.13); border-left: 0; }

  .feature-section { grid-template-columns: 1fr; padding: 88px 24px 65px; text-align: center; }
  .feature-copy { margin: 0 auto; }
  .celestial-list { max-width: 400px; margin-left: auto; margin-right: auto; text-align: left; }
  .gravity-stage { min-height: 430px; }
  .gravity-ring { left: 50%; }
  .stage-star { left: 50%; width: 215px; }
  .route-line { left: 5%; width: 64%; }

  .contents-section { padding: 90px 20px 100px; }
  .content-grid { grid-template-columns: 1fr; }
  .content-card { min-height: 310px; padding: 35px 30px; }

  .experience-section { grid-template-columns: 1fr; padding: 90px 24px; text-align: center; }
  .experience-visual { width: min(76vw, 420px); justify-self: center; }
  .experience-copy { margin: 0 auto; }
  .sound-bars { justify-content: center; }
  .support-links { flex-wrap: wrap; gap: 14px 22px; }
  .document { padding: 34px 24px; }
  .document h2 { margin-top: 44px; }
  .support-form { padding: 22px 18px; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .primary-button, .site-nav a, .studio-game-card { transition: none; }
}

/* G001 Pita Drop landing page */
.pita-page {
  --pita-ink: #3d2149;
  --pita-coral: #f45668;
  --pita-pink: #ff4d96;
  --pita-yellow: #ffd843;
  --pita-aqua: #20d8bf;
  --pita-cream: #fff6df;
  overflow-x: hidden;
  color: var(--pita-ink);
  background: var(--pita-cream);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
}

.pita-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(22px, 5vw, 72px);
  color: #fff;
}

.pita-parent { font-size: 11px; font-weight: 900; letter-spacing: 0.16em; text-decoration: none; }
.pita-header nav { display: flex; gap: clamp(16px, 2.8vw, 34px); }
.pita-header nav a { color: rgba(255, 255, 255, 0.82); font-size: 11px; font-weight: 800; text-decoration: none; }
.pita-header nav a:hover, .pita-header nav a:focus-visible { color: #fff; text-decoration: underline; text-underline-offset: 6px; }

.pita-hero {
  position: relative;
  display: grid;
  min-height: 850px;
  grid-template-columns: minmax(360px, 0.78fr) minmax(440px, 1.22fr);
  align-items: center;
  gap: clamp(30px, 5vw, 78px);
  overflow: hidden;
  padding: 120px clamp(24px, 7vw, 110px) 80px;
  color: #fff;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 222, 67, 0.5), transparent 22%),
    radial-gradient(circle at 84% 76%, rgba(29, 230, 194, 0.35), transparent 28%),
    linear-gradient(145deg, #ff8b60, #f24785 48%, #6c3db8 110%);
}

.pita-hero::before, .pita-hero::after {
  position: absolute;
  content: "";
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}
.pita-hero::before { right: 34%; bottom: -190px; width: 460px; height: 460px; }
.pita-hero::after { top: 110px; left: -100px; width: 260px; height: 260px; }
.pita-hero-copy { position: relative; z-index: 3; max-width: 580px; }
.pita-kicker { margin: 0 0 15px; font-size: 9px; font-weight: 900; letter-spacing: 0.2em; }
.pita-status { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 24px; padding: 7px 12px; border: 1px solid rgba(255,255,255,0.4); border-radius: 999px; background: rgba(74,25,91,0.16); font-size: 10px; font-weight: 850; }
.pita-status span { width: 7px; height: 7px; border-radius: 50%; background: var(--pita-yellow); box-shadow: 0 0 12px var(--pita-yellow); }
.pita-hero h1 { margin: 0; font-size: clamp(76px, 9vw, 132px); font-weight: 1000; line-height: 0.8; letter-spacing: -0.11em; text-shadow: 0 8px 0 rgba(136, 23, 69, 0.22), 0 20px 45px rgba(94, 22, 78, 0.22); }
.pita-hero h1 span { color: var(--pita-yellow); }
.pita-hero h1 strong { color: #77ffe4; font-weight: inherit; }
.pita-hero h2 { margin: 42px 0 0; font-size: clamp(35px, 4.1vw, 59px); line-height: 1.25; letter-spacing: -0.055em; }
.pita-hero-copy > p:last-of-type { max-width: 560px; margin: 26px 0 0; color: rgba(255,255,255,0.84); font-size: 14px; }
.pita-actions { display: flex; align-items: center; gap: 22px; margin-top: 34px; }
.pita-button { display: inline-grid; min-height: 56px; place-items: center; padding: 0 28px; color: var(--pita-ink); border-radius: 999px; background: var(--pita-yellow); box-shadow: 0 12px 24px rgba(82, 29, 74, 0.18); font-size: 13px; font-weight: 900; text-decoration: none; }
.pita-text-link { color: #fff; font-size: 11px; font-weight: 800; text-underline-offset: 5px; }
.pita-facts { display: flex; gap: clamp(18px, 3vw, 38px); margin: 43px 0 0; padding: 0; list-style: none; }
.pita-facts li { display: grid; gap: 2px; }
.pita-facts b { color: var(--pita-yellow); font-size: 19px; }
.pita-facts span { color: rgba(255,255,255,0.7); font-size: 9px; font-weight: 700; }

.pita-hero-art { position: relative; z-index: 2; width: min(48vw, 570px); justify-self: center; }
.pita-hero-art::before { position: absolute; inset: 7% -9%; content: ""; border-radius: 48%; background: rgba(255, 221, 85, 0.23); filter: blur(50px); }
.pita-hero-art img { position: relative; display: block; width: 100%; max-height: 670px; object-fit: cover; object-position: center; border: 6px solid rgba(255,255,255,0.94); border-radius: 45px; box-shadow: 0 38px 90px rgba(80, 19, 77, 0.28); transform: rotate(2deg); }
.pita-sticker { position: absolute; z-index: 3; display: grid; width: 116px; height: 116px; place-content: center; border: 5px solid #fff; border-radius: 50%; color: var(--pita-ink); background: var(--pita-yellow); box-shadow: 0 14px 35px rgba(77, 28, 76, 0.3); font-size: 11px; font-weight: 850; line-height: 1.3; text-align: center; transform: rotate(-7deg); }
.pita-sticker b { font-size: 16px; }
.sticker-perfect { top: 8%; right: -10%; }
.sticker-safe { bottom: 7%; left: -11%; background: #91ffe8; transform: rotate(7deg); }

.pita-hook { min-height: 570px; padding: 115px 24px; text-align: center; background: #fff7df; }
.pita-hook > p:first-child { margin: 0 0 24px; color: #f34e73; font-size: 12px; font-weight: 900; letter-spacing: 0.12em; }
.pita-hook h2 { margin: 0; font-size: clamp(48px, 6.5vw, 88px); line-height: 1.2; letter-spacing: -0.07em; }
.pita-hook h2 em { color: #e9407a; font-style: normal; }
.pita-hook-body { max-width: 640px; margin: 32px auto 0; color: #725d72; font-size: 14px; }

.pita-how { padding: 110px clamp(22px, 7vw, 110px) 130px; background: #fffdf8; }
.pita-section-heading { max-width: 1180px; margin: 0 auto 52px; }
.pita-section-heading p, .pita-section-index { margin: 0 0 12px; color: #e9407a; font-size: 10px; font-weight: 900; letter-spacing: 0.18em; }
.pita-section-heading h2 { margin: 0; font-size: clamp(44px, 5.4vw, 72px); letter-spacing: -0.06em; }
.pita-steps { display: grid; max-width: 1180px; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin: 0 auto; padding: 0; list-style: none; }
.pita-steps li { min-height: 285px; padding: 32px; border: 2px solid #f1d9dc; border-radius: 32px; background: #fff7f2; box-shadow: 0 18px 45px rgba(112, 39, 88, 0.07); }
.pita-steps li:nth-child(2) { background: #effff8; transform: translateY(22px); }
.pita-steps li:nth-child(3) { background: #fff9d8; }
.pita-steps span { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 17px; color: #fff; background: var(--pita-coral); font-size: 20px; font-weight: 950; }
.pita-steps h3 { margin: 54px 0 12px; font-size: 26px; }
.pita-steps p { margin: 0; color: #745f71; font-size: 13px; }

.pita-score { display: grid; min-height: 760px; grid-template-columns: minmax(440px, 1.15fr) minmax(320px, 0.85fr); align-items: center; gap: clamp(42px, 7vw, 100px); padding: 110px clamp(24px, 7vw, 110px); color: #fff; background: linear-gradient(145deg, #402251, #271b47 58%, #132f4b); }
.pita-score-art img { display: block; width: 100%; border: 6px solid rgba(255,255,255,0.9); border-radius: 34px; box-shadow: 0 35px 70px rgba(6, 5, 35, 0.38); }
.pita-score-copy { max-width: 550px; }
.pita-score-copy h2 { margin: 0; font-size: clamp(43px, 5.2vw, 70px); line-height: 1.25; letter-spacing: -0.06em; }
.pita-score-copy > p:not(.pita-section-index) { margin: 28px 0 0; color: rgba(255,255,255,0.7); font-size: 14px; }
.pita-rank-card { display: grid; max-width: 380px; gap: 7px; margin-top: 34px; padding: 24px 28px; border: 1px solid rgba(255,220,80,0.4); border-radius: 26px; background: rgba(255,255,255,0.07); }
.pita-rank-card span { color: var(--pita-yellow); font-size: 9px; font-weight: 900; letter-spacing: 0.18em; }
.pita-rank-card strong { font-size: 25px; line-height: 1.3; }
.pita-rank-card small { color: rgba(255,255,255,0.55); }

.pita-feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; padding: 1px; background: #f0cfd4; }
.pita-feature-grid article { min-height: 350px; padding: clamp(34px, 6vw, 76px); background: #fffaf0; }
.pita-feature-grid article:nth-child(2), .pita-feature-grid article:nth-child(3) { background: #fff0f4; }
.pita-feature-grid article > p { margin: 0; color: #de3d75; font-size: 9px; font-weight: 900; letter-spacing: 0.2em; }
.pita-feature-grid article > strong { display: block; margin-top: 12px; color: var(--pita-coral); font-size: 86px; line-height: 1; }
.pita-feature-grid h3 { margin: 20px 0 10px; font-size: 28px; }
.pita-feature-grid article > span { display: block; max-width: 520px; color: #765e6f; font-size: 13px; }
.pita-play-mark, .pita-noads { display: grid; width: 86px; height: 86px; margin-top: 17px; place-items: center; border: 3px solid var(--pita-coral); border-radius: 28px; color: var(--pita-coral); font-size: 28px; font-weight: 950; line-height: 1; text-align: center; transform: rotate(-4deg); }
.pita-noads { font-size: 20px; background: var(--pita-yellow); transform: rotate(4deg); }

.pita-stream { display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, 0.75fr); align-items: center; gap: clamp(50px, 10vw, 150px); padding: 120px clamp(24px, 9vw, 145px); color: #fff; background: linear-gradient(135deg, #ff5b6d, #f03b92); }
.pita-stream h2 { margin: 0; font-size: clamp(44px, 5.5vw, 74px); line-height: 1.2; letter-spacing: -0.06em; }
.pita-stream div:first-child > p:not(.pita-section-index) { max-width: 680px; color: rgba(255,255,255,0.82); font-size: 14px; }
.pita-stream a { display: inline-block; margin-top: 24px; color: #fff; font-size: 12px; font-weight: 900; text-underline-offset: 6px; }
.pita-stream .pita-section-index { color: var(--pita-yellow); }
.pita-stream-tags { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pita-stream-tags span { display: grid; min-height: 110px; place-items: center; padding: 16px; border: 2px solid rgba(255,255,255,0.5); border-radius: 25px; background: rgba(81,23,85,0.15); font-size: 12px; font-weight: 900; text-align: center; }

.pita-closing { padding: 120px 24px 110px; color: #fff; text-align: center; background: radial-gradient(circle at 50% 35%, #4d3277, #231832 60%, #100d18); }
.pita-closing img { width: 120px; border: 4px solid #fff; border-radius: 28%; box-shadow: 0 0 55px rgba(255, 78, 142, 0.35); }
.pita-closing > p { margin: 28px 0 4px; color: var(--pita-yellow); font-size: 9px; font-weight: 900; letter-spacing: 0.2em; }
.pita-closing h2 { margin: 0; font-size: clamp(64px, 8vw, 106px); letter-spacing: -0.1em; }
.pita-closing > strong { display: inline-block; margin-top: 20px; padding: 10px 20px; border-radius: 999px; color: var(--pita-ink); background: var(--pita-yellow); font-size: 11px; }
.pita-closing > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 28px; margin-top: 42px; }
.pita-closing a { color: rgba(255,255,255,0.65); font-size: 11px; text-underline-offset: 5px; }

@media (max-width: 900px) {
  .pita-hero { grid-template-columns: minmax(300px, 0.9fr) minmax(340px, 1.1fr); padding-left: 44px; padding-right: 44px; }
  .pita-score { grid-template-columns: 1fr 0.9fr; padding-left: 44px; padding-right: 44px; }
  .pita-stream { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .pita-header { padding: 18px 20px; }
  .pita-header nav a:not(:last-child) { display: none; }
  .pita-hero { min-height: auto; grid-template-columns: 1fr; gap: 48px; padding: 105px 22px 78px; text-align: center; }
  .pita-hero-copy { margin: 0 auto; }
  .pita-status { margin-bottom: 22px; }
  .pita-hero h1 { font-size: clamp(76px, 24vw, 112px); }
  .pita-hero h2 { margin-top: 36px; font-size: clamp(34px, 10vw, 48px); }
  .pita-actions { flex-direction: column; }
  .pita-button { width: min(100%, 340px); }
  .pita-facts { justify-content: center; gap: 16px; }
  .pita-hero-art { width: min(80vw, 430px); }
  .pita-sticker { width: 98px; height: 98px; }
  .sticker-perfect { right: -8%; }
  .sticker-safe { left: -8%; }
  .pita-hook { min-height: 500px; padding: 92px 22px; }
  .pita-how { padding: 86px 20px 105px; }
  .pita-section-heading { text-align: center; }
  .pita-steps { grid-template-columns: 1fr; }
  .pita-steps li { min-height: 245px; }
  .pita-steps li:nth-child(2) { transform: none; }
  .pita-score { grid-template-columns: 1fr; padding: 85px 22px; text-align: center; }
  .pita-score-copy { margin: 0 auto; }
  .pita-rank-card { margin-left: auto; margin-right: auto; text-align: left; }
  .pita-feature-grid { grid-template-columns: 1fr; }
  .pita-feature-grid article { min-height: 310px; }
  .pita-stream { padding: 90px 22px; text-align: center; }
  .pita-stream-tags { grid-template-columns: 1fr 1fr; }
  .pita-stream-tags span { min-height: 95px; }
}

@media (prefers-reduced-motion: reduce) {
  .pita-button, .pita-header a { transition: none; }
}
