@font-face {
  font-family: Space;
  src: url(space-grotesk-latin.woff2) format("woff2");
  font-weight: 400 700;
  font-display: swap;
}
:root {
  --paper: #f6f4ec;
  --ink: #24251f;
  --muted: #626359;
  --orange: #c63817;
  --bright-orange: #e84924;
  --line: #d9d9ce;
  --radius: 24px;
  --space: 8px;
  --duration-fast: 160ms;
  --duration-enter: 600ms;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --spring: cubic-bezier(0.2, 0.9, 0.3, 1.15);
  --enter-distance: 18px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Space, "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #155bc1;
  outline-offset: 5px;
}
::selection {
  background: #ffcea7;
  color: #24251f;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.section-space {
  padding-block: 92px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-weight: 600;
}
h1 {
  font-size: clamp(52px, 5.5vw, 82px);
  line-height: 1.04;
  letter-spacing: -0.075em;
  margin-bottom: 28px;
}
h2 {
  font-size: clamp(36px, 4.3vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  margin-bottom: 24px;
}
h3 {
  letter-spacing: -0.04em;
}
p {
  line-height: 1.65;
  color: var(--muted);
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.13em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 26px;
  text-transform: uppercase;
  color: inherit;
}
.small-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--bright-orange);
  border-radius: 50%;
  margin-right: 8px;
}
.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  z-index: 10;
  padding: 12px;
  background: var(--ink);
  color: white;
}
.skip-link:focus {
  transform: none;
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1;
}
.brand-small {
  display: block;
  font-size: 8px;
  letter-spacing: 2.3px;
  margin-top: 7px;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 500;
}
.site-header nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
}
.site-header nav a:hover {
  color: var(--orange);
}
.site-header .nav-contact {
  border: 1px solid #aaa99c;
  border-radius: 30px;
  padding: 0 20px;
  gap: 20px;
  margin-left: 10px;
}
.hero {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  align-items: center;
  gap: 12px;
  min-height: 650px;
  padding-block: 64px 72px;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero-description {
  max-width: 455px;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.word-play {
  color: var(--orange);
  position: relative;
  white-space: nowrap;
}
.word-play svg {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 20px;
  stroke: var(--bright-orange);
  stroke-width: 3;
  fill: none;
}
.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 52px;
  border-radius: 100px;
  padding: 15px 24px;
  font-size: 13px;
  font-weight: 600;
  transition:
    transform var(--duration-fast) var(--spring),
    background var(--duration-fast) var(--ease);
}
.button:hover {
  transform: translateY(-3px);
}
.button:active {
  transform: translateY(1px);
}
.button-orange {
  background: var(--orange);
  color: white;
}
.button-orange:hover {
  background: #a52d13;
}
.button-dark {
  background: var(--ink);
  color: white;
}
.button-dark:hover {
  background: #414439;
}
.button-light {
  background: var(--paper);
  color: var(--ink);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 6px;
}
.text-link:hover {
  text-decoration-color: currentColor;
}
.platform-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  margin: 27px 0 0;
}
.platform-note svg {
  width: 13px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  flex: none;
}
.hero-art {
  height: 470px;
  position: relative;
  background: radial-gradient(ellipse at 50% 50%, #f1dcc377, transparent 68%);
}
.orbit {
  position: absolute;
  border: 1px solid #d9d6c9;
  border-radius: 50%;
  width: 410px;
  height: 410px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
}
.orbit-two {
  width: 480px;
  height: 245px;
  transform: translate(-50%, -50%) rotate(-40deg);
  border-style: dashed;
}
.hero-icon {
  position: absolute;
  border-radius: 25%;
  transition: translate var(--duration-fast) var(--spring);
  filter: drop-shadow(0 18px 15px #322d2223);
}
.hero-icon:hover {
  translate: 0 -8px;
}
.hero-icon img {
  border-radius: 24%;
}
.hero-icon-chomp {
  width: 228px;
  left: 24%;
  top: 19%;
  transform: rotate(-10deg);
  z-index: 3;
}
.hero-icon-chomp span {
  position: absolute;
  left: 8%;
  bottom: -18px;
  border-radius: 25px;
  background: white;
  padding: 10px 15px;
  font-size: 12px;
  white-space: nowrap;
  transform: rotate(10deg);
  box-shadow: 0 4px 15px #0000000c;
}
.hero-icon-chomp span span {
  position: static;
  padding: 0;
  box-shadow: none;
}
.hero-icon-pinky {
  width: 137px;
  right: 0;
  top: 8%;
  transform: rotate(14deg);
  z-index: 2;
}
.hero-icon-tile {
  width: 132px;
  right: 0;
  bottom: 7%;
  transform: rotate(12deg);
  z-index: 4;
}
.hero-icon-block {
  width: 116px;
  left: 3%;
  bottom: 1%;
  transform: rotate(-16deg);
}
.studio-stamp {
  position: absolute;
  left: 51%;
  bottom: 0;
  z-index: 5;
  background: #f9d65d;
  border: 1px solid #353528;
  border-radius: 50%;
  width: 132px;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 9px;
  letter-spacing: 0.06em;
  transform: rotate(12deg);
}
.studio-stamp strong {
  font-size: 23px;
  letter-spacing: -0.04em;
  margin-block: 4px;
}
.studio-stamp span {
  font-size: 24px;
}
.spark {
  position: absolute;
  color: var(--orange);
  font-size: 44px;
  font-weight: 400;
}
.spark-one {
  top: 1%;
  left: 18%;
  transform: rotate(15deg);
}
.spark-two {
  right: 23%;
  top: 48%;
  font-size: 32px;
}
.art-caption {
  position: absolute;
  bottom: -35px;
  left: 28%;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.ticker {
  border-block: 1px solid var(--line);
}
.ticker .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-block: 23px;
  font-size: 13px;
  font-weight: 500;
}
.ticker b {
  color: var(--orange);
  font-size: 22px;
  font-weight: 400;
}
.feature-section {
  padding-top: 65px;
}
.section-label {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  letter-spacing: 0.13em;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 600;
}
.feature {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  border-radius: var(--radius);
  background: #e5efc8;
  overflow: hidden;
  min-height: 450px;
}
.feature-copy {
  padding: 56px;
}
.feature-copy h2 {
  font-size: clamp(48px, 5vw, 72px);
  margin-bottom: 22px;
}
.feature-copy p:not(.eyebrow) {
  max-width: 390px;
  font-size: 14px;
  color: #4c583b;
}
.feature .eyebrow {
  font-size: 10px;
  margin-bottom: 24px;
}
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}
.feature-tags span {
  font-size: 10px;
  padding: 7px 11px;
  border: 1px solid #788567;
  border-radius: 20px;
}
.feature .actions {
  gap: 14px;
}
.feature-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  background: radial-gradient(circle, #c9dc99, transparent 67%);
}
.feature-art > img {
  width: 62%;
  border-radius: 24%;
  transform: rotate(9deg);
  position: relative;
  box-shadow: 0 30px 30px #23311626;
  z-index: 1;
}
.feature-rings {
  position: absolute;
  width: 80%;
  aspect-ratio: 1;
  border: 1px solid #a9ba83;
  border-radius: 50%;
}
.feature-rings:before,
.feature-rings:after {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px solid #a9ba83;
  border-radius: 50%;
}
.feature-rings:after {
  inset: -30px;
}
.bite-note {
  position: absolute;
  right: 6%;
  bottom: 8%;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.04em;
  transform: rotate(-8deg);
  z-index: 2;
  background: var(--paper);
  padding: 16px 20px;
  box-shadow: 3px 4px 0 #24251f;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 36px;
  margin-bottom: 30px;
}
.section-heading .eyebrow {
  margin-bottom: 18px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading > p {
  font-size: 13px;
  margin-bottom: 4px;
  max-width: 300px;
}
.collection-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 34px 0 28px;
  min-height: 44px;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.filters button {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 10px 17px;
  min-height: 44px;
  color: var(--ink);
  background: transparent;
  font-size: 12px;
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease);
}
.filters button[aria-pressed="true"] {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.filters button:hover:not([aria-pressed="true"]) {
  background: #e7e5da;
}
.result-count {
  font-size: 10px;
  margin: 0;
}
.app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 24px;
}
.app-card {
  min-width: 0;
}
.app-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 255px;
  border-radius: 18px;
  background: var(--app-bg);
}
.app-art:before,
.detail-art:before {
  content: "";
  position: absolute;
  width: 80%;
  height: 150%;
  border: 1px solid #24251f18;
  transform: rotate(40deg);
  border-radius: 50%;
}
.app-art:after {
  content: "";
  position: absolute;
  width: 65%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid #24251f16;
}
.app-art img {
  position: relative;
  z-index: 1;
  width: 130px;
  border-radius: 25%;
  transform: rotate(-9deg);
  box-shadow: 0 16px 18px #24251f25;
  transition: transform 300ms var(--spring);
}
.app-card:nth-child(even) .app-art img {
  transform: rotate(9deg);
}
.app-art:hover img {
  transform: rotate(0) translateY(-6px);
}
.art-number {
  position: absolute;
  top: 18px;
  left: 20px;
  font-size: 11px;
  color: #454839;
}
.art-arrow {
  position: absolute;
  right: 17px;
  bottom: 17px;
  border: 1px solid #24251f70;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  transition: background var(--duration-fast);
}
.app-art:hover .art-arrow {
  background: white;
}
.lime {
  --app-bg: #e2edc7;
}
.blue {
  --app-bg: #d4e4ef;
}
.pink {
  --app-bg: #efdae2;
}
.lavender {
  --app-bg: #dfdff1;
}
.peach {
  --app-bg: #f2d9c7;
}
.yellow {
  --app-bg: #efe4b5;
}
.card-body {
  padding: 20px 2px 0;
}
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  gap: 7px;
  color: var(--muted);
}
.available:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #47703f;
  border-radius: 50%;
  margin-right: 5px;
}
.card-body h3 {
  font-size: 25px;
  margin: 10px 0;
}
.card-body > p {
  font-size: 13px;
  line-height: 1.75;
  min-height: 70px;
  margin-bottom: 14px;
}
.card-links {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
}
.card-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
}
.card-links a:hover,
.card-body h3 a:hover {
  color: var(--orange);
}
.upcoming {
  background: #252820;
  color: #f6f4ec;
}
.upcoming .section-heading > p {
  color: #c0c4b6;
}
.upcoming-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.upcoming-card {
  min-width: 0;
  border: 1px solid #55594b;
  border-radius: 18px;
  padding: 30px;
  overflow: hidden;
}
.coming-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 0.08em;
}
.status-soon {
  display: inline-block;
  border: 1px solid #898c79;
  border-radius: 30px;
  padding: 8px 12px;
  font-size: 10px;
  letter-spacing: 0;
}
.upcoming-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.upcoming-card p {
  font-size: 13px;
  max-width: 420px;
  color: #c0c4b6;
}
.upcoming-art {
  min-height: 245px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.upcoming-art img {
  width: 148px;
  height: 148px;
  border-radius: 24%;
  transform: rotate(-7deg);
  box-shadow: 0 16px 28px #00000033;
}
.crossfire .upcoming-art img {
  transform: rotate(7deg);
}
.upcoming-art figcaption {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.abop {
  background: radial-gradient(ellipse at 50% 30%, #465242, #2a3026 60%);
}
.abop-word span:nth-child(1) {
  color: #c4db80;
  transform: rotate(-12deg);
}
.abop-word span:nth-child(3) {
  color: #dfcdf4;
  transform: rotate(-8deg);
}
.abop-word i {
  position: absolute;
  font-size: 45px;
  right: 12%;
  top: 30px;
  color: #c4db80;
  font-style: normal;
  transform: rotate(20deg);
}
.crossfire {
  background: radial-gradient(ellipse at 70% 25%, #413a2e, #302c26 60%);
}
.crossfire-word > span {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.16em;
  z-index: 1;
}
.crossfire-word strong span {
  color: #d4df90;
  font-size: 58px;
  margin-left: 8px;
}
.studio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.studio-intro > p:not(.eyebrow) {
  max-width: 430px;
  font-size: 14px;
}
.studio-intro strong {
  color: var(--ink);
  font-weight: 500;
}
.principles {
  padding-top: 50px;
}
.principles article {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.principles article > span {
  font-size: 10px;
  color: var(--orange);
  padding-top: 6px;
}
.principles h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.principles p {
  font-size: 13px;
  margin: 0;
  max-width: 380px;
}
.support {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding-top: 70px;
}
.support > div > p:not(.eyebrow) {
  font-size: 13px;
  max-width: 400px;
}
.support .email-address {
  font-size: 11px;
  margin-top: 15px;
}
.support-details {
  padding-top: 20px;
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  position: relative;
  cursor: pointer;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  font-weight: 500;
  list-style: none;
  padding-block: 18px;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
}
details[open] summary:after {
  content: "-";
}
details > p {
  font-size: 13px;
  padding-right: 22px;
}
details > p a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.privacy-list {
  list-style: none;
  margin: 0;
  padding: 0 0 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.privacy-list a {
  font-size: 11px;
  display: flex;
  align-items: center;
  min-height: 44px;
  gap: 8px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.final-cta {
  background: var(--bright-orange);
  color: #24251f;
  overflow: hidden;
}
.final-cta .wrap {
  position: relative;
  padding-block: 68px;
}
.final-cta h2 {
  font-size: clamp(52px, 6vw, 84px);
  margin-bottom: 30px;
}
.final-cta .eyebrow {
  margin-bottom: 22px;
}
.cta-flower {
  position: absolute;
  right: 6%;
  top: 10%;
  font-size: 330px;
  font-weight: 400;
  line-height: 1;
  color: #ffd194;
  transform: rotate(15deg);
  pointer-events: none;
}
.site-footer {
  padding-block: 46px 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.site-footer p {
  font-size: 11px;
  margin-top: 16px;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 5px 24px;
  font-size: 11px;
}
.site-footer nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
}
.site-footer nav a:hover {
  text-decoration: underline;
}
.site-footer .copyright {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  margin: 0;
  padding-top: 20px;
  font-size: 9px;
  color: var(--muted);
}
.detail-hero {
  padding-top: 32px;
}
.back-link {
  margin-bottom: 36px;
}
.detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.detail-layout h1 {
  font-size: clamp(44px, 6vw, 82px);
}
.detail-layout p {
  max-width: 550px;
  font-size: 15px;
}
.detail-layout .detail-tagline {
  font-size: 24px;
  color: var(--ink);
  letter-spacing: -0.04em;
}
.detail-layout .platform-note {
  font-size: 11px;
}
.detail-art {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--app-bg);
  border-radius: 24px;
  overflow: hidden;
}
.detail-art img {
  width: 55%;
  border-radius: 24%;
  transform: rotate(-8deg);
  box-shadow: 0 25px 30px #24251f33;
  position: relative;
}
.detail-features {
  border-top: 1px solid var(--line);
  padding-top: 60px;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin-top: 40px;
}
.feature-list article {
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.feature-list h3 {
  font-size: 23px;
  margin-top: 16px;
}
.feature-list p {
  font-size: 14px;
}
.detail-preview {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.detail-preview figure {
  margin: 0;
  text-align: center;
}
.detail-preview figure img {
  width: auto;
  max-height: 440px;
  margin: auto;
  border-radius: 12px;
}
.detail-preview figcaption {
  font-size: 10px;
  margin-top: 18px;
  color: var(--muted);
}
.detail-preview p {
  font-size: 14px;
  max-width: 410px;
}
.detail-support {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.detail-support a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(var(--enter-distance));
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.final-cta .eyebrow {
  color: #161810;
}
.orbit-one {
  transform: translate(-50%, -50%);
}
@media (max-width: 359px) {
  .hero-art .orbit-two {
    width: 235px;
    height: 170px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: enter var(--duration-enter) var(--ease) both;
  }
  .hero-art {
    animation: enter var(--duration-enter) var(--ease) 80ms both;
  }
  @supports (animation-timeline: view()) {
    .app-card {
      animation: enter var(--duration-enter) var(--ease) both;
      animation-timeline: view();
      animation-range: entry 0% entry 15%;
    }
  }
}
@media (min-width: 1440px) {
  .hero {
    min-height: 720px;
  }
  .hero-art {
    height: 510px;
  }
  .hero-icon-chomp {
    width: 260px;
  }
  .hero-icon-pinky {
    width: 155px;
  }
  .hero-icon-tile {
    width: 145px;
  }
  .hero-icon-block {
    width: 130px;
  }
  .hero h1 {
    font-size: 88px;
  }
  .hero-description {
    font-size: 17px;
  }
  .hero-art .orbit-one {
    width: 450px;
    height: 450px;
  }
  .app-art {
    height: 290px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero {
    gap: 0;
    min-height: 610px;
  }
  .hero-art {
    height: 420px;
  }
  .hero-icon-chomp {
    width: 190px;
    left: 20%;
  }
  .hero-icon-pinky {
    width: 110px;
  }
  .hero-icon-tile {
    width: 110px;
  }
  .hero-icon-block {
    width: 96px;
  }
  .orbit-one {
    width: 320px;
    height: 320px;
  }
  .orbit-two {
    width: 370px;
  }
  .studio-stamp {
    width: 112px;
    height: 112px;
    left: 42%;
  }
  .studio-stamp strong {
    font-size: 21px;
  }
  .feature-copy {
    padding: 40px;
  }
  .feature .actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .app-art {
    height: 220px;
  }
  .app-art img {
    width: 112px;
  }
  .studio,
  .support {
    gap: 50px;
  }
  .result-count {
    max-width: 140px;
    text-align: right;
  }
  .crossfire-word strong {
    font-size: 60px;
  }
  .detail-layout {
    gap: 40px;
  }
}
@media (max-width: 800px) {
  .site-header nav {
    gap: 20px;
  }
  .site-header .nav-contact {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: 570px;
    padding-top: 45px;
  }
  .hero h1 {
    font-size: 52px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero .actions {
    gap: 8px;
  }
  .hero-art {
    height: 360px;
  }
  .hero-icon-chomp {
    width: 155px;
    left: 17%;
    top: 23%;
  }
  .hero-icon-pinky {
    width: 92px;
  }
  .hero-icon-tile {
    width: 90px;
  }
  .hero-icon-block {
    width: 84px;
    bottom: 8%;
    left: 0;
  }
  .studio-stamp {
    width: 94px;
    height: 94px;
    font-size: 7px;
    bottom: 0;
  }
  .studio-stamp strong {
    font-size: 17px;
  }
  .studio-stamp span {
    font-size: 18px;
  }
  .orbit-one {
    width: 255px;
    height: 255px;
  }
  .orbit-two {
    width: 300px;
    height: 170px;
  }
  .hero-icon-chomp span {
    font-size: 10px;
    padding: 8px 10px;
  }
  .art-caption {
    font-size: 7px;
    left: 15%;
    bottom: -27px;
  }
  .ticker .wrap {
    gap: 16px;
    font-size: 10px;
  }
  .ticker b {
    font-size: 18px;
  }
  .section-space {
    padding-block: 64px;
  }
  .feature-copy {
    padding: 32px;
  }
  .feature-art {
    min-height: 360px;
  }
  .feature-copy h2 {
    font-size: 48px;
  }
  .feature-art > img {
    width: 68%;
  }
  .bite-note {
    font-size: 10px;
  }
  .section-heading {
    gap: 24px;
  }
  .section-heading > p {
    font-size: 12px;
    max-width: 210px;
  }
  .app-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 22px;
  }
  .app-art {
    height: 235px;
  }
  .app-art img {
    width: 130px;
  }
  .collection-tools {
    align-items: flex-start;
  }
  .result-count {
    display: none;
  }
  .upcoming-card {
    padding: 22px;
  }
  .upcoming-card h3 {
    font-size: 21px;
  }
  .crossfire-word {
    height: 185px;
  }
  .crossfire-word strong {
    font-size: 49px;
  }
  .coming-label > span:last-child {
    font-size: 7px;
  }
  .studio,
  .support {
    gap: 32px;
  }
  .principles h3 {
    font-size: 21px;
  }
  .principles article {
    gap: 16px;
  }
  .cta-flower {
    font-size: 230px;
    right: 1%;
    top: 24%;
  }
  .site-footer nav {
    gap: 0 20px;
  }
  .detail-layout {
    gap: 32px;
  }
  .detail-layout .detail-tagline {
    font-size: 21px;
  }
  .detail-layout p {
    font-size: 13px;
  }
  .feature-list {
    gap: 24px;
  }
  .feature-list h3 {
    font-size: 20px;
  }
  .detail-preview {
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    padding-block: 18px;
    gap: 14px;
  }
  .brand {
    font-size: 19px;
    gap: 8px;
  }
  .brand img {
    width: 32px;
    height: 32px;
  }
  .brand-small {
    font-size: 6px;
    letter-spacing: 2px;
  }
  .site-header nav {
    gap: 16px;
    font-size: 11px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 50px;
    gap: 14px;
  }
  .hero h1 {
    font-size: clamp(46px, 10.7vw, 66px);
    margin-bottom: 26px;
  }
  .hero .eyebrow {
    font-size: 9px;
    margin-bottom: 23px;
  }
  .hero-description {
    font-size: 14px;
    max-width: 400px;
    margin-bottom: 22px;
  }
  .hero .actions {
    gap: 8px 20px;
  }
  .button {
    font-size: 12px;
    min-height: 50px;
    padding-inline: 20px;
    gap: 18px;
  }
  .text-link {
    font-size: 12px;
  }
  .platform-note {
    margin-top: 16px;
    font-size: 10px;
  }
  .hero-art {
    height: 360px;
    width: min(100%, 430px);
    margin: auto;
  }
  .hero-icon-chomp {
    width: 175px;
    left: 23%;
    top: 19%;
  }
  .hero-icon-pinky {
    width: 101px;
    right: 3%;
  }
  .hero-icon-block {
    left: 8%;
    bottom: 5%;
    width: 95px;
  }
  .hero-icon-tile {
    right: 3%;
    bottom: 10%;
    width: 104px;
  }
  .studio-stamp {
    left: 47%;
    bottom: 0;
    width: 105px;
    height: 105px;
  }
  .hero-art .orbit-one {
    width: 290px;
    height: 290px;
  }
  .hero-art .orbit-two {
    width: 280px;
    height: 170px;
  }
  .spark-one {
    left: 15%;
    top: 0;
  }
  .spark-two {
    right: 15%;
    top: 46%;
  }
  .art-caption {
    font-size: 7px;
    left: 26%;
    bottom: -25px;
  }
  .ticker .wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
    padding-block: 17px;
    font-size: 10px;
  }
  .ticker span:last-child,
  .ticker b:last-of-type {
    display: none;
  }
  .feature-section {
    padding-top: 42px;
  }
  .section-label {
    font-size: 8px;
  }
  .feature {
    grid-template-columns: 1fr;
  }
  .feature-copy {
    padding: 30px 26px 0;
  }
  .feature-copy h2 {
    font-size: 52px;
  }
  .feature-copy p:not(.eyebrow) {
    font-size: 13px;
    max-width: 360px;
  }
  .feature .actions {
    flex-direction: row;
    align-items: center;
    gap: 8px 20px;
  }
  .feature-art {
    min-height: 290px;
  }
  .feature-art > img {
    width: 180px;
  }
  .feature-rings {
    width: 240px;
  }
  .bite-note {
    right: 12%;
    bottom: 10%;
    font-size: 10px;
  }
  .section-space {
    padding-block: 54px;
  }
  .section-heading {
    display: block;
    margin-bottom: 24px;
  }
  .section-heading > p {
    max-width: none;
    margin-top: 18px;
  }
  .section-heading > p br {
    display: none;
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 18px;
  }
  h2 {
    font-size: 38px;
  }
  .filters {
    gap: 6px;
  }
  .filters button {
    font-size: 10px;
    padding: 10px 13px;
  }
  .collection-tools {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .app-grid {
    gap: 34px 16px;
  }
  .app-art {
    height: 180px;
    border-radius: 15px;
  }
  .app-art img {
    width: 96px;
  }
  .art-number {
    font-size: 9px;
    top: 14px;
    left: 14px;
  }
  .art-arrow {
    width: 28px;
    height: 28px;
    right: 10px;
    bottom: 10px;
    font-size: 13px;
  }
  .card-body {
    padding-top: 16px;
  }
  .card-meta {
    font-size: 8px;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .card-body h3 {
    font-size: 22px;
    line-height: 1.15;
    min-height: 50px;
  }
  .card-body > p {
    font-size: 12px;
    min-height: 130px;
  }
  .card-links {
    font-size: 10px;
    gap: 0;
    flex-wrap: wrap;
  }
  .card-links a {
    gap: 6px;
  }
  .upcoming-grid {
    grid-template-columns: 1fr;
  }
  .upcoming-card {
    padding: 25px;
  }
  .upcoming-card h3 {
    font-size: 24px;
  }
  .coming-label > span:last-child {
    font-size: 9px;
  }
  .abop-word i {
    right: 13%;
  }
  .crossfire-word > span {
    font-size: 21px;
  }
  .crossfire-word strong span {
    font-size: 48px;
  }
  .studio,
  .support {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .studio-intro > p:not(.eyebrow) {
    font-size: 14px;
  }
  .principles {
    padding-top: 16px;
  }
  .principles article {
    padding-block: 22px;
  }
  .principles h3 {
    font-size: 23px;
  }
  .support-details {
    padding-top: 0;
  }
  .support h2 br {
    display: none;
  }
  .support .email-address {
    margin-bottom: 0;
  }
  .final-cta .wrap {
    padding-block: 45px;
  }
  .final-cta h2 {
    font-size: 54px;
  }
  .final-cta .eyebrow {
    font-size: 8px;
  }
  .cta-flower {
    font-size: 140px;
    right: -25px;
    top: 47%;
  }
  .final-cta .button {
    position: relative;
    z-index: 1;
  }
  .site-footer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 32px 20px;
  }
  .site-footer nav {
    justify-content: flex-start;
    gap: 0 22px;
  }
  .site-footer p {
    margin-bottom: 0;
  }
  .site-footer .copyright {
    padding-top: 20px;
    margin-top: 12px;
  }
  .detail-hero {
    padding-top: 22px;
  }
  .detail-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .back-link {
    margin-bottom: 26px;
  }
  .detail-layout h1 {
    font-size: 55px;
  }
  .detail-layout p {
    font-size: 14px;
  }
  .detail-layout .platform-note {
    font-size: 10px;
  }
  .detail-art {
    aspect-ratio: 1.3;
  }
  .detail-art img {
    width: 48%;
  }
  .feature-list {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 26px;
  }
  .feature-list h3 {
    font-size: 23px;
  }
  .detail-preview {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .detail-preview figure img {
    max-height: 360px;
  }
  .detail-preview h2 br {
    display: none;
  }
}
@media (max-width: 359px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .site-header {
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
  }
  .site-header nav {
    width: 100%;
    justify-content: space-between;
  }
  .hero {
    padding-top: 28px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero-art {
    height: 310px;
  }
  .hero-icon-chomp {
    width: 150px;
    left: 20%;
  }
  .hero-icon-pinky {
    width: 83px;
  }
  .hero-icon-tile {
    width: 82px;
  }
  .hero-icon-block {
    width: 80px;
    left: 2%;
  }
  .hero-art .orbit-one {
    width: 250px;
    height: 250px;
  }
  .hero-art .orbit-two {
    width: 285px;
  }
  .studio-stamp {
    width: 93px;
    height: 93px;
  }
  .art-caption {
    left: 18%;
  }
  .app-grid {
    grid-template-columns: 1fr;
  }
  .app-art {
    height: 230px;
  }
  .app-art img {
    width: 130px;
  }
  .card-meta {
    flex-direction: row;
  }
  .card-body h3 {
    min-height: 0;
    font-size: 25px;
  }
  .card-body > p {
    min-height: 0;
    font-size: 13px;
  }
  .card-links {
    font-size: 12px;
  }
  .feature-copy {
    padding-inline: 22px;
  }
  .feature-copy h2 {
    font-size: 46px;
  }
  .privacy-list {
    grid-template-columns: 1fr;
  }
  .coming-label > span:last-child {
    font-size: 7px;
  }
  .cta-flower {
    font-size: 100px;
    right: -15px;
    top: 55%;
  }
}
@media (max-width: 359px) {
  .hero-art .orbit-two {
    width: 235px;
    height: 170px;
  }
}
@media (max-width: 800px) {
  .result-count {
    display: block;
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .hero-icon:hover {
    translate: none;
  }
  .app-art:hover img {
    transform: rotate(0);
  }
  .button:hover {
    transform: none;
  }
}
