.home-hero {
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: center;
  padding: clamp(34px, 7vw, 86px) 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(460px, .9fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  perspective: 1100px;
}

.ops-panel {
  position: absolute;
  inset: 10% -7% auto 2%;
  min-width: 620px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(15, 33, 53, .95), rgba(6, 19, 32, .94));
  box-shadow: var(--shadow);
  transform: rotateX(8deg) rotateY(-13deg) rotateZ(-2deg);
  transform-origin: center;
  overflow: hidden;
}

.ops-top {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.dots {
  display: flex;
  gap: 7px;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dots span:nth-child(1) { background: #ff6f6f; }
.dots span:nth-child(2) { background: #ffd15f; }
.dots span:nth-child(3) { background: #5be584; }

.ops-body {
  display: grid;
  grid-template-columns: 120px 1fr;
}

.ops-sidebar {
  padding: 20px 16px;
  border-right: 1px solid var(--line);
  display: grid;
  gap: 12px;
}

.ops-sidebar span {
  height: 34px;
  border-radius: 8px;
  background: rgba(68, 128, 182, .22);
}

.ops-sidebar span:first-child {
  background: var(--blue);
}

.ops-content {
  padding: 24px;
}

.ops-content h2 {
  margin: 0 0 18px;
  font-size: 28px;
}

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

.ops-table {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.ops-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr 1fr;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.ops-row:first-child {
  border-top: 0;
  color: var(--blue);
  font-weight: 900;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  min-width: 142px;
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: rgba(10, 27, 44, .88);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .24);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.floating-chip strong {
  display: block;
  color: var(--text);
  font-size: 14px;
}

.chip-one { left: -2%; bottom: 14%; }
.chip-two { right: 0; top: 16%; }
.chip-three { right: 10%; bottom: 4%; }

.page-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .7fr);
  gap: 18px;
  align-items: start;
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.timeline-num {
  color: var(--blue);
  font-weight: 950;
}

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

.download-card .download-status {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-content h2 {
  margin: 18px 0 0;
}
