:root {
  --ink: #f7fbff;
  --muted: #9aa8b8;
  --soft: #c9d4df;
  --bg: #07090d;
  --bg-2: #0b1119;
  --panel: #101923;
  --panel-2: #121f2b;
  --line: rgba(216, 234, 255, 0.13);
  --line-strong: rgba(206, 255, 76, 0.36);
  --lime: #ceff4c;
  --lime-2: #94d82d;
  --orange: #ff8a3d;
  --blue: #4fa3ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.44);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(206, 255, 76, 0.08), transparent 34rem),
    linear-gradient(315deg, rgba(79, 163, 255, 0.1), transparent 38rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 46%, #06080b 100%);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

body.lightbox-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0.03;
  background-image: url("assets/poster-noise.png");
  background-size: 260px 260px;
  mix-blend-mode: screen;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 13, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  color: var(--ink);
  font-size: 1.9rem;
  font-weight: 950;
  text-decoration: none;
}

.brand b {
  color: var(--lime);
}

nav,
.site-footer {
  display: flex;
  gap: clamp(0.75rem, 3vw, 1.4rem);
  color: var(--muted);
  font: 850 0.84rem/1 system-ui, sans-serif;
}

nav a,
.site-footer a {
  color: inherit;
  text-decoration: none;
}

nav a {
  padding: 0.55rem 0;
  border-bottom: 2px solid transparent;
}

nav a:hover,
.site-footer a:hover {
  color: var(--lime);
  border-color: var(--lime);
}

.hero {
  min-height: calc(100svh - 150px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5.5rem);
  padding: clamp(2.2rem, 5vw, 4.4rem) clamp(1rem, 4vw, 3rem) clamp(1.6rem, 3vw, 2.6rem);
  overflow: hidden;
}

.hero-copy {
  max-width: 780px;
}

.label {
  margin: 0 0 1rem;
  color: var(--lime);
  font: 900 0.78rem/1.2 system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.2rem;
  font-size: 5.8rem;
  font-weight: 950;
  line-height: 0.9;
  overflow-wrap: anywhere;
}

.hero h1 {
  max-width: 820px;
}

.hero-copy p:not(.label) {
  max-width: 680px;
  margin-bottom: 1.35rem;
  color: var(--soft);
  font: 650 1.22rem/1.48 system-ui, sans-serif;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.95rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font: 900 0.9rem/1 system-ui, sans-serif;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 14px 34px rgba(206, 255, 76, 0.12);
}

.primary {
  background: var(--lime);
  color: #071006;
  border-color: transparent;
}

.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}

.hero-visual {
  position: relative;
  min-height: min(52vh, 520px);
}

.hero-image {
  position: absolute;
  inset: 4% 8% 4% 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--panel);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 54%, rgba(0, 0, 0, 0.72)),
    linear-gradient(120deg, rgba(206, 255, 76, 0.12), transparent 40%);
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-drone {
  position: absolute;
  right: clamp(-2rem, -3vw, -0.7rem);
  top: 50%;
  z-index: 2;
  width: clamp(150px, 22vw, 310px);
  max-height: 50%;
  object-fit: contain;
  transform: translateY(-50%);
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

.strip {
  display: flex;
  gap: 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #05070a;
  color: var(--lime);
  white-space: nowrap;
}

.strip span {
  flex: 0 0 auto;
  padding: 0.95rem 1.5rem;
  font: 900 0.86rem/1 system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  animation: crawl 22s linear infinite;
}

@keyframes crawl {
  to {
    transform: translateX(-100%);
  }
}

.section {
  padding: clamp(3.6rem, 7vw, 6.8rem) clamp(1rem, 4vw, 3rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(130px, 0.22fr) minmax(0, 0.56fr) minmax(240px, 0.32fr);
  gap: 1.2rem;
  align-items: start;
  margin-bottom: 2.8rem;
}

.section-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: 4.6rem;
  font-weight: 950;
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.section-heading p:not(.label),
.legal-heading p,
.consent-panel p,
.video-copy p,
.video-consent p,
.cookie-banner p,
.legal p,
.site-footer p {
  color: var(--muted);
  font: 560 1rem/1.56 system-ui, sans-serif;
}

.section-heading p:not(.label) {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
}

.service-card,
.video-card,
.legal article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 25, 35, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.service-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
}

.lead-service {
  background: linear-gradient(145deg, rgba(206, 255, 76, 0.18), rgba(16, 25, 35, 0.92));
  border-color: var(--line-strong);
}

.service-card h3 {
  margin-top: auto;
  margin-bottom: 0.8rem;
  color: var(--ink);
  font-size: 2.6rem;
}

.service-card p,
.lead-service p {
  margin-bottom: 0;
  color: var(--muted);
  font: 560 1rem/1.5 system-ui, sans-serif;
}

.number {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: rgba(206, 255, 76, 0.12);
  color: var(--lime);
  font: 950 0.78rem/1 system-ui, sans-serif;
}

.consent-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  margin-bottom: 1.6rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 25, 35, 0.82);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.2);
}

