@font-face {
  font-family: "Orbitron";
  src: url("../fonts/Orbitron-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Orbitron";
  src: url("../fonts/Orbitron-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Exo2";
  src: url("../fonts/Exo2-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Exo2";
  src: url("../fonts/Exo2-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Exo2";
  src: url("../fonts/Exo2-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Exo2";
  src: url("../fonts/Exo2-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

:root {
  --text: #ffffff;
  --soft: #dfe6f2;
  --blue: #5aa7ff;
  --blue-soft: #7db7ff;
  --panel: rgba(8, 16, 30, 0.10);
  --panel-border: rgba(255, 255, 255, 0.10);
  --shadow: 0 16px 42px rgba(0, 0, 0, 0.14);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: transparent;
}

body {
  font-family: "Exo2", sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

/* Background */
.bg-video-wrap {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000 url("../images/ubs-trailer-poster.jpg") center center / cover no-repeat;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 48%;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.04) 0%,
      rgba(0, 0, 0, 0.01) 30%,
      rgba(0, 0, 0, 0.03) 62%,
      rgba(0, 0, 0, 0.06) 100%
    );
}

.bg-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.02) 74%, rgba(0, 0, 0, 0.05) 100%);
}

/* Page */
.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  background: transparent;
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.hero-shell {
  width: min(100%, 1260px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
  margin: 0 auto;
}

.card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-inner {
  position: relative;
  z-index: 1;
  padding: 26px 28px 24px;
  min-height: 100%;
}

.card-left .card-inner,
.card-right .card-inner {
  min-height: 384px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Left block */
h1 {
  margin: 0 0 10px;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: clamp(2.62rem, 4.62vw, 3.95rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
  color: #ffffff;
  text-transform: none;
}

.title-line {
  display: block;
}

.title-line-1,
.title-line-2 {
  white-space: nowrap;
}

.ubs-line {
  margin: 0 0 10px;
  font-family: "Exo2", sans-serif;
  font-weight: 500;
  font-size: clamp(0.98rem, 1.06vw, 1.08rem);
  line-height: 1.24;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.tagline {
  margin: 0 0 6px;
  color: var(--blue);
  font-family: "Exo2", sans-serif;
  font-weight: 600;
  font-size: clamp(1.04rem, 1.18vw, 1.2rem);
  line-height: 1.20;
}

.themes {
  margin: 0 0 20px;
  color: var(--soft);
  font-family: "Exo2", sans-serif;
  font-weight: 400;
  font-size: clamp(0.98rem, 1vw, 1.02rem);
  line-height: 1.24;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: "Exo2", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    filter 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.btn-primary {
  background: #ffffff;
  color: #111111;
  border: none;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.54);
}

/* Right block */
.eyebrow {
  margin: 0 0 8px;
  color: var(--blue-soft);
  font-family: "Exo2", sans-serif;
  font-weight: 700;
  font-size: clamp(0.82rem, 0.88vw, 0.90rem);
  line-height: 1.22;
  letter-spacing: 0.13em;
}

h2 {
  margin: 0 0 12px;
  font-family: "Exo2", sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: clamp(1.72rem, 2.45vw, 2.12rem);
  line-height: 1.04;
}

.body-copy {
  margin: 0 0 8px;
  color: var(--soft);
  font-family: "Exo2", sans-serif;
  font-weight: 400;
  font-size: clamp(0.96rem, 0.94vw, 1rem);
  line-height: 1.24;
}

.body-copy-last {
  margin-bottom: 10px;
}

.block-title {
  margin: 10px 0 8px;
  color: #ffffff;
  font-family: "Exo2", sans-serif;
  font-weight: 700;
  font-size: clamp(1.04rem, 1.06vw, 1.12rem);
  line-height: 1.22;
}

.feature-list {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  margin: 0 0 4px;
  padding-left: 16px;
  color: var(--soft);
  font-family: "Exo2", sans-serif;
  font-weight: 400;
  font-size: clamp(0.96rem, 0.94vw, 1rem);
  line-height: 1.18;
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffffff;
}

.producer-line {
  margin: 4px 0 8px;
  color: var(--blue);
  font-family: "Exo2", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 0.98vw, 1.05rem);
  line-height: 1.20;
}

.preferred-contact {
  margin: 0 0 2px;
  color: var(--soft);
  font-family: "Exo2", sans-serif;
  font-weight: 400;
  font-size: clamp(0.95rem, 0.92vw, 0.98rem);
  line-height: 1.18;
}

.contact-line {
  margin: 0;
}

.contact-line a {
  color: #ffffff;
  text-decoration: none;
  font-family: "Exo2", sans-serif;
  font-weight: 700;
  font-size: clamp(0.98rem, 0.95vw, 1rem);
  line-height: 1.18;
  word-break: break-word;
}

.contact-line a:hover {
  color: #ffffff;
}

/* Trailer overlay */
.video-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  background: rgba(0, 0, 0, 0.96);
}

.video-overlay.active {
  display: block;
}

.video-shell {
  position: absolute;
  inset: 0;
  background: #000;
}

#video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  object-fit: contain;
  object-position: center center;
}

.big-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 104px;
  height: 104px;
  transform: translate(-50%, -50%);
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 2.1rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 3;
  transition:
    opacity 0.25s ease,
    transform 0.2s ease,
    background-color 0.2s ease;
}

.big-play:hover {
  transform: translate(-50%, calc(-50% - 2px));
  background: rgba(255, 255, 255, 0.20);
}

.big-play.hidden {
  opacity: 0;
  pointer-events: none;
}

.close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.40);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.phrase {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  width: min(92%, 980px);
  text-align: center;
  color: #ffffff;
  font-family: "Exo2", sans-serif;
  font-size: clamp(1.02rem, 1.45vw, 1.48rem);
  line-height: 1.5;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.9s ease;
  z-index: 3;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1050px) {
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 760px;
  }

  .card-left .card-inner,
  .card-right .card-inner {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .card {
    background: rgba(8, 16, 30, 0.18);
  }

  .hero {
    align-items: flex-start;
    padding: 14px;
  }

  .hero-shell {
    margin-top: 12px;
  }

  .card-inner {
    padding: 22px 20px 20px;
  }

  .actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
  }

  .card {
    border-radius: 24px;
  }

  h1 {
    font-size: clamp(2.2rem, 7.2vw, 2.85rem);
    line-height: 0.9;
    letter-spacing: -0.05em;
  }

  .tagline,
  .themes,
  .body-copy,
  .feature-list li,
  .preferred-contact {
    font-size: 0.96rem;
  }

  .block-title {
    font-size: 1.02rem;
  }

  .big-play {
    width: 86px;
    height: 86px;
    font-size: 1.85rem;
  }

  .phrase {
    bottom: 24px;
    width: 92%;
    font-size: 1.02rem;
  }

  .close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
  }
}