:root {
  color-scheme: light;
  --paper: #f5f2eb;
  --paper-strong: #fffdf8;
  --ink: #101010;
  --muted: #6d6963;
  --line: #c8c0b4;
  --line-soft: #e1d9cc;
  --taupe: #aaa092;
  --stone: #8c8e86;
  --olive: #6f765d;
  --terracotta: #c25f36;
  --clay: #9a4d32;
  --douyin-cyan: #00e5ff;
  --douyin-red: #ff2f61;
  --electric: #1924ff;
  --lime: #b9ff4d;
  --black: #111;
  --white: #fff;
  --shadow: 0 22px 70px rgba(24, 19, 12, 0.13);
  --lift-shadow: 0 28px 90px rgba(13, 12, 10, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(115deg, transparent 0 48%, rgba(255, 47, 97, 0.08) 48% 49%, transparent 49% 100%),
    linear-gradient(134deg, transparent 0 66%, rgba(0, 229, 255, 0.11) 66% 67%, transparent 67% 100%),
    linear-gradient(90deg, rgba(20, 20, 20, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 20, 20, 0.03) 1px, transparent 1px),
    var(--paper);
  background-size: 64px 64px;
  font-family: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(100deg, transparent 0 34px, rgba(0, 229, 255, 0.055) 34px 35px, transparent 35px 92px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 10px);
  opacity: 0.55;
  animation: scanField 14s linear infinite;
}

@keyframes scanField {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-64px, 32px, 0); }
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.brand-line {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  padding: 10px 24px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
  background: rgba(247, 244, 237, 0.9);
  backdrop-filter: blur(14px);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--douyin-cyan), var(--douyin-red), var(--black));
  transform-origin: left;
  animation: lineSweep 4.8s ease-in-out infinite;
}

@keyframes lineSweep {
  0%, 100% { transform: scaleX(0.22); opacity: 0.55; }
  48% { transform: scaleX(1); opacity: 1; }
}

.brand-line span:last-child {
  text-align: right;
}

.app-shell {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  min-height: calc(100vh - 37px);
}

.sidebar {
  position: sticky;
  top: 37px;
  height: calc(100vh - 37px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  padding: 26px 20px;
  border-right: 1px solid rgba(17, 17, 17, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.84), rgba(239, 235, 226, 0.78)),
    rgba(242, 239, 231, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0 18px;
  border-bottom: 1px solid var(--line-soft);
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 82px;
  min-width: 82px;
  height: 58px;
  display: flex;
  align-items: center;
  padding: 8px 9px;
  border: 1px solid var(--black);
  background:
    linear-gradient(135deg, var(--black) 0 72%, var(--douyin-red) 72% 76%, var(--douyin-cyan) 76% 80%, var(--black) 80%);
  color: var(--paper-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.03;
  letter-spacing: 0;
  box-shadow: 5px 5px 0 var(--douyin-cyan), -3px -3px 0 rgba(255, 47, 97, 0.72);
}

.brand strong {
  display: block;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.workflow-nav {
  display: grid;
  align-content: start;
  gap: 8px;
  overflow: auto;
  padding-right: 4px;
}

.workflow {
  width: 100%;
  min-height: 76px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px 12px;
  position: relative;
  overflow: hidden;
  padding: 14px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  border-bottom-color: var(--line-soft);
  background: transparent;
  color: var(--ink);
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.workflow::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--douyin-cyan), var(--douyin-red));
  opacity: 0;
  transition: opacity 180ms ease;
}

.workflow:hover {
  transform: translateX(4px);
  border-color: rgba(17, 17, 17, 0.18);
  background: rgba(255, 255, 255, 0.54);
}

.workflow span {
  grid-row: span 2;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.workflow strong {
  font-size: 15px;
}

.workflow small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  min-width: 0;
}

.workflow.active {
  border-color: var(--black);
  background:
    linear-gradient(90deg, rgba(0, 229, 255, 0.11), rgba(255, 47, 97, 0.08)),
    var(--paper-strong);
  box-shadow: 8px 8px 0 rgba(17, 17, 17, 0.08);
}

.workflow.active::before {
  opacity: 1;
}

.sidebar-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 47, 97, 0.08), transparent 42%),
    linear-gradient(315deg, rgba(0, 229, 255, 0.12), transparent 46%),
    rgba(255, 255, 255, 0.58);
}

.sidebar-card strong {
  display: block;
  margin-top: 8px;
}

.sidebar-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.workspace {
  min-width: 0;
  padding: 28px;
}

.section {
  display: none;
  margin-bottom: 26px;
  scroll-margin-top: 58px;
}

.section.active {
  display: block;
}

.hero {
  min-height: 560px;
  grid-template-columns: minmax(320px, 0.86fr) minmax(420px, 1.14fr);
  gap: 28px;
  align-items: stretch;
}

