:root {
  color-scheme: light;
  --bg: #fff1f6;
  --paper: #fffdf8;
  --paper-strong: #fff7e7;
  --ink: #222326;
  --muted: #76716a;
  --line: #e7dfd1;
  --accent: #ff7aa8;
  --accent-strong: #df4f83;
  --blue: #58a8e8;
  --green: #52b781;
  --yellow: #ffd45c;
  --box: #c99058;
  --box-dark: #9f6b3e;
  --shadow: 0 24px 70px rgba(66, 45, 25, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 168, 202, 0.52), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(255, 208, 226, 0.62), transparent 28%),
    radial-gradient(circle at 70% 86%, rgba(255, 125, 171, 0.34), transparent 30%),
    linear-gradient(135deg, #fff9fc 0%, var(--bg) 45%, #ffe1ee 100%);
  background-size: 130% 130%, 150% 150%, 140% 140%, 100% 100%;
  animation: pinkFlow 12s ease-in-out infinite alternate;
  color: var(--ink);
  font-family: "Arial Rounded MT Bold", "幼圆", "YouYuan", "Microsoft YaHei", "PingFang SC", "Segoe UI", Arial, sans-serif;
}

button {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  padding: 28px;
}

.intro {
  width: min(1160px, 100%);
  min-height: calc(100vh - 56px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 1.14fr);
  gap: 24px;
  align-items: start;
  align-content: center;
  padding-top: clamp(34px, 5vh, 74px);
  padding-bottom: 18px;
  position: relative;
}

.brand-mark {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transform: translateY(-10px);
  animation: brandIn 760ms ease 260ms forwards;
}

.brand-mark img {
  width: min(220px, 44vw);
  height: auto;
  display: block;
}

.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-decor img {
  position: absolute;
  width: var(--decor-size, 118px);
  height: auto;
  opacity: 0;
  transform: translateY(30px) scale(0.94);
  filter:
    drop-shadow(0 22px 24px rgba(151, 65, 103, 0.18))
    drop-shadow(0 5px 0 rgba(255, 255, 255, 0.72));
  animation:
    decorFloatIn 940ms cubic-bezier(0.18, 0.9, 0.22, 1) var(--decor-delay, 1800ms) forwards,
    decorDrift var(--decor-speed, 6200ms) ease-in-out calc(var(--decor-delay, 1800ms) + 940ms) infinite;
}

.hero-decor-left .decor-01 {
  --decor-size: clamp(112px, 8vw, 162px);
  --decor-delay: 1880ms;
  --decor-speed: 6800ms;
  left: clamp(-320px, -18vw, -198px);
  top: 18%;
  rotate: -10deg;
}

.hero-decor-left .decor-02 {
  --decor-size: clamp(82px, 6vw, 122px);
  --decor-delay: 2040ms;
  --decor-speed: 5600ms;
  left: clamp(-238px, -13vw, -152px);
  top: 45%;
  rotate: 8deg;
}

.hero-decor-left .decor-03 {
  --decor-size: clamp(96px, 7vw, 142px);
  --decor-delay: 2220ms;
  --decor-speed: 7000ms;
  left: clamp(-356px, -20vw, -224px);
  bottom: 18%;
  rotate: -6deg;
}

.hero-decor-left .decor-04 {
  --decor-size: clamp(108px, 8vw, 154px);
  --decor-delay: 2380ms;
  --decor-speed: 6400ms;
  left: clamp(-194px, -11vw, -126px);
  bottom: 8%;
  rotate: 9deg;
}

.hero-decor-right .decor-05 {
  --decor-size: clamp(104px, 8vw, 152px);
  --decor-delay: 1940ms;
  --decor-speed: 6500ms;
  right: clamp(-312px, -18vw, -196px);
  top: 16%;
  rotate: 8deg;
}

.hero-decor-right .decor-06 {
  --decor-size: clamp(108px, 8vw, 156px);
  --decor-delay: 2120ms;
  --decor-speed: 5900ms;
  right: clamp(-230px, -13vw, -148px);
  top: 42%;
  rotate: -8deg;
}

.hero-decor-right .decor-07 {
  --decor-size: clamp(96px, 7vw, 140px);
  --decor-delay: 2300ms;
  --decor-speed: 7200ms;
  right: clamp(-350px, -20vw, -218px);
  bottom: 20%;
  rotate: 6deg;
}

.hero-decor-right .decor-08 {
  --decor-size: clamp(82px, 6vw, 116px);
  --decor-delay: 2460ms;
  --decor-speed: 6100ms;
  right: clamp(-168px, -9vw, -104px);
  bottom: 10%;
  rotate: -7deg;
}

