@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("./fonts/Manrope-300.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/Manrope-400.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./fonts/Manrope-500.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./fonts/Manrope-600.ttf") format("truetype");
}

:root {
  --bg: #f6f3ef;
  --ink: #1f1f1f;
  --muted: #6f6a64;
  --accent: #4a5d57;
  --card: #ffffff;
  --shadow: rgba(0, 0, 0, 0.08);
  --title-gap: 2px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  min-height: 100vh;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(74, 93, 87, 0.12), transparent 60%),
    radial-gradient(900px 500px at 90% 110%, rgba(74, 93, 87, 0.1), transparent 55%),
    var(--bg);
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.frame {
  width: min(820px, 100%);
  background: var(--card);
  border-radius: 24px;
  padding: clamp(28px, 6vw, 64px);
  box-shadow: 0 24px 60px var(--shadow);
  position: relative;
  overflow: hidden;
  animation: fadeIn 900ms ease-out;
}

.frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 24px;
  pointer-events: none;
}

.mark {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 3.6vw, 30px);
  margin: 0 0 2px 0;
  color: var(--ink);
}

.submark {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 2vw, 16px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.1;
  margin: 0 0 var(--title-gap) 0;
}

h1 {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.1;
  margin: 0 0 var(--title-gap) 0;
}

h2 {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 2vw, 16px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.1;
  margin: 6px 0 24px 0;
}

p {
  margin: 0;
  font-size: clamp(16px, 2.4vw, 20px);
  line-height: 1.6;
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 192px;
  gap: 24px;
  align-items: start;
}

.hero-copy {
  min-width: 0;
}

.details {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(31, 31, 31, 0.08);
  font-size: clamp(15px, 2vw, 18px);
  color: var(--ink);
}

.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0f0f0f;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  margin-bottom: 20px;
}

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

.promo-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  justify-self: end;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  background: #1b1b1b;
  box-shadow:
    0 14px 24px rgba(0, 0, 0, 0.18),
    0 30px 48px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.08) 0%, rgba(12, 12, 12, 0.22) 100%);
  pointer-events: none;
}

.promo-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.2),
    0 36px 60px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

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

.promo-card__play {
  position: absolute;
  top: 50%;
  left: 66.67%;
  width: clamp(24px, 2.7vw, 32px);
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: linear-gradient(180deg, #ff3b30 0%, #d81616 100%);
  box-shadow:
    0 8px 16px rgba(138, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  z-index: 1;
}

.promo-card__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #fff;
}

.details span {
  display: block;
  color: var(--muted);
  margin-top: 6px;
}

.details .ovd-button {
  border: 1px solid rgba(31, 31, 31, 0.08);
  background: linear-gradient(135deg, rgba(74, 93, 87, 0.12), rgba(74, 93, 87, 0.02));
  color: var(--ink);
  padding: 12px 16px;
  border-radius: 12px;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}

.details .ovd-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
}

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

  .promo-card {
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
