.hero--video { padding: 150px 0 120px; }
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .30; z-index: 0; filter: saturate(1.15);
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(760px 420px at 50% 0%, rgba(99,102,241,.30), transparent 70%),
    linear-gradient(180deg, rgba(11,17,33,.55) 0%, rgba(11,17,33,.82) 62%, var(--bg) 100%);
}
.hero--video .hero__inner { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) { .hero__video { display: none; } }

.statband {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.statband > div { background: var(--surface); padding: 26px 20px; text-align: center; }
.statband .n {
  font-family: var(--font-display); font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  display: block; line-height: 1.1;
}
.statband .t { color: var(--muted); font-size: .88rem; margin-top: 6px; display: block; }

.card__ic { color: var(--accent); }
.card__ic .ic { width: 24px; height: 24px; }
.phase .card__ic { background: linear-gradient(135deg, rgba(99,102,241,.22), rgba(34,211,238,.14)); }

.loopwrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.loop-svg { width: 100%; max-width: 520px; margin: 0 auto; display: block; overflow: visible; }
.loop-n { font-family: var(--font-mono); font-size: 15px; font-weight: 700; fill: #e7ebf7; }
.loop-l { font-family: var(--font-body); font-size: 15px; font-weight: 700; fill: #9aa4c0; }
.loop-c1 { font-family: var(--font-display); font-size: 19px; font-weight: 800; fill: #e7ebf7; letter-spacing: .5px; }
.loop-c2 { font-family: var(--font-display); font-size: 19px; font-weight: 800; fill: #22d3ee; letter-spacing: 3px; }
.loop-c3 { font-family: var(--font-mono); font-size: 11px; fill: #6f7a99; }

.showcase {
  border-radius: 16px; overflow: hidden; border: 1px solid var(--border-2);
  background: var(--surface); box-shadow: 0 30px 80px rgba(0,0,0,.55);
}
.showcase__bar {
  display: flex; align-items: center; gap: 7px; padding: 12px 16px;
  background: var(--surface-2); border-bottom: 1px solid var(--border);
}
.showcase__bar span { width: 11px; height: 11px; border-radius: 50%; background: #2c3552; }
.showcase__bar span:nth-child(1) { background: #f472b6; }
.showcase__bar span:nth-child(2) { background: #f59e0b; }
.showcase__bar span:nth-child(3) { background: #10b981; }
.showcase__bar em {
  margin-left: 12px; font-family: var(--font-mono); font-size: .76rem;
  color: var(--muted-2); font-style: normal;
}
.showcase img { width: 100%; display: block; }

.imgsplit { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.imgsplit__media {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  position: relative; box-shadow: 0 20px 60px rgba(0,0,0,.45);
}
.imgsplit__media img { width: 100%; display: block; }
.imgsplit__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(99,102,241,.22), transparent 55%, rgba(34,211,238,.14));
}

.intgrid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.intgrid span {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 16px 10px; text-align: center; font-family: var(--font-mono); font-size: .82rem;
  color: var(--muted); transition: .2s;
}
.intgrid span:hover { color: var(--text); border-color: var(--border-2); transform: translateY(-3px); }

.badge { display: inline-flex; align-items: center; gap: .5em; }
.badge .ic { width: 15px; height: 15px; color: var(--green); }

@media (max-width: 900px) {
  .loopwrap, .imgsplit { grid-template-columns: 1fr; gap: 32px; }
  .statband { grid-template-columns: repeat(2, 1fr); }
  .intgrid { grid-template-columns: repeat(3, 1fr); }
  .hero--video { padding: 100px 0 80px; }
}
@media (max-width: 560px) {
  .intgrid { grid-template-columns: repeat(2, 1fr); }
  .loop-svg { display: none; }
}
