﻿:root {
  --bg: #061528;
  --bg-2: #081b33;
  --panel: rgba(10, 30, 60, 0.72);
  --panel-strong: rgba(8, 22, 48, 0.9);
  --cyan: #21d4fd;
  --purple: #7c5cff;
  --mint: #00f5c8;
  --text: #f4fbff;
  --muted: #a9bdd6;
  --line: rgba(80, 220, 255, 0.28);
  --line-strong: rgba(80, 220, 255, 0.7);
  --danger: #ff7d9a;
  --radius: 8px;
  --shadow: 0 24px 72px rgba(0, 0, 0, 0.36);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: "Microsoft YaHei", "PingFang SC", "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 18% 8%, rgba(33, 212, 253, 0.24), transparent 26rem),
    radial-gradient(circle at 82% 18%, rgba(124, 92, 255, 0.26), transparent 30rem),
    radial-gradient(circle at 70% 80%, rgba(0, 245, 200, 0.11), transparent 24rem),
    linear-gradient(135deg, #04101f 0%, var(--bg) 46%, #0c1644 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: -4;
  content: "";
  pointer-events: none;
}

body::before {
  background-image:
    linear-gradient(rgba(80, 220, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 220, 255, 0.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.92), transparent 84%);
}

body::after {
  background:
    linear-gradient(105deg, transparent 0 20%, rgba(33, 212, 253, 0.07) 36%, transparent 52%),
    linear-gradient(70deg, transparent 0 52%, rgba(124, 92, 255, 0.1) 66%, transparent 78%);
  opacity: 0.85;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.particle-canvas {
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: 0.58;
  pointer-events: none;
}

.shell {
  width: min(1500px, calc(100% - 56px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(80, 220, 255, 0.16);
  background: rgba(5, 16, 33, 0.72);
  backdrop-filter: blur(22px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 245px;
  gap: 13px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(33, 212, 253, 0.5);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(33, 212, 253, 0.24), rgba(124, 92, 255, 0.18));
  box-shadow: 0 0 28px rgba(33, 212, 253, 0.2), inset 0 0 22px rgba(255, 255, 255, 0.06);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.brand-mark::before {
  width: 20px;
  height: 20px;
  border: 2px solid var(--cyan);
  border-right-color: transparent;
  box-shadow: 0 0 14px var(--cyan);
}

.brand-mark::after {
  width: 6px;
  height: 6px;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-title {
  font-size: 18px;
  font-weight: 900;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.nav-links a,
.nav-button {
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #c9dcf2;
  background: transparent;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.is-active,
.nav-button:hover {
  border-color: rgba(33, 212, 253, 0.36);
  color: #ffffff;
  background: rgba(33, 212, 253, 0.1);
  box-shadow: 0 0 24px rgba(33, 212, 253, 0.14), inset 0 0 22px rgba(33, 212, 253, 0.06);
}

.auth-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(0, 245, 200, 0.26);
  border-radius: 999px;
  color: #adfff0;
  background: rgba(0, 245, 200, 0.08);
  font-size: 13px;
  white-space: nowrap;
}

.auth-pill::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 16px var(--mint);
}

.glass-panel,
.workspace-panel,
.notice-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(13, 45, 86, 0.68), rgba(9, 21, 55, 0.74)),
    rgba(10, 30, 60, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.glass-panel::before,
.workspace-panel::before,
.notice-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 24%, transparent 72%, rgba(33, 212, 253, 0.12));
  opacity: 0.72;
  pointer-events: none;
}

.glass-panel::after,
.workspace-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: radial-gradient(circle at 18% 0%, rgba(33, 212, 253, 0.15), transparent 32rem);
  pointer-events: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 620px);
  align-items: center;
  gap: 42px;
  min-height: calc(100vh - 72px);
  padding: 54px 0 36px;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.eyebrow,
.section-kicker,
.panel-title span,
.team-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border: 1px solid rgba(33, 212, 253, 0.3);
  border-radius: 999px;
  color: #bff5ff;
  background: rgba(33, 212, 253, 0.08);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow {
  gap: 10px;
  padding: 8px 12px;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan));
}

.section-kicker,
.panel-title span,
.team-badge {
  padding: 6px 10px;
}

.hero h1 {
  display: grid;
  gap: 4px;
  margin: 24px 0 20px;
  font-size: clamp(52px, 5vw, 88px);
  line-height: 1.02;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(90deg, #ffffff 0%, var(--cyan) 42%, #a99aff 88%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 38px rgba(33, 212, 253, 0.22);
}

.hero-copy {
  max-width: 780px;
  margin: 0;
  color: #c7d7ea;
  font-size: 18px;
  line-height: 1.75;
}

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

.hero-actions {
  margin-top: 30px;
}

.primary-button,
.secondary-button,
.card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(33, 212, 253, 0.42);
  border-radius: 8px;
  color: #03111e;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(33, 212, 253, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.secondary-button {
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.emphasis-button {
  min-width: 132px;
  box-shadow: 0 0 28px rgba(33, 212, 253, 0.24), 0 18px 44px rgba(124, 92, 255, 0.22);
}

.primary-button:hover,
.secondary-button:hover,
.card-button:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 245, 200, 0.68);
  box-shadow: 0 0 34px rgba(33, 212, 253, 0.3), 0 16px 42px rgba(124, 92, 255, 0.22);
}

.hero-capsules {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-capsules a,
.tag {
  border: 1px solid rgba(80, 220, 255, 0.28);
  border-radius: 999px;
  color: #d7f7ff;
  background: rgba(80, 220, 255, 0.08);
}

.hero-capsules a {
  padding: 10px 14px;
  box-shadow: inset 0 0 18px rgba(33, 212, 253, 0.06), 0 0 18px rgba(33, 212, 253, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hero-capsules a:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 245, 200, 0.6);
  box-shadow: 0 0 28px rgba(33, 212, 253, 0.22);
}

.tag {
  padding: 7px 10px;
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: 700px;
}

.holo-stage {
  position: absolute;
  inset: 20px 0 0;
  display: grid;
  place-items: center;
}

.holo-stage::before {
  position: absolute;
  inset: 8% 5% 8%;
  content: "";
  border: 1px solid rgba(80, 220, 255, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(33, 212, 253, 0.15), transparent 52%),
    linear-gradient(rgba(80, 220, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 220, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  filter: drop-shadow(0 0 34px rgba(33, 212, 253, 0.16));
}

.energy-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(33, 212, 253, 0.36);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  box-shadow: 0 0 28px rgba(33, 212, 253, 0.13);
}

.orbit-a {
  width: 520px;
  height: 220px;
}

.orbit-b {
  width: 430px;
  height: 520px;
  border-color: rgba(124, 92, 255, 0.28);
  transform: translate(-50%, -50%) rotate(28deg);
}

.orbit-c {
  width: 340px;
  height: 340px;
  border-style: dashed;
  border-color: rgba(0, 245, 200, 0.26);
  transform: translate(-50%, -50%) rotate(8deg);
}

.holo-ring {
  position: absolute;
  left: 50%;
  bottom: 66px;
  z-index: 1;
  width: 380px;
  height: 92px;
  border: 1px solid rgba(33, 212, 253, 0.42);
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(33, 212, 253, 0.2), transparent 62%);
  box-shadow: 0 0 42px rgba(33, 212, 253, 0.24), inset 0 0 28px rgba(33, 212, 253, 0.16);
}

.scanner-line {
  position: absolute;
  left: 50%;
  bottom: 102px;
  z-index: 1;
  width: 2px;
  height: 470px;
  background: linear-gradient(to bottom, transparent, rgba(33, 212, 253, 0.36), transparent);
  transform: translateX(-50%);
  opacity: 0.58;
}

.agent-cutout {
  pointer-events: none;
}

.agent-main {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 560px);
  height: 670px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 42px rgba(33, 212, 253, 0.3));
  animation: floatAgent 5.8s ease-in-out infinite;
}

.agent-main.is-fallback-image {
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  mask-image: linear-gradient(to bottom, #000 0 64%, transparent 92%);
  opacity: 0.94;
}

.section {
  padding: 54px 0;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 46px);
}

.section-head p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.team-card:hover,
.workspace-panel:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42), 0 0 36px rgba(33, 212, 253, 0.18);
}

.card-role {
  color: var(--mint);
  font-weight: 800;
}

.card-button {
  width: max-content;
  min-height: 38px;
  padding: 0 14px;
  color: var(--text);
  background: rgba(33, 212, 253, 0.1);
  box-shadow: none;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.team-card {
  min-height: 174px;
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.team-card h3 {
  position: relative;
  z-index: 2;
  margin: 18px 0 10px;
  font-size: 22px;
}

.team-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.notice-panel {
  padding: 20px 22px;
  color: #d6e7f7;
  line-height: 1.7;
  text-align: center;
}

.footer {
  padding: 34px 0 48px;
  color: var(--muted);
  text-align: center;
}

.tool-page {
  padding: 28px 0 54px;
}

.tool-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: stretch;
  min-height: 196px;
  margin-bottom: 18px;
  padding: 20px 22px;
}

.tool-overview-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 11px;
}

.tool-overview h1 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 46px);
}

