:root {
  color: #1f2933;
  background: #eef4f1;
  font-family: "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 213, 170, 0.48), transparent 28%),
    radial-gradient(circle at 100% 10%, rgba(255, 168, 184, 0.2), transparent 28%),
    #fff6ee;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.poniu-home {
  width: min(100%, 480px);
  min-height: 100vh;
  margin: 0 auto;
  background: linear-gradient(160deg, #fff7ee 0%, #ffe9d6 48%, #ffe2da 100%);
  color: #5a3a22;
  overflow: hidden;
}

.poniu-hero {
  position: relative;
  min-height: 100vh;
  padding: 20px 18px 24px;
}

.soft-dot {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.soft-dot-a {
  top: -72px;
  right: -78px;
  width: 230px;
  height: 230px;
  background: radial-gradient(circle, rgba(255, 178, 112, 0.36), transparent 68%);
}

.soft-dot-b {
  top: 70px;
  left: -80px;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(255, 232, 203, 0.8), transparent 70%);
}

.paw-print {
  position: absolute;
  z-index: 1;
  color: rgba(194, 126, 75, 0.24);
  font-size: 22px;
  font-weight: 900;
  transform: rotate(-18deg);
  animation: pawDrift 5s ease-in-out infinite;
}

.paw-one {
  left: 34px;
  top: 96px;
}

.paw-two {
  right: 44px;
  top: 178px;
  animation-delay: 1.2s;
}

.poniu-brand {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
}

.poniu-brand strong {
  color: #d4764a;
  font-size: 28px;
  font-weight: 900;
}

.poniu-brand span {
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.62);
  color: #b77855;
  font-size: 12px;
  font-weight: 900;
}

.poniu-pet-stage {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 330px;
  margin-top: 4px;
}

.poniu-pet {
  position: relative;
  width: 214px;
  height: 214px;
  border-radius: 50% 50% 44% 44%;
  background: linear-gradient(145deg, #ffc55f, #eda341);
  box-shadow:
    inset -18px -14px 0 rgba(117, 70, 25, 0.12),
    0 24px 42px rgba(188, 118, 55, 0.26);
  animation: petFloat 3s ease-in-out infinite;
}

.poniu-ear {
  position: absolute;
  top: -24px;
  width: 54px;
  height: 66px;
  border-radius: 22px 40px 12px 32px;
  background: linear-gradient(145deg, #c48a30, #9f662c);
}

.poniu-ear.left {
  left: 28px;
  transform: rotate(-15deg);
}

.poniu-ear.right {
  right: 28px;
  transform: rotate(15deg) scaleX(-1);
}

.poniu-eyes {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding-top: 62px;
}

.poniu-eyes span {
  position: relative;
  width: 28px;
  height: 34px;
  border-radius: 50%;
  background: #2b1a0a;
  animation: blink 4s infinite;
}

.poniu-eyes span::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
}

.poniu-blush {
  position: absolute;
  top: 90px;
  width: 34px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 130, 132, 0.32);
}

.poniu-blush.left {
  left: 12px;
}

.poniu-blush.right {
  right: 12px;
}

.poniu-nose {
  width: 24px;
  height: 17px;
  margin: 8px auto 0;
  border-radius: 50%;
  background: #2b1a0a;
}

.poniu-mouth {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 5px;
}

.poniu-mouth span {
  width: 13px;
  height: 9px;
  border: 2px solid #2b1a0a;
  border-top: 0;
  border-radius: 0 0 16px 16px;
}

.poniu-paw {
  position: absolute;
  bottom: -8px;
  width: 42px;
  height: 31px;
  border-radius: 50%;
  background: #f0a040;
}

.poniu-paw.left {
  left: 32px;
  transform: rotate(-18deg);
}

.poniu-paw.right {
  right: 32px;
  transform: rotate(18deg);
}

.poniu-tail {
  position: absolute;
  right: -34px;
  top: 64px;
  width: 58px;
  height: 24px;
  border-radius: 999px;
  background: #c48a30;
  transform-origin: left center;
  animation: wag 0.85s ease-in-out infinite;
}

.floating-note {
  position: absolute;
  z-index: 3;
  max-width: 146px;
  border-radius: 24px 24px 24px 8px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.84);
  color: #8a5b3a;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(170, 103, 48, 0.12);
  animation: noteFloat 3.4s ease-in-out infinite;
}

