:root {
  color-scheme: light;
  --ink: #1b1f24;
  --muted: #59636f;
  --line: #dde3ea;
  --bg: #f5f7fa;
  --accent: #1473e6;
  --accent-dark: #0d4f9f;
  --green: #18a058;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 72px max(24px, calc((100vw - 1120px) / 2)) 56px;
  background:
    linear-gradient(90deg, rgba(245, 247, 250, 0.96) 0%, rgba(245, 247, 250, 0.88) 48%, rgba(245, 247, 250, 0.18) 100%),
    linear-gradient(135deg, #d9e8ff 0%, #ffffff 52%, #d9f2e3 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.eyebrow {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 18px;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: clamp(44px, 8vw, 84px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy p {
  margin-top: 24px;
  max-width: 560px;
  font-size: 20px;
  line-height: 1.8;
  color: var(--muted);
}

.status-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  color: #23303d;
  font-size: 15px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(24, 160, 88, 0.14);
}

.scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.scene::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: min(56vw, 760px);
  height: 100%;
  background:
    linear-gradient(120deg, transparent 0 26%, rgba(20, 115, 230, 0.08) 26% 34%, transparent 34% 100%),
    linear-gradient(148deg, transparent 0 42%, rgba(24, 160, 88, 0.12) 42% 54%, transparent 54% 100%);
}

.scene-panel {
  position: absolute;
  right: max(32px, calc((100vw - 1120px) / 2));
  top: 50%;
  width: min(420px, 34vw);
  min-height: 300px;
  transform: translateY(-50%);
  padding: 26px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(33, 48, 68, 0.16);
  backdrop-filter: blur(14px);
}

.panel-head {
  display: flex;
  gap: 8px;
}

.panel-head span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #98a6b8;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.panel-grid div {
  height: 74px;
  border-radius: 8px;
  background: linear-gradient(135deg, #edf4ff, #d9e8ff);
}

.panel-grid div:nth-child(2) {
  background: linear-gradient(135deg, #effaf3, #d9f2e3);
}

.panel-grid div:nth-child(3) {
  background: linear-gradient(135deg, #fff6e8, #ffe3b5);
}

.panel-grid div:nth-child(4) {
  background: linear-gradient(135deg, #f1f5f9, #dfe7ef);
}

.panel-line {
  height: 12px;
  width: 62%;
  margin-top: 16px;
  border-radius: 8px;
  background: #d7dee8;
}

.panel-line.wide {
  width: 88%;
  margin-top: 26px;
}

.info-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.info-band article {
  min-height: 156px;
  padding: 32px;
  background: #fff;
}

.info-band h2 {
  font-size: 20px;
  letter-spacing: 0;
}

.info-band p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 820px) {
  .hero {
    min-height: 68vh;
    padding: 52px 24px 44px;
  }

  .scene-panel {
    display: none;
  }

  .info-band {
    grid-template-columns: 1fr;
  }
}