.tool-overview p {
  max-width: 840px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.agent-profile {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  min-height: 154px;
  padding: 15px;
  border: 1px solid rgba(80, 220, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.agent-profile img {
  position: absolute;
  right: -2px;
  bottom: 28px;
  width: 146px;
  height: 158px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.42));
}

.agent-profile img.is-fallback-image {
  right: -4px;
  bottom: 36px;
  width: 150px;
  height: 156px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  mask-image: linear-gradient(to bottom, #000 0 72%, transparent 100%);
}

.agent-profile div {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 190px;
  gap: 5px;
}

.agent-profile span,
.agent-profile small {
  color: var(--muted);
  font-size: 13px;
}

.agent-profile strong {
  font-size: 20px;
}

.workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  gap: 18px;
  align-items: start;
}

.workspace-panel {
  padding: 18px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.input-panel {
  display: grid;
  gap: 14px;
}

.side-stack {
  display: grid;
  gap: 16px;
}

.panel-title {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.panel-title h2 {
  margin: 0;
  font-size: 20px;
}

.field {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.field label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #ecf9ff;
  font-weight: 800;
}

.counter {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.counter.is-danger {
  color: var(--danger);
}

select,
textarea,
input {
  width: 100%;
  border: 1px solid rgba(80, 220, 255, 0.24);
  border-radius: 8px;
  color: var(--text);
  background: rgba(3, 13, 29, 0.68);
  outline: none;
  box-shadow: inset 0 0 24px rgba(33, 212, 253, 0.035);
}

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

textarea {
  min-height: 215px;
  padding: 13px;
  resize: vertical;
  line-height: 1.7;
}

textarea.tall {
  min-height: 430px;
}

.compact-field textarea {
  min-height: 205px;
}

select:focus,
textarea:focus,
input:focus {
  border-color: rgba(33, 212, 253, 0.78);
  box-shadow: 0 0 0 3px rgba(33, 212, 253, 0.12), inset 0 0 24px rgba(33, 212, 253, 0.06);
}

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

.mini-panel {
  min-height: 230px;
}

.result-content {
  position: relative;
  z-index: 2;
  min-height: 380px;
  color: #dceeff;
  line-height: 1.7;
  white-space: pre-wrap;
}

.result-content.empty-state {
  display: grid;
  align-content: start;
  gap: 14px;
  color: var(--muted);
  white-space: normal;
}

.empty-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

.empty-state ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.empty-state li {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(80, 220, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.empty-state b {
  color: #dffaff;
}

.empty-state p {
  margin: 0;
}

.mini-panel .result-content {
  min-height: 130px;
}

.result-panel .form-actions {
  position: relative;
  z-index: 2;
  margin-top: 14px;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2, 7, 18, 0.72);
  backdrop-filter: blur(18px);
}

.auth-overlay.is-open {
  display: flex;
}

.auth-box {
  width: min(460px, 100%);
  padding: 24px;
}

.auth-box h2 {
  position: relative;
  z-index: 2;
  margin: 16px 0 8px;
  font-size: 28px;
}

.auth-box p {
  position: relative;
  z-index: 2;
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.auth-error {
  position: relative;
  z-index: 2;
  margin: -4px 0 14px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 125, 154, 0.34);
  border-radius: 8px;
  color: #ffd9e1;
  background: rgba(255, 125, 154, 0.1);
  font-size: 13px;
}

.auth-error[hidden] {
  display: none;
}

@keyframes floatAgent {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (min-width: 1600px) {
  .shell {
    width: min(1580px, calc(100% - 72px));
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(520px, 680px);
  }
}

@media (max-width: 1180px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links {
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .tool-overview,
  .workspace-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 590px;
  }

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

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 1500px);
  }

  .brand {
    min-width: 0;
  }

  .brand-subtitle {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .holo-stage {
    inset: 10px 0 0;
  }

  .agent-main {
    height: 470px;
  }

  .energy-orbit {
    transform: translate(-50%, -50%) scale(0.72) rotate(-12deg);
  }

  .team-grid,
.mini-grid {
    grid-template-columns: 1fr;
  }

  .tool-overview {
    min-height: auto;
    padding: 18px;
  }

  .agent-profile {
    min-height: 150px;
  }
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bot-stage {
  position: relative;
  width: min(42vw, 520px);
  min-width: 320px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  isolation: isolate;
}

.hero-bot-float {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: 50% 55%;
}

body.is-just-entered .hero-bot-float,
.hero-bot-float.is-floating {
  animation: botFloat 4.8s ease-in-out 1.25s infinite;
}

.hero-bot-img {
  position: relative;
  z-index: 3;
  width: 88%;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 18px rgba(61, 220, 255, .45))
    drop-shadow(0 26px 54px rgba(0, 56, 112, .42));
  animation: botBlinkLite 3s ease-in-out 2.2s infinite;
}

.hero-bot-img.is-fallback-image {
  border-radius: 8px;
  mask-image: linear-gradient(to bottom, #000 0 68%, transparent 96%);
}

@keyframes botFlyIn {
  0% {
    opacity: 0;
    transform: translate3d(130px, 95px, 0) scale(.72) rotate(-9deg);
    filter: blur(8px);
  }

  58% {
    opacity: 1;
    transform: translate3d(-8px, -10px, 0) scale(1.035) rotate(2.2deg);
    filter: blur(0);
  }

  78% {
    transform: translate3d(3px, 3px, 0) scale(.992) rotate(-.8deg);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0);
    filter: blur(0);
  }
}

@keyframes botFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0);
  }

  50% {
    transform: translate3d(0, -9px, 0) rotate(.7deg);
  }
}

@keyframes wingTrailLeft {
  0%,
  100% {
    opacity: .22;
    transform: rotate(-17deg) skewY(-4deg) scaleX(.94) scaleY(.98);
  }

  50% {
    opacity: .52;
    transform: rotate(-21deg) skewY(-7deg) scaleX(1.08) scaleY(1.04);
  }
}

@keyframes wingTrailRight {
  0%,
  100% {
    opacity: .22;
    transform: rotate(17deg) skewY(4deg) scaleX(.94) scaleY(.98);
  }

  50% {
    opacity: .52;
    transform: rotate(21deg) skewY(7deg) scaleX(1.08) scaleY(1.04);
  }
}

@keyframes botAuraPulse {
  0%,
  100% {
    opacity: .64;
    transform: scale(.98);
  }

  50% {
    opacity: .95;
    transform: scale(1.04);
  }
}

@keyframes botBlinkLite {
  0%,
  91%,
  100% {
    filter:
      drop-shadow(0 0 18px rgba(61, 220, 255, .45))
      drop-shadow(0 26px 54px rgba(0, 56, 112, .42))
      brightness(1);
  }

  94% {
    filter:
      drop-shadow(0 0 10px rgba(61, 220, 255, .24))
      drop-shadow(0 20px 42px rgba(0, 56, 112, .34))
      brightness(.82)
      saturate(.82);
  }

  96% {
    filter:
      drop-shadow(0 0 22px rgba(61, 220, 255, .52))
      drop-shadow(0 26px 54px rgba(0, 56, 112, .42))
      brightness(1.08);
  }
}

@media (max-width: 900px) {
  .hero-bot-stage {
    width: min(78vw, 420px);
    min-width: 260px;
  }
}

body.home-v2 {
  background:
    radial-gradient(circle at 73% 30%, rgba(33, 212, 253, 0.22), transparent 28rem),
    radial-gradient(circle at 52% 76%, rgba(0, 245, 200, 0.1), transparent 30rem),
    radial-gradient(circle at 16% 22%, rgba(27, 116, 255, 0.18), transparent 25rem),
    linear-gradient(135deg, #020711 0%, #041121 46%, #071632 100%);
}

body.home-v2::before {
  background-image:
    linear-gradient(rgba(58, 202, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 202, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle, rgba(33, 212, 253, 0.16) 1px, transparent 1px);
  background-size: 42px 42px, 42px 42px, 120px 120px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), transparent 90%);
}

body.home-v2::after {
  background:
    linear-gradient(90deg, transparent 0 44%, rgba(33, 212, 253, 0.08) 50%, transparent 58%),
    linear-gradient(115deg, transparent 0 24%, rgba(0, 174, 255, 0.12) 42%, transparent 60%);
  opacity: 0.95;
}

.home-v2 .home-topbar {
  background: rgba(0, 7, 18, 0.78);
  border-bottom-color: rgba(42, 207, 255, 0.16);
}

.home-v2 .nav {
  min-height: 78px;
}

.home-v2 .brand-title {
  font-size: 20px;
  text-shadow: 0 0 18px rgba(33, 212, 253, 0.18);
}

.home-v2 .nav-links a,
.home-v2 .nav-button {
  color: rgba(222, 238, 255, 0.84);
}

.home-v2 .nav-links a.is-active {
  color: #ffffff;
  border-color: rgba(33, 212, 253, 0.52);
  background: rgba(33, 212, 253, 0.12);
  box-shadow: inset 0 -2px 0 var(--cyan), 0 0 22px rgba(33, 212, 253, 0.16);
}

.home-v2-main {
  position: relative;
  overflow: hidden;
}

.home-v2-main::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 285px;
  height: 340px;
  content: "";
  background:
    linear-gradient(to top, rgba(0, 136, 255, 0.12), transparent 70%),
    repeating-linear-gradient(90deg, transparent 0 32px, rgba(33, 212, 253, 0.08) 32px 34px);
  opacity: 0.38;
  transform: skewY(-2deg);
  pointer-events: none;
}

.hero-v2 {
  position: relative;
  grid-template-columns: minmax(520px, 0.95fr) minmax(620px, 1.05fr);
  min-height: 700px;
  padding: 56px 0 18px;
  gap: 26px;
}

.hero-v2-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-v2-bg::before {
  position: absolute;
  left: 4%;
  right: 2%;
  bottom: 78px;
  height: 180px;
  content: "";
  background:
    linear-gradient(to top, rgba(14, 90, 152, 0.2), transparent),
    repeating-linear-gradient(90deg, rgba(33, 212, 253, 0.2) 0 1px, transparent 1px 46px);
  clip-path: polygon(0 72%, 8% 62%, 8% 40%, 12% 40%, 12% 68%, 19% 54%, 19% 28%, 23% 28%, 23% 58%, 31% 48%, 31% 20%, 35% 20%, 35% 62%, 47% 46%, 47% 24%, 51% 24%, 51% 60%, 65% 44%, 65% 30%, 69% 30%, 69% 66%, 80% 52%, 80% 18%, 85% 18%, 85% 60%, 100% 44%, 100% 100%, 0 100%);
  opacity: 0.42;
  filter: drop-shadow(0 0 20px rgba(33, 212, 253, 0.2));
}

.city-line {
  position: absolute;
  height: 1px;
  opacity: 0.16;
  background: linear-gradient(90deg, transparent, rgba(33, 212, 253, 0.75), transparent);
  box-shadow: 0 0 18px rgba(33, 212, 253, 0.3);
}

.city-line-a {
  right: 23%;
  top: 104px;
  width: 280px;
  transform: rotate(-6deg);
}

.city-line-b {
  right: 9%;
  top: 242px;
  width: 390px;
}

.city-line-c {
  left: 35%;
  bottom: 172px;
  width: 620px;
  transform: rotate(-1deg);
}

.city-line-d {
  left: 2%;
  bottom: 286px;
  width: 310px;
}

.city-line-e {
  right: 30%;
  bottom: 98px;
  width: 430px;
  transform: rotate(4deg);
}

.hero-v2-content {
  align-self: center;
  padding-top: 4px;
}

.hero-v2-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid rgba(33, 212, 253, 0.44);
  border-radius: 999px;
  color: #42e5ff;
  background: linear-gradient(90deg, rgba(33, 212, 253, 0.12), rgba(33, 212, 253, 0.02));
  box-shadow: 0 0 26px rgba(33, 212, 253, 0.14), inset 0 0 18px rgba(33, 212, 253, 0.08);
  font-size: 14px;
  font-weight: 900;
}

