/* Hero B center-block — typographic stack */
.cb-stack {
  position: absolute;
  inset: 0;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}
.cb-big {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.cb-num {
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
  font-size: 0.22em;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,.45);
  padding-right: 14px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.cb-bigword {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}
.cb-bigword.cb-red {
  -webkit-text-stroke: 1px var(--red);
  color: var(--red);
}
.cb-line {
  height: 1px;
  background: rgba(255,255,255,.18);
  position: relative;
  overflow: hidden;
}
.cb-line::after {
  content: "";
  position: absolute; inset: 0 60% 0 0;
  background: var(--red);
  animation: cbLine 5s ease-in-out infinite;
}
@keyframes cbLine {
  0%, 100% { inset: 0 80% 0 0; }
  50%      { inset: 0 0 0 40%; }
}
.cb-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,.65);
}
.cb-dot { color: var(--red); }
.cb-baseline {
  display: grid;
  gap: 10px;
}
.cb-bl-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,.7);
}
.cb-bl-tag {
  color: rgba(255,255,255,.45);
}
.viz-majorip {
  background:
    radial-gradient(ellipse at 20% 80%, rgba(229,165,22,.16), transparent 50%),
    linear-gradient(135deg, #0d0d10 0%, #161618 60%, #1c1c20 100%);
  color: #fff;
}
.mip-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%);
}
.mip-watermark {
  position: absolute;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 360px;
  line-height: 0.78;
  letter-spacing: -0.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.16);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
/* central "frame" — a containing rectangle suggesting an IP keyframe */
.mip-frame {
  position: absolute;
  left: 16%; right: 16%;
  top: 22%; bottom: 26%;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(0px);
}
.mip-frame::before, .mip-frame::after {
  content: "";
  position: absolute;
  background: var(--red);
}
.mip-frame::before { left: -8px; top: 50%; width: 16px; height: 1px; }
.mip-frame::after  { right: -8px; top: 50%; width: 16px; height: 1px; }
.mip-frame-tag {
  position: absolute; top: -22px; left: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px; letter-spacing: 0.18em;
  color: rgba(255,255,255,.55);
}
/* stacked layered panels indicating multi-asset production */
.mip-stack {
  position: absolute;
  inset: 22% 16% 26% 16%;
  pointer-events: none;
}
.mip-layer {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.15);
}
.mip-layer.l1 { transform: translate(8px, 8px); }
.mip-layer.l2 { transform: translate(16px, 16px); opacity: .6; }
.mip-layer.l3 {
  transform: translate(24px, 24px);
  border-color: var(--red);
  opacity: .85;
}
/* corner brackets */
.mip-bracket {
  position: absolute;
  width: 28px; height: 28px;
  border-color: rgba(255,255,255,.6);
}
.mip-bracket.bracket-tl { top: 48px; left: 48px; border-left: 1px solid; border-top: 1px solid; }
.mip-bracket.bracket-br { bottom: 48px; right: 48px; border-right: 1px solid; border-bottom: 1px solid; }

/* ===== Project bottom row (note + view all) ===== */
.proj-bottom {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.proj-bottom .proj-note {
  margin-top: 0;
  max-width: none;
}
.proj-view-all {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border: 1px solid var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .25s, color .25s, transform .25s;
}
.proj-view-all:hover {
  background: var(--ink);
  color: var(--off);
  transform: translateX(4px);
}
.proj-view-all .arrow {
  display: inline-block;
  width: 22px; height: 1px;
  background: currentColor;
  position: relative;
}
.proj-view-all .arrow::after {
  content: "";
  position: absolute; right: 0; top: -3px;
  width: 8px; height: 8px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

@media (max-width: 900px) {
  .proj-bottom { grid-template-columns: 1fr; }
}

/* ===== Beyond Entertainment — growth / green-accented ===== */
.beyond {
  padding: 120px 0 120px;
  background: var(--paper-2);
  position: relative;
  border-top: 1px solid var(--line);
}
.beyond .caps-intro { margin-bottom: 72px; }
.beyond .caps-intro h2 span[style] { color: var(--green) !important; }
.beyond .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}
.beyond .cap-cell {
  padding: 36px 28px 28px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--paper-2);
  position: relative;
  min-height: 240px;
  transition: background .3s;
}
.beyond .cap-cell:hover { background: var(--off); }
.beyond .cap-cell .num { color: var(--green); }
.beyond .cap-cell .corner { border-color: var(--green); }
.beyond .cap-cell h3 { color: var(--navy); }