.stage {
  position: relative;
  z-index: 1;
  min-height: 510px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  grid-column: 1 / -1;
  padding-top: 68px;
  text-align: center;
}

.pretitle,
.subtitle,
.panel-head p,
.quote-card span {
  color: var(--muted);
}

.pretitle {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  opacity: 0;
  animation: fadeFloat 820ms ease 760ms forwards;
}

.brand-title {
  margin: 0;
  font-size: clamp(46px, 8.4vw, 116px);
  font-weight: 1000;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(22px);
  animation:
    titleEnter 1200ms cubic-bezier(0.2, 0.9, 0.2, 1) 940ms forwards,
    titleBreathe 2800ms ease-in-out 2400ms infinite;
}

.subtitle {
  width: min(720px, 100%);
  margin: 26px 0 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.8;
  opacity: 0;
  animation: fadeFloat 840ms ease 1500ms forwards;
}

.wheel-gallery {
  width: min(760px, 100%);
  height: 286px;
  position: relative;
  margin-top: 28px;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeFloat 760ms ease 1780ms forwards;
}

.wheel-gallery::before {
  content: "";
  width: min(520px, 86%);
  height: 104px;
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(184, 84, 126, 0.1);
  filter: blur(12px);
}

.wheel-item {
  width: 190px;
  height: 218px;
  display: grid;
  grid-template-rows: 1fr auto;
  justify-items: center;
  gap: 8px;
  position: absolute;
  left: 50%;
  top: 18px;
  margin: 0;
  padding: 10px 10px 12px;
  border: 1px solid rgba(255, 175, 205, 0.64);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 18px 44px rgba(151, 65, 103, 0.13);
  transform-origin: center 170px;
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.2, 0.9, 0.2, 1),
    filter 520ms ease,
    box-shadow 180ms ease;
  backdrop-filter: blur(12px);
}

.wheel-item img {
  max-width: 100%;
  width: 100%;
  height: 166px;
  display: block;
  border-radius: 6px;
  object-fit: cover;
  filter: drop-shadow(0 14px 18px rgba(74, 52, 30, 0.13));
  transition: transform 180ms ease, filter 180ms ease;
}

.wheel-item figcaption {
  color: var(--ink);
  font-size: 15px;
  font-weight: 1000;
}

.wheel-item:hover {
  box-shadow: 0 24px 54px rgba(151, 65, 103, 0.18);
  z-index: 5;
}

.wheel-item:hover img {
  transform: scale(1.07);
  filter: drop-shadow(0 18px 20px rgba(74, 52, 30, 0.18));
}

.wheel-pos-0 {
  z-index: 3;
  opacity: 1;
  filter: none;
  transform: translateX(-50%) translateY(0) rotate(0deg) scale(1);
}

.wheel-pos-1 {
  z-index: 2;
  opacity: 0.72;
  filter: saturate(0.92);
  transform: translateX(-50%) translate(190px, 42px) rotate(8deg) scale(0.78);
}

.wheel-pos-2 {
  z-index: 1;
  opacity: 0.72;
  filter: saturate(0.92);
  transform: translateX(-50%) translate(-190px, 42px) rotate(-8deg) scale(0.78);
}

.wheel-pos-3 {
  z-index: 1;
  opacity: 0.42;
  filter: saturate(0.88) blur(0.2px);
  transform: translateX(-50%) translate(322px, 78px) rotate(15deg) scale(0.62);
}

.wheel-pos-4 {
  z-index: 1;
  opacity: 0.42;
  filter: saturate(0.88) blur(0.2px);
  transform: translateX(-50%) translate(-322px, 78px) rotate(-15deg) scale(0.62);
}

.wheel-hidden {
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(92px) scale(0.4);
}

.choice-panel,
.carton-preview {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeFloat 860ms ease 1980ms forwards;
}

.choice-panel {
  align-self: start;
  padding: 22px;
  border: 1px solid rgba(231, 223, 209, 0.9);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.panel-head p {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
}

.panel-head span {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 800;
}

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

.package-card {
  min-height: 282px;
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: 8px;
  justify-items: center;
  padding: 20px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 89, 0.55);
  box-shadow: 0 16px 34px rgba(86, 58, 35, 0.14);
}

