:root {
  --bg: #070707;
  --bg-elevated: #111111;
  --bg-panel: #161616;
  --bg-trust: #101010;
  --text: #f4f1ea;
  --text-muted: #b7b1a6;
  --gold: #c4a46a;
  --gold-deep: #a8894d;
  --gold-soft: rgba(196, 164, 106, 0.16);
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Helvetica Neue", sans-serif;
  --container: 1180px;
  --header-h: 92px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(196, 164, 106, 0.08), transparent 55%),
    linear-gradient(180deg, #0b0b0b 0%, var(--bg) 40%, #050505 100%);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(7, 7, 7, 0.72);
  backdrop-filter: blur(14px);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(7, 7, 7, 0.92);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
  min-width: max-content;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0.22rem;
  width: max-content;
  line-height: 1;
}

.brand-text .brand-name {
  display: block;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Same left/right edges as DAG-USA — words pinned to both ends */
.brand-text .brand-tag {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
}

.brand-text .brand-tag > span {
  display: block;
  white-space: nowrap;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ddd7cc;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--gold);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.7rem 1.25rem;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(180deg, #d2b47a 0%, var(--gold) 48%, var(--gold-deep) 100%);
  color: #111;
}

.btn-gold:hover {
  background: linear-gradient(180deg, #dbc08a 0%, #ccad72 48%, #b59557 100%);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-gold {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold-soft);
}

.login-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ddd7cc;
  cursor: pointer;
}

.login-link:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 0 auto;
  background: currentColor;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

.hero {
  position: relative;
  min-height: clamp(28rem, 68vh, 40rem);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Keep Max (right) and his head (top) in frame on wide screens */
  object-position: 100% 0%;
  transform: none;
  animation: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.42) 38%, rgba(0, 0, 0, 0.12) 72%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.06) 40%, rgba(0, 0, 0, 0.55) 100%);
}

.hero-inner {
  width: min(var(--container), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 3.25rem 0 2.75rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: 2.75rem;
  align-items: center;
}

.hero-copy {
  max-width: 38rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #efe8db;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.8vw, 4.6rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero h1 .hero-title-line,
.hero h1 .hero-title-accent {
  display: block;
  white-space: nowrap;
}

.hero h1 .hero-title-accent {
  color: var(--gold);
}

.hero-lead {
  margin: 1.25rem 0 0;
  max-width: 34rem;
  color: #ebe4d8;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.hero-points {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  background: none;
  border: 0;
  backdrop-filter: none;
}

.hero-point {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.95rem 1.35rem 0.95rem 0.85rem;
  border: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.58) 0%,
    rgba(0, 0, 0, 0.28) 62%,
    rgba(0, 0, 0, 0) 100%
  );
}

.icon-badge {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(196, 164, 106, 0.45);
  background: rgba(196, 164, 106, 0.08);
  color: var(--gold);
}

.icon-badge svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.hero-point strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-point p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.section {
  padding: 5rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}

.section-kicker {
  margin: 0 0 0.65rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-head h2,
.footer-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.section-head p {
  margin: 0.85rem 0 0;
  max-width: 36rem;
  color: var(--text-muted);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.course-card {
  display: grid;
  grid-template-rows: 180px auto;
  min-height: 100%;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.course-card:hover {
  border-color: rgba(196, 164, 106, 0.45);
  transform: translateY(-3px);
}

.course-media {
  position: relative;
  overflow: hidden;
}

.course-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.05);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.course-card:hover .course-media img {
  transform: scale(1.05);
  filter: grayscale(0.1) contrast(1.08);
}

.course-media .icon-badge {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  background: rgba(10, 10, 10, 0.78);
}

.course-body {
  display: grid;
  gap: 0.7rem;
  padding: 1.15rem 1.1rem 1.25rem;
}

.course-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}

.course-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.course-body .more {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(28rem, 62vh, 40rem);
  display: grid;
  align-items: center;
}

.about-band-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.about-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.about-band-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.55) 48%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0.65) 100%);
}

.about-band-inner {
  position: relative;
  padding: 4.5rem 0;
  max-width: min(42rem, 100%);
}

.about-band-inner h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 0.95;
  text-transform: uppercase;
}

.about-band-sub {
  margin: 0.75rem 0 0;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-band-copy {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.95rem;
}

.about-band-copy p {
  margin: 0;
  color: #ebe4d8;
  font-size: 1rem;
  line-height: 1.6;
}

.about-band .hero-actions {
  margin-top: 1.75rem;
}

.testimonials {
  padding: 4.5rem 0;
  background: #0a0a0a;
  border-top: 1px solid var(--line);
}

.testimonials .section-head {
  margin-bottom: 2rem;
}

.testimonials .section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem 1.75rem;
}

.testimonial {
  margin: 0;
  padding: 0 0 0 1.15rem;
  border-left: 2px solid rgba(196, 164, 106, 0.55);
}

