:root {
  color-scheme: light;
  --bg: #fff5f5;
  --bg-2: #fde8f0;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-strong: rgba(255, 255, 255, 0.94);
  --panel-border: rgba(255, 180, 200, 0.26);
  --text: #4a3050;
  --muted: rgba(74, 48, 80, 0.64);
  --soft: rgba(74, 48, 80, 0.06);
  --accent: #ff7eb3;
  --accent-2: #ffe066;
  --accent-3: #6bcb77;
  --accent-4: #7ec8e3;
  --shadow: 0 28px 90px rgba(180, 140, 160, 0.2);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Noto Sans SC", system-ui, sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 22% 18%, rgba(126, 200, 227, 0.24), transparent 28%),
    radial-gradient(circle at 78% 12%, rgba(255, 126, 179, 0.2), transparent 24%),
    radial-gradient(circle at 50% 85%, rgba(107, 203, 119, 0.16), transparent 30%),
    radial-gradient(circle at 85% 70%, rgba(255, 224, 102, 0.18), transparent 22%),
    linear-gradient(180deg, #fff5f5 0%, #fde8f0 30%, #e8f4fd 70%, #f0faf3 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
}

body::before {
  top: -8%;
  left: -6%;
  width: 34vw;
  height: 34vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 200, 227, 0.18), transparent 68%);
  filter: blur(10px);
}

body::after {
  right: -4%;
  bottom: -10%;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 126, 179, 0.16), transparent 70%);
  filter: blur(16px);
}

button {
  font: inherit;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  position: relative;
  z-index: 1;
}

.stage {
  position: relative;
  width: min(1080px, 100%);
  padding: clamp(20px, 4vw, 44px);
  border-radius: 36px;
  border: 1px solid rgba(255, 180, 200, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 245, 250, 0.9));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

/* ---- Stars background ---- */
.sky-dots {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 180, 100, 0.32) 1px, transparent 1px),
    radial-gradient(rgba(126, 200, 227, 0.28) 1.5px, transparent 1.5px),
    radial-gradient(rgba(255, 224, 102, 0.3) 1px, transparent 1px);
  background-size: 32px 32px, 48px 48px, 40px 40px;
  background-position: 0 0, 16px 8px, 8px 20px;
  opacity: 0.6;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 85%);
  pointer-events: none;
}

/* ---- Floating orbs ---- */
.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.85;
  pointer-events: none;
  animation: float 10s ease-in-out infinite;
}

.orb-one {
  top: -46px;
  left: -18px;
  width: 124px;
  height: 124px;
  background: rgba(126, 200, 227, 0.28);
}

.orb-two {
  top: 24px;
  right: 12%;
  width: 160px;
  height: 160px;
  background: rgba(255, 126, 179, 0.2);
  animation-delay: -2s;
}

.orb-three {
  bottom: -44px;
  right: 1%;
  width: 100px;
  height: 100px;
  background: rgba(107, 203, 119, 0.22);
  animation-delay: -5s;
}

.orb-four {
  bottom: 12%;
  left: 8%;
  width: 88px;
  height: 88px;
  background: rgba(255, 224, 102, 0.2);
  animation-delay: -7s;
}

/* ---- Hero ---- */
.hero {
  max-width: 760px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.reveal__eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", "Noto Serif SC", Georgia, serif;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.96;
  max-width: 11ch;
}

.lead {
  max-width: 66ch;
  margin: 18px 0 0;
  font-size: clamp(1rem, 1.9vw, 1.15rem);
  line-height: 1.72;
  color: var(--muted);
}

/* ---- Gift shell ---- */
.gift-shell {
  display: grid;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.gift-card,
.reveal__panel {
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: 0 18px 60px rgba(180, 140, 160, 0.16);
  backdrop-filter: blur(18px);
}

.gift-card {
  padding: clamp(22px, 4vw, 32px);
}

.gift-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.progress {
  border-radius: 999px;
  background: rgba(255, 126, 179, 0.08);
  border: 1px solid rgba(255, 126, 179, 0.14);
}

.progress {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--muted);
}

.progress__value {
  color: var(--text);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 18px;
}

/* ---- Scene (gift box stage) ---- */
.scene {
  position: relative;
  width: min(100%, 840px);
  margin: 0 auto;
  aspect-ratio: 1.82 / 1;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 200, 220, 0.3);
  background:
    linear-gradient(180deg,
      rgba(210, 235, 252, 0.88) 0%,
      rgba(255, 235, 242, 0.78) 36%,
      rgba(220, 245, 228, 0.72) 68%,
      rgba(255, 245, 235, 0.6) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 24px 50px rgba(180, 140, 160, 0.14);
}