.hero-v2 h1 {
  margin: 22px 0 14px;
  font-size: clamp(60px, 5.8vw, 104px);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 0 32px rgba(255, 255, 255, 0.08);
}

.hero-v2 h1 em {
  color: #72edff;
  font-style: normal;
  text-shadow: 0 0 28px rgba(33, 212, 253, 0.48);
}

.hero-v2 .gradient-text {
  background: linear-gradient(90deg, #7af0ff 0%, #21d4fd 42%, #00f5c8 90%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 38px rgba(33, 212, 253, 0.34);
}

.hero-v2-subtitle {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 4px;
}

.hero-v2 .hero-copy {
  max-width: 710px;
  color: rgba(214, 233, 255, 0.82);
  font-size: 17px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 800px;
  margin: 24px 0 0;
}

.hero-metrics div {
  display: grid;
  gap: 4px;
  min-height: 56px;
  padding: 10px 12px;
  border-left: 1px solid rgba(33, 212, 253, 0.45);
  background: linear-gradient(90deg, rgba(33, 212, 253, 0.08), transparent);
}

.hero-metrics b {
  color: #f4fbff;
  font-size: 15px;
}

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

.home-v2 .hero-actions {
  margin-top: 26px;
}

.hero-primary {
  min-width: 210px;
  min-height: 54px;
  border-radius: 999px;
  color: #00121e;
  background: linear-gradient(135deg, #33e7ff, #23b7ff 58%, #7c5cff);
  box-shadow: 0 0 30px rgba(33, 212, 253, 0.42), inset 0 0 18px rgba(255, 255, 255, 0.18);
}

.hero-ghost {
  min-width: 176px;
  min-height: 54px;
  border-radius: 999px;
  background: rgba(5, 18, 38, 0.62);
}

.hero-v2-visual {
  min-height: 650px;
  align-self: center;
}

.hero-v2-visual::before {
  position: absolute;
  inset: 5% -6% 0 -12%;
  z-index: 0;
  content: "";
  background:
    radial-gradient(circle at 52% 45%, rgba(33, 212, 253, 0.26), transparent 26rem),
    radial-gradient(circle at 55% 70%, rgba(124, 92, 255, 0.18), transparent 20rem);
  filter: blur(2px);
}

.hero-v2 .hero-bot-stage {
  z-index: 4;
  width: min(48vw, 720px);
  min-width: 560px;
}

.hero-v2 .hero-bot-img {
  width: 100%;
  filter:
    drop-shadow(0 0 24px rgba(61, 220, 255, .62))
    drop-shadow(0 36px 76px rgba(0, 56, 112, .58));
}

.hero-orbit {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 1;
  border: 1px solid rgba(33, 212, 253, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(33, 212, 253, 0.18), inset 0 0 28px rgba(33, 212, 253, 0.08);
  transform: translate(-50%, -50%) rotate(-8deg);
}

.hero-orbit-a {
  width: 660px;
  height: 250px;
}

.hero-orbit-b {
  width: 520px;
  height: 520px;
  border-color: rgba(124, 92, 255, 0.28);
  transform: translate(-50%, -50%) rotate(30deg);
}

.hero-orbit-c {
  width: 390px;
  height: 390px;
  border-style: dashed;
  border-color: rgba(0, 245, 200, 0.32);
}

.capability-strip-v2 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.capability-card-v2 {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 16px 18px;
  border: 1px solid rgba(80, 220, 255, 0.24);
  border-radius: 8px;
  background: rgba(7, 29, 58, 0.68);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.28), inset 0 0 22px rgba(33, 212, 253, 0.04);
  backdrop-filter: blur(16px);
}

.cap-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(0, 245, 200, 0.34);
  border-radius: 8px;
  color: #00f5c8;
  background: rgba(0, 245, 200, 0.08);
  box-shadow: 0 0 22px rgba(0, 245, 200, 0.12);
  font-weight: 900;
}

.capability-card-v2 b {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
}

.capability-card-v2 small {
  color: var(--muted);
}

.home-v2-notice {
  padding-top: 22px;
  padding-bottom: 16px;
}

.home-v2 .footer {
  padding-top: 18px;
}

@media (max-width: 1320px) {
  .hero-v2 {
    grid-template-columns: minmax(0, 1fr) minmax(520px, 0.9fr);
  }

  .hero-v2 .hero-bot-stage {
    min-width: 500px;
  }

}

@media (max-width: 1180px) {
  .hero-v2 {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-v2-visual {
    min-height: 600px;
  }

  .capability-strip-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Home V2 refinement: darker, deeper and less crowded. */
body.home-v2 {
  background:
    radial-gradient(circle at 74% 35%, rgba(33, 212, 253, 0.18), transparent 30rem),
    radial-gradient(circle at 48% 78%, rgba(0, 245, 200, 0.08), transparent 27rem),
    radial-gradient(circle at 18% 28%, rgba(19, 96, 210, 0.15), transparent 24rem),
    linear-gradient(135deg, #01050c 0%, #031020 48%, #06142d 100%);
}

.hero-v2 {
  min-height: 760px;
  padding-top: 64px;
  padding-bottom: 92px;
  gap: 38px;
}

.hero-v2-content {
  align-self: center;
  padding-top: 0;
}

.hero-v2-kicker {
  margin-bottom: 6px;
  box-shadow: 0 0 34px rgba(33, 212, 253, 0.2), inset 0 0 22px rgba(33, 212, 253, 0.1);
}

.hero-v2 h1 {
  margin: 28px 0 18px;
  font-size: clamp(64px, 6vw, 110px);
  line-height: 1.04;
}

.hero-v2-subtitle {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.95);
}

.hero-v2 .hero-copy {
  color: rgba(196, 217, 239, 0.72);
  line-height: 1.8;
}

.hero-metrics {
  margin-top: 30px;
  gap: 16px;
}

.hero-metrics div {
  min-height: 64px;
  border: 1px solid rgba(33, 212, 253, 0.16);
  border-left-color: rgba(33, 212, 253, 0.68);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(33, 212, 253, 0.12), rgba(4, 18, 42, 0.18)),
    rgba(4, 18, 42, 0.36);
  box-shadow: inset 0 0 18px rgba(33, 212, 253, 0.04);
}

.home-v2 .hero-actions {
  margin-top: 32px;
}

.hero-primary {
  min-height: 58px;
  min-width: 224px;
  box-shadow:
    0 0 0 1px rgba(132, 246, 255, 0.24),
    0 0 34px rgba(33, 212, 253, 0.48),
    0 20px 52px rgba(0, 114, 255, 0.28),
    inset 0 0 22px rgba(255, 255, 255, 0.2);
}

.hero-ghost {
  min-height: 58px;
  min-width: 182px;
  border-color: rgba(33, 212, 253, 0.38);
  background: rgba(3, 13, 31, 0.62);
}

.hero-v2-visual {
  min-height: 700px;
}

.hero-v2 .hero-bot-stage {
  width: min(50vw, 780px);
  min-width: 610px;
}

.hero-v2 .hero-bot-img {
  width: 106%;
  filter:
    drop-shadow(0 0 30px rgba(61, 220, 255, .78))
    drop-shadow(0 0 70px rgba(33, 212, 253, .25))
    drop-shadow(0 44px 88px rgba(0, 35, 90, .68));
}

.hero-orbit {
  border-color: rgba(33, 212, 253, 0.58);
  box-shadow:
    0 0 44px rgba(33, 212, 253, 0.22),
    inset 0 0 34px rgba(33, 212, 253, 0.1);
}

.hero-orbit-a {
  width: 760px;
  height: 285px;
}

.hero-orbit-b {
  width: 590px;
  height: 590px;
}

.hero-orbit-c {
  width: 450px;
  height: 450px;
}

.capability-strip-v2 {
  margin-top: 24px;
}

.capability-card-v2 {
  border-color: rgba(80, 220, 255, 0.32);
  background: linear-gradient(145deg, rgba(7, 29, 58, 0.78), rgba(3, 13, 31, 0.68));
}

@media (max-width: 1320px) {
  .hero-v2 .hero-bot-stage {
    min-width: 520px;
  }

  .hero-v2 h1 {
    font-size: clamp(58px, 5.5vw, 96px);
  }
}

@media (max-width: 1180px) {
  .hero-v2 {
    padding-bottom: 58px;
  }

  .hero-v2 .hero-bot-stage {
    min-width: 470px;
  }
}

@media (max-width: 760px) {
  .hero-v2 {
    padding-bottom: 34px;
  }

  .hero-v2 .hero-bot-stage {
    min-width: 260px;
    width: min(88vw, 430px);
  }

  .hero-metrics {
    grid-template-columns: 1fr 1fr;
  }
}

/* Home V3 polish: focus, rhythm, portrait cards and stronger page closure. */
.home-v2-main {
  padding-bottom: 10px;
}

.hero-v2 {
  min-height: 735px;
  padding-top: 62px;
  padding-bottom: 64px;
}

.hero-v2-content {
  max-width: 760px;
}

.hero-v2-kicker {
  margin-bottom: 12px;
  font-size: 13px;
  letter-spacing: 1px;
}

.hero-v2 h1 {
  margin: 26px 0 22px;
  line-height: 1.06;
}

.hero-v2-subtitle {
  margin-bottom: 20px;
  font-size: 19px;
  letter-spacing: 2px;
}

.hero-v2 .hero-copy {
  max-width: 680px;
  color: rgba(199, 220, 242, 0.74);
}

.hero-metrics {
  max-width: 720px;
  gap: 10px;
  margin-top: 28px;
}

.hero-metrics div {
  min-height: 52px;
  padding: 8px 10px;
  border-color: rgba(33, 212, 253, 0.1);
  border-left-color: rgba(33, 212, 253, 0.42);
  background: linear-gradient(90deg, rgba(33, 212, 253, 0.075), rgba(4, 18, 42, 0.12));
}

.hero-metrics b {
  font-size: 14px;
}

.hero-metrics span {
  color: rgba(169, 189, 214, 0.72);
}

.home-v2 .hero-actions {
  margin-top: 34px;
}

.hero-v2-visual {
  min-height: 675px;
}

.hero-v2 .hero-bot-stage {
  width: min(49vw, 740px);
  min-width: 590px;
}

.hero-v2 .hero-bot-img {
  width: 103%;
}

.home-section-head {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto 24px;
  text-align: center;
}

.home-section-head span {
  display: inline-flex;
  padding: 6px 12px;
  border: 1px solid rgba(33, 212, 253, 0.28);
  border-radius: 999px;
  color: #5beeff;
  background: rgba(33, 212, 253, 0.07);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-section-head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
}

.home-section-head p {
  max-width: 760px;
  margin: 0;
  color: rgba(169, 189, 214, 0.78);
  line-height: 1.7;
}

.capability-strip-v2 {
  grid-template-columns: 1fr;
  margin-top: 46px;
}

.capability-head-v3 {
  margin-bottom: 18px;
}

.capability-strip-v2 .capability-card-v2 {
  min-height: 104px;
}

.capability-strip-v2 {
  display: grid;
}

.capability-strip-v2 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.capability-strip-v2 .home-section-head {
  grid-column: 1 / -1;
}

.capability-card-v2 {
  position: relative;
  align-items: flex-start;
  padding: 18px;
  overflow: hidden;
}

.capability-card-v2::after {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(33, 212, 253, 0.7), transparent);
  box-shadow: 0 0 18px rgba(33, 212, 253, 0.34);
}

.cap-icon {
  flex: 0 0 auto;
  border-radius: 50%;
}

.capability-card-v2 small {
  display: block;
  line-height: 1.6;
}

.home-v2-notice {
  padding-top: 26px;
}

.home-footer-v3 {
  display: grid;
  gap: 8px;
  margin-top: 6px;
  padding: 34px 0 44px;
  border-top: 1px solid rgba(80, 220, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(33, 212, 253, 0.05);
}

.home-footer-v3 strong {
  color: #f4fbff;
  font-size: 16px;
}

.home-footer-v3 span {
  color: rgba(169, 189, 214, 0.74);
}

@media (max-width: 1180px) {

  .capability-strip-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-strip-v2 .home-section-head {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .hero-v2 {
    padding-bottom: 42px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .capability-strip-v2 {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   Home final exact rebuild
   ========================================================= */

/* 页面底色 */
.home-final .home-v2-main {
  background:
    radial-gradient(circle at 72% 24%, rgba(28, 108, 180, 0.18), transparent 34rem),
    radial-gradient(circle at 18% 30%, rgba(20, 170, 210, 0.08), transparent 30rem),
    linear-gradient(180deg, #061225 0%, #071b34 42%, #041123 100%);
}

/* Hero 基础布局 */
.home-final .hero-v2 {
  position: relative;
  isolation: isolate;
  grid-template-columns: minmax(520px, 0.9fr) minmax(620px, 1.1fr);
  min-height: 760px;
  padding-top: 58px;
  padding-bottom: 72px;
  gap: 28px;
  overflow: hidden;
}

.home-final .hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("/assets/backgrounds/hero-yuhang-city.png");
  background-size: min(82vw, 1280px) auto;
  background-position: 59% 10%;
  background-repeat: no-repeat;
  opacity: 1.2;
  mix-blend-mode: screen;
}

.home-final .hero-v2-bg {
  z-index: 0;
  opacity: 0.10;
}

.home-final .hero-v2-bg::before {
  opacity: 0.08;
  filter: none;
}

.home-final .city-line {
  opacity: 0.05;
}

.home-final .hero-v2-content,
.home-final .hero-v2-visual,
.home-final .hero-content,
.home-final .hero-copy,
.home-final .hero-visual {
  position: relative;
  z-index: 2;
}

/* 左侧文字承托背景 */
.home-final .hero-v2-content {
  position: relative;
  max-width: 700px;
  z-index: 5;
}

.home-final .hero-v2-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -34px;
  right: -24px;
  top: -34px;
  bottom: -34px;
  border-radius: 26px;
  border: 1px solid rgba(118, 224, 255, 0.10);
  background:
    radial-gradient(circle at 18% 20%, rgba(65, 217, 255, 0.10), transparent 230px),
    linear-gradient(rgba(132, 225, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(132, 225, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3, 14, 32, 0.76), rgba(5, 24, 50, 0.36) 72%, transparent);
  background-size: auto, 32px 32px, 32px 32px, auto;
}

.home-final .hero-v2 h1,
.home-final .hero-v2 h1 em,
.home-final .hero-v2 .gradient-text {
  text-shadow: none !important;
}

.home-final .hero-v2 h1 {
  letter-spacing: -0.025em;
}

.home-final .hero-v2-subtitle {
  color: rgba(250, 254, 255, 0.95);
}

.home-final .hero-v2 .hero-copy {
  color: rgba(205, 225, 244, 0.76);
}

/* 右侧机器人区域 */
.home-final .hero-v2-visual {
  position: relative;
  min-height: 700px;
  overflow: visible;
  isolation: isolate;
}

.home-final .hero-v2-visual::before {
  content: "";
  position: absolute;
  left: 58%;
  top: 43%;
  z-index: 1;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 1px solid rgba(112, 224, 255, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(45, 165, 255, 0.10), transparent 58%),
    conic-gradient(from 18deg, transparent 0 12%, rgba(126, 235, 255, 0.22) 13% 15%, transparent 16% 38%, rgba(68, 170, 255, 0.16) 39% 41%, transparent 42% 100%);
  box-shadow:
    0 0 34px rgba(70, 180, 255, 0.12),
    inset 0 0 30px rgba(80, 190, 255, 0.06);
}

.home-final .hero-v2-visual::after {
  content: "";
  position: absolute;
  left: 58%;
  top: 49%;
  z-index: 1;
  width: min(54vw, 640px);
  height: min(18vw, 220px);
  transform: translate(-50%, -50%) rotate(-7deg);
  pointer-events: none;
  border: 1px solid rgba(105, 218, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 28px rgba(70, 180, 255, 0.08),
    inset 0 0 20px rgba(80, 190, 255, 0.04);
}

/* 机器人、圆环和底座统一中心轴 */
.home-final .hero-holo-stage-asset {
  position: absolute;
  left: 58%;
  top: 57%;
  z-index: 2;
  width: min(54vw, 760px);
  transform: translate(-50%, -50%);
  opacity: 0.78;
  pointer-events: none;
  filter: drop-shadow(0 0 20px rgba(65, 190, 255, 0.16)) !important;
  box-shadow: none !important;
}

.home-final .hero-holo-stage-asset img {
  display: block;
  width: 100%;
  height: auto;
  filter: none !important;
  box-shadow: none !important;
}

.home-final .hero-bot-stage {
  position: absolute;
  left: 68%;
  top: 42%;
  z-index: 4;
  width: min(33vw, 480px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.home-final .hero-bot-float {
  position: relative;
  width: 100%;
}

.home-final .hero-bot-img {
  display: block;
  width: 100%;
  height: auto;
  filter: none !important;
  box-shadow: none !important;
  transition: opacity 80ms linear;
}

.home-final .hero-bot-open {
  opacity: 1;
}

.home-final .hero-bot-blink {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.home-final .hero-bot-stage.is-blinking .hero-bot-open {
  opacity: 0;
}

.home-final .hero-bot-stage.is-blinking .hero-bot-blink {
  opacity: 1;
}

/* =========================================================
   机器人旁 HUD 小屏幕：清透科技屏
   ========================================================= */

.home-final .hud-screen {
  position: absolute;
  z-index: 9;
  width: 178px;
  min-height: 104px;
  padding: 16px 17px 14px;
  color: rgba(238, 250, 255, 0.96);
  background:
    linear-gradient(
      135deg,
      rgba(11, 43, 82, 0.58),
      rgba(4, 20, 46, 0.36)
    ),
    linear-gradient(
      rgba(95, 220, 255, 0.032) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(95, 220, 255, 0.026) 1px,
      transparent 1px
    );
  background-size: auto, 18px 18px, 18px 18px;
  border: 1px solid rgba(96, 226, 255, 0.58);
  border-radius: 12px;
  backdrop-filter: blur(12px) saturate(128%);
  -webkit-backdrop-filter: blur(12px) saturate(128%);
  box-shadow:
    inset 0 0 0 1px rgba(185, 248, 255, 0.08),
    inset 0 0 18px rgba(64, 214, 255, 0.18),
    inset 0 0 34px rgba(24, 132, 210, 0.10),
    0 0 18px rgba(42, 210, 255, 0.16),
    0 16px 34px rgba(0, 16, 44, 0.22);
  pointer-events: none;
  overflow: hidden;
}

.home-final .hud-screen::before {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: 11px;
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(118, 239, 255, 0.16),
      transparent 34%
    ),
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.09),
      transparent 28%,
      transparent 72%,
      rgba(92, 226, 255, 0.08)
    );
  box-shadow:
    inset 0 0 16px rgba(82, 226, 255, 0.14),
    inset 0 0 34px rgba(24, 130, 210, 0.08);
  opacity: 0.92;
}

.home-final .hud-screen::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(98, 238, 255, 0.76),
    transparent
  );
  box-shadow:
    0 0 8px rgba(98, 238, 255, 0.36),
    0 -6px 18px rgba(42, 210, 255, 0.10);
  opacity: 0.78;
}

.home-final .hud-screen-icon {
  position: relative;
  z-index: 2;
  display: block;
  width: 13px;
  height: 13px;
  margin-bottom: 14px;
  border: 1px solid rgba(104, 240, 255, 0.82);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(42, 240, 255, 0.92) 0 2px, transparent 3px);
  box-shadow:
    0 0 10px rgba(42, 240, 255, 0.56),
    0 0 20px rgba(42, 240, 255, 0.18);
  animation: hudScreenPulse 3.6s ease-in-out infinite;
}

.home-final .hud-screen-icon::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 6px;
  width: 4px;
  height: 1px;
  background: rgba(104, 240, 255, 0.62);
}

.home-final .hud-screen-icon::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 6px;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, rgba(104, 240, 255, 0.56), transparent);
}

.home-final .hud-screen-copy {
  position: relative;
  z-index: 2;
}

.home-final .hud-screen .hud-screen-copy::before {
  content: "";
  position: absolute;
  inset: -38px -10px auto auto;
  width: 54px;
  height: 54px;
  pointer-events: none;
  border-top: 1px solid rgba(120, 245, 255, 0.62);
  border-right: 1px solid rgba(120, 245, 255, 0.42);
  opacity: 0.72;
}

.home-final .hud-screen strong {
  display: block;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.98);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-shadow:
    0 0 10px rgba(78, 220, 255, 0.22),
    0 1px 0 rgba(0, 0, 0, 0.24);
}