.hero.active {
  display: grid;
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-copy::before {
  content: "LOCAL LIFE";
  position: absolute;
  top: 22px;
  right: 6px;
  color: rgba(17, 17, 17, 0.05);
  font-size: 78px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.eyebrow {
  display: inline-block;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  max-width: 640px;
  margin: 16px 0 0;
  font-size: 76px;
  line-height: 0.98;
}

h1 span {
  position: relative;
  display: block;
  width: fit-content;
  text-shadow: 3px 0 0 rgba(0, 229, 255, 0.55), -3px 0 0 rgba(255, 47, 97, 0.42);
}

h1 span:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: -24px;
  bottom: 9px;
  z-index: -1;
  height: 18px;
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.52), rgba(255, 47, 97, 0.48));
  transform: skewX(-18deg);
}

h2 {
  margin: 8px 0 0;
  font-size: 44px;
  line-height: 1.06;
}

.lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: #46433e;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
}

.live-chip {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 11px;
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.live-chip span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--douyin-red);
  box-shadow: 0 0 0 0 rgba(255, 47, 97, 0.58);
  animation: livePulse 1.6s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 47, 97, 0.58); }
  55% { box-shadow: 0 0 0 8px rgba(255, 47, 97, 0); }
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-action,
.secondary-action {
  position: relative;
  overflow: hidden;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--black);
  border-radius: 8px;
  background: var(--black);
  color: var(--paper-strong);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.secondary-action {
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
}

.primary-action::after,
.secondary-action::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -40%;
  width: 36%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-18deg);
  transition: left 260ms ease;
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 0 rgba(0, 229, 255, 0.45), -4px -4px 0 rgba(255, 47, 97, 0.32);
}

.primary-action:hover::after,
.secondary-action:hover::after {
  left: 120%;
}

.primary-action.full {
  width: 100%;
  margin-top: 16px;
}

.hero-image {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ddd5c7;
  box-shadow: var(--lift-shadow);
}

.hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  animation: imageDrift 14s ease-in-out infinite alternate;
}

@keyframes imageDrift {
  0% { transform: scale(1.02) translate3d(0, 0, 0); }
  100% { transform: scale(1.07) translate3d(-18px, 0, 0); }
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 229, 255, 0.12), transparent 22%),
    linear-gradient(180deg, transparent 52%, rgba(17, 17, 17, 0.22));
  mix-blend-mode: multiply;
}

.live-overlay,
.poi-overlay {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.76);
  color: var(--paper-strong);
  backdrop-filter: blur(16px);
  box-shadow: 8px 8px 0 rgba(0, 229, 255, 0.34);
}

.live-overlay {
  top: 20px;
  left: 20px;
  display: grid;
  gap: 3px;
  padding: 12px 14px;
}

.live-overlay span {
  width: fit-content;
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--douyin-red);
  font-size: 10px;
  font-weight: 900;
}

.live-overlay strong {
  font-size: 28px;
  line-height: 1;
}

.live-overlay small,
.poi-overlay span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.poi-overlay {
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  box-shadow: -8px 8px 0 rgba(255, 47, 97, 0.32);
}

.poi-overlay span {
  color: var(--douyin-cyan);
  font-weight: 900;
}

.image-caption {
  z-index: 2;
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(20, 20, 20, 0.25);
  backdrop-filter: blur(10px);
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.signal-row span {
  padding: 7px 10px;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: #35322e;
  font-size: 12px;
  font-weight: 900;
}

.image-caption span {
  color: var(--muted);
  font-size: 11px;
}

.image-caption strong {
  font-size: 13px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 28px;
  gap: 12px;
  border: 0;
}

.metric-strip article {
  position: relative;
  overflow: hidden;
  min-height: 128px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.28)),
    rgba(255, 255, 255, 0.28);
  box-shadow: 0 14px 38px rgba(20, 16, 10, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.metric-strip article::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--douyin-cyan), var(--douyin-red));
}

.metric-strip article::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -40px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  transform: rotate(22deg);
}

.metric-strip article:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 58px rgba(20, 16, 10, 0.14);
}

.metric-strip span,
.metric-strip small {
  color: var(--muted);
  font-size: 12px;
}

.metric-strip strong {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.48fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.two-column,
.generator-grid,
.review-layout,
.delivery-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
}

.panel {
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.84), rgba(255, 255, 255, 0.48)),
    rgba(251, 250, 246, 0.62);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.panel:hover {
  transform: translateY(-2px);
  box-shadow: var(--lift-shadow);
}

.panel-head {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.13);
  background:
    linear-gradient(90deg, rgba(0, 229, 255, 0.1), transparent 34%),
    linear-gradient(270deg, rgba(255, 47, 97, 0.09), transparent 42%);
}

.panel-head strong {
  font-size: 16px;
}

.panel-head span {
  color: var(--clay);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.field {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.field span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
}

input,
select {
  height: 44px;
  padding: 0 12px;
}

textarea {
  min-height: 138px;
  resize: vertical;
  padding: 12px;
  line-height: 1.7;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-soft);
}