.package-card.is-selected {
  border-color: var(--accent);
  background: linear-gradient(180deg, #fff7ec, #fffdf8);
  box-shadow: 0 18px 42px rgba(255, 122, 89, 0.2);
}

.package-name {
  font-size: 22px;
  font-weight: 1000;
}

.package-card small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.package-visual {
  width: 100%;
  height: 176px;
  display: grid;
  place-items: center;
  position: relative;
}

.package-visual::after {
  content: "";
  width: 86%;
  height: 16px;
  position: absolute;
  bottom: 0;
  left: 7%;
  border-radius: 999px;
  background: rgba(54, 41, 28, 0.1);
  filter: blur(4px);
}

.package-visual img {
  max-width: 100%;
  max-height: 168px;
  display: block;
  position: relative;
  z-index: 1;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(74, 52, 30, 0.15));
  transition: transform 180ms ease, filter 180ms ease;
}

.package-card:hover .package-visual img,
.package-card.is-selected .package-visual img {
  transform: translateY(-5px) scale(1.03);
  filter: drop-shadow(0 18px 20px rgba(74, 52, 30, 0.18));
}

.carton-preview {
  grid-column: 2;
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(250px, 1fr);
  gap: 20px;
  align-items: end;
  margin-top: 22px;
}

.carton {
  min-height: 270px;
  position: relative;
  display: grid;
  place-items: end center;
}

.carton-body {
  width: 276px;
  height: 156px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 8px 8px 16px 16px;
  background: linear-gradient(145deg, var(--box), #b87944);
  box-shadow: 0 22px 42px rgba(80, 49, 23, 0.24);
  overflow: hidden;
}

.carton-body::before {
  content: "";
  position: absolute;
  inset: 20px 0 auto;
  height: 2px;
  background: rgba(255, 239, 208, 0.36);
}

.carton-flap {
  width: 154px;
  height: 86px;
  position: absolute;
  top: 34px;
  border-radius: 10px;
  background: #d7a36c;
  transform-origin: bottom center;
}

.carton-flap.left {
  left: 40px;
  transform: rotate(-18deg) skewX(-8deg);
}

.carton-flap.right {
  right: 40px;
  transform: rotate(18deg) skewX(8deg);
}

.packed-item {
  width: 164px;
  height: 136px;
  display: block;
  position: relative;
  z-index: 2;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(54, 38, 20, 0.22));
  animation: packedDrop 560ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.packed-item.bottle {
  width: 178px;
  height: 146px;
}

.packed-item.box {
  width: 154px;
  height: 154px;
}

.quote-card {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow);
}

.quote-card span {
  display: block;
  font-size: 13px;
  font-weight: 900;
}

.quote-card strong {
  display: block;
  margin-top: 8px;
  font-size: 42px;
  font-weight: 1000;
  line-height: 1;
}

.quote-card p {
  min-height: 48px;
  margin: 12px 0 16px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.6;
}

.scroll-cue {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  justify-self: center;
  display: inline-grid;
  justify-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--accent-strong);
  text-decoration: none;
  font-size: 13px;
  font-weight: 1000;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeFloat 860ms ease 2340ms forwards;
}

.scroll-cue span {
  position: relative;
  z-index: 1;
  padding: 7px 14px;
  border: 1px solid rgba(255, 122, 168, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 28px rgba(151, 65, 103, 0.1);
  animation: cuePillPulse 1800ms ease-in-out infinite;
}

.scroll-cue i {
  width: 19px;
  height: 19px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: scrollCue 1200ms ease-in-out infinite;
}

.trust-section {
  width: min(1360px, calc(100% - 56px));
  min-height: 0;
  aspect-ratio: 16 / 9;
  display: grid;
  align-content: center;
  margin: 42px auto 0;
  padding: clamp(20px, 2.6vw, 34px);
  border: 1px solid rgba(255, 175, 205, 0.44);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 247, 251, 0.72)),
    radial-gradient(circle at 82% 20%, rgba(255, 122, 168, 0.12), transparent 30%);
  box-shadow: 0 24px 70px rgba(151, 65, 103, 0.1);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeFloat 860ms ease 2180ms forwards;
}

.trust-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.trust-heading span,
.trust-copy span {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 1000;
}

.trust-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.trust-heading p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.7;
}

.trust-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.trust-tab {
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(255, 122, 168, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  cursor: pointer;
  font-size: 15px;
  font-weight: 1000;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.trust-tab:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 168, 0.72);
  color: var(--ink);
}

.trust-tab.is-active {
  border-color: var(--accent);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 26px rgba(38, 35, 38, 0.14);
}

.trust-panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: stretch;
  min-height: 0;
  height: clamp(360px, 38vw, 500px);
  padding: clamp(18px, 2.2vw, 28px);
  border: 1px solid rgba(231, 223, 209, 0.82);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
}