.home-final .hud-screen small {
  display: block;
  color: rgba(195, 226, 244, 0.76);
  font-size: 11px;
  line-height: 1.55;
}

.home-final .hud-screen-data {
  left: 12%;
  top: 10%;
}

.home-final .hud-screen-interface {
  left: 15%;
  bottom: 24%;
}

.home-final .hud-screen-judge {
  right: 5%;
  top: 50%;
}

@keyframes hudScreenPulse {
  0%,
  100% {
    opacity: 0.76;
    box-shadow:
      0 0 9px rgba(42, 240, 255, 0.38),
      0 0 18px rgba(42, 240, 255, 0.12);
  }

  50% {
    opacity: 1;
    box-shadow:
      0 0 13px rgba(42, 240, 255, 0.64),
      0 0 26px rgba(42, 240, 255, 0.20);
  }
}

/* 核心能力轻微压实 */
.home-final .capability-strip-v2 {
  margin-top: 40px;
}

.home-final .capability-card-v2 {
  min-height: 94px;
}

/* 响应式保护 */
@media (max-width: 1360px) {
  .home-final .hero-v2 {
    grid-template-columns: minmax(0, 0.95fr) minmax(540px, 1.05fr);
  }

  .home-final .hero-bot-stage {
    width: min(35vw, 470px);
  }

  .home-final .hero-holo-stage-asset {
    width: min(62vw, 760px);
  }

}