.form-grid .field {
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.form-grid .wide {
  grid-column: 1 / -1;
}

.score-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.score-board div {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 16px;
  border-right: 1px solid var(--line-soft);
}

.score-board span {
  color: var(--muted);
  font-size: 12px;
}

.score-board strong {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: transparent;
  background: linear-gradient(90deg, var(--douyin-red), var(--douyin-cyan));
  -webkit-background-clip: text;
  background-clip: text;
}

.analysis-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.analysis-list li,
.insight-list article {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  border-bottom: 1px solid var(--line-soft);
}

.analysis-list strong,
.insight-list strong {
  color: var(--ink);
}

.analysis-list strong::before,
.insight-list strong::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--douyin-red);
  box-shadow: 4px 0 0 var(--douyin-cyan);
}

.analysis-list span,
.insight-list span,
.ops-card p,
.timeline small,
.budget-list small {
  color: var(--muted);
  line-height: 1.7;
}

.workflow-map,
.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
  gap: 12px;
  border: 0;
}

.workflow-map article {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.24)),
    rgba(255, 255, 255, 0.28);
}

.workflow-map article::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--douyin-cyan), var(--douyin-red));
  transform: translateY(1px);
}

.workflow-map span,
.ops-card span,
.timeline span {
  color: var(--clay);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.workflow-map small {
  color: var(--muted);
  line-height: 1.6;
}

.generated-panel {
  min-height: 500px;
}

.material-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.material-card {
  position: relative;
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.material-card span {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--douyin-red), var(--clay));
  color: var(--paper-strong);
  font-size: 11px;
  font-weight: 900;
}

.material-card strong {
  font-size: 17px;
}

.material-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.material-card small {
  color: var(--clay);
  font-weight: 700;
  line-height: 1.5;
}

.ops-grid {
  gap: 0;
}

.ops-card {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.ops-card p {
  margin: 0;
}

.timeline-panel {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.62);
  box-shadow: var(--shadow);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline article {
  position: relative;
  min-height: 170px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  border-right: 1px solid var(--line-soft);
}

.timeline article::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--douyin-cyan);
  box-shadow: 0 0 0 5px rgba(0, 229, 255, 0.14);
}

.timeline article span,
.timeline article strong,
.timeline article small {
  margin-left: 22px;
}

.timeline strong {
  font-size: 18px;
}

.chart-panel {
  min-height: 520px;
}

.funnel {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.funnel div {
  width: var(--w);
  min-width: 220px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--black), #2b2b2a 64%, var(--douyin-red));
  color: var(--paper-strong);
  box-shadow: 6px 6px 0 rgba(0, 229, 255, 0.22);
  animation: barEnter 700ms ease both;
}

.funnel div:nth-child(2) { animation-delay: 80ms; }
.funnel div:nth-child(3) { animation-delay: 160ms; }
.funnel div:nth-child(4) { animation-delay: 240ms; }
.funnel div:nth-child(5) { animation-delay: 320ms; }
.funnel div:nth-child(6) { animation-delay: 400ms; }

@keyframes barEnter {
  from { transform: scaleX(0.72); transform-origin: left; opacity: 0.35; }
  to { transform: scaleX(1); transform-origin: left; opacity: 1; }
}

.funnel span {
  font-size: 13px;
}

.funnel strong {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.insight-list {
  display: grid;
}

.delivery-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.budget-list {
  display: grid;
}

.budget-list div {
  display: grid;
  grid-template-columns: 1fr 74px;
  gap: 4px 18px;
  padding: 17px;
  border-bottom: 1px solid var(--line-soft);
}

.budget-list span {
  font-weight: 700;
}

.budget-list strong {
  grid-row: span 2;
  align-self: center;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 30px;
  font-weight: 900;
  text-align: right;
  color: var(--douyin-red);
}

.risk-table {
  width: 100%;
  border-collapse: collapse;
}

.risk-table th,
.risk-table td {
  padding: 18px 14px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: top;
}

.risk-table th {
  width: 118px;
  color: var(--clay);
  font-weight: 700;
}

.risk-table td {
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 1120px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: relative;
    top: 0;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .hero.active,
  .two-column,
  .generator-grid,
  .review-layout,
  .delivery-grid,
  .section-head {
    grid-template-columns: 1fr;
  }

  .metric-strip,
  .workflow-map,
  .ops-grid,
  .timeline,
  .material-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-copy::before {
    font-size: 58px;
  }
}

@media (max-width: 720px) {
  .brand-line {
    grid-template-columns: 1fr;
  }

  .brand-line span,
  .brand-line span:last-child {
    text-align: left;
  }

  .workspace {
    padding: 18px;
  }

  .hero-copy {
    padding: 34px 0;
  }

  .hero-copy::before {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  h1 span:first-child::after {
    right: -8px;
    bottom: 4px;
    height: 11px;
  }

  h2 {
    font-size: 30px;
  }

  .lead {
    font-size: 16px;
  }

  .workflow-nav,
  .metric-strip,
  .workflow-map,
  .ops-grid,
  .timeline,
  .material-cards,
  .form-grid,
  .score-board {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 380px;
  }

  .live-overlay {
    top: 12px;
    left: 12px;
  }

  .poi-overlay {
    left: 12px;
    right: 12px;
    top: auto;
    bottom: 80px;
    justify-content: space-between;
  }

  .image-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .analysis-list li,
  .insight-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