.note-left {
  left: 4px;
  top: 60px;
}

.note-right {
  right: 4px;
  top: 96px;
  border-radius: 24px 24px 8px 24px;
  animation-delay: 0.5s;
}

.note-bottom {
  right: 26px;
  bottom: 20px;
  animation-delay: 1s;
}

.welcome-bubble {
  position: relative;
  z-index: 3;
  width: fit-content;
  max-width: 86%;
  margin: -8px auto 0;
  border-radius: 26px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.9);
  color: #5a3a22;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(172, 105, 45, 0.16);
}

.welcome-bubble::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-right: 10px solid transparent;
  border-bottom: 12px solid rgba(255, 255, 255, 0.9);
  border-left: 10px solid transparent;
}

.paw-cta {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 58px;
  margin-top: 22px;
  border: 0;
  border-radius: 32px 32px 32px 10px;
  background: linear-gradient(135deg, #f8a35c, #e77b49);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(223, 113, 65, 0.34);
}

.paw-cta::before {
  content: "爪";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  font-size: 14px;
}

.warm-link {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 48px;
  margin-top: 12px;
  border: 2px dashed #d7a081;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.54);
  color: #a46846;
  font-weight: 900;
}

.sound-toggle {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 46px;
  margin-top: 10px;
  border: 1px solid rgba(215, 160, 129, 0.54);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  color: #d4764a;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(172, 105, 45, 0.1);
}

.sound-toggle.sound-ready {
  border-color: rgba(24, 166, 99, 0.34);
  background: rgba(239, 250, 242, 0.84);
  color: #0f7a45;
}

.ar-feature-link {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 6px;
  margin-top: 14px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px 30px 30px 10px;
  padding: 16px 18px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.66), transparent 30%),
    linear-gradient(135deg, #ffcf74, #ff8f6a 58%, #f36f8c);
  color: #fff;
  text-align: left;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(223, 113, 65, 0.32);
}

.ar-feature-link::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 38px;
  border-radius: 50%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 12px 8px;
  transform: perspective(120px) rotateX(58deg);
  opacity: 0.7;
}

.ar-feature-link span {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.24);
  font-size: 12px;
  font-weight: 900;
}

.ar-feature-link strong {
  font-size: 22px;
  font-weight: 900;
}