@media (max-width: 1180px) {
  .home-final .hud-screen {
    display: none !important;
  }
}

@media (max-width: 1080px) {
  .home-final .hero-v2 {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-final .hero-v2-visual {
    min-height: 620px;
  }

  .home-final .hero-bot-stage {
    width: min(74vw, 520px);
  }

  .home-final .hero-holo-stage-asset {
    width: min(92vw, 720px);
  }

}

/* =========================================================
   EXPERIMENT OVERRIDE: tool cards bold glow + compact copy
   大动作实验版：强发光边框 + 缩小文字区 + 释放人物区
   ========================================================= */

/* 父级必须允许外发光露出来 */
body.page-home.home-v2.home-final .tool-matrix-v2 {
  position: relative !important;
  overflow: visible !important;
}

body.page-home.home-v2.home-final .tool-grid-v2 {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 26px !important;
  align-items: stretch !important;
  overflow: visible !important;
}

/* 三张卡整体：先把外轮廓光打出来 */
body.page-home.home-v2.home-final .tool-card-v2 {
  position: relative !important;
  isolation: isolate !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 322px !important;
  padding: 26px 22px 22px 26px !important;
  overflow: hidden !important;
  display: block !important;
  border: 1px solid rgba(148, 224, 255, 0.78) !important;
  border-radius: 0 !important;
  clip-path: polygon(
    0 0,
    calc(100% - 26px) 0,
    100% 26px,
    100% 100%,
    26px 100%,
    0 calc(100% - 26px)
  ) !important;
  background:
    radial-gradient(circle at 74% 36%, rgba(38, 128, 255, 0.24), transparent 180px),
    radial-gradient(circle at 92% 86%, rgba(105, 204, 255, 0.13), transparent 160px),
    linear-gradient(rgba(105, 184, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 184, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 90, 180, 0.14), transparent 22%, transparent 75%, rgba(45, 142, 230, 0.14)),
    linear-gradient(145deg, rgba(5, 25, 60, 0.96), rgba(1, 8, 24, 0.99)) !important;
  background-size: auto, auto, 24px 24px, 24px 24px, auto, auto !important;
  box-shadow:
    0 0 0 1px rgba(180, 236, 255, 0.20),
    0 0 16px rgba(86, 176, 255, 0.52),
    0 0 36px rgba(64, 150, 255, 0.36),
    0 0 76px rgba(64, 150, 255, 0.20),
    inset 0 0 0 1px rgba(232, 250, 255, 0.15),
    inset 0 0 34px rgba(70, 165, 255, 0.13),
    inset 0 0 88px rgba(8, 64, 145, 0.20),
    0 22px 44px rgba(0, 6, 22, 0.34) !important;
  filter:
    drop-shadow(0 0 8px rgba(172, 232, 255, 0.42))
    drop-shadow(0 0 18px rgba(70, 165, 255, 0.44))
    drop-shadow(0 0 42px rgba(70, 165, 255, 0.26)) !important;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    filter 180ms ease !important;
}

/* 边框线条本身：这次强行让线条发光 */
body.page-home.home-v2.home-final .tool-card-v2::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 6 !important;
  pointer-events: none !important;
  opacity: 1 !important;
  background:
    /* 外层连续亮边 */
    linear-gradient(90deg, rgba(210, 246, 255, 0.95), rgba(70, 165, 255, 0.38), rgba(150, 226, 255, 0.78)) top 0 left 34px / calc(100% - 68px) 1px no-repeat,
    linear-gradient(90deg, rgba(150, 226, 255, 0.70), rgba(70, 165, 255, 0.28), rgba(150, 226, 255, 0.58)) bottom 0 left 34px / calc(100% - 68px) 1px no-repeat,
    linear-gradient(180deg, rgba(210, 246, 255, 0.82), rgba(70, 165, 255, 0.28), rgba(150, 226, 255, 0.54)) top 34px left 0 / 1px calc(100% - 68px) no-repeat,
    linear-gradient(180deg, rgba(210, 246, 255, 0.72), rgba(70, 165, 255, 0.24), rgba(150, 226, 255, 0.48)) top 34px right 0 / 1px calc(100% - 68px) no-repeat,

    /* 四角强亮短线 */
    linear-gradient(90deg, rgba(235, 252, 255, 1), rgba(78, 174, 255, 0.48), transparent) top 20px left 20px / 92px 1px no-repeat,
    linear-gradient(180deg, rgba(235, 252, 255, 1), rgba(78, 174, 255, 0.48), transparent) top 20px left 20px / 1px 92px no-repeat,

    linear-gradient(-90deg, rgba(235, 252, 255, 1), rgba(78, 174, 255, 0.48), transparent) top 20px right 20px / 92px 1px no-repeat,
    linear-gradient(180deg, rgba(235, 252, 255, 1), rgba(78, 174, 255, 0.42), transparent) top 20px right 20px / 1px 92px no-repeat,

    linear-gradient(90deg, rgba(180, 235, 255, 0.88), rgba(78, 174, 255, 0.34), transparent) bottom 20px left 20px / 92px 1px no-repeat,
    linear-gradient(0deg, rgba(180, 235, 255, 0.82), rgba(78, 174, 255, 0.30), transparent) bottom 20px left 20px / 1px 92px no-repeat,

    linear-gradient(-90deg, rgba(180, 235, 255, 0.88), rgba(78, 174, 255, 0.34), transparent) bottom 20px right 20px / 92px 1px no-repeat,
    linear-gradient(0deg, rgba(180, 235, 255, 0.82), rgba(78, 174, 255, 0.30), transparent) bottom 20px right 20px / 1px 92px no-repeat,

    /* 内嵌细框 */
    linear-gradient(90deg, rgba(125, 207, 255, 0.36), transparent 28%, transparent 70%, rgba(125, 207, 255, 0.32)) top 10px left 34px / calc(100% - 68px) 1px no-repeat,
    linear-gradient(90deg, rgba(125, 207, 255, 0.28), transparent 30%, transparent 70%, rgba(125, 207, 255, 0.24)) bottom 10px left 34px / calc(100% - 68px) 1px no-repeat,
    linear-gradient(180deg, rgba(125, 207, 255, 0.32), transparent 30%, transparent 72%, rgba(125, 207, 255, 0.24)) top 34px left 10px / 1px calc(100% - 68px) no-repeat,
    linear-gradient(180deg, rgba(125, 207, 255, 0.30), transparent 30%, transparent 72%, rgba(125, 207, 255, 0.22)) top 34px right 10px / 1px calc(100% - 68px) no-repeat,

    /* 裁角细线 */
    linear-gradient(135deg, transparent calc(50% - 1px), rgba(220, 248, 255, 0.92) 50%, transparent calc(50% + 1px)) top left / 46px 46px no-repeat,
    linear-gradient(225deg, transparent calc(50% - 1px), rgba(220, 248, 255, 0.92) 50%, transparent calc(50% + 1px)) top right / 46px 46px no-repeat,
    linear-gradient(45deg, transparent calc(50% - 1px), rgba(150, 226, 255, 0.76) 50%, transparent calc(50% + 1px)) bottom left / 46px 46px no-repeat,
    linear-gradient(-45deg, transparent calc(50% - 1px), rgba(150, 226, 255, 0.76) 50%, transparent calc(50% + 1px)) bottom right / 46px 46px no-repeat !important;
  filter:
    drop-shadow(0 0 3px rgba(235, 252, 255, 1))
    drop-shadow(0 0 9px rgba(90, 185, 255, 0.82))
    drop-shadow(0 0 22px rgba(70, 165, 255, 0.48))
    drop-shadow(0 0 38px rgba(70, 165, 255, 0.28)) !important;
  mix-blend-mode: normal !important;
}