.consent-panel h2,
.cookie-banner h2 {
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1.1;
}

.consent-panel p,
.cookie-banner p {
  max-width: 840px;
  margin-bottom: 0;
}

.video-showcase {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--lime);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.5rem;
  background: var(--lime);
}

.video-tabs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
  margin: 0;
  padding: 0.35rem 0.35rem 0;
  border: 0;
  border-radius: 0;
  background: rgba(4, 9, 14, 0.76);
}

.video-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  min-width: 0;
  padding: 1rem 1.1rem;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--muted);
  font: 900 0.94rem/1 system-ui, sans-serif;
  letter-spacing: 0;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background-color 240ms ease, transform 240ms ease;
}

.video-tab:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
}

.video-tab[aria-selected="true"] {
  background: var(--lime);
  color: #071006;
  transform: none;
  box-shadow: none;
}

.video-tab b {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  min-width: 2rem;
  height: 2rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.72rem;
}

.video-card.is-entering {
  animation: video-card-in 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: calc(var(--card-index, 0) * 65ms);
}

@keyframes video-card-in {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.video-card {
  overflow: hidden;
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(206, 255, 76, 0.26), transparent 48%),
    linear-gradient(330deg, rgba(255, 138, 61, 0.28), transparent 48%),
    url("assets/screen-static.png") center / cover;
}

.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transition: filter 240ms ease, transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.video-card:hover .video-poster {
  filter: saturate(1.05) contrast(1.06);
  transform: scale(1.025);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(1, 4, 8, 0.82);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 220ms ease;
}

.video-lightbox[hidden] {
  display: none;
}

.video-lightbox.is-open {
  opacity: 1;
}

.video-lightbox-shell {
  width: min(80vw, 1440px, calc((100vh - 8rem) * 1.7778));
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 234, 255, 0.22);
  border-radius: 8px;
  background: #020304;
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.72);
  transform: translateY(24px) scale(0.975);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.video-lightbox.is-open .video-lightbox-shell {
  transform: translateY(0) scale(1);
}

.video-lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.8rem;
  padding: 0.7rem 0.8rem 0.7rem 1.1rem;
  border-bottom: 1px solid var(--line);
  background: #0b1119;
}

.video-lightbox-header h2 {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.video-lightbox-close {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font: 400 1.8rem/1 system-ui, sans-serif;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.video-lightbox-close:hover,
.video-lightbox-close:focus-visible {
  background: var(--lime);
  color: #071006;
  transform: rotate(90deg);
  outline: none;
}

.video-lightbox-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-lightbox-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-consent {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.75rem;
  padding: 1.35rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(2, 5, 8, 0.32), rgba(2, 5, 8, 0.82));
  color: white;
  transition: background 220ms ease;
}

.video-consent.is-enabled {
  background: transparent;
}

.video-consent.is-enabled > span,
.video-consent.is-enabled h2,
.video-consent.is-enabled p {
  display: none;
}

.video-consent .video-play-button {
  width: 3.7rem;
  min-width: 3.7rem;
  height: 3.7rem;
  min-height: 3.7rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ff0033;
  color: white;
  box-shadow:
    0 8px 24px rgba(255, 0, 51, 0.38),
    0 18px 58px rgba(255, 0, 51, 0.28),
    0 28px 90px rgba(0, 0, 0, 0.32);
}

.video-consent .video-play-button::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 0.22rem;
  border-top: 0.58rem solid transparent;
  border-bottom: 0.58rem solid transparent;
  border-left: 0.9rem solid currentColor;
}

.video-consent .video-play-button:hover,
.video-consent .video-play-button:focus-visible {
  border-color: transparent;
  background: #ff0033;
  box-shadow:
    0 10px 30px rgba(255, 0, 51, 0.48),
    0 22px 72px rgba(255, 0, 51, 0.36),
    0 32px 100px rgba(0, 0, 0, 0.38);
  transform: translateY(-2px) scale(1.06);
  outline: 2px solid white;
  outline-offset: 3px;
}

.video-consent span {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--lime);
  color: #071006;
  font: 950 0.78rem/1 system-ui, sans-serif;
}

.video-consent > span,
.video-copy .number {
  display: none;
}

.video-consent h2 {
  margin-bottom: 0;
  color: white;
  font-size: 1.8rem;
  line-height: 1;
}

.video-consent p {
  max-width: 460px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.video-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.65rem 0.8rem;
  padding: 1rem;
}

.video-copy h3 {
  font-size: 1.35rem;
  overflow-wrap: anywhere;
}

h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 1.9rem;
  font-weight: 950;
  line-height: 1;
}

.video-copy p {
  grid-column: 1;
  margin-bottom: 0;
}

