@font-face {
  font-family: Pretendard;
  src: url("assets/fonts/pretendard-regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Pretendard;
  src: url("assets/fonts/pretendard-semibold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Pretendard;
  src: url("assets/fonts/pretendard-bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
:root {
  --white: #fff;
  --coral: #ff7e58;
  --deep-coral: #a63e25;
  --ink: #2d1b14;
  --muted: #746255;
  --sand: #f4e6d8;
  --soft: #fff4ed;
  --line: #e8d8c9;
  --cocoa: #6b3b24;
  --radius: 28px;
  font-family:
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--ink);
  background: var(--white);
  font-synthesis: none;
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
img {
  display: block;
  max-width: 100%;
  object-fit: contain;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
button,
a {
  touch-action: manipulation;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  word-break: keep-all;
}
p {
  word-break: keep-all;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--deep-coral);
  outline-offset: 6px;
}
svg.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.wrap {
  width: min(1160px, calc(100% - 80px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  top: -80px;
  left: 20px;
  background: var(--ink);
  color: white;
  padding: 14px 20px;
  z-index: 10;
}
.skip-link:focus {
  top: 12px;
}
.mobile-only {
  display: none;
}
.site-header {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -1.2px;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 15px;
  font-weight: 600;
}
.site-header nav a {
  padding-block: 14px;
}
.site-header nav .nav-launch {
  padding: 10px 14px;
  background: var(--soft);
  color: var(--deep-coral);
  border-radius: 999px;
}
.nav-launch span {
  margin-left: 8px;
  font-size: 12px;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 32px;
  padding-block: 62px 96px;
  min-height: 774px;
}
.eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: var(--deep-coral);
  display: flex;
  align-items: center;
  gap: 9px;
}
.tiny-spark {
  font-size: 24px;
  line-height: 1;
}
h1 {
  font-size: clamp(52px, 5.15vw, 74px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -3.2px;
  margin-top: 27px;
}
.coral-word {
  color: var(--coral);
}
.hero-description {
  font-size: 21px;
  line-height: 1.8;
  margin-top: 26px;
  color: var(--muted);
  letter-spacing: -0.5px;
}
.hero-release {
  margin-top: 36px;
}
.store-list {
  display: flex;
  gap: 12px;
  width: min(100%, 434px);
}
.store-state {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 4px;
  align-content: center;
  flex: 1;
  min-width: 0;
  min-height: 86px;
  padding: 16px 19px;
  border: 1px solid var(--coral);
  border-radius: 17px;
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 7px 0 #f4e6d8;
  text-align: left;
}
.store-icon {
  width: 44px;
  height: 44px;
  grid-row: 1 / 3;
  align-self: center;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 23%;
}
.store-icon img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}
.store-icon-android {
  background: #fff;
}
.store-icon-android img {
  width: 120%;
  height: 120%;
  max-width: none;
}
.store-name {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}
.store-status {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
}
.store-state[href] {
  transition:
    transform 0.2s,
    background 0.2s;
}
.store-state[href]:hover {
  transform: translateY(-3px);
  background: #ff6e45;
  border-color: #ff6e45;
}
.store-list-large {
  margin: 30px auto 0;
  width: min(100%, 454px);
}
.store-list-large .store-state {
  box-shadow: 0 7px 0 #a63e254d;
  min-height: 90px;
}
@media (max-width: 1100px) {
  .store-list {
    gap: 10px;
  }
  .store-state {
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 8px;
    padding: 14px 12px;
    min-height: 77px;
  }
  .store-icon {
    width: 34px;
    height: 34px;
  }
  .store-name {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .hero .hero-release {
    order: 3;
    margin: 3px 0 12px;
    text-align: left;
  }
  .hero-release > p {
    text-align: left;
  }
  .store-state {
    min-height: 76px;
    border-radius: 14px;
  }
  .store-list-large .store-state {
    min-height: 80px;
  }
}
@media (max-width: 360px) {
  .store-list {
    gap: 8px;
  }
  .store-state {
    padding: 13px 10px;
    grid-template-columns: 28px minmax(0, 1fr);
    column-gap: 7px;
  }
  .store-icon {
    width: 28px;
    height: 28px;
  }
  .store-name {
    font-size: 14px;
  }
  .store-status {
    font-size: 11px;
  }
}
.hero-release > p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}
.hero-art {
  height: 602px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art:before {
  content: "";
  position: absolute;
  width: 105%;
  height: 79%;
  background: #fff3e9;
  border-radius: 45% 55% 52% 48%;
  transform: rotate(-12deg);
}
.collection-board {
  position: relative;
  width: 354px;
  aspect-ratio: 2/3;
  isolation: isolate;
  filter: drop-shadow(0 22px 23px #6b3b2414);
}
.hero-board {
  transform: rotate(7deg);
}
.board-surface {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: fill;
  user-select: none;
  pointer-events: none;
}
.play-area {
  position: absolute;
  inset: 5% 7% 6%;
  overflow: hidden;
  border-radius: 18px;
}
.drifter {
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: transform;
  animation-duration: 7.2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: paused;
}
.sprite {
  display: block;
  width: 28%;
  aspect-ratio: 1;
  max-width: none;
  filter: drop-shadow(0 3px 2px #5131191a);
  user-select: none;
  animation-duration: 7.2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: inherit;
}
.collection-board[data-running="true"] .drifter,
.collection-board[data-running="true"] .sprite {
  animation-play-state: running;
}
.floating-note {
  position: absolute;
  z-index: 2;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.4px;
}
.note-top {
  top: 14px;
  right: 8px;
  transform: rotate(9deg);
  background: var(--coral);
  color: var(--ink);
  padding: 13px 18px;
  border-radius: 6px 6px 6px 0;
  box-shadow: 0 5px 0 #6b3b2407;
}
.note-bottom {
  bottom: 17px;
  left: 2px;
  background: white;
  border: 1px solid var(--line);
  padding: 14px 19px;
  transform: rotate(-8deg);
  box-shadow: 0 7px 12px #6b3b2406;
}
.little-finds {
  background: var(--coral);
  padding-block: 25px;
}
.little-finds .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.4px;
}
.little-finds [aria-hidden] {
  font-size: 26px;
  line-height: 1;
}
.section-space {
  padding-block: 116px;
}
.section-heading {
  text-align: center;
}
.section-heading .eyebrow {
  justify-content: center;
}
h2 {
  font-size: 46px;
  line-height: 1.28;
  letter-spacing: -2.2px;
  font-weight: 700;
  margin-top: 18px;
}
.section-heading > p:last-child {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 18px;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.how-card {
  min-width: 0;
}
.how-art {
  height: 304px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scan-art {
  background: #ded5c6;
}
.scan-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
}
.camera-guide {
  position: absolute;
  inset: 8% 14% 20%;
}
.camera-guide i {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: #fff;
  border-style: solid;
  filter: drop-shadow(0 1px 2px #2d1b1450);
}
.camera-guide i:nth-of-type(1) {
  top: 0;
  left: 0;
  border-width: 3px 0 0 3px;
}
.camera-guide i:nth-of-type(2) {
  top: 0;
  right: 0;
  border-width: 3px 3px 0 0;
}
.camera-guide i:nth-of-type(3) {
  bottom: 0;
  left: 0;
  border-width: 0 0 3px 3px;
}
.camera-guide i:nth-of-type(4) {
  bottom: 0;
  right: 0;
  border-width: 0 3px 3px 0;
}
.scan-shutter {
  position: absolute;
  bottom: 24px;
  left: calc(50% - 22px);
  width: 44px;
  height: 44px;
  border: 3px solid white;
  outline: 2px solid #ff7e5888;
  border-radius: 50%;
  background: var(--coral);
  display: grid;
  place-items: center;
}
.scan-shutter .icon {
  width: 20px;
  height: 20px;
  stroke: var(--ink);
}
.visual-caption {
  font-size: 11px;
  position: absolute;
  bottom: 13px;
  right: 14px;
  color: #695c4e;
  padding: 5px 8px;
  border-radius: 6px;
  background: #ffffffde;
}
.cutout-art {
  background-color: #fff7f3;
  background-image: radial-gradient(#d9c9bd 1px, transparent 1px);
  background-size: 15px 15px;
}
.cutout-art > img {
  width: 228px;
  transform: rotate(8deg);
  filter: drop-shadow(0 5px 4px #6b3b2414);
}
.cutout-label {
  position: absolute;
  top: 20px;
  font-size: 12px;
  color: var(--muted);
  background: #fff7f3;
  padding: 7px 10px;
}
.cutout-spark {
  position: absolute;
  right: 40px;
  bottom: 42px;
  font-size: 44px;
  color: var(--coral);
}
.saved-art {
  background: #e8edf1;
}
.mini-board {
  width: 164px;
  aspect-ratio: 2/3;
  position: relative;
  transform: rotate(10deg);
}
.mini-surface {
  width: 100%;
  height: 100%;
  position: absolute;
}
.mini-cutout {
  position: absolute;
  width: 46%;
  filter: drop-shadow(0 2px 2px #2d1b141a);
}
.mini-cake {
  left: 8%;
  top: 29%;
  transform: rotate(-18deg);
}
.mini-toast {
  left: 43%;
  top: 60%;
  transform: rotate(22deg);
}
.mini-bear {
  left: 43%;
  top: 7%;
  transform: rotate(10deg);
}
.saved-label {
  position: absolute;
  bottom: 29px;
  left: 22px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  background: white;
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 10px;
  transform: rotate(-8deg);
}
.saved-label .icon {
  width: 16px;
  height: 16px;
  color: var(--deep-coral);
}
.how-copy {
  padding: 25px 4px 0;
  position: relative;
}
.step {
  font-size: 12px;
  font-weight: 600;
  color: var(--deep-coral);
  letter-spacing: 1px;
}
.how-copy h3 {
  font-size: 23px;
  letter-spacing: -0.8px;
  margin-top: 10px;
}
.how-copy p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 11px;
}
.theme-section {
  background: #fff7f1;
  padding-block: 100px;
}
.theme-layout {
  display: grid;
  grid-template-columns: 1fr 1.13fr;
  gap: 94px;
  align-items: center;
}
.theme-art {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 27px;
}
.theme-preview {
  width: min(324px, 85%);
  transform: rotate(-6deg);
}
.theme-caption {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.theme-caption strong {
  background: white;
  border: 1px solid var(--line);
  padding: 8px 15px;
  border-radius: 999px;
  font-weight: 600;
}
.section-description {
  font-size: 17px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 23px;
}
.picker-hint {
  font-size: 13px;
  color: var(--muted);
  margin-top: 30px;
}
.theme-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.theme-choice {
  background: #fffdfb;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 11px 7px;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  transition:
    background 0.18s,
    border-color 0.18s;
}
.theme-choice img {
  width: 25px;
  height: 34px;
  object-fit: contain;
}
.theme-choice:hover {
  border-color: var(--deep-coral);
}
.theme-choice[aria-pressed="true"] {
  border: 2px solid var(--deep-coral);
  background: #ffe3da;
  color: var(--ink);
  font-weight: 600;
  padding: 10px 6px;
}
.coming-themes {
  margin-top: 30px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}
.coming-title {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
}
.coming-title .icon {
  width: 15px;
  height: 15px;
}
.coming-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
  margin-top: 15px;
}
.coming-theme {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.coming-picture {
  position: relative;
  background: #f2e9de;
  border-radius: 9px;
  width: 100%;
  height: 76px;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.coming-picture > img {
  height: 68px;
  width: auto;
  filter: blur(2px);
  opacity: 0.42;
}
.coming-status {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
}
.coming-status .icon {
  width: 18px;
  height: 18px;
}
.coming-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
}
.friends-section {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 90px;
  align-items: center;
}
.friends-copy h2 span {
  color: var(--deep-coral);
}
.friend-features {
  display: grid;
  gap: 23px;
  margin-top: 34px;
}
.friend-features > div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.friend-features .icon {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  color: var(--deep-coral);
}
.friend-features strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
}
.friend-features p > span {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.6;
}
.friends-art {
  position: relative;
  padding: 26px 14px 40px;
}
.friend-postcard {
  position: relative;
  background: #fff0e7;
  border: 1px solid #f2d4bf;
  box-shadow: 10px 13px 0 #f5e7dc;
  padding: 27px 29px 31px;
  transform: rotate(5deg);
  border-radius: 4px;
}
.postcard-heading {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}
.postcard-star {
  margin-left: auto;
  color: var(--coral);
  font-size: 26px;
}
.postcard-cutouts {
  position: relative;
  height: 220px;
  margin-top: 8px;
}
.postcard-cutouts img {
  position: absolute;
  width: 70%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 3px 2px #6b3b2414);
}
.postcard-cutouts img:first-child {
  left: -9%;
  top: -5%;
  transform: rotate(-15deg);
}
.postcard-cutouts img:last-child {
  right: -7%;
  top: 4%;
  transform: rotate(16deg);
}
.friend-postcard > p {
  font-size: 31px;
  font-weight: 700;
  letter-spacing: -1.3px;
  line-height: 1.35;
  margin-top: 13px;
}
.postcard-footer {
  display: block;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid #e6caba;
  margin-top: 24px;
  padding-top: 17px;
}
.friend-bubble {
  position: absolute;
  bottom: 12px;
  right: -17px;
  background: var(--coral);
  padding: 17px 24px;
  border-radius: 17px 17px 0 17px;
  transform: rotate(-7deg);
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 7px 14px #6b3b2415;
}
.friend-bubble span {
  margin-left: 16px;
}
.launch-section {
  background: var(--ink);
  color: white;
  overflow: hidden;
}
.launch-inner {
  text-align: center;
  padding-block: 85px 71px;
  position: relative;
}
.launch-inner .eyebrow {
  color: #ffb59d;
  justify-content: center;
}
.launch-inner h2 {
  font-size: 49px;
  margin-top: 20px;
}
.launch-inner > p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 23px;
  color: #dac7b9;
}
.launch-signature {
  display: block;
  color: #c0a48f;
  font-size: 12px;
  margin-top: 36px;
}
.launch-face,
.launch-toast {
  position: absolute;
  width: 175px;
  top: 28%;
  filter: drop-shadow(0 9px 10px #0003);
}
.launch-face {
  left: 0;
  transform: rotate(-19deg);
}
.launch-toast {
  right: -4px;
  transform: rotate(17deg);
  top: 39%;
}
.site-footer {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-block: 35px;
}
.site-footer .brand span {
  font-size: 23px;
}
.site-footer > p {
  color: var(--muted);
  font-size: 11px;
}
.site-footer nav {
  margin-left: auto;
  display: flex;
  gap: 23px;
  font-size: 12px;
  color: var(--muted);
}
.site-footer nav a {
  padding-block: 14px;
}
.noscript-note {
  text-align: center;
  padding: 20px;
  background: var(--soft);
  font-size: 14px;
}
/* Preserve the intrinsic ratio of resized bitmap assets. Explicit surface and
   postcard heights above still take precedence over this element rule. */
img {
  height: auto;
}
.coral-word {
  color: #d95832;
}
.theme-preview .play-area {
  inset: 8% 10%;
}
.drifter[data-cutout="bear"] {
  z-index: 2;
}
@media (min-width: 1600px) {
  .hero {
    min-height: 840px;
    gap: 70px;
  }
  .hero-art {
    height: 638px;
  }
  .hero-board {
    width: 382px;
  }
  .hero {
    padding-block: 72px 108px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero {
    gap: 10px;
    min-height: 710px;
    padding-block: 30px 70px;
  }
  .hero-art {
    height: 530px;
  }
  .hero-board {
    width: 302px;
  }
  h1 {
    font-size: 56px;
    letter-spacing: -2.6px;
  }
  .hero-description {
    font-size: 18px;
  }
  .note-top {
    right: -8px;
    top: 10px;
    font-size: 12px;
  }
  .note-bottom {
    font-size: 12px;
    left: 0;
    bottom: 0;
  }
  .hero-art:before {
    width: 80%;
    height: 73%;
    transform: rotate(-9deg);
  }
  .theme-layout {
    gap: 50px;
  }
  .friends-section {
    gap: 45px;
  }
  h2 {
    font-size: 40px;
  }
  .how-art {
    height: 272px;
  }
  .how-copy h3 {
    font-size: 21px;
  }
  .theme-choice {
    font-size: 12px;
    gap: 5px;
  }
  .launch-face,
  .launch-toast {
    width: 140px;
  }
  .little-finds .wrap {
    font-size: 15px;
    gap: 14px;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .site-header {
    height: 88px;
  }
  .site-header nav {
    gap: 22px;
    font-size: 14px;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: 630px;
    padding-block: 35px 70px;
    gap: 0;
  }
  h1 {
    font-size: 46px;
    letter-spacing: -2px;
  }
  .hero .eyebrow {
    font-size: 12px;
  }
  .tiny-spark {
    font-size: 20px;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-art {
    height: 455px;
  }
  .hero-board {
    width: 258px;
  }
  .note-top {
    font-size: 11px;
    padding: 10px;
    right: -10px;
  }
  .note-bottom {
    font-size: 10px;
    padding: 10px;
    left: -9px;
  }
  .hero-release > p {
    font-size: 11px;
  }
  .little-finds .wrap {
    font-size: 13px;
    gap: 12px;
  }
  .little-finds [aria-hidden] {
    font-size: 20px;
  }
  .section-space {
    padding-block: 85px;
  }
  .how-grid {
    gap: 15px;
  }
  .how-art {
    height: 226px;
  }
  .cutout-art > img {
    width: 173px;
  }
  .cutout-label {
    font-size: 10px;
    top: 12px;
  }
  .cutout-spark {
    right: 20px;
    bottom: 24px;
    font-size: 35px;
  }
  .mini-board {
    width: 123px;
  }
  .saved-label {
    left: 12px;
    font-size: 11px;
    bottom: 18px;
    padding: 8px 10px;
  }
  .how-copy h3 {
    font-size: 19px;
  }
  .how-copy p {
    font-size: 14px;
  }
  .theme-section {
    padding-block: 78px;
  }
  .theme-layout {
    gap: 35px;
    grid-template-columns: 0.9fr 1.1fr;
  }
  h2 {
    font-size: 34px;
    letter-spacing: -1.5px;
  }
  .section-description {
    font-size: 15px;
  }
  .theme-picker {
    gap: 7px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .theme-choice {
    justify-content: flex-start;
    padding-left: 11px;
  }
  .theme-choice[aria-pressed="true"] {
    padding-left: 10px;
  }
  .coming-grid {
    gap: 5px;
  }
  .coming-picture {
    height: 63px;
  }
  .friends-section {
    gap: 25px;
  }
  .friend-postcard {
    padding: 20px;
  }
  .postcard-cutouts {
    height: 174px;
  }
  .friend-postcard > p {
    font-size: 26px;
  }
  .postcard-heading {
    font-size: 11px;
  }
  .postcard-footer {
    font-size: 10px;
  }
  .friend-bubble {
    right: -8px;
    font-size: 13px;
    padding: 13px 16px;
  }
  .friend-features {
    gap: 20px;
  }
  .friend-features strong {
    font-size: 14px;
  }
  .friend-features p > span {
    font-size: 13px;
  }
  .launch-inner h2 {
    font-size: 42px;
  }
  .launch-face,
  .launch-toast {
    width: 105px;
  }
  .launch-face {
    left: -22px;
  }
  .launch-toast {
    right: -22px;
  }
  .site-footer {
    gap: 18px;
  }
  .site-footer nav {
    gap: 16px;
    font-size: 11px;
  }
}
@media (max-width: 600px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 78px;
  }
  .brand img {
    width: 35px;
    height: 35px;
  }
  .brand span {
    font-size: 23px;
  }
  .site-header nav {
    gap: 18px;
    font-size: 12px;
  }
  .site-header .nav-launch {
    display: none;
  }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 21px;
    padding-block: 32px 76px;
    min-height: unset;
  }
  .hero-copy {
    display: contents;
  }
  .hero .eyebrow {
    font-size: 13px;
    order: 0;
  }
  .hero h1 {
    order: 1;
    margin-top: -5px;
    font-size: clamp(37px, 11.8vw, 64px);
    line-height: 1.13;
    letter-spacing: -2px;
  }
  .hero-description {
    order: 2;
    font-size: 17px;
    line-height: 1.7;
    margin-top: -3px;
  }
  .hero-art {
    order: 4;
    height: 478px;
    max-width: 360px;
    width: 100%;
    align-self: center;
    margin-block: 9px 15px;
  }
  .hero-board {
    width: 273px;
  }
  .hero-art:before {
    width: 103%;
    height: 82%;
  }
  .note-top {
    right: 0;
    top: 0;
    font-size: 11px;
    padding: 11px 13px;
  }
  .note-bottom {
    left: -2px;
    bottom: 0;
    font-size: 11px;
    padding: 12px 14px;
  }
  .hero-release {
    order: 5;
    margin-top: 21px;
    text-align: center;
  }
  .hero-release > p {
    font-size: 12px;
    margin-top: 14px;
  }
  .little-finds {
    padding: 20px 0;
  }
  .little-finds .wrap {
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 370px;
    font-size: 13px;
    line-height: 1.7;
  }
  .little-finds [aria-hidden] {
    font-size: 20px;
  }
  .little-finds [aria-hidden]:nth-child(4) {
    display: none;
  }
  .little-finds span:last-child {
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 12px;
  }
  .section-space {
    padding-block: 73px;
  }
  .section-heading {
    text-align: left;
  }
  .section-heading .eyebrow {
    justify-content: flex-start;
  }
  .eyebrow {
    font-size: 12px;
  }
  h2 {
    font-size: 33px;
    letter-spacing: -1.5px;
    line-height: 1.3;
    margin-top: 15px;
  }
  .section-heading > p:last-child {
    font-size: 15px;
    margin-top: 16px;
  }
  .mobile-only {
    display: initial;
  }
  .how-grid {
    grid-template-columns: 1fr;
    gap: 37px;
    margin-top: 34px;
  }
  .how-art {
    height: 282px;
  }
  .scan-art {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    min-height: 282px;
  }
  .cutout-art > img {
    width: 223px;
  }
  .cutout-label {
    font-size: 12px;
    top: 19px;
  }
  .cutout-spark {
    right: 43px;
    bottom: 30px;
    font-size: 44px;
  }
  .mini-board {
    width: 153px;
  }
  .saved-label {
    font-size: 13px;
    left: 27px;
    bottom: 22px;
  }
  .how-copy {
    padding-top: 19px;
    padding-left: 42px;
  }
  .step {
    position: absolute;
    left: 3px;
    top: 25px;
    font-size: 12px;
  }
  .how-copy h3 {
    font-size: 22px;
    margin-top: 0;
  }
  .how-copy p {
    font-size: 15px;
    margin-top: 9px;
  }
  .theme-section {
    padding-block: 68px;
  }
  .theme-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .theme-copy {
    display: contents;
  }
  .theme-copy > .eyebrow {
    order: 0;
    align-self: flex-start;
  }
  .theme-copy > h2 {
    order: 1;
    align-self: flex-start;
    margin-top: -27px;
  }
  .theme-copy > .section-description {
    order: 2;
    align-self: flex-start;
    margin-top: -24px;
    font-size: 15px;
  }
  .theme-art {
    order: 3;
    width: 100%;
    gap: 16px;
    margin-top: -8px;
  }
  .theme-preview {
    width: 245px;
  }
  .theme-caption {
    font-size: 12px;
  }
  .theme-caption strong {
    padding: 7px 12px;
  }
  .picker-hint {
    order: 4;
    margin-top: -9px;
    font-size: 12px;
  }
  .theme-picker {
    order: 5;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
    margin-top: -29px;
  }
  .theme-choice {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    min-height: 89px;
    padding: 10px 5px;
    font-size: 12px;
  }
  .theme-choice[aria-pressed="true"] {
    padding: 9px 4px;
  }
  .theme-choice img {
    width: 29px;
    height: 38px;
  }
  .coming-themes {
    order: 6;
    width: 100%;
    margin-top: -15px;
    padding-top: 22px;
  }
  .coming-grid {
    gap: 7px;
  }
  .coming-picture {
    height: 74px;
  }
  .coming-title {
    font-size: 12px;
  }
  .friends-section {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }
  .friends-copy h2 {
    font-size: 34px;
  }
  .friend-features strong {
    font-size: 15px;
  }
  .friend-features p > span {
    font-size: 13px;
  }
  .friend-features {
    margin-top: 28px;
    gap: 23px;
  }
  .friends-art {
    padding: 20px 12px 33px;
    max-width: 360px;
    width: 100%;
    align-self: center;
  }
  .friend-postcard {
    padding: 24px;
  }
  .postcard-heading {
    font-size: 12px;
  }
  .postcard-cutouts {
    height: 196px;
  }
  .friend-postcard > p {
    font-size: 29px;
  }
  .postcard-footer {
    font-size: 11px;
  }
  .friend-bubble {
    right: 3px;
    font-size: 14px;
    padding: 14px 19px;
  }
  .launch-inner {
    padding-block: 68px 57px;
  }
  .launch-inner h2 {
    font-size: 37px;
  }
  .launch-inner > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.8;
  }
  .launch-face,
  .launch-toast {
    width: 78px;
    opacity: 0.9;
  }
  .launch-face {
    left: -39px;
    top: 18%;
    transform: rotate(-25deg);
  }
  .launch-toast {
    right: -35px;
    top: 44%;
    transform: rotate(22deg);
  }
  .launch-signature {
    font-size: 11px;
    margin-top: 33px;
  }
  .site-footer {
    flex-wrap: wrap;
    padding-block: 30px;
    gap: 18px;
  }
  .site-footer .brand span {
    font-size: 22px;
  }
  .site-footer > p {
    margin-left: auto;
    font-size: 10px;
  }
  .site-footer nav {
    width: 100%;
    margin: 0;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding-top: 7px;
    font-size: 11px;
  }
  .site-footer .brand img {
    width: 31px;
    height: 31px;
  }
}
@media (max-width: 360px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 37px;
  }
  .hero-art {
    height: 444px;
  }
  .hero-board {
    width: 250px;
  }
  .note-bottom {
    font-size: 10px;
  }
  .site-header nav {
    gap: 12px;
    font-size: 11px;
  }
  h2 {
    font-size: 30px;
  }
}
@media (max-width: 600px) {
  .hero-art:before {
    width: 88%;
    height: 76%;
    transform: rotate(-9deg);
  }
  .friends-art {
    width: calc(100% - 16px);
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .drifter,
  .sprite {
    will-change: auto;
  }
}

#themes-title {
  font-size: clamp(20px, 5.5vw, 34px);
  white-space: nowrap;
}