.scene__halo {
  position: absolute;
  inset: 8% 14% auto;
  height: 64%;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255, 255, 255, 0.54) 0%,
    rgba(255, 224, 102, 0.24) 30%,
    rgba(255, 126, 179, 0.16) 54%,
    rgba(126, 200, 227, 0.12) 72%,
    transparent 100%);
  filter: blur(14px);
}

/* ---- Gift scene elements ---- */
.gift-scene {
  position: absolute;
  inset: 10% 15% 14%;
}

.gift-scene__shadow {
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: 42%;
  height: 10%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(160, 140, 180, 0.16);
  filter: blur(12px);
}

.gift-scene__box,
.gift-scene__ribbon,
.gift-scene__lid,
.gift-scene__base,
.gift-scene__paper,
.gift-scene__surprise,
.gift-scene__spark,
.gift-scene__label,
.scene__note,
.balloon,
.balloon__string,
.balloon__knot {
  position: absolute;
}

/* ---- Balloons ---- */
.balloon {
  width: 44px;
  height: 54px;
  border-radius: 50% 50% 50% 50% / 44% 44% 56% 56%;
  pointer-events: none;
  animation: balloon-float 6s ease-in-out infinite;
}

.balloon--pink {
  top: 12%;
  left: 6%;
  background: radial-gradient(circle at 40% 34%, rgba(255, 255, 255, 0.5), transparent 50%),
    linear-gradient(160deg, #ff9ec4, #ff7eb3);
  box-shadow: 0 4px 12px rgba(255, 126, 179, 0.3);
  animation-delay: 0s;
}

.balloon--yellow {
  top: 6%;
  right: 8%;
  background: radial-gradient(circle at 36% 30%, rgba(255, 255, 255, 0.5), transparent 50%),
    linear-gradient(160deg, #fff0a0, #ffe066);
  box-shadow: 0 4px 12px rgba(255, 224, 102, 0.3);
  animation-delay: -2s;
}

.balloon--mint {
  top: 20%;
  left: 84%;
  background: radial-gradient(circle at 40% 34%, rgba(255, 255, 255, 0.5), transparent 50%),
    linear-gradient(160deg, #8ed9a0, #6bcb77);
  box-shadow: 0 4px 12px rgba(107, 203, 119, 0.3);
  animation-delay: -4s;
}

.balloon__string {
  width: 1px;
  height: 40px;
  pointer-events: none;
}

.balloon--pink .balloon__string {
  top: 54px;
  left: 50%;
  background: rgba(180, 140, 160, 0.4);
}

.balloon--yellow .balloon__string {
  top: 54px;
  left: 50%;
  background: rgba(180, 160, 120, 0.4);
}

.balloon--mint .balloon__string {
  top: 54px;
  left: 50%;
  background: rgba(140, 170, 150, 0.4);
}

.balloon__knot {
  width: 8px;
  height: 10px;
  pointer-events: none;
}

.balloon--pink .balloon__knot {
  top: 48px;
  left: calc(50% - 4px);
  border-radius: 50%;
  background: #ff6a9e;
}

.balloon--yellow .balloon__knot {
  top: 48px;
  left: calc(50% - 4px);
  border-radius: 50%;
  background: #ffd23f;
}

.balloon--mint .balloon__knot {
  top: 48px;
  left: calc(50% - 4px);
  border-radius: 50%;
  background: #4daf6e;
}

/* ---- Gift box ---- */
.gift-scene__box {
  left: 50%;
  bottom: 14%;
  width: min(74%, 460px);
  aspect-ratio: 1.24 / 1;
  transform: translateX(-50%);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  touch-action: manipulation;
  outline: none;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.gift-scene__base {
  inset: auto 8% 4% 8%;
  height: 52%;
  border-radius: 26px 26px 30px 30px;
  background:
    linear-gradient(180deg, #ff9ec4, #ff7eb3 40%, #ff5c8a);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 26px 40px rgba(180, 120, 150, 0.2);
}

.gift-scene__lid {
  inset: 2% 5% auto 5%;
  height: 32%;
  border-radius: 22px;
  background:
    linear-gradient(180deg, #fff2a8, #ffe066 40%, #ffd23f);
  transform-origin: center 92%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 14px 28px rgba(180, 140, 100, 0.18);
  transform: rotateX(0deg) translateZ(2px);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease;
}

/* White polka dots on the lid */
.gift-scene__lid::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 14px;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.5) 3px, transparent 3px);
  background-size: 22px 22px;
  background-position: 4px 4px;
  opacity: 0.6;
  pointer-events: none;
}

.gift-scene__ribbon {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 225, 235, 0.88));
  box-shadow:
    0 0 20px rgba(255, 200, 220, 0.24),
    inset 0 0 8px rgba(255, 255, 255, 0.6);
  transition:
    transform 0.4s cubic-bezier(0.2, 1, 0.22, 1),
    opacity 0.25s ease,
    filter 0.25s ease;
}

.gift-scene__ribbon--vertical {
  width: 14%;
  inset: 0 43% 4% 43%;
  border-radius: 999px;
}

.gift-scene__ribbon--left {
  transform: translateX(-12px);
}

.gift-scene__ribbon--right {
  transform: translateX(12px);
}

.gift-scene__ribbon--horizontal {
  height: 14%;
  inset: 29% 5% 40% 5%;
  border-radius: 999px;
}

.gift-scene__paper {
  left: 50%;
  bottom: 14%;
  width: 54%;
  height: 36%;
  transform: translateX(-50%);
  border-radius: 20px 20px 26px 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 240, 0.94)),
    #fff;
  box-shadow: 0 12px 24px rgba(180, 140, 160, 0.12);
  opacity: 0.28;
  transition:
    transform 0.45s cubic-bezier(0.2, 1, 0.22, 1),
    opacity 0.25s ease;
}