/* 文字保护层略收窄，给人物让位 */
body.page-home.home-v2.home-final .tool-card-v2::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 4 !important;
  pointer-events: none !important;
  background:
    linear-gradient(
      90deg,
      rgba(3, 11, 28, 0.99) 0%,
      rgba(3, 11, 28, 0.96) 34%,
      rgba(3, 11, 28, 0.78) 48%,
      rgba(3, 11, 28, 0.28) 64%,
      rgba(3, 11, 28, 0.00) 82%
    ),
    linear-gradient(
      180deg,
      rgba(90, 185, 255, 0.06) 0%,
      transparent 18%,
      transparent 84%,
      rgba(90, 185, 255, 0.045) 100%
    ) !important;
}

/* 左侧文字区：直接压到 44%，不要再占半张卡 */
body.page-home.home-v2.home-final .tool-card-v2 .tool-card-copy {
  position: relative !important;
  z-index: 8 !important;
  width: 44% !important;
  max-width: 44% !important;
  min-width: 0 !important;
  min-height: 270px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

/* 标题缩小，但更亮 */
body.page-home.home-v2.home-final .tool-card-v2 h3 {
  margin: 17px 0 12px !important;
  color: #ffffff !important;
  font-size: 26px !important;
  line-height: 1.08 !important;
  font-weight: 950 !important;
  letter-spacing: 0.1px !important;
  white-space: nowrap !important;
  text-shadow:
    0 0 12px rgba(190, 238, 255, 0.28),
    0 0 26px rgba(70, 165, 255, 0.18) !important;
}

/* 正文压小，避免占视觉 */
body.page-home.home-v2.home-final .tool-card-v2 p {
  max-width: 218px !important;
  min-height: 68px !important;
  color: rgba(230, 243, 255, 0.90) !important;
  font-size: 12.5px !important;
  line-height: 1.62 !important;
  letter-spacing: 0.05px !important;
  text-shadow: 0 0 10px rgba(70, 165, 255, 0.10) !important;
}

/* 标签更小、更紧凑 */
body.page-home.home-v2.home-final .tool-card-v2 .tag-row {
  display: grid !important;
  grid-template-columns: max-content max-content !important;
  gap: 8px 10px !important;
  max-width: 230px !important;
  margin: 14px 0 14px !important;
  justify-content: start !important;
  align-items: center !important;
}

body.page-home.home-v2.home-final .tool-card-v2 .tag-row .tag:nth-child(3) {
  grid-column: 1 / span 2 !important;
  justify-self: start !important;
  margin-right: 0 !important;
}

body.page-home.home-v2.home-final .tool-card-v2 .tag {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: max-content !important;
  min-width: max-content !important;
  max-width: none !important;
  padding: 5px 9px !important;
  color: rgba(236, 248, 255, 0.94) !important;
  border-color: rgba(140, 220, 255, 0.42) !important;
  background:
    linear-gradient(180deg, rgba(34, 106, 180, 0.30), rgba(10, 36, 78, 0.20)) !important;
  font-size: 11px !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.045),
    0 0 10px rgba(70, 165, 255, 0.10) !important;
  white-space: nowrap !important;
  writing-mode: horizontal-tb !important;
  line-height: 1.2 !important;
}

/* 按钮略小一点，但更亮 */
body.page-home.home-v2.home-final .tool-card-v2 .card-button {
  min-width: 142px !important;
  height: 42px !important;
  min-height: 42px !important;
  border-color: rgba(160, 232, 255, 0.58) !important;
  color: #ffffff !important;
  background:
    linear-gradient(180deg, rgba(64, 150, 215, 0.48), rgba(10, 78, 145, 0.32)),
    linear-gradient(90deg, rgba(80, 180, 255, 0.22), rgba(80, 180, 255, 0.06)) !important;
  box-shadow:
    0 0 14px rgba(70, 165, 255, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 -8px 18px rgba(255, 255, 255, 0.04) !important;
  font-size: 14.5px !important;
  font-weight: 950 !important;
  letter-spacing: 0.4px !important;
}

/* 右侧人物区域放大，释放视觉 */
body.page-home.home-v2.home-final .tool-card-v2 .card-agent-wrap {
  position: absolute !important;
  z-index: 2 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 66% !important;
  overflow: hidden !important;
  pointer-events: none !important;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
}

/* 人物整体略放大，和小文字区形成对比 */
body.page-home.home-v2.home-final .tool-card-v2 .card-agent {
  position: absolute !important;
  top: 2px !important;
  right: -8px !important;
  bottom: auto !important;
  width: auto !important;
  height: 106% !important;
  max-width: none !important;
  object-fit: contain !important;
  object-position: right top !important;
  opacity: 0.94 !important;
  filter:
    drop-shadow(0 18px 24px rgba(0, 8, 24, 0.34))
    drop-shadow(0 0 14px rgba(70, 165, 255, 0.14)) !important;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 100%) !important;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 100%) !important;
}

/* 三张人物分别强微调 */
body.page-home.home-v2.home-final .tool-card-fuzzy .card-agent {
  top: 2px !important;
  right: -14px !important;
  height: 108% !important;
}

body.page-home.home-v2.home-final .tool-card-doc .card-agent {
  top: 2px !important;
  right: -24px !important;
  height: 110% !important;
}

/* 第三张中年男子往下压，别顶得太高 */
body.page-home.home-v2.home-final .tool-card-feasibility .card-agent {
  top: 18px !important;
  right: -4px !important;
  height: 102% !important;
}

/* 中屏也做大动作，不要被旧媒体查询拉回去 */
@media (max-width: 1360px) {
  body.page-home.home-v2.home-final .tool-card-v2 {
    min-height: 310px !important;
    padding: 24px 20px 20px 24px !important;
  }

  body.page-home.home-v2.home-final .tool-card-v2 .tool-card-copy {
    width: 45% !important;
    max-width: 45% !important;
    min-height: 258px !important;
  }

  body.page-home.home-v2.home-final .tool-card-v2 h3 {
    font-size: 24px !important;
  }

  body.page-home.home-v2.home-final .tool-card-v2 p {
    max-width: 206px !important;
    font-size: 12px !important;
    line-height: 1.58 !important;
  }

  body.page-home.home-v2.home-final .tool-card-v2 .tag-row {
    display: grid !important;
    grid-template-columns: max-content max-content !important;
    gap: 7px 8px !important;
    max-width: 220px !important;
  }

  body.page-home.home-v2.home-final .tool-card-v2 .tag {
    width: max-content !important;
    min-width: max-content !important;
    max-width: none !important;
    white-space: nowrap !important;
    writing-mode: horizontal-tb !important;
  }

  body.page-home.home-v2.home-final .tool-card-v2 .tag-row .tag:nth-child(3) {
    grid-column: 1 / span 2 !important;
    justify-self: start !important;
    margin-right: 0 !important;
  }

  body.page-home.home-v2.home-final .tool-card-v2 .card-button {
    min-width: 132px !important;
    height: 40px !important;
    min-height: 40px !important;
    font-size: 14px !important;
  }

  body.page-home.home-v2.home-final .tool-card-v2 .card-agent-wrap {
    width: 66% !important;
  }

  body.page-home.home-v2.home-final .tool-card-fuzzy .card-agent {
    height: 104% !important;
    right: -12px !important;
  }

  body.page-home.home-v2.home-final .tool-card-doc .card-agent {
    height: 106% !important;
    right: -22px !important;
  }

  body.page-home.home-v2.home-final .tool-card-feasibility .card-agent {
    top: 16px !important;
    height: 100% !important;
    right: -4px !important;
  }
}

@media (max-width: 1360px) {
  body.page-home.home-v2.home-final .tool-grid-v2 {
    gap: 22px !important;
  }
}

@media (max-width: 1180px) {
  body.page-home.home-v2.home-final .tool-grid-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px !important;
  }
}