.about {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.about-body {
  max-width: 1120px;
  color: var(--soft);
  font: 560 1.1rem/1.68 system-ui, sans-serif;
}

.about-body p {
  margin-bottom: 1.05rem;
}

.about-body p:last-child {
  margin-bottom: 0;
}

.about-image-placeholder {
  float: right;
  width: min(33%, 360px);
  min-width: 240px;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  margin: 0 0 1.2rem clamp(1.1rem, 3vw, 2rem);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(206, 255, 76, 0.18), transparent 48%),
    linear-gradient(330deg, rgba(255, 138, 61, 0.18), transparent 48%),
    rgba(16, 25, 35, 0.86);
  color: var(--lime);
  font: 900 0.82rem/1 system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-image-placeholder span {
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  background: rgba(7, 9, 13, 0.8);
}

.legacy {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(260px, 0.42fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: end;
  border-block: 1px solid var(--line);
  background: #05070a;
}

.legacy h2 {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 4.8rem;
  font-weight: 950;
  line-height: 0.96;
}

.legacy p:not(.label) {
  margin-bottom: 0;
  color: var(--muted);
  font: 560 1.16rem/1.55 system-ui, sans-serif;
}

.legacy .label {
  color: var(--orange);
  margin-bottom: 1rem;
}

.contact-section {
  border-top: 1px solid var(--line);
}

.legal {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  min-height: calc(100svh - 165px);
}

.legal-contrast {
  background: #05070a;
}

.legal-heading {
  display: grid;
  grid-template-columns: minmax(120px, 0.18fr) minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: start;
  margin-bottom: 2.4rem;
}

.legal-heading h1,
.legal-heading h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 3.4rem;
  font-weight: 950;
  line-height: 1;
}

.legal-heading p:not(.label) {
  margin-bottom: 0;
}

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

.legal article {
  padding: 1.25rem;
}

.legal-contrast article {
  border-color: var(--line);
  background: rgba(16, 25, 35, 0.78);
}

.legal-contrast .label {
  color: var(--orange);
}

.legal-contrast p,
.legal-contrast .legal-heading p,
.legal-contrast a {
  color: var(--muted);
}

.legal article p:last-child {
  margin-bottom: 0;
}

.legal code {
  padding: 0.08rem 0.28rem;
  border-radius: 4px;
  background: rgba(206, 255, 76, 0.12);
  color: var(--lime);
}

.cookie-banner {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  left: clamp(1rem, 3vw, 2rem);
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(10, 16, 23, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.site-footer {
  background: #05070a;
  color: var(--muted);
  padding: 1.2rem clamp(1rem, 4vw, 3rem) 2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-weight: 850;
}

.footer-links {
  display: flex;
  gap: clamp(0.7rem, 3vw, 1.4rem);
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--lime);
}

@media (max-width: 1100px) {
  h1 {
    font-size: 4.6rem;
  }

  .section-heading h2,
  .legacy h2 {
    font-size: 3.6rem;
  }

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

  .video-copy h3 {
    font-size: 1.7rem;
  }

}

@media (max-width: 980px) {
  .hero,
  .service-grid,
  .legacy,
  .section-heading,
  .legal-heading,
  .legal-grid,
  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 500px;
  }

  .service-card {
    min-height: 250px;
  }

  .section-heading,
  .legal-heading {
    max-width: 800px;
  }

  .consent-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-image-placeholder {
    float: none;
    width: min(100%, 420px);
    min-width: 0;
    margin: 0 0 1.4rem;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  h1,
  .hero h1 {
    font-size: 3.45rem;
  }

  .section-heading h2,
  .legacy h2 {
    font-size: 2.75rem;
  }

  .hero-copy p:not(.label) {
    font-size: 1.08rem;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-image {
    inset: 0 0 8%;
  }

  .hero-drone {
    right: -1.2rem;
    width: clamp(110px, 36vw, 180px);
  }

  .button,
  .cookie-actions {
    width: 100%;
  }

  .video-tabs {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
    padding: 0.75rem;
  }

  .video-tab {
    min-height: 3.5rem;
  }

  .video-lightbox {
    padding: 0.75rem;
  }

  .video-lightbox-shell {
    width: min(94vw, calc((100vh - 6rem) * 1.7778));
  }

  .video-lightbox-header {
    min-height: 3.3rem;
    padding-left: 0.8rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .video-copy {
    grid-template-columns: 1fr;
  }

  .video-copy .number,
  .video-copy p {
    grid-column: 1;
  }
}

@media (min-width: 1101px) {
  .video-consent {
    gap: 0.45rem;
    padding: 0.8rem;
  }

  .video-consent span {
    width: 1.8rem;
    height: 1.8rem;
    font-size: 0.68rem;
  }

  .video-consent h2 {
    font-size: 1.25rem;
  }

  .video-consent p {
    display: none;
  }

  .video-consent .button {
    padding: 0.68rem 0.85rem;
    font-size: 0.76rem;
  }

  .video-consent .video-play-button {
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-card.is-entering {
    animation: none;
  }

  .video-tab {
    transition: none;
  }
}