.trust-panel.is-visible {
  display: grid;
  animation: trustPanelIn 260ms ease both;
}

.trust-panel-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 8px 12px;
}

.trust-panel-copy span {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.04em;
}

.trust-panel-copy h3 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 1000;
  line-height: 1.12;
  letter-spacing: 0;
}

.trust-panel-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.8;
}

.trust-document {
  min-height: 0;
  height: 100%;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 122, 168, 0.22);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(151, 65, 103, 0.1);
}

.trust-document img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.trust-mini-board,
.trust-tags {
  min-height: 0;
  height: 100%;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 20px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 122, 168, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.68);
}

.trust-mini-board i,
.trust-tags i {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 122, 168, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-style: normal;
  font-size: 15px;
  font-weight: 1000;
}

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

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

.trust-card {
  min-height: 330px;
  display: grid;
  grid-template-rows: 178px 1fr;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(231, 223, 209, 0.9);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 243, 0.72));
  box-shadow: 0 18px 44px rgba(151, 65, 103, 0.1);
}

.trust-visual {
  min-height: 178px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 122, 168, 0.16), transparent 34%),
    linear-gradient(135deg, #fff, #fff8fb);
}

.trust-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(70, 50, 34, 0.12));
}

.trust-visual a {
  width: 100%;
  height: 100%;
  display: block;
}

.trust-visual.report {
  padding: 10px;
}

.trust-visual.report img {
  border-radius: 6px;
  background: #fff;
  object-fit: contain;
}

.trust-visual.certificate {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(38, 31, 37, 0.92), rgba(223, 79, 131, 0.82)),
    radial-gradient(circle at 80% 16%, rgba(255, 255, 255, 0.24), transparent 28%);
}

.trust-visual.certificate::before {
  content: "";
  width: 132px;
  height: 132px;
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
}

.trust-visual.certificate strong {
  position: relative;
  z-index: 1;
  font-size: 56px;
  font-weight: 1000;
  letter-spacing: 0;
}

.trust-visual.certificate small {
  position: absolute;
  bottom: 42px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
}

.trace-line {
  width: min(300px, 88%);
  display: grid;
  gap: 12px;
}

.trace-line i {
  min-height: 42px;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid rgba(255, 122, 168, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font-style: normal;
  font-size: 15px;
  font-weight: 1000;
}

.trace-line i:not(:last-child)::after {
  content: "";
  width: 2px;
  height: 12px;
  position: absolute;
  left: 50%;
  bottom: -13px;
  background: rgba(255, 122, 168, 0.45);
}

.trust-copy {
  display: grid;
  align-content: start;
  gap: 8px;
}

.trust-copy h3 {
  margin: 0;
  font-size: 23px;
  font-weight: 1000;
  line-height: 1.22;
}

.trust-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.7;
}

.document-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.document-strip a {
  width: 68px;
  height: 88px;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 122, 168, 0.28);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(151, 65, 103, 0.08);
  transition: transform 180ms ease, border-color 180ms ease;
}

.document-strip a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 168, 0.72);
}

.document-strip img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

@keyframes trustPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.next-button {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.next-button:hover {
  transform: translateY(-2px);
  background: var(--accent-strong);
}

.is-changing {
  animation: packedDrop 560ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

@keyframes brandIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pinkFlow {
  0% {
    background-position: 0% 0%, 100% 10%, 60% 100%, center;
  }
  100% {
    background-position: 12% 8%, 82% 28%, 48% 82%, center;
  }
}

@keyframes fadeFloat {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes decorFloatIn {
  0% {
    opacity: 0;
    transform: translateY(34px) scale(0.92);
    filter:
      blur(12px)
      drop-shadow(0 22px 24px rgba(151, 65, 103, 0.12))
      drop-shadow(0 5px 0 rgba(255, 255, 255, 0.72));
  }
  72% {
    opacity: 0.9;
    filter:
      blur(0)
      drop-shadow(0 22px 24px rgba(151, 65, 103, 0.18))
      drop-shadow(0 5px 0 rgba(255, 255, 255, 0.72));
  }
  100% {
    opacity: 0.86;
    transform: translateY(0) scale(1);
    filter:
      blur(0)
      drop-shadow(0 22px 24px rgba(151, 65, 103, 0.18))
      drop-shadow(0 5px 0 rgba(255, 255, 255, 0.72));
  }
}

@keyframes decorDrift {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -14px;
  }
}

@keyframes scrollCue {
  0%,
  100% {
    opacity: 0.72;
    transform: translateY(0) rotate(45deg);
  }
  50% {
    opacity: 1;
    transform: translateY(8px) rotate(45deg);
  }
}

@keyframes cuePillPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 28px rgba(151, 65, 103, 0.1);
  }
  50% {
    transform: translateY(-2px) scale(1.04);
    box-shadow:
      0 14px 34px rgba(151, 65, 103, 0.16),
      0 0 0 8px rgba(255, 122, 168, 0.08);
  }
}