@media (max-width: 860px) {
  body.page-home.home-v2.home-final .tool-grid-v2 {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
}

/* =========================================================
   Document check workbench page
   公文自查详情页：左输入 / 中输出 / 右侧形象
   ========================================================= */

body:has(.doc-workbench-page) {
  background:
    radial-gradient(circle at 74% 36%, rgba(38, 128, 255, 0.20), transparent 34rem),
    radial-gradient(circle at 42% 78%, rgba(30, 160, 255, 0.10), transparent 30rem),
    linear-gradient(135deg, #020813 0%, #04152a 45%, #061b38 100%);
}

.doc-workbench-page {
  position: relative;
  min-height: calc(100vh - 82px);
  padding: 34px 0 64px;
  overflow: hidden;
}

.doc-workbench-page::before,
.doc-workbench-page::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.doc-workbench-page::before {
  z-index: 0;
  background:
    linear-gradient(rgba(92, 176, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 176, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 68% 28%, rgba(88, 185, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 76%, rgba(45, 145, 255, 0.14), transparent 24rem);
  background-size: 54px 54px, 54px 54px, auto, auto;
  opacity: 0.9;
}

.doc-workbench-page::after {
  z-index: 0;
  background:
    radial-gradient(circle, rgba(120, 210, 255, 0.35) 0 1px, transparent 2px) 0 0 / 140px 110px,
    linear-gradient(180deg, transparent 0%, rgba(2, 8, 22, 0.36) 100%);
  opacity: 0.34;
}

.doc-workbench-hero,
.doc-workbench {
  position: relative;
  z-index: 1;
}

.doc-workbench-hero {
  margin-bottom: 20px;
}

.doc-workbench-title {
  position: relative;
  width: min(760px, 100%);
  padding: 8px 0 10px;
}

.doc-workbench-title::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 12px;
  width: 4px;
  height: calc(100% - 18px);
  border-radius: 999px;
  background: linear-gradient(180deg, #d5f7ff, rgba(55, 158, 255, 0.58), transparent);
  box-shadow: 0 0 18px rgba(70, 165, 255, 0.52);
}

.doc-kicker {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 13px;
  border: 1px solid rgba(104, 198, 255, 0.34);
  border-radius: 999px;
  color: rgba(175, 232, 255, 0.96);
  background: rgba(25, 94, 165, 0.16);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.doc-workbench-title h1 {
  margin: 16px 0 10px;
  color: #f8fdff;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
  letter-spacing: 0.02em;
}

.doc-workbench-title p {
  max-width: 720px;
  margin: 0;
  color: rgba(216, 233, 250, 0.78);
  font-size: 16px;
  line-height: 1.8;
}

.doc-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(96, 190, 255, 0.32);
  border-radius: 14px;
  background:
    linear-gradient(rgba(90, 175, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 175, 255, 0.035) 1px, transparent 1px),
    linear-gradient(145deg, rgba(6, 28, 62, 0.86), rgba(2, 12, 30, 0.95));
  background-size: 24px 24px, 24px 24px, auto;
  box-shadow:
    0 0 0 1px rgba(135, 220, 255, 0.08),
    0 0 28px rgba(45, 145, 255, 0.14),
    inset 0 0 28px rgba(75, 160, 255, 0.055),
    0 20px 44px rgba(0, 8, 24, 0.28);
}

.doc-panel {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background:
    linear-gradient(rgba(90, 175, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 175, 255, 0.018) 1px, transparent 1px),
    linear-gradient(145deg, rgba(6, 28, 62, 0.86), rgba(2, 12, 30, 0.95));
  background-size: 26px 26px, 26px 26px, auto;
}

.doc-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(190, 238, 255, 0.44), transparent 38%) top left / calc(100% - 24px) 1px no-repeat,
    linear-gradient(180deg, rgba(190, 238, 255, 0.22), transparent 42%) top left / 1px 86px no-repeat,
    linear-gradient(135deg, transparent calc(50% - 1px), rgba(150, 226, 255, 0.48) 50%, transparent calc(50% + 1px)) top right / 34px 34px no-repeat;
}

.doc-panel > * {
  position: relative;
  z-index: 1;
}

.doc-panel-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.doc-panel-heading div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.doc-panel-heading span {
  order: 2;
  color: rgba(145, 220, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.doc-panel-heading h2 {
  margin: 0;
  color: #f7fcff;
  font-size: 20px;
  line-height: 1.25;
}

.doc-panel-heading p {
  max-width: 620px;
  margin: 0;
  color: rgba(190, 213, 235, 0.72);
  font-size: 13px;
  line-height: 1.65;
}

.doc-input-panel {
  gap: 15px;
}

.doc-workbench-page .field {
  gap: 9px;
}

.doc-workbench-page .field label {
  color: rgba(240, 250, 255, 0.94);
  font-size: 14px;
}

.doc-workbench-page select,
.doc-workbench-page textarea,
.doc-workbench-page input {
  border-color: rgba(92, 178, 255, 0.36);
  border-radius: 10px;
  color: #f8fcff;
  background:
    linear-gradient(180deg, rgba(11, 43, 82, 0.74), rgba(2, 12, 30, 0.78));
  box-shadow:
    inset 0 0 24px rgba(45, 145, 255, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.02);
}

.doc-workbench-page select:focus,
.doc-workbench-page textarea:focus,
.doc-workbench-page input:focus {
  border-color: rgba(165, 230, 255, 0.76);
  box-shadow:
    0 0 0 3px rgba(55, 158, 255, 0.16),
    0 0 24px rgba(55, 158, 255, 0.18),
    inset 0 0 24px rgba(45, 145, 255, 0.08);
}

.doc-input-panel select,
.tool-input-panel select {
  background-color: rgba(5, 23, 52, 0.98) !important;
  color: #eef7ff !important;
  -webkit-text-fill-color: #eef7ff !important;
  border: 1px solid rgba(110, 210, 255, 0.30) !important;
}

.doc-input-panel select option,
.doc-input-panel select optgroup,
.tool-input-panel select option,
.tool-input-panel select optgroup {
  background-color: #0b2347 !important;
  color: #eef7ff !important;
}

.doc-input-panel select option:checked,
.tool-input-panel select option:checked {
  background-color: #1f6fb8 !important;
  color: #ffffff !important;
}

.doc-input-panel select option:hover,
.tool-input-panel select option:hover {
  background-color: #155a98 !important;
  color: #ffffff !important;
}

.doc-workbench-page textarea.tall {
  min-height: 430px;
}

.doc-workbench-page .form-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.doc-workbench-page .primary-button,
.doc-workbench-page .secondary-button {
  min-width: 132px;
  min-height: 44px;
  border-radius: 10px;
}

.doc-workbench-page .primary-button {
  border: 1px solid rgba(168, 232, 255, 0.70);
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.55), transparent 18%),
    linear-gradient(95deg, #7fdcff 0%, #2f93ff 48%, #39b8ff 100%);
  color: #021225;
  box-shadow:
    0 0 22px rgba(64, 150, 255, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.doc-workbench-page .secondary-button {
  border-color: rgba(105, 190, 255, 0.36);
  color: rgba(234, 248, 255, 0.92);
  background: rgba(6, 30, 62, 0.56);
}

.doc-output-panel {
  min-height: 610px;
}

.doc-output-panel .result-content {
  flex: 1;
  min-height: 486px;
  padding: 18px;
  overflow: auto;
  border: 1px solid rgba(92, 178, 255, 0.24);
  border-radius: 12px;
  color: rgba(228, 241, 255, 0.92);
  background:
    linear-gradient(rgba(92, 176, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 176, 255, 0.026) 1px, transparent 1px),
    rgba(2, 12, 30, 0.50);
  background-size: 22px 22px, 22px 22px, auto;
  box-shadow: inset 0 0 24px rgba(45, 145, 255, 0.055);
}

.doc-output-panel .result-content.empty-state {
  gap: 12px;
  color: rgba(191, 214, 236, 0.78);
}

.doc-output-panel .empty-title {
  color: #ffffff;
  font-size: 18px;
}

.doc-output-panel .empty-state li {
  border-color: rgba(105, 190, 255, 0.22);
  border-radius: 10px;
  background: rgba(10, 45, 86, 0.42);
}

.doc-output-panel .empty-state b {
  color: rgba(220, 246, 255, 0.98);
}

.doc-output-panel .form-actions {
  margin-top: 14px;
  justify-content: flex-start;
}

@media (max-width: 860px) {
  .doc-workbench-page {
    padding-top: 24px;
  }

  .doc-workbench {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .doc-workbench-title::before {
    left: 0;
    top: -4px;
    width: 86px;
    height: 2px;
  }

  .doc-workbench-page textarea.tall {
    min-height: 320px;
  }

  .doc-output-panel {
    min-height: auto;
  }

  .doc-output-panel .result-content {
    min-height: 320px;
  }
}

/* =========================================================
   Document check workbench close pass 01
   公文自查页第一轮收口：比例、高度、输出区与右侧形象
   ========================================================= */

.doc-workbench-page {
  padding: 0 0 56px;
}

.doc-workbench-hero {
  position: relative;
  margin-bottom: 0;
  padding: 28px 0 20px;
}

.doc-workbench-title {
  max-width: 760px;
  padding: 0;
}

.doc-workbench-title h1 {
  margin: 14px 0 10px;
  font-size: clamp(46px, 4.5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.doc-workbench-title p {
  max-width: 760px;
  margin: 0;
  color: rgba(210, 228, 246, 0.78);
  font-size: 16px;
  line-height: 1.7;
}

.doc-workbench {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(440px, 0.92fr) minmax(620px, 1.18fr) !important;
  gap: 22px !important;
  align-items: stretch !important;
  min-height: 620px !important;
  overflow: visible !important;
}

.doc-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.doc-panel-head h2 {
  margin: 0 0 8px;
  color: #f7fcff;
  font-size: 22px;
  line-height: 1.2;
}

.doc-panel-head p {
  margin: 0;
  color: rgba(200, 220, 240, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.doc-panel-code {
  flex: 0 0 auto;
  color: rgba(150, 220, 255, 0.92);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.doc-input-panel {
  position: relative !important;
  z-index: 3 !important;
  padding: 20px 22px 22px;
  gap: 13px;
}

.doc-input-panel .doc-panel-head {
  margin-bottom: 14px;
}

.doc-input-panel .field {
  gap: 7px;
}

.doc-workbench-page #docText {
  min-height: 250px;
  max-height: 310px;
  resize: vertical;
}

.doc-action-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
}

.doc-action-row #docSubmit {
  min-width: 160px;
  height: 44px;
}

.doc-action-row #docClear {
  min-width: 126px;
  height: 44px;
}

.doc-output-panel {
  position: relative !important;
  z-index: 3 !important;
  min-height: 500px;
  padding: 22px 24px 24px;
}

.doc-result-shell {
  position: relative !important;
  min-height: 300px !important;
  max-height: 360px !important;
  overflow: auto !important;
  margin-top: 14px !important;
  padding: 16px !important;
  border: 1px solid rgba(96, 190, 255, 0.20) !important;
  border-radius: 12px !important;
  background:
    linear-gradient(rgba(90, 175, 255, 0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 175, 255, 0.014) 1px, transparent 1px),
    rgba(2, 12, 30, 0.54) !important;
  background-size: 26px 26px, 26px 26px, auto !important;
  box-shadow:
    inset 0 0 0 1px rgba(150, 225, 255, 0.035),
    0 0 14px rgba(0, 10, 28, 0.08) !important;
}

.doc-result-shell .result-content {
  min-height: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.doc-output-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 12px;
}

.doc-output-actions button {
  min-width: 132px;
  height: 40px;
}

.doc-workbench-page .empty-state {
  gap: 9px;
}

.doc-workbench-page .empty-state ul,
.doc-workbench-page .doc-empty-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.doc-workbench-page .empty-state li,
.doc-workbench-page .doc-empty-item {
  padding: 10px 12px;
  border: 1px solid rgba(96, 190, 255, 0.16);
  border-radius: 10px;
  background: rgba(5, 24, 54, 0.32);
}

.doc-workbench-page .empty-state b,
.doc-workbench-page .doc-empty-item b {
  display: block;
  margin-bottom: 3px;
  color: rgba(245, 252, 255, 0.96);
  font-size: 13px;
}

.doc-workbench-page .empty-state p,
.doc-workbench-page .doc-empty-item p {
  margin: 0;
  color: rgba(200, 220, 240, 0.70);
  font-size: 12.5px;
  line-height: 1.48;
}

#docResult,
.doc-result-shell,
.doc-result-shell p,
.doc-result-shell li,
.doc-result-shell .doc-empty-item {
  color: rgba(220, 236, 250, 0.84) !important;
}

.doc-result-shell b,
.doc-result-shell strong,
.doc-result-shell .doc-empty-item b {
  color: rgba(248, 253, 255, 0.94) !important;
}

/* =========================================================
   Doc check agent final - full body version
   公文自查页右侧人物最终版：使用 agent-doc-cutout 全身素材
   无底座、无方框、嵌入背景、完整显示
   ========================================================= */

.doc-agent-panel {
  position: absolute !important;
  right: -8px !important;
  bottom: -6px !important;
  width: 430px !important;
  height: 650px !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
  pointer-events: none !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  padding: 0 !important;
  z-index: 1 !important;
}

.doc-agent-panel::before {
  content: none !important;
}

.doc-agent-panel::after {
  content: none !important;
}

.doc-agent-img {
  position: relative !important;
  z-index: 2 !important;
  width: 122% !important;
  max-width: 560px !important;
  height: auto !important;
  object-fit: contain !important;
  transform: translate(-18%, 10px) scale(1.06) !important;
  transform-origin: center bottom !important;
  filter:
    drop-shadow(0 18px 28px rgba(0, 10, 28, 0.22))
    drop-shadow(0 0 14px rgba(63, 190, 255, 0.10)) !important;
}

.tool-input-panel,
.tool-output-panel {
  position: relative !important;
  z-index: 3 !important;
}

.tool-agent-panel {
  position: absolute !important;
  right: -8px !important;
  bottom: -6px !important;
  width: 430px !important;
  height: 650px !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
  pointer-events: none !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  padding: 0 !important;
  z-index: 1 !important;
}

.tool-agent-panel::before,
.tool-agent-panel::after {
  content: none !important;
}

.tool-agent-img {
  position: relative !important;
  z-index: 2 !important;
  width: 122% !important;
  max-width: 560px !important;
  height: auto !important;
  object-fit: contain !important;
  transform: translate(-18%, 10px) scale(1.06) !important;
  transform-origin: center bottom !important;
  filter:
    drop-shadow(0 18px 28px rgba(0, 10, 28, 0.22))
    drop-shadow(0 0 14px rgba(63, 190, 255, 0.10)) !important;
}

.fuzzy-agent-panel {
  right: -20px !important;
}

.fuzzy-agent-img {
  width: 100% !important;
  max-width: 500px !important;
  transform: translate(-8%, -100px) scale(0.98) !important;
}

.feasibility-agent-panel {
  right: -8px !important;
}

.feasibility-agent-img {
  width:100% !important;
  max-width: 500px !important;
  transform: translate(-10%, 150px) scale(0.98) !important;
}

.tool-page-feasibility .doc-workbench {
  min-height: 660px !important;
}

.tool-mini-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.tool-mini-result {
  position: relative;
  min-height: 170px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(96, 190, 255, 0.20);
  border-radius: 12px;
  background:
    linear-gradient(rgba(90, 175, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 175, 255, 0.012) 1px, transparent 1px),
    rgba(2, 12, 30, 0.42);
  background-size: 24px 24px, 24px 24px, auto;
}

.tool-mini-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.tool-mini-head span {
  color: rgba(150, 220, 255, 0.80);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.tool-mini-head h3 {
  margin: 0;
  color: #f7fcff;
  font-size: 16px;
}

.tool-mini-result .result-content {
  min-height: 96px;
  max-height: 150px;
  overflow: auto;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  white-space: pre-wrap;
}

.tool-page-fuzzy #standardNames,
.tool-page-fuzzy #pendingNames {
  min-height: 180px;
  max-height: 240px;
  resize: vertical;
}

.standard-unit-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: fit-content;
  padding: 9px 12px;
  border: 1px solid rgba(80, 220, 255, 0.22);
  border-radius: 999px;
  color: rgba(220, 242, 255, 0.88);
  background: rgba(33, 212, 253, 0.07);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.standard-unit-toggle[hidden] {
  display: none !important;
}

.standard-unit-toggle input,
.standard-unit-toggle input[type="checkbox"] {
  width: 15px;
  height: 15px;
  min-width: 15px;
  min-height: 15px;
  margin: 0;
  padding: 0;
  accent-color: #21d4fd;
  cursor: pointer;
}

#standardNames.is-readonly {
  color: rgba(190, 220, 238, 0.72);
  background: rgba(3, 13, 29, 0.38);
  border-color: rgba(80, 220, 255, 0.16);
  cursor: not-allowed;
}

.tool-page-feasibility #feasibilityText {
  min-height: 360px;
  max-height: 460px;
  resize: vertical;
}

.feasibility-upload-field {
  gap: 10px;
}

.file-upload-box {
  position: relative;
  display: grid;
  min-height: 260px;
  padding: 24px;
  cursor: pointer;
  overflow: hidden;
  place-items: center;
  border: 1px dashed rgba(100, 220, 255, 0.42);
  border-radius: 14px;
  background:
    linear-gradient(rgba(90, 175, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 175, 255, 0.014) 1px, transparent 1px),
    rgba(2, 12, 30, 0.46);
  background-size: 26px 26px, 26px 26px, auto;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.file-upload-box input[type="file"],
#feasibilityFile {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: inherit !important;
  opacity: 0 !important;
  cursor: pointer !important;
  z-index: 20 !important;
  background: transparent !important;
  box-shadow: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

.file-upload-visual {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 10px;
  max-width: 460px;
  text-align: center;
  pointer-events: none;
}

.file-upload-visual,
.file-upload-visual * {
  pointer-events: none !important;
}

.file-upload-visual::before {
  content: "";
  width: 58px;
  height: 58px;
  margin-bottom: 2px;
  border: 1px solid rgba(110, 230, 255, 0.34);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(42, 210, 255, 0.18), rgba(42, 210, 255, 0.03)),
    rgba(5, 24, 54, 0.42);
  box-shadow:
    inset 0 0 18px rgba(42, 210, 255, 0.08),
    0 0 18px rgba(42, 210, 255, 0.12);
}

.file-upload-visual strong {
  color: #f7fcff;
  font-size: 18px;
  line-height: 1.3;
}

.file-upload-visual span {
  max-width: 420px;
  color: rgba(200, 224, 244, 0.76);
  font-size: 13px;
  line-height: 1.7;
}

.file-upload-visual small {
  color: rgba(90, 232, 255, 0.86);
  font-size: 13px;
  line-height: 1.45;
}

.file-upload-box:hover,
.file-upload-box.is-dragover {
  border-color: rgba(110, 235, 255, 0.72);
  box-shadow:
    0 0 18px rgba(42, 210, 255, 0.16),
    inset 0 0 22px rgba(42, 210, 255, 0.06);
}

@media (max-width: 1280px) {
  .doc-workbench {
    grid-template-columns: minmax(320px, 0.88fr) minmax(460px, 1.12fr) !important;
    max-height: none !important;
  }

  .doc-agent-panel,
  .tool-agent-panel {
    display: none !important;
  }
}

@media (max-width: 860px) {
  .doc-workbench {
    grid-template-columns: 1fr !important;
  }

  .doc-workbench-title h1 {
    font-size: 42px;
  }

  .doc-workbench-page #docText {
    min-height: 230px;
    max-height: 300px;
  }

  .doc-result-shell {
    min-height: 270px;
    max-height: 340px;
  }

  .tool-mini-results {
    grid-template-columns: 1fr;
  }

  .tool-page-fuzzy #standardNames,
  .tool-page-fuzzy #pendingNames {
    min-height: 150px;
    max-height: 220px;
  }

  .tool-page-feasibility #feasibilityText {
    min-height: 280px;
    max-height: 360px;
  }
}
/* 首页左侧首屏收紧 */
.home-final .hero-v2 {
  min-height: 720px;
  padding-top: 40px;
  padding-bottom: 48px;
}

.home-final .hero-v2-content {
  transform: translateY(-54px);
}

.home-final .hero-v2 h1 {
  margin: 18px 0 14px;
}

.home-final .hero-v2-subtitle {
  margin-bottom: 12px;
}

.home-final .hero-v2 .hero-copy {
  display: none;
}

.home-final .hero-metrics {
  margin-top: 18px;
}

.home-final .hero-actions {
  margin-top: 18px;
}
