/* V73 rebased visual bundle: V69 core foundation + V72 detail system + V73 true infographics. */
.v69-core {
  --v69-ink: #17211d;
  --v69-muted: #5f6b65;
  --v69-line: rgba(23, 33, 29, 0.13);
  --v69-accent: #0a7b62;
  --v69-accent-soft: #eaf5f1;
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background:
    radial-gradient(circle at 86% 9%, rgba(10, 123, 98, 0.11), transparent 27rem),
    linear-gradient(180deg, #fbfcfb 0%, #f4f8f6 100%);
  color: var(--v69-ink);
}
.v69-core .v69-core__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(15rem, 0.75fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.v69-core .v69-core__intro > * { min-width: 0; }
.v69-core .v69-core__eyebrow {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: var(--v69-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.v69-core h2 {
  max-width: 20ch;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.v69-core .v69-core__lead {
  margin: 0;
  color: var(--v69-muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.85;
}
.v69-core .v69-core__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: v69-core-step;
}
.v69-core .v69-core__steps > li {
  min-width: 0;
  min-height: 15rem;
  padding: 1.35rem;
  border: 1px solid var(--v69-line);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1.1rem 2.5rem rgba(23, 33, 29, 0.055);
  counter-increment: v69-core-step;
}
.v69-core .v69-core__steps > li::before {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--v69-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  content: "0" counter(v69-core-step);
}
.v69-core .v69-core__steps h3 {
  margin: 0 0 0.75rem;
  font-size: 1.08rem;
  line-height: 1.35;
}
.v69-core .v69-core__steps p {
  margin: 0;
  color: var(--v69-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.v69-core .v69-core__close {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.7rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--v69-line);
}
.v69-core .v69-core__close strong {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}
.v69-core .v69-core__close a {
  color: var(--v69-accent);
  font-weight: 750;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.25em;
}
@media (max-width: 1020px) {
  .v69-core .v69-core__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v69-core .v69-core__steps > li:last-child { grid-column: 1 / -1; min-height: 0; }
}
@media (max-width: 720px) {
  .v69-core .v69-core__intro { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .v69-core .v69-core__steps { grid-template-columns: minmax(0, 1fr); }
  .v69-core .v69-core__steps > li,
  .v69-core .v69-core__steps > li:last-child { grid-column: auto; min-height: 0; }
  .v69-core .v69-core__steps > li::before { margin-bottom: 1.2rem; }
}

/* V72 detail system retained inside the new V73 scoped section. */
.v72-core {
  --v72-ink: #17211d;
  --v72-muted: #637069;
  --v72-line: rgba(23, 33, 29, 0.14);
  --v72-green: #08755e;
  --v72-green-dark: #07483c;
  --v72-mint: #e9f5f1;
  --v72-gold: #d8a540;
}

.v72-core .v69-core__intro {
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.v72-compare {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 clamp(2.25rem, 5vw, 4.25rem);
}

.v72-compare__card {
  position: relative;
  min-width: 0;
  padding: 1.35rem;
  border: 1px solid var(--v72-line);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1rem 2.5rem rgba(23, 33, 29, 0.05);
}

.v72-compare__card--ours {
  border-color: transparent;
  background:
    radial-gradient(circle at 93% 8%, rgba(255, 255, 255, 0.16), transparent 10rem),
    linear-gradient(145deg, var(--v72-green-dark), var(--v72-green));
  color: #fff;
  box-shadow: 0 1.4rem 3rem rgba(7, 72, 60, 0.2);
}

.v72-compare__tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  margin-bottom: 1rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: #eef1ef;
  color: #5a665f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.v72-compare__card--ours .v72-compare__tag {
  background: rgba(255, 255, 255, 0.14);
  color: #d8fff2;
}

.v72-compare__card h3 {
  min-height: 2.8em;
  margin: 0 0 1.1rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.4;
}

.v72-mini-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  align-items: center;
  margin-bottom: 1rem;
}

.v72-mini-flow span {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.28rem 0.58rem;
  border: 1px solid rgba(23, 33, 29, 0.1);
  border-radius: 0.6rem;
  background: #f5f7f6;
  color: #3f4c45;
  font-size: 0.76rem;
  font-weight: 750;
}

.v72-mini-flow i {
  color: #87928c;
  font-style: normal;
  font-weight: 800;
}

.v72-compare__card--ours .v72-mini-flow span {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.v72-compare__card--ours .v72-mini-flow i { color: #9de3cf; }

.v72-compare__card > p {
  margin: 0;
  color: var(--v72-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.v72-compare__card--ours > p { color: rgba(255, 255, 255, 0.78); }

.v72-core .v72-flow {
  position: relative;
  gap: 1rem;
}

.v72-core .v72-flow > li {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 19rem;
  padding: 1.25rem;
  border-top: 0.3rem solid var(--v72-green);
}

.v72-core .v72-flow > li::before {
  display: inline-grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  margin-bottom: 1.35rem;
  border-radius: 50%;
  background: var(--v72-mint);
  color: var(--v72-green);
  font-size: 0.75rem;
}

.v72-core .v72-flow > li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 3.6rem;
  right: -0.82rem;
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  border: 1px solid rgba(8, 117, 94, 0.18);
  border-radius: 50%;
  background: #fff;
  color: var(--v72-green);
  content: "→";
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 0.35rem 0.8rem rgba(23, 33, 29, 0.08);
}

.v72-step__kicker {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--v72-green);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.v72-step__output {
  display: block;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--v72-ink);
  font-size: 0.8rem;
  line-height: 1.55;
}

.v72-step__output span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--v72-green);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}

.v72-bridge {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.8rem;
  align-items: center;
  margin: clamp(1.4rem, 3vw, 2rem) auto;
  color: var(--v72-muted);
  font-size: 0.8rem;
  text-align: center;
}

.v72-bridge::before,
.v72-bridge::after {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(8, 117, 94, 0.42));
  content: "";
}

.v72-bridge::after { transform: scaleX(-1); }

.v72-bridge b {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(8, 117, 94, 0.18);
  border-radius: 999px;
  background: var(--v72-mint);
  color: var(--v72-green-dark);
}

.v72-effects {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border-radius: clamp(1.4rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 100% 0, rgba(100, 222, 188, 0.18), transparent 24rem),
    linear-gradient(145deg, #14221e, #073d34);
  color: #fff;
  box-shadow: 0 1.7rem 4rem rgba(8, 50, 42, 0.18);
}

.v72-effects__head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.85fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: 1.5rem;
}

.v72-effects__eyebrow {
  display: block;
  margin-bottom: 0.55rem;
  color: #8de3ca;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.v72-effects h3 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.v72-effects__scope {
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  line-height: 1.65;
}

.v72-effects__scope strong { color: #fff; }

.v72-effects__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.v72-effect-card {
  min-width: 0;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.075);
}

.v72-effect-card__top {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1rem;
}

.v72-effect-card__day {
  display: inline-flex;
  align-items: baseline;
  color: #fff;
  line-height: 1;
}

.v72-effect-card__day b {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.06em;
}

.v72-effect-card__day i {
  margin-left: 0.25rem;
  color: #9de3cf;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 800;
}

.v72-effect-card__stage {
  display: block;
  color: #9de3cf;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.v72-effect-card h4 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  line-height: 1.4;
}

.v72-effect-card ul {
  display: grid;
  gap: 0.52rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.v72-effect-card li {
  position: relative;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.8rem;
  line-height: 1.55;
}

.v72-effect-card li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: #70d5b8;
  content: "";
}

.v72-effect-card__signal {
  margin: 1rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.v72-effect-card__signal span,
.v72-effect-card__signal b { display: block; }

.v72-effect-card__signal span {
  margin-bottom: 0.28rem;
  color: #9de3cf;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.v72-effect-card__signal b {
  color: #fff;
  font-size: 0.76rem;
  line-height: 1.55;
}

.v72-core .v69-core__close {
  margin-top: 1.8rem;
}

@media (max-width: 1020px) {
  .v72-core .v72-flow > li:not(:last-child)::after { display: none; }
  .v72-effects__grid { grid-template-columns: minmax(0, 1fr); }
  .v72-effect-card { display: grid; grid-template-columns: 9rem minmax(0, 1fr); column-gap: 1rem; }
  .v72-effect-card__top { grid-row: 1 / 4; align-self: start; }
  .v72-effect-card h4,
  .v72-effect-card ul,
  .v72-effect-card__signal { grid-column: 2; }
}

@media (max-width: 760px) {
  .v72-compare { grid-template-columns: minmax(0, 1fr); }
  .v72-compare__card h3 { min-height: 0; }
  .v72-effects__head { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .v72-effect-card { display: block; }
  .v72-effect-card__top { grid-row: auto; }
  .v72-effect-card h4,
  .v72-effect-card ul,
  .v72-effect-card__signal { grid-column: auto; }
  .v72-bridge { grid-template-columns: 1fr; }
  .v72-bridge::before,
  .v72-bridge::after { display: none; }
}

@media (max-width: 420px) {
  .v72-effects { padding: 1.2rem; }
  .v72-mini-flow { gap: 0.35rem; }
  .v72-mini-flow span { padding-inline: 0.48rem; font-size: 0.72rem; }
}

/* V73 authored SVG presentation. */
.v73-core {
  --v73-ink: #11231d;
  --v73-muted: #66736d;
  --v73-green: #08755e;
  --v73-green-bright: #16a47f;
  --v73-mint: #dff5ed;
  --v73-gold: #d9a640;
  --v73-blue: #4f78aa;
  --v73-coral: #c76f55;
}

/* The frozen V69H1 home enhancer condenses legacy sections with [hidden].
   Keep the explicitly released V73 scope visible without changing any script. */
.v73-core,
[hidden].v73-core {
  display: block !important;
}

body[data-page="home"] section.v73-core[data-v32-condensed],
body[data-page="home"] section.v73-core[data-v34-condensed],
body.halora-v3 section.v73-core[hidden],
body[data-page="home"] section.v73-core section[hidden],
body[data-page="home"] section.v73-core section[data-v32-condensed],
body[data-page="home"] section.v73-core section[data-v34-condensed] {
  display: block !important;
}

.v73-infographic-stack {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  margin: 0 0 clamp(2.25rem, 5vw, 4.25rem);
}

.v73-infographic {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 35, 29, 0.12);
  border-radius: clamp(1.35rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1.4rem 3.5rem rgba(17, 35, 29, 0.08);
}

.v73-infographic--flywheel {
  background:
    radial-gradient(circle at 50% 42%, rgba(22, 164, 127, 0.12), transparent 19rem),
    #f7fbf9;
}

.v73-infographic--trajectory {
  border-color: rgba(129, 225, 198, 0.18);
  background: #0e2922;
  box-shadow: 0 1.6rem 4rem rgba(7, 48, 39, 0.22);
}

.v73-infographic__head {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  justify-content: space-between;
  padding: clamp(1.15rem, 3vw, 1.8rem) clamp(1.15rem, 3vw, 2rem) 0;
}

.v73-infographic__head > div { min-width: 0; }

.v73-infographic__eyebrow {
  display: block;
  margin-bottom: 0.42rem;
  color: var(--v73-green);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.v73-infographic__head h3 {
  max-width: 25em;
  margin: 0;
  color: var(--v73-ink);
  font-size: clamp(1.28rem, 2.5vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.v73-infographic--trajectory .v73-infographic__eyebrow { color: #83e2c6; }
.v73-infographic--trajectory .v73-infographic__head h3 { color: #fff; }

.v73-infographic__legend {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 0.55rem;
  align-items: center;
  padding: 0.5rem 0.72rem;
  border: 1px solid rgba(8, 117, 94, 0.14);
  border-radius: 999px;
  background: var(--v73-mint);
  color: #2c5a4d;
  font-size: 0.7rem;
  font-weight: 800;
}

.v73-infographic__legend::before {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: var(--v73-green-bright);
  box-shadow: 0 0 0 0.27rem rgba(22, 164, 127, 0.13);
  content: "";
}

.v73-infographic--trajectory .v73-infographic__legend {
  border-color: rgba(131, 226, 198, 0.22);
  background: rgba(131, 226, 198, 0.1);
  color: #b8f1df;
}

.v73-infographic__canvas {
  display: block;
  width: 100%;
  height: auto;
  max-height: 46rem;
  margin: 0 auto;
  overflow: visible;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
}

.v73-infographic__canvas * {
  vector-effect: non-scaling-stroke;
}

.v73-svg__overline {
  font-size: 18px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.v73-svg__title {
  font-size: 26px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.v73-svg__label {
  font-size: 23px;
  font-weight: 800;
}

.v73-svg__small {
  font-size: 19px;
  font-weight: 720;
}

.v73-svg__tiny {
  font-size: 17px;
  font-weight: 720;
}

.v73-svg__line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.v73-svg__icon {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.v73-infographic figcaption {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin: 0 clamp(1.15rem, 3vw, 2rem) clamp(1.15rem, 3vw, 1.6rem);
  padding: 0.82rem 1rem;
  border-left: 0.24rem solid var(--v73-green-bright);
  border-radius: 0.2rem 0.8rem 0.8rem 0.2rem;
  background: #eef8f4;
  color: #4e6159;
  font-size: 0.78rem;
  line-height: 1.65;
}

.v73-infographic figcaption strong {
  flex: 0 0 auto;
  color: var(--v73-green);
}

.v73-infographic--trajectory figcaption {
  border-left-color: #d9a640;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.74);
}

.v73-infographic--trajectory figcaption strong { color: #ffd989; }

.v73-core .v72-compare {
  margin-top: 0;
}

.v73-core .v72-compare::before,
.v73-core .v72-flow::before,
.v73-core .v72-effects__grid::before {
  grid-column: 1 / -1;
  display: block;
  margin-bottom: 0.15rem;
  color: var(--v73-green);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.v73-core .v72-compare::before { content: "图解对应的详细差异"; }
.v73-core .v72-flow::before { content: "每一步对应的交付与判断"; }
.v73-core .v72-effects__grid::before { content: "阶段成果明细"; color: #9de3cf; }

@media (max-width: 760px) {
  .v73-infographic-stack { gap: 1rem; }
  .v73-infographic__head {
    display: grid;
    align-items: start;
    padding: 1rem 1rem 0;
  }
  .v73-infographic__legend { justify-self: start; }
  .v73-infographic__canvas {
    width: calc(100% + 0.5rem);
    max-width: none;
    margin-left: -0.25rem;
  }
  .v73-infographic figcaption {
    display: block;
    margin: 0 1rem 1rem;
    font-size: 0.75rem;
  }
  .v73-infographic figcaption strong { display: block; margin-bottom: 0.2rem; }
  .v73-svg__overline { font-size: 20px; }
  .v73-svg__title { font-size: 28px; }
  .v73-svg__label { font-size: 25px; }
  .v73-svg__small { font-size: 21px; }
  .v73-svg__tiny { font-size: 19px; }
}

@media (max-width: 420px) {
  .v73-infographic { border-radius: 1.1rem; }
  .v73-infographic__head h3 { font-size: 1.2rem; }
  .v73-infographic__legend { font-size: 0.66rem; }
  .v73-infographic__canvas { width: calc(100% + 0.9rem); margin-left: -0.45rem; }
}

@media (prefers-reduced-motion: reduce) {
  .v73-infographic *,
  .v73-infographic *::before,
  .v73-infographic *::after {
    animation: none !important;
    transition: none !important;
  }
}
