* {
  box-sizing: border-box;
}

:root {
  --ink: #162033;
  --soft-ink: #34445c;
  --muted: #718095;
  --blue: #6cb4ee;
  --blue-strong: #2f82c7;
  --blue-deep: #1d5e9e;
  --pink: #f25572;
  --pink-soft: #fff1f4;
  --gold: #c99b61;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-solid: #ffffff;
  --line: rgba(127, 166, 202, 0.22);
  --shadow: 0 14px 36px rgba(53, 101, 143, 0.16);
  --radius: 8px;
}

html {
  background: #eaf5fc;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", Arial, sans-serif;
  background:
    linear-gradient(180deg, #f7fcff 0%, #eaf5fc 36%, #f5fbff 100%);
}

img {
  display: block;
  max-width: 100%;
}

.is-hidden {
  display: none !important;
}

.report {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(223, 241, 252, 0.68) 42%, rgba(250, 253, 255, 0.9) 100%);
}

.hero {
  position: relative;
  padding: 18px 16px 18px;
}

.hero-bg-line {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(108, 180, 238, 0.13) 0 30%, transparent 30% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(233, 246, 255, 0.46));
  border-bottom: 1px solid rgba(170, 204, 230, 0.28);
}

.hero::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 130, 199, 0.22), transparent);
}

.hero-top,
.hero-stage,
.hero-copy,
.hero-summary {
  position: relative;
  z-index: 1;
}

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

.logo {
  width: 138px;
  height: auto;
  border-radius: 6px;
}

.hero-pills {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.hero-pills span,
.mini-pill,
.status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 10px;
  border: 1px solid rgba(47, 130, 199, 0.22);
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 7px 18px rgba(66, 135, 191, 0.1);
}

.hero-stage {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 18px;
  min-height: 298px;
}

.hero-product-card {
  position: relative;
  min-height: 298px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(229, 244, 255, 0.72)),
    linear-gradient(180deg, rgba(108, 180, 238, 0.12), rgba(242, 85, 114, 0.06));
  box-shadow: var(--shadow);
}

.hero-product-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52%;
  background: linear-gradient(0deg, rgba(16, 65, 109, 0.18), transparent);
}

.hero-product {
  width: 100%;
  height: 318px;
  object-fit: cover;
  object-position: 50% 51%;
  transform: scale(1.03);
}

.product-badge {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
}

.product-badge span {
  color: var(--soft-ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.product-badge strong {
  flex: 0 0 auto;
  color: var(--pink);
  font-size: 13px;
  font-weight: 950;
}

.brand-float-card {
  position: absolute;
  top: 18px;
  right: 14px;
  width: 92px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 26px rgba(28, 92, 150, 0.16);
  backdrop-filter: blur(14px);
}

.brand-float-card img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.hero-copy {
  margin-top: 17px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.13;
  font-weight: 950;
  letter-spacing: 0;
}

.subtitle {
  margin: 0;
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 750;
}

.hero-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 15px;
}

.hero-summary .summary-mini {
  padding: 12px 12px 11px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 11px 24px rgba(51, 101, 145, 0.11);
  backdrop-filter: blur(12px);
}

.summary-mini strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-deep);
  font-size: 24px;
  line-height: 1;
  font-weight: 950;
}

.summary-mini span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.section {
  padding: 18px 16px 0;
}

.section-head {
  margin-bottom: 10px;
}

.section-head span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--blue-deep);
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
}

.section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.28;
  font-weight: 950;
  letter-spacing: 0;
}

.overview-grid,
.metric-grid,
.strategy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.overview-item {
  min-height: 76px;
  padding: 12px;
}

.overview-item.wide {
  grid-column: 1 / -1;
  min-height: auto;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(232, 246, 255, 0.82));
}

.overview-item span,
.metric-card span,
.strategy-card b,
.scenario-group b,
.selling-item b {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
}

.overview-item strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.22;
  font-weight: 950;
}

.metric-card {
  position: relative;
  min-height: 118px;
  padding: 14px 13px;
  overflow: hidden;
}

.metric-card::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -22px;
  width: 86px;
  height: 86px;
  border: 14px solid rgba(108, 180, 238, 0.12);
  border-radius: 50%;
}

.metric-card.feature {
  background:
    linear-gradient(145deg, rgba(223, 242, 255, 0.92), rgba(255, 255, 255, 0.82)),
    rgba(255, 255, 255, 0.78);
}

