:root {
  --bg-top: #fff7fb;
  --bg-bottom: #ffe8ef;
  --card: rgba(255, 255, 255, 0.7);
  --card-strong: rgba(255, 255, 255, 0.88);
  --text: #7a4359;
  --text-deep: #5f2b42;
  --accent: #ff8fb1;
  --accent-soft: #ffd0df;
  --border: rgba(255, 167, 196, 0.35);
  --shadow: 0 28px 60px rgba(219, 112, 147, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Noto Sans SC", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 204, 226, 0.9), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 222, 173, 0.7), transparent 28%),
    linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
}

.page-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 32px 18px;
}

.glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.5;
}

.glow-left {
  top: 4%;
  left: -80px;
  background: rgba(255, 174, 201, 0.55);
}

.glow-right {
  right: -70px;
  bottom: 10%;
  background: rgba(255, 217, 153, 0.45);
}

.hero-card {
  position: relative;
  width: min(940px, 100%);
  padding: 48px 34px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: linear-gradient(180deg, var(--card-strong), var(--card));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: #c67593;
}

h1 {
  margin: 0;
  font-family: "Ma Shan Zheng", cursive;
  font-size: clamp(3rem, 8vw, 5.4rem);
  color: var(--text-deep);
  line-height: 1.05;
}

.intro {
  width: min(620px, 100%);
  margin: 22px auto 0;
  font-size: 1.08rem;
  line-height: 1.9;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.feature {
  padding: 24px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 173, 201, 0.28);
  text-align: left;
}

.icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd7e6, #fff0c8);
  font-size: 1.2rem;
}

.feature h2 {
  margin: 14px 0 10px;
  color: var(--text-deep);
  font-size: 1.1rem;
}

.feature p {
  margin: 0;
  line-height: 1.8;
}

.quote-card {
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 244, 248, 0.82);
  border: 1px dashed rgba(220, 129, 161, 0.45);
}

.quote-card p {
  margin: 0;
  font-size: 1rem;
  color: #9f5674;
}

@media (max-width: 760px) {
  .hero-card {
    padding: 38px 20px 28px;
    border-radius: 26px;
  }

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

  .intro {
    font-size: 1rem;
  }
}
