.showcase-video-section {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 7vw, 92px) 20px;
  background:
    radial-gradient(circle at 16% 18%, rgba(234, 88, 12, 0.08), transparent 28%),
    linear-gradient(180deg, #eef1f5 0%, var(--paper) 100%);
}

.showcase-video-card {
  position: relative;
  isolation: isolate;
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.5fr);
  align-items: center;
  gap: clamp(28px, 4.5vw, 64px);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 52px);
  overflow: hidden;
  border: 1px solid rgba(231, 237, 243, 0.12);
  border-radius: 28px;
  background: #0e151e;
  box-shadow:
    0 28px 70px rgba(17, 28, 39, 0.2),
    inset 0 1px 0 rgba(241, 246, 250, 0.08);
  color: #edf2f6;
}

.showcase-video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.showcase-video-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  right: -210px;
  top: -280px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.14), transparent 68%);
}

.showcase-video-copy {
  min-width: 0;
}

.showcase-video-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(238, 243, 247, 0.14);
  border-radius: 15px;
  background: var(--signal);
  box-shadow: 0 12px 30px rgba(234, 88, 12, 0.22);
  color: #f7f9fb;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.showcase-video-copy h2 {
  max-width: 8.4em;
  margin: 0;
  color: #f1f5f8;
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-wrap: balance;
}

.showcase-video-copy > p {
  max-width: 34em;
  margin: 22px 0 0;
  color: #b5c0ca;
  font-size: 14px;
  line-height: 1.8;
  text-wrap: pretty;
}

.showcase-video-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.showcase-video-meta span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(235, 241, 246, 0.12);
  border-radius: 999px;
  background: rgba(235, 241, 246, 0.055);
  color: #cbd4dc;
  font-family: var(--mono);
  font-size: 11px;
}

.showcase-video-file {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
}

.showcase-video-file div {
  min-width: 0;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: baseline;
  gap: 12px;
}

.showcase-video-file div:first-child {
  grid-template-columns: minmax(0, 1fr);
  gap: 4px;
}

.showcase-video-file dt {
  color: #7f8c97;
  font-size: 11px;
  line-height: 1.5;
}

.showcase-video-file dd {
  min-width: 0;
  margin: 0;
  color: #d7dee4;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.showcase-video-link {
  width: fit-content;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
  padding: 0 18px;
  border: 1px solid rgba(234, 88, 12, 0.58);
  border-radius: var(--radius-sm);
  background: var(--signal);
  box-shadow: 0 10px 24px rgba(234, 88, 12, 0.18);
  color: #f7f9fb;
  font-size: 13px;
  font-weight: 650;
  transition:
    background-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-video-link:hover,
.showcase-video-link:focus-visible {
  background: var(--signal-2);
  box-shadow: 0 14px 28px rgba(234, 88, 12, 0.24);
  transform: translateY(-2px);
}

.showcase-video-link span {
  font-family: var(--mono);
  font-size: 15px;
}

.showcase-video-media {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(218, 229, 238, 0.16);
  border-radius: 20px;
  background: #060c14;
  box-shadow:
    0 24px 54px rgba(2, 7, 12, 0.42),
    inset 0 1px 0 rgba(239, 245, 249, 0.08);
}

.showcase-video-media video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #060c14;
  object-fit: contain;
}

@media (max-width: 860px) {
  .showcase-video-section {
    padding: 44px 14px;
  }

  .showcase-video-card {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 24px;
    border-radius: 22px;
  }

  .showcase-video-copy h2 {
    max-width: 11em;
    font-size: clamp(31px, 9vw, 44px);
  }

  .showcase-video-mark {
    margin-bottom: 20px;
  }

  .showcase-video-copy > p {
    margin-top: 16px;
  }

  .showcase-video-link {
    width: 100%;
  }

  .showcase-video-media {
    border-radius: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-video-link {
    transition: none;
  }
}