.metric-card strong {
  display: block;
  margin: 9px 0 7px;
  color: var(--blue-deep);
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
}

.metric-card p,
.strategy-card p,
.scenario-group p,
.fallback-card p,
.selling-item p,
.quote-card p,
.next-card p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 650;
}

.timeline {
  display: grid;
  gap: 9px;
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
}

.timeline-index {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-strong), #78bff1);
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 8px 18px rgba(47, 130, 199, 0.22);
}

.timeline-step h3,
.strategy-card h3,
.scenario-group h3,
.fallback-card h3,
.selling-item h3,
.next-card h3 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.28;
  font-weight: 950;
}

.strategy-card {
  min-height: 138px;
  padding: 12px;
}

.strategy-card b {
  margin-bottom: 9px;
  color: var(--pink);
}

.strategy-card h3 {
  font-size: 16px;
}

.scenario-matrix {
  display: grid;
  gap: 10px;
}

.scenario-group {
  padding: 13px;
}

.scenario-group h3 {
  margin-bottom: 9px;
  font-size: 16px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span,
.keyword-cloud span,
.footer-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(47, 130, 199, 0.15);
  border-radius: 999px;
  color: #2e5d82;
  background: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
}

.tag-row span:nth-child(3n),
.keyword-cloud span:nth-child(4n) {
  border-color: rgba(242, 85, 114, 0.16);
  color: #8e4051;
  background: rgba(255, 241, 244, 0.72);
}

.product-story-card {
  display: grid;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.product-photo-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dcebf5;
}

.product-photo-wrap::after {
  content: "Censun 先行水杯";
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 950;
  backdrop-filter: blur(12px);
}

.product-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 54%;
}

.selling-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.selling-item {
  min-height: 108px;
  padding: 11px;
  border: 1px solid rgba(127, 166, 202, 0.18);
  border-radius: var(--radius);
  background: rgba(247, 252, 255, 0.84);
}

.selling-item b {
  margin-bottom: 6px;
  color: var(--blue-deep);
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.keyword-cloud span {
  min-height: 30px;
  font-size: 13px;
}

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

.phone-card {
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.phone-top {
  width: 42px;
  height: 4px;
  margin: 0 auto 7px;
  border-radius: 999px;
  background: #cfe3f3;
}

.phone-card img {
  width: 100%;
  aspect-ratio: 9 / 14;
  object-fit: cover;
  border-radius: 6px;
  background: #eef6fb;
}

.phone-caption {
  display: flex;
  justify-content: center;
  margin-top: 7px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 900;
}

.fallback-grid {
  display: grid;
  gap: 9px;
}

.fallback-card {
  padding: 13px;
}

.fallback-card b {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--pink);
  background: var(--pink-soft);
  font-size: 12px;
  font-weight: 950;
}

.quote-list,
.next-list {
  display: grid;
  gap: 9px;
}

.quote-card,
.next-card {
  position: relative;
  padding: 13px 13px 13px 42px;
}

.quote-card::before {
  content: "“";
  position: absolute;
  left: 13px;
  top: 10px;
  color: rgba(242, 85, 114, 0.7);
  font-size: 35px;
  line-height: 1;
  font-weight: 950;
}

.quote-card p {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.summary-card {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(235, 247, 255, 0.78));
  box-shadow: var(--shadow);
}

.summary-card p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.82;
  font-weight: 700;
}

.next-card {
  padding-left: 48px;
}

.next-card::before {
  content: attr(data-index);
  position: absolute;
  left: 13px;
  top: 14px;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--blue-strong);
  font-size: 12px;
  font-weight: 950;
}

.ending {
  padding: 18px 16px 24px;
}

.ending-card {
  position: relative;
  overflow: hidden;
  padding: 22px 16px;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: var(--radius);
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(229, 244, 255, 0.84));
  box-shadow: var(--shadow);
}

.ending-logo {
  width: 148px;
  margin: 0 auto 13px;
  border-radius: 6px;
}

.ending-brand {
  width: 82px;
  height: 82px;
  margin: 0 auto 12px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(53, 101, 143, 0.14);
}

.ending-card h2 {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.32;
  font-weight: 950;
}

.ending-card p {
  margin-bottom: 13px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 950;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

@media (min-width: 431px) {
  body {
    padding: 18px 0;
  }

  .report {
    border-radius: var(--radius);
    box-shadow: 0 22px 60px rgba(28, 92, 150, 0.16);
  }
}