.gift-scene__paper::before,
.gift-scene__paper::after {
  content: "";
  position: absolute;
  inset: 10% 14%;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 126, 179, 0.14), rgba(126, 200, 227, 0.1));
}

.gift-scene__paper--left {
  transform: translateX(-50%) rotate(-4deg);
}

.gift-scene__paper--right {
  transform: translateX(-50%) rotate(4deg);
}

.gift-scene__surprise {
  left: 50%;
  bottom: 20%;
  width: 42%;
  min-height: 88px;
  transform: translateX(-50%) translateY(34px) scale(0.88);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.5), transparent 44%),
    linear-gradient(160deg, #ff7eb3, #ffe066 50%, #6bcb77);
  box-shadow: 0 18px 28px rgba(180, 140, 160, 0.16);
  opacity: 0;
  transition:
    transform 0.5s cubic-bezier(0.2, 1, 0.22, 1),
    opacity 0.3s ease,
    box-shadow 0.3s ease;
}

.gift-scene__surprise::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.6);
}

.gift-scene__surprise-text {
  position: absolute;
  inset: 50% 12% auto;
  transform: translateY(-50%);
  text-align: center;
  color: #5a3050;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.gift-scene__spark {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-2);
  opacity: 0.92;
  box-shadow: 0 0 20px rgba(255, 224, 102, 0.32);
}

.gift-scene__spark--one {
  top: 4%;
  left: 18%;
  background: var(--accent);
  box-shadow: 0 0 20px rgba(255, 126, 179, 0.3);
}

.gift-scene__spark--two {
  top: 10%;
  right: 14%;
  background: var(--accent-4);
  box-shadow: 0 0 20px rgba(126, 200, 227, 0.3);
}

.gift-scene__spark--three {
  top: 14%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-3);
  box-shadow: 0 0 20px rgba(107, 203, 119, 0.3);
}

.gift-scene__label {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 126, 179, 0.24);
  color: #5a3050;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px rgba(255, 126, 179, 0.12);
}

.scene__note {
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  font-size: 0.92rem;
  color: #7a5a80;
  font-weight: 700;
}

.gift-scene__box:focus-visible {
  filter: drop-shadow(0 0 0.8rem rgba(255, 126, 179, 0.45));
}

/* ---- Gift box states ---- */
.gift-scene__box.is-arming {
  animation: box-bounce 0.36s ease-out;
}

.gift-scene__box.is-arming .gift-scene__lid {
  animation: wobble 0.38s ease-in-out;
}

.gift-scene__box.is-open .gift-scene__lid {
  transform: translateY(-56px) rotateX(74deg) rotateZ(-3deg);
}

.gift-scene__box.is-open .gift-scene__base {
  transform: translateY(4px) scaleY(0.98);
}

.gift-scene__box.is-open .gift-scene__label {
  opacity: 0;
  transform: translateX(-50%) scale(0.85);
}

.gift-scene__box.is-open .gift-scene__paper {
  opacity: 1;
  transform: translateX(-50%) translateY(-18px) scale(1.03);
}

.gift-scene__box.is-open .gift-scene__paper--left {
  transform: translateX(-50%) translate(-54px, -14px) rotate(-14deg);
}

.gift-scene__box.is-open .gift-scene__paper--right {
  transform: translateX(-50%) translate(54px, -14px) rotate(14deg);
}

.gift-scene__box.is-open .gift-scene__surprise {
  opacity: 1;
  transform: translateX(-50%) translateY(-52px) scale(1);
  box-shadow: 0 24px 34px rgba(180, 140, 160, 0.2);
}

.gift-scene__box.is-open .gift-scene__spark {
  opacity: 1;
}

/* Stage 1: ribbons loosening */
.gift-scene__box[data-stage="1"] .gift-scene__ribbon--left {
  transform: translateX(-30px) rotate(-18deg);
  opacity: 0.88;
}