@keyframes titleEnter {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.96);
    filter: blur(12px);
  }
  70% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes titleBreathe {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.74;
  }
}

@keyframes packedDrop {
  0% {
    opacity: 0;
    transform: translateY(-86px) rotate(-8deg) scale(0.74);
  }
  70% {
    opacity: 1;
    transform: translateY(8px) rotate(3deg) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
  }
}

@media (max-width: 920px) {
  .page-shell {
    padding: 18px;
  }

  .hero-decor {
    display: none;
  }

  .intro,
  .carton-preview {
    grid-template-columns: 1fr;
  }

  .intro {
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .stage {
    min-height: 500px;
    padding-top: 72px;
  }

  .wheel-gallery {
    width: min(620px, 100%);
  }

  .wheel-pos-1 {
    transform: translateX(-50%) translate(142px, 44px) rotate(8deg) scale(0.72);
  }

  .wheel-pos-2 {
    transform: translateX(-50%) translate(-142px, 44px) rotate(-8deg) scale(0.72);
  }

  .wheel-pos-3 {
    transform: translateX(-50%) translate(232px, 80px) rotate(15deg) scale(0.54);
  }

  .wheel-pos-4 {
    transform: translateX(-50%) translate(-232px, 80px) rotate(-15deg) scale(0.54);
  }

  .carton-preview {
    grid-column: auto;
  }

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

  .trust-section {
    width: min(100%, 760px);
    aspect-ratio: auto;
  }

  .trust-panel {
    grid-template-columns: 1fr;
    min-height: auto;
    height: auto;
  }

  .trust-document,
  .trust-mini-board,
  .trust-tags {
    min-height: 360px;
    height: auto;
  }

  .trust-card {
    min-height: auto;
    grid-template-columns: minmax(180px, 0.78fr) 1fr;
    grid-template-rows: auto;
    align-items: center;
  }
}

@media (max-width: 620px) {
  .page-shell {
    padding: 14px;
  }

  .brand-title {
    font-size: 58px;
  }

  .subtitle {
    font-size: 16px;
  }

  .scroll-cue {
    margin-top: 12px;
  }

  .wheel-gallery {
    height: 238px;
    margin-top: 22px;
  }

  .wheel-item {
    width: 150px;
    height: 178px;
    padding: 8px;
  }

  .wheel-item img {
    height: 132px;
  }

  .wheel-pos-1 {
    transform: translateX(-50%) translate(86px, 50px) rotate(8deg) scale(0.64);
  }

  .wheel-pos-2 {
    transform: translateX(-50%) translate(-86px, 50px) rotate(-8deg) scale(0.64);
  }

  .wheel-pos-3 {
    transform: translateX(-50%) translate(142px, 82px) rotate(15deg) scale(0.48);
  }

  .wheel-pos-4 {
    transform: translateX(-50%) translate(-142px, 82px) rotate(-15deg) scale(0.48);
  }

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

  .package-card {
    min-height: 154px;
    grid-template-columns: 106px 1fr auto;
    grid-template-rows: 1fr;
    align-items: center;
    justify-items: start;
  }

  .package-card small {
    justify-self: end;
  }

  .package-visual {
    height: 112px;
  }

  .package-visual img {
    max-height: 108px;
  }

  .panel-head {
    display: grid;
  }

  .carton-body {
    width: min(230px, 86vw);
  }

  .trust-section {
    width: 100%;
    aspect-ratio: auto;
    min-height: auto;
    padding: 18px;
  }

  .trust-tabs {
    gap: 8px;
  }

  .trust-tab {
    min-height: 38px;
    padding: 0 13px;
    font-size: 13px;
  }

  .trust-panel {
    padding: 14px;
  }

  .trust-document,
  .trust-mini-board,
  .trust-tags {
    min-height: 300px;
  }

  .trust-tags {
    grid-template-columns: 1fr;
  }

  .trust-card {
    grid-template-columns: 1fr;
  }

  .trust-visual {
    min-height: 164px;
  }
}
