:root {
  --sm-green: #08711a;
  --sm-green-dark: #005a18;
  --sm-gold: #ffd21f;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pro-video-hero {
  display: grid;
  grid-template-columns: minmax(0, 49.4fr) minmax(0, 50.6fr);
  align-items: stretch;
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.pro-hero-left {
  position: relative;
  min-width: 0;
  overflow: hidden;
  container-type: inline-size;
  background: #fff;
}

.pro-hero-art {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
  object-position: center;
}

.pro-hero-copy {
  position: absolute;
  top: 38.6%;
  left: 11.2%;
  width: 41.6%;
  min-height: 18%;
  margin: 0;
  padding: 1.1% 0 1% 1%;
  background: #fff;
  color: #151515;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-size: 2.05cqw;
  font-weight: 700;
  line-height: 1.17;
  letter-spacing: .01em;
  white-space: nowrap;
}

.pro-hero-copy span {
  display: block;
}

.pro-hero-cost {
  position: absolute;
  top: 41.8%;
  left: 74.1%;
  z-index: 2;
  width: 12.1%;
  min-height: 9.8%;
  overflow: hidden;
  margin: 0;
  padding: .6% 0 .4% .3%;
  background: #f5c700;
  color: #090909;
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-size: 1.72cqw;
  font-stretch: condensed;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.pro-hero-cost span {
  display: block;
}

.pro-video-panel {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 4px 40px;
  background: linear-gradient(90deg, #075f18 0%, #006b20 100%);
}

.pro-video-shell {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  background: #050805;
  border: 5px solid var(--sm-gold);
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .23);
}

.pro-video-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050805;
  cursor: pointer;
}

.pro-video-stage:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -6px;
}

.pro-video-shell video {
  display: block;
  width: 100%;
  height: 100%;
  background: #050805;
  object-fit: cover;
}

.pro-video-controls {
  padding: 7px 10px 8px;
  color: #fff;
  background: #032c12;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.pro-video-progress {
  width: 100%;
  height: 4px;
  margin: 0 0 7px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
}

.pro-video-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--sm-gold);
}

.pro-video-buttons {
  display: grid;
  grid-template-columns: auto auto auto minmax(70px, 1fr) auto auto;
  align-items: center;
  gap: 8px;
}

.pro-video-btn {
  appearance: none;
  min-height: 32px;
  padding: 7px 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .25px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pro-video-btn:hover,
.pro-video-btn:focus-visible {
  background: rgba(255, 255, 255, .24);
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.pro-sound-btn {
  background: var(--sm-gold);
  color: #142316;
}

.pro-sound-btn[aria-pressed="false"] {
  animation: sm-sound-pulse 1.5s ease-out infinite;
  transform-origin: center;
}

.pro-sound-btn[aria-pressed="true"] {
  animation: none;
}

@keyframes sm-sound-pulse {
  0%, 16%, 32%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 210, 31, 0);
  }

  8%, 24% {
    transform: scale(1.09);
    box-shadow: 0 0 0 6px rgba(255, 210, 31, .28);
  }
}

.pro-sound-btn:hover,
.pro-sound-btn:focus-visible {
  background: #ffe469;
  outline-color: var(--sm-gold);
}

.pro-full-btn {
  padding-inline: 17px;
  background: var(--sm-green);
}

.pro-video-status {
  overflow: hidden;
  color: rgba(255, 255, 255, .94);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .25px;
  text-align: center;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.pro-video-time {
  color: rgba(255, 255, 255, .88);
  font-size: 9px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.pro-video-replay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, .25);
}

.pro-video-replay.is-visible {
  display: grid;
}

.pro-video-replay button {
  padding: 13px 19px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: rgba(4, 74, 17, .94);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.pro-tagline-bar {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -2px;
  clip-path: inset(2px 0 0);
  background: #006715;
}

.pro-home-body {
  margin-top: 0;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .14);
}

.pro-secondary-video {
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.55fr);
  align-items: center;
  gap: 22px;
  width: 100%;
  max-width: 980px;
  margin: 24px auto 0;
  padding: 22px;
  overflow: hidden;
  border-top: 5px solid var(--sm-green);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .14);
}

.pro-secondary-video-copy {
  min-width: 0;
  color: #1b251d;
}

.pro-secondary-video-kicker {
  margin: 0 0 8px;
  color: var(--sm-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pro-secondary-video-copy h2 {
  margin: 0 0 12px;
  color: #111;
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 1.04;
}

.pro-secondary-video-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.pro-secondary-video-copy .pro-secondary-video-note {
  margin-top: 14px;
  color: #536055;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.pro-secondary-video-player {
  border-width: 4px;
  border-radius: 16px;
}

.pro-secondary-video-standalone {
  margin-bottom: 24px;
}

@media (max-width: 1050px) {
  .pro-video-panel {
    padding-inline: 14px;
  }

  .pro-video-shell {
    border-width: 4px;
    border-radius: 16px;
  }

  .pro-video-time {
    display: none;
  }

  .pro-video-buttons {
    grid-template-columns: auto auto auto minmax(70px, 1fr) auto;
  }

  .pro-secondary-video {
    grid-template-columns: minmax(205px, .68fr) minmax(0, 1.45fr);
    gap: 18px;
    padding: 20px;
  }
}

@media (max-width: 800px) {
  .pro-video-hero {
    grid-template-columns: 1fr;
  }

  .pro-hero-art {
    height: auto;
    object-fit: contain;
  }

  .pro-hero-left {
    aspect-ratio: 638 / 352;
  }

  .pro-video-panel {
    padding: 14px;
  }

  .pro-video-shell {
    max-width: 760px;
    margin: 0 auto;
  }

  .pro-secondary-video {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pro-secondary-video-copy {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .pro-secondary-video-player {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .pro-video-panel {
    padding: 8px;
  }

  .pro-video-shell {
    border-width: 3px;
    border-radius: 12px;
  }

  .pro-video-controls {
    padding: 6px 7px 7px;
  }

  .pro-video-buttons {
    grid-template-columns: auto auto 1fr auto;
    gap: 6px;
  }

  .pro-video-status,
  .pro-video-time,
  .pro-full-btn {
    display: none;
  }

  .pro-play-btn,
  .pro-restart-btn,
  .pro-sound-btn {
    min-height: 28px;
    padding: 6px 10px;
    font-size: 8px;
  }

  .pro-sound-btn {
    justify-self: end;
  }

  .pro-secondary-video {
    margin-top: 14px;
    padding: 18px 10px 12px;
    border-radius: 16px;
  }

  .pro-secondary-video-copy {
    padding: 0 8px;
  }

  .pro-secondary-video-copy p {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pro-video-progress span {
    transition: none;
  }

  .pro-sound-btn[aria-pressed="false"] {
    animation: none;
  }
}
