.video-page {
  background:
    radial-gradient(circle at top right, rgba(22, 184, 213, 0.14), transparent 28%),
    linear-gradient(180deg, #f6fbfb 0%, #ebf3f2 100%);
}

.video-page .site-header {
  background: rgba(7, 17, 19, 0.74);
}

.video-page .nav-links a[href="./index.html"] {
  color: #9fe8f4;
}

.video-hero {
  position: relative;
  overflow: hidden;
  min-height: 98vh;
  padding: 120px clamp(18px, 5vw, 64px) 72px;
  color: #fff;
  background: #071113;
}

.video-hero-image,
.video-hero-layer {
  position: absolute;
  inset: 0;
}

.video-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
}

.video-hero-layer {
  background:
    radial-gradient(circle at 82% 18%, rgba(22, 184, 213, 0.35), transparent 18%),
    linear-gradient(100deg, rgba(7, 17, 19, 0.94) 0%, rgba(7, 17, 19, 0.82) 42%, rgba(7, 17, 19, 0.48) 100%);
}

.video-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: clamp(24px, 5vw, 44px);
  width: min(1240px, 100%);
  margin: 0 auto;
  align-items: end;
}

.video-hero-copy h1 {
  margin: 0;
  font-size: clamp(52px, 8vw, 108px);
  line-height: 0.94;
}

.video-hero-text {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.85;
}

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

.hero-stat-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  backdrop-filter: blur(14px);
}

.hero-stat-card.neon-card {
  background:
    linear-gradient(140deg, rgba(19, 45, 52, 0.96), rgba(8, 18, 20, 0.92)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(111, 224, 235, 0.12);
}

.hero-stat-card.compact {
  padding-bottom: 18px;
}

.stat-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: #8fe1ed;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stat-card strong {
  display: block;
  font-size: 28px;
  line-height: 1.15;
}

.hero-stat-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

.mini-metric-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.mini-metric-list li {
  min-height: 40px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  font-weight: 700;
}

.studio-demo-section {
  padding-top: clamp(68px, 8vw, 110px);
}

.studio-demo-shell {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  align-items: start;
}

.template-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 12px;
}

.template-chip {
  min-height: 56px;
  padding: 0 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 32, 36, 0.08);
  border-radius: 18px;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.template-chip:hover,
.template-chip.active {
  color: #fff;
  background: linear-gradient(135deg, #071113, #0f3036);
  transform: translateX(4px);
}

.studio-console {
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 248, 248, 0.96)),
    #fff;
  border: 1px solid rgba(16, 32, 36, 0.08);
  border-radius: 28px;
  box-shadow: 0 20px 70px rgba(7, 17, 19, 0.12);
}

.console-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.console-kicker {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.console-topline h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
}

.console-status {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 320px;
}

.console-status span,
.pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.console-status span {
  color: var(--ink);
  background: rgba(22, 184, 213, 0.12);
}

.console-desc {
  max-width: 840px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.console-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.console-metrics article,
.scene-card,
.system-card,
.workflow-card,
.module-card {
  border-radius: 20px;
}

.console-metrics article {
  padding: 18px;
  background: #f5faf9;
  border: 1px solid rgba(16, 32, 36, 0.08);
}

.console-metrics span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.console-metrics strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.5;
}

.storyboard-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.storyboard-card {
  min-height: 218px;
  padding: 18px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(111, 224, 235, 0.16), rgba(7, 17, 19, 0.18)),
    linear-gradient(135deg, #0a171a, #102d33);
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.shot-index,
.board-label,
.module-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shot-index {
  color: #9fe8f4;
}

.storyboard-card h4 {
  margin: 0 0 10px;
  font-size: 22px;
}

.storyboard-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.72;
}

.constraint-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}

.board-label {
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-row span {
  color: #fff;
  background: linear-gradient(135deg, #16b8d5, #0c5b69);
}

.workflow-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(238, 246, 245, 0.86)),
    #edf5f4;
}

.workflow-ribbon,
.module-grid,
.scene-grid,
.system-grid {
  display: grid;
  gap: 18px;
}

.workflow-ribbon {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workflow-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 32, 36, 0.08);
}

.workflow-card span,
.system-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #071113;
  background: linear-gradient(135deg, #dffcff, #45c17a);
  border-radius: 14px;
  font-weight: 900;
}

.workflow-card h3,
.module-card h3,
.scene-card strong,
.system-card h3 {
  display: block;
  margin: 18px 0 10px;
  color: var(--ink);
}

.workflow-card p,
.module-card p,
.scene-card p,
.system-card p,
.module-card li {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

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

.module-card {
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(16, 32, 36, 0.08);
}

.module-card.dark {
  color: #fff;
  background: linear-gradient(135deg, #071113, #0f3036);
}

.module-card.dark h3,
.module-card.dark p,
.module-card.dark li,
.module-card.dark .module-kicker {
  color: rgba(255, 255, 255, 0.88);
}

.module-card.accent {
  background:
    linear-gradient(180deg, rgba(22, 184, 213, 0.08), rgba(255, 255, 255, 0.96)),
    #fff;
}

.module-kicker {
  color: var(--cyan);
}

.module-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.module-card li + li {
  margin-top: 10px;
}

.scenes-section {
  background: #071113;
  color: #fff;
}

.scenes-section .section-heading h2,
.scenes-section .section-heading p:not(.eyebrow) {
  color: #fff;
}

.scenes-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

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

.scene-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.scene-card strong {
  color: #dffcff;
  font-size: 22px;
}

.scene-card p {
  color: rgba(255, 255, 255, 0.72);
}

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

.system-card {
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(16, 32, 36, 0.08);
}

.video-contact {
  margin-top: 0;
}

.video-contact .primary-button {
  background: linear-gradient(135deg, #f7ffff, #69d7e8);
}

@media (max-width: 1100px) {
  .video-hero-grid,
  .studio-demo-shell,
  .constraint-board {
    grid-template-columns: 1fr;
  }

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

  .workflow-ribbon,
  .module-grid,
  .scene-grid,
  .system-grid,
  .storyboard-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .console-topline,
  .console-metrics {
    grid-template-columns: 1fr;
  }

  .console-topline {
    display: grid;
  }

  .console-status {
    justify-content: flex-start;
    max-width: none;
  }
}

@media (max-width: 700px) {
  .video-hero {
    min-height: auto;
    padding-top: 104px;
  }

  .template-sidebar,
  .workflow-ribbon,
  .module-grid,
  .scene-grid,
  .system-grid,
  .storyboard-strip,
  .console-metrics {
    grid-template-columns: 1fr;
  }

  .video-hero-copy h1 {
    font-size: 56px;
  }

  .studio-console,
  .workflow-card,
  .module-card,
  .scene-card,
  .system-card,
  .hero-stat-card {
    border-radius: 18px;
  }
}