.ar-feature-link small {
  max-width: calc(100% - 74px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.product-paths {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

.product-paths button,
.product-paths a {
  display: grid;
  gap: 4px;
  min-height: 88px;
  border: 0;
  border-radius: 24px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.68);
  color: #6b4329;
  text-align: left;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(172, 105, 45, 0.1);
}

.product-paths strong {
  font-size: 15px;
}

.product-paths span {
  color: #a06c4b;
  font-size: 12px;
  line-height: 1.35;
}

.care-line {
  position: relative;
  z-index: 3;
  margin: 18px 0 0;
  border-radius: 24px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.44);
  color: #946245;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.shell,
.phone-stage {
  width: min(100%, 480px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 24px 18px;
}

.app-home {
  padding-top: 18px;
}

.commercial-home {
  width: min(100%, 520px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 18px;
}

.hero {
  padding: 22px 0 18px;
}

.hero-showcase {
  padding: 18px;
  border: 1px solid rgba(31, 122, 77, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(31, 41, 51, 0.1);
}

.brand-mark {
  margin: 0 0 10px;
  color: #12583a;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.topbar span,
.stage-label {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.74);
  color: #426151;
  font-size: 12px;
  font-weight: 800;
}

.stage-label {
  position: absolute;
  right: 14px;
  top: 14px;
}

.eyebrow,
.badge {
  color: #4f7c62;
  font-size: 13px;
  font-weight: 700;
}

h1 {
  margin: 8px 0;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-showcase h1 {
  font-size: 36px;
  color: #12251b;
}

.lead,
.pet-line {
  margin: 0;
  color: #5d6b62;
  font-size: 15px;
}

.stage-card {
  position: relative;
  height: 260px;
  margin-top: 22px;
  border: 1px solid rgba(31, 122, 77, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 24%, rgba(255, 198, 109, 0.5), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(83, 145, 255, 0.25), transparent 30%),
    linear-gradient(160deg, #effaf2, #fff8e7 58%, #e8f1ff);
  box-shadow: 0 20px 44px rgba(31, 41, 51, 0.13);
}

.ar-grid {
  position: absolute;
  inset: auto 18px 22px;
  height: 88px;
  border-radius: 50%;
  background:
    linear-gradient(rgba(31, 122, 77, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 122, 77, 0.16) 1px, transparent 1px);
  background-size: 24px 14px;
  transform: perspective(260px) rotateX(62deg);
}

.pet-demo {
  position: absolute;
  left: 36px;
  bottom: 46px;
  width: 124px;
  height: 116px;
  border-radius: 42% 42% 38% 38%;
  background: #f7b950;
  box-shadow: inset -12px -10px 0 rgba(116, 71, 27, 0.12), 0 14px 24px rgba(116, 71, 27, 0.18);
  animation: petBounce 2.7s ease-in-out infinite;
}

.pet-ear {
  position: absolute;
  top: -26px;
  width: 42px;
  height: 48px;
  border-radius: 12px 26px 8px 26px;
  background: #9b6a36;
}

.pet-ear.left {
  left: 10px;
  transform: rotate(-18deg);
}

.pet-ear.right {
  right: 10px;
  transform: rotate(18deg) scaleX(-1);
}

.pet-face {
  display: flex;
  justify-content: center;
  gap: 34px;
  padding-top: 38px;
}

.pet-face span {
  width: 12px;
  height: 16px;
  border-radius: 50%;
  background: #2b251e;
  animation: blink 4s infinite;
}

.pet-nose {
  position: absolute;
  left: 54px;
  top: 62px;
  width: 18px;
  height: 13px;
  border-radius: 50%;
  background: #2b251e;
}

.pet-tail {
  position: absolute;
  right: -30px;
  top: 48px;
  width: 48px;
  height: 22px;
  border-radius: 999px;
  background: #9b6a36;
  transform-origin: left center;
  animation: wag 0.9s ease-in-out infinite;
}

.human-demo {
  position: absolute;
  right: 52px;
  bottom: 44px;
  width: 108px;
  height: 160px;
  animation: humanFloat 3.4s ease-in-out infinite;
}

.human-head {
  position: absolute;
  left: 25px;
  top: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f3c6a6, #ffead9);
  box-shadow: 0 0 0 8px rgba(54, 88, 160, 0.12);
}

.human-body {
  position: absolute;
  left: 12px;
  top: 62px;
  width: 84px;
  height: 92px;
  border-radius: 34px 34px 18px 18px;
  background: linear-gradient(150deg, #5b7cfa, #6cc6a2);
}

.human-glow {
  position: absolute;
  left: 4px;
  top: 114px;
  width: 100px;
  height: 26px;
  border-radius: 50%;
  background: rgba(91, 124, 250, 0.18);
  filter: blur(2px);
}

.speech-bubble {
  position: absolute;
  left: 28px;
  right: 24px;
  top: 18px;
  width: fit-content;
  max-width: 78%;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: #314238;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(31, 41, 51, 0.1);
}

.hero-cta {
  width: 100%;
  margin-top: 16px;
  border: 0;
  border-radius: 8px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #18a663, #0f7a45);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(15, 122, 69, 0.26);
}

.hero-actions {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 10px;
  margin-top: 16px;
}

.hero-actions .hero-cta {
  margin-top: 0;
}

.secondary-cta {
  border: 1px solid rgba(15, 122, 69, 0.28);
  border-radius: 8px;
  padding: 14px 12px;
  background: #ffffff;
  color: #12583a;
  font-weight: 900;
}

.demo-entry {
  display: grid;
  place-items: center;
  min-height: 48px;
  margin-top: 10px;
  border: 1px solid rgba(15, 122, 69, 0.28);
  border-radius: 8px;
  background: #ffffff;
  color: #0f7a45;
  font-weight: 900;
  text-decoration: none;
}

.section-title {
  display: grid;
  gap: 4px;
  margin: 18px 0 10px;
}

.section-title strong {
  font-size: 20px;
  color: #14251b;
}

.section-title span {
  color: #64726a;
  font-size: 14px;
}

.commercial-grid {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.species-strip {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(31, 122, 77, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.species-strip strong {
  color: #26382f;
}

.species-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.species-strip span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #e6f0e8;
  color: #1f7a4d;
  font-size: 13px;
  font-weight: 800;
}

.choice-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.choice-card,
.panel,
.pet-room {
  border: 1px solid #dbe5dc;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(31, 41, 51, 0.08);
}

.choice-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  text-align: left;
}

.choice-card.featured {
  border-color: rgba(31, 122, 77, 0.35);
  background: linear-gradient(145deg, #ffffff, #effaf2);
}

.choice-card.muted {
  background: #f7faf7;
  box-shadow: none;
}

.choice-card strong {
  font-size: 21px;
}

.choice-card span:last-child {
  color: #61706a;
}

.choice-icon {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e6f0e8;
  color: #1f7a4d;
  font-size: 13px;
  font-weight: 900;
}

.promise {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.reserve-box,
.material-box,
.material-summary {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid #dbe5dc;
  border-radius: 8px;
  background: #f8fbf8;
}

.reserve-box p {
  margin: 0;
  color: #64726a;
  font-size: 14px;
}

.slot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hidden {
  display: none;
}

.promise span,
.badge {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e6f0e8;
}

.panel {
  padding: 18px;
}

.back-button,
.ghost-button {
  border: 0;
  background: transparent;
  color: #4f7c62;
  font-weight: 700;
}

.back-button {
  margin-bottom: 14px;
  padding: 0;
}

.form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

small {
  color: #78877e;
  font-weight: 400;
}

input,
select {
  width: 100%;
  border: 1px solid #cfd9d0;
  border-radius: 8px;
  padding: 12px;
  background: #fbfdfb;
  color: #1f2933;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.preview-strip {
  display: flex;
  min-height: 0;
  gap: 8px;
  overflow-x: auto;
}

.preview-strip img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
}

.primary-button {
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #18a663, #0f7a45);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(15, 122, 69, 0.2);
}

.link-button {
  display: grid;
  place-items: center;
  text-align: center;
  text-decoration: none;
}

.ghost-button {
  width: 100%;
  padding: 13px 16px;
}

.phone-stage {
  display: grid;
  align-items: center;
  background: linear-gradient(160deg, #fff7ee 0%, #ffe9d6 48%, #ffe2da 100%);
  color: #5a3a22;
  overflow: hidden;
}

.pet-room {
  padding: 18px;
  text-align: center;
}

.room-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pet-avatar {
  position: relative;
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  margin: 28px auto 14px;
  border: 10px solid #eef5ef;
  border-radius: 50%;
  background: linear-gradient(145deg, #e8f4ee, #fff2d9);
  overflow: hidden;
}

.pet-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pet-avatar span {
  font-size: 92px;
}

.pet-avatar.lively {
  animation: float 2.8s ease-in-out infinite;
}

.pet-avatar.wearing-hoodie {
  border-color: #ffd0a8;
  box-shadow: 0 18px 34px rgba(223, 113, 65, 0.22);
}

.hoodie-layer {
  position: absolute;
  right: 14px;
  bottom: 18px;
  left: 14px;
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 22px 22px 28px 28px;
  background: linear-gradient(135deg, #f8a35c, #e77b49);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(223, 113, 65, 0.26);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 20px 0;
}

.stats div {
  display: grid;
  gap: 2px;
  padding: 12px 8px;
  border-radius: 8px;
  background: #f2f6f2;
}

.stats strong {
  font-size: 20px;
}

.stats span,
.speech {
  color: #64726a;
  font-size: 13px;
}

.speech {
  min-height: 74px;
  margin: 16px 0;
  padding: 14px;
  border-radius: 8px;
  background: #fff7e5;
  text-align: left;
}

.actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px 0;
}

.actions button {
  min-height: 48px;
  border: 1px solid #dbe5dc;
  border-radius: 8px;
  background: #f9fbf9;
  font-weight: 700;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes petBounce {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

@keyframes wag {
  0%,
  100% {
    transform: rotate(14deg);
  }
  50% {
    transform: rotate(-20deg);
  }
}

@keyframes blink {
  0%,
  92%,
  100% {
    transform: scaleY(1);
  }
  95% {
    transform: scaleY(0.15);
  }
}

@keyframes humanFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 27px;
  }

  .field-row,
  .stats,
  .actions {
    grid-template-columns: 1fr;
  }
}

.creator-shell {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #fff7ee 0%, #ffe9d6 48%, #ffe2da 100%);
  color: #5a3a22;
}

.creator-shell::before,
.creator-shell::after {
  content: "";
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
}

.creator-shell::before {
  top: -70px;
  right: calc(50% - 310px);
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 178, 112, 0.34), transparent 68%);
}

.creator-shell::after {
  bottom: -92px;
  left: calc(50% - 300px);
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(255, 168, 184, 0.22), transparent 70%);
}

.creator-shell .panel {
  position: relative;
  z-index: 1;
  border-color: rgba(212, 118, 74, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 40px rgba(172, 105, 45, 0.14);
  backdrop-filter: blur(10px);
}

.creator-shell h1 {
  color: #5a3a22;
}

.creator-shell .eyebrow,
.creator-shell .badge {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.7);
  color: #d4764a;
  font-weight: 900;
}

.creator-shell .lead,
.creator-shell small {
  color: #946245;
}

.creator-shell label {
  color: #6b4329;
}

.creator-shell input,
.creator-shell select {
  border-color: rgba(215, 160, 129, 0.62);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  color: #5a3a22;
}

.creator-shell .material-box {
  border-color: rgba(215, 160, 129, 0.42);
  border-radius: 22px;
  background: #fff7ee;
}

.creator-shell .material-summary,
.creator-shell .reserve-box {
  border-color: rgba(215, 160, 129, 0.42);
  border-radius: 22px;
  background: #fff7ee;
}

.creator-form .primary-button {
  margin-top: 4px;
}

.creator-shell .primary-button {
  min-height: 56px;
  border-radius: 32px 32px 32px 10px;
  background: linear-gradient(135deg, #f8a35c, #e77b49);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(223, 113, 65, 0.3);
}

.creator-shell .back-button,
.creator-shell .ghost-button {
  color: #a46846;
  font-weight: 900;
}

.material-box strong {
  color: #21382c;
}

.result-room {
  border-color: rgba(212, 118, 74, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 199, 108, 0.24), transparent 34%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 40px rgba(172, 105, 45, 0.14);
  backdrop-filter: blur(10px);
}

.result-room h1 {
  color: #5a3a22;
}

.result-room .badge {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.7);
  color: #d4764a;
  font-weight: 900;
}

.result-room .pet-line,
.result-room small,
.result-room .stats span {
  color: #946245;
}

.result-room .primary-button {
  min-height: 56px;
  border-radius: 32px 32px 32px 10px;
  background: linear-gradient(135deg, #f8a35c, #e77b49);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(223, 113, 65, 0.3);
}

.result-room .ghost-button,
.result-room .back-button {
  color: #a46846;
  font-weight: 900;
}

.payment-panel {
  display: grid;
  gap: 16px;
}

.plan-list {
  display: grid;
  gap: 10px;
}

.plan-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid #dbe5dc;
  border-radius: 8px;
  background: #ffffff;
}

.plan-card.selected {
  border-color: #e77b49;
  background: #fff7ee;
}

.plan-card input {
  width: 18px;
  height: 18px;
}

.plan-card span {
  display: grid;
  gap: 4px;
}

.plan-card small {
  color: #64726a;
}

.plan-card b {
  color: #d4764a;
  font-size: 20px;
}

.pay-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pay-button {
  border: 0;
  border-radius: 8px;
  padding: 14px 12px;
  color: #fff;
  font-weight: 900;
}

.pay-button.wechat {
  background: linear-gradient(135deg, #f8a35c, #e77b49);
}

.pay-button.alipay {
  background: linear-gradient(135deg, #2388ff, #125fc8);
}

.pay-note {
  margin: 0;
  color: #78877e;
  font-size: 13px;
}

.shop-panel {
  display: grid;
  gap: 16px;
}

.share-reward-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(215, 160, 129, 0.42);
  border-radius: 24px;
  padding: 16px;
  background: #fff7ee;
}

.share-reward-card p {
  margin: 0;
  color: #946245;
}

.saved-share-card {
  margin: 18px 0;
  text-align: left;
}

.wardrobe-card {
  display: grid;
  gap: 14px;
  margin: 18px 0;
  border: 1px solid rgba(215, 160, 129, 0.42);
  border-radius: 24px;
  padding: 16px;
  background: #fff7ee;
  text-align: left;
}

.care-card,
.ar-card,
.growth-card {
  display: grid;
  gap: 14px;
  margin: 18px 0;
  border: 1px solid rgba(215, 160, 129, 0.42);
  border-radius: 24px;
  padding: 16px;
  background: rgba(255, 247, 238, 0.86);
  text-align: left;
}

.wardrobe-card strong {
  display: block;
  margin-top: 8px;
  color: #5a3a22;
  font-size: 18px;
}

.wardrobe-card p,
.care-card p,
.ar-card p,
.growth-card p {
  margin: 6px 0 0;
  color: #946245;
  font-size: 13px;
}

.care-card strong,
.ar-card strong,
.growth-card strong {
  display: block;
  margin-top: 8px;
  color: #5a3a22;
  font-size: 18px;
}

.growth-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.growth-stats div {
  display: grid;
  gap: 2px;
  min-height: 62px;
  border-radius: 18px;
  padding: 10px 6px;
  background: rgba(255, 255, 255, 0.76);
  color: #6b4329;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(215, 160, 129, 0.2);
}

.growth-stats b {
  color: #d4764a;
  font-size: 20px;
}

.growth-stats span {
  color: #946245;
  font-size: 12px;
  font-weight: 900;
}

.care-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.care-actions button {
  min-height: 48px;
  border: 0;
  border-radius: 20px;
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.8);
  color: #6b4329;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(172, 105, 45, 0.08);
}

.wardrobe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.wardrobe-item {
  display: grid;
  gap: 4px;
  min-height: 104px;
  border: 1px solid rgba(215, 160, 129, 0.34);
  border-radius: 20px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.74);
  color: #6b4329;
  text-align: left;
  box-shadow: 0 8px 18px rgba(172, 105, 45, 0.08);
}

.wardrobe-item span {
  color: #d4764a;
  font-size: 12px;
  font-weight: 900;
}

.wardrobe-item strong {
  margin: 0;
  font-size: 15px;
}

.wardrobe-item small {
  color: #946245;
  font-weight: 800;
}

.wardrobe-item.active {
  border-color: #e77b49;
  background: linear-gradient(135deg, rgba(248, 163, 92, 0.22), rgba(255, 255, 255, 0.86));
  box-shadow: 0 12px 24px rgba(223, 113, 65, 0.18);
}

.wardrobe-item.locked {
  opacity: 0.58;
  cursor: not-allowed;
}

.reward-tag {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(248, 163, 92, 0.16);
  color: #d4764a;
  font-size: 12px;
  font-weight: 900;
}

.reward-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 22px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: #6b4329;
  box-shadow: inset 0 0 0 1px rgba(215, 160, 129, 0.28);
}

.reward-preview b {
  color: #d4764a;
}

.reward-preview.unlocked {
  background: linear-gradient(135deg, rgba(248, 163, 92, 0.2), rgba(231, 123, 73, 0.18));
}

.reward-status {
  min-height: 22px;
  font-size: 13px;
  font-weight: 800;
}

.shop-grid {
  display: grid;
  gap: 10px;
}

.shop-grid article {
  display: grid;
  gap: 4px;
  border-radius: 22px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 22px rgba(172, 105, 45, 0.1);
}

.shop-grid article span {
  color: #d4764a;
  font-size: 12px;
  font-weight: 900;
}

.shop-grid article strong {
  color: #5a3a22;
}

.shop-grid article button {
  min-height: 42px;
  margin-top: 6px;
  border: 0;
  border-radius: 22px 22px 22px 8px;
  background: linear-gradient(135deg, #f8a35c, #e77b49);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(223, 113, 65, 0.18);
}

.generating-room {
  display: grid;
  justify-items: center;
}

.loader-ring {
  width: 96px;
  height: 96px;
  margin: 20px auto 8px;
  border: 10px solid #e6f0e8;
  border-top-color: #16a05d;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes petFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes noteFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes pawDrift {
  0%,
  100% {
    transform: translateY(0) rotate(-18deg);
  }
  50% {
    transform: translateY(10px) rotate(8deg);
  }
}