.gift-scene__box[data-stage="1"] .gift-scene__ribbon--right {
  transform: translateX(30px) rotate(18deg);
  opacity: 0.88;
}

.gift-scene__box[data-stage="1"] .gift-scene__ribbon--horizontal {
  transform: scaleX(0.88);
}

.gift-scene__box[data-stage="1"] .gift-scene__paper {
  opacity: 0.42;
  transform: translateX(-50%) translateY(-10px) scale(0.98);
}

/* Stage 2: lid starting to lift */
.gift-scene__box[data-stage="2"] .gift-scene__lid {
  transform: translateY(-24px) rotateX(36deg) rotateZ(-1deg);
}

.gift-scene__box[data-stage="2"] .gift-scene__paper {
  opacity: 0.82;
  transform: translateX(-50%) translateY(-22px) scale(1.01);
}

.gift-scene__box[data-stage="2"] .gift-scene__surprise {
  opacity: 0.68;
  transform: translateX(-50%) translateY(-20px) scale(0.96);
}

/* Stage 3: fully open */
.gift-scene__box[data-stage="3"] .gift-scene__lid {
  transform: translateY(-56px) rotateX(74deg) rotateZ(-3deg);
}

.gift-scene__box[data-stage="3"] .gift-scene__surprise {
  opacity: 1;
  transform: translateX(-50%) translateY(-54px) scale(1);
}

.gift-scene__box[data-stage="3"] .gift-scene__paper {
  opacity: 1;
  transform: translateX(-50%) translateY(-20px) scale(1.02);
}

.gift-scene__box[data-stage="3"] .gift-scene__surprise-text {
  letter-spacing: 0.06em;
}

.gift-card.is-open {
  border-color: rgba(255, 126, 179, 0.24);
  box-shadow: 0 18px 70px rgba(180, 140, 160, 0.18);
}

/* ---- Hint & meter ---- */
.hint {
  margin: 18px auto 0;
  max-width: 52ch;
  text-align: center;
  color: var(--muted);
  line-height: 1.7;
}

.meter {
  width: min(100%, 840px);
  height: 8px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: rgba(255, 126, 179, 0.1);
  overflow: hidden;
}

.meter__bar {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3), var(--accent-4));
  transition: width 0.35s ease;
}

/* ---- Reveal panel ---- */
.reveal {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  transition: max-height 0.72s ease, opacity 0.48s ease, transform 0.48s ease;
}

.reveal.is-visible {
  max-height: 1200px;
  opacity: 1;
  transform: translateY(0);
}

.reveal__panel {
  padding: clamp(22px, 4vw, 32px);
}

.reveal__panel h3 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.04;
  max-width: 12ch;
}

.reveal__text {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.76;
  max-width: 60ch;
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.note-card {
  min-height: 160px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 126, 179, 0.06), rgba(126, 200, 227, 0.04));
  border: 1px solid rgba(255, 126, 179, 0.12);
}

.note-card__tag {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.note-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

/* ---- CTA button ---- */
.cta {
  margin-top: 22px;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
  box-shadow: 0 18px 32px rgba(255, 126, 179, 0.22);
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 22px 36px rgba(255, 126, 179, 0.3);
  filter: brightness(1.04);
}

/* ---- Keyframes ---- */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(14px);
  }
}

@keyframes balloon-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(1.5deg);
  }
  50% {
    transform: translateY(-16px) rotate(0deg);
  }
  75% {
    transform: translateY(-6px) rotate(-1.5deg);
  }
}

@keyframes wobble {
  0%,
  100% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(-5deg);
  }
  70% {
    transform: rotate(4deg);
  }
}

@keyframes box-bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) scale(1);
  }
  45% {
    transform: translateX(-50%) translateY(-4px) scale(1.015);
  }
}

/* ---- Sparkle particles ---- */
.sparkle {
  position: fixed;
  top: -16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
  animation: fall linear forwards;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.4);
}

@keyframes fall {
  to {
    transform: translate3d(var(--drift, 0px), 110vh, 0) rotate(720deg);
    opacity: 0;
  }
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .scene {
    aspect-ratio: 1.18 / 1;
  }

  .gift-scene {
    inset: 12% 10% 16%;
  }

  .balloon--mint {
    left: 76%;
  }
}

@media (max-width: 720px) {
  .page {
    padding: 16px;
  }

  .stage {
    padding: 18px;
    border-radius: 28px;
  }

  .gift-topline {
    align-items: flex-start;
  }

  .note-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 10ch;
  }

  .scene {
    aspect-ratio: 1.1 / 1;
  }

  .balloon {
    width: 34px;
    height: 42px;
  }

  .balloon__string {
    height: 30px;
  }

  .balloon--mint {
    left: 72%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .orb,
  .balloon {
    transform: none;
  }
}