.testimonial p {
  margin: 0;
  color: #ebe4d8;
  font-size: 0.98rem;
  line-height: 1.65;
}

.testimonial footer {
  margin-top: 1rem;
  display: grid;
  gap: 0.2rem;
}

.testimonial footer strong {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testimonial footer span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.trust-bar {
  background: linear-gradient(180deg, #121212 0%, #0d0d0d 100%);
  border-block: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  padding: 2.4rem 0;
}

.trust-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.85rem;
  align-items: start;
}

.trust-item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.trust-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-cta {
  text-align: center;
  padding-bottom: 2rem;
}

.footer-cta p {
  margin: 0.85rem auto 0;
  max-width: 34rem;
  color: var(--text-muted);
}

.subscribe-form {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin: 1.5rem auto 0;
  width: min(560px, 100%);
}

.subscribe-form input {
  flex: 1;
  min-width: 0;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  background: #0d0d0d;
  color: var(--text);
}

.subscribe-form input:focus {
  outline: 1px solid var(--gold);
  border-color: var(--gold);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 0;
}

.social {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.social span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--gold);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.social a:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
}

.social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 1.4rem;
  border-top: 1px solid var(--line);
  color: #8f897f;
  font-size: 0.82rem;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a:hover {
  color: var(--gold);
}

.demo-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(196, 164, 106, 0.35);
  background: rgba(10, 10, 10, 0.88);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-kenburns {
  from { transform: scale(1.06); }
  to { transform: scale(1.01); }
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1rem;
    background: rgba(8, 8, 8, 0.97);
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    justify-self: end;
  }

  .header-actions .btn {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 2.5rem 0 2rem;
  }

  .hero-points {
    order: 2;
  }

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

  .section-head {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .container,
  .hero-inner {
    width: min(var(--container), calc(100% - 1.5rem));
  }

  .brand-text .brand-name {
    font-size: 1.45rem;
  }

  .brand-text .brand-tag {
    font-size: 0.48rem;
  }

  .hero {
    min-height: clamp(26rem, 70vh, 36rem);
  }

  .hero-actions,
  .subscribe-form {
    flex-direction: column;
  }

  .subscribe-form .btn,
  .hero-actions .btn {
    width: 100%;
  }

  .course-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .footer-main,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* -------- Video player modal -------- */
.modal.modal-video {
  width: min(980px, calc(100vw - 1.5rem));
  max-height: min(94vh, 920px);
  padding: 0;
  overflow: hidden;
  border-color: rgba(196, 164, 106, 0.4);
  background: #0b0b0b;
  border-radius: 6px;
}

.modal.modal-video .video-modal-shell,
.modal.modal-video .video-stage {
  width: 100%;
}

.video-modal-shell {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  max-height: min(94vh, 920px);
}

.video-modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem 0.75rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.video-modal-brand {
  pointer-events: none;
}

.video-modal-brand img {
  width: 40px;
  height: 40px;
}

.video-modal-brand .brand-name {
  font-size: 1.45rem;
}

.video-modal-brand .brand-tag {
  font-size: 0.5rem;
}

.video-modal-close {
  position: static;
  width: 2rem;
  height: 2rem;
  color: #fff;
  font-size: 1.75rem;
}

.video-stage {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #000;
  aspect-ratio: 16 / 9;
  max-height: min(56vh, 560px);
  overflow: hidden;
}

.video-stage video,
.video-stage .video-youtube {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  border: 0;
  background: #000;
}

.video-stage video {
  object-fit: cover;
  object-position: center center;
}

.video-stage .video-youtube {
  position: absolute;
  inset: 0;
}

.video-modal-body {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.85fr);
  gap: 1.5rem;
  padding: 1.15rem 1.25rem 1rem;
  overflow: auto;
}

.video-copy h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
}

.video-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 38rem;
}

.video-related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.video-related-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0.75rem;
  width: 100%;
  margin: 0 0 0.55rem;
  padding: 0.4rem;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.video-related-item:hover,
.video-related-item.is-active {
  border-color: rgba(196, 164, 106, 0.45);
  background: rgba(196, 164, 106, 0.08);
}

.video-thumb {
  display: block;
  width: 88px;
  height: 56px;
  background: #222 center / cover no-repeat;
  position: relative;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #fff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.6));
}

.video-related-meta {
  display: grid;
  align-content: center;
  gap: 0.2rem;
  min-width: 0;
}

.video-related-meta strong {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
}

.video-related-meta em {
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.video-modal-foot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 0.95rem 1.25rem 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0e0e0e;
}

.video-foot-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0.7rem;
  align-items: start;
}

.video-foot-item strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.video-foot-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

@media (max-width: 820px) {
  .video-modal-body,
  .video-modal-foot {
    grid-template-columns: 1fr;
  }

  .video-stage,
  .video-stage video {
    max-height: 40vh;
  }
}
