@font-face {
  font-family: MarkPro;
  src: url('../fonts/Mark-Pro.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: MarkPro;
  src: url('../fonts/Mark-Pro-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #0b0b0b;
  --dark: #101010;
  --white: #ffffff;
  --yellow: #fefb00;
  --gold: #ffc100;
  --gold-contrast: #1c1200;
  --muted: #9a9a9a;
  --container: 1120px;
  --side: 4vw;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: MarkPro, Arial, sans-serif;
  color: var(--white);
  background: var(--black);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
.container { width: min(var(--container), calc(100% - var(--side) * 2)); margin-inline: auto; }

.topbar-wrap { position: relative; z-index: 2; background: var(--black); border-bottom: 1px solid rgb(255 193 0 / 14%); }
.topbar { display: flex; align-items: center; justify-content: space-between; padding-block: 16px; }
.logo { width: 155px; }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 58px; padding: 16px 39px; border-radius: 5px; font-weight: 700; text-decoration: none; text-align: center; transition: transform .2s ease, filter .2s ease; }
.btn:hover { transform: translateY(-2px); filter: brightness(1.06); }
.btn-small {
  min-height: auto;
  padding: 13px 32px;
  font-size: 16px;
  color: var(--gold-contrast);
  background: linear-gradient(180deg, #ffd84d, var(--gold));
  box-shadow: 0 6px 18px rgb(255 193 0 / 25%);
}

.hero {
  position: relative;
  padding-block: 72px 44px;
  text-align: center;
  background:
    radial-gradient(60% 340px at 50% 0%, rgb(255 193 0 / 14%), transparent 70%),
    var(--black);
}
.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 18px;
  border: 1px solid rgb(255 193 0 / 35%);
  border-radius: 999px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgb(255 193 0 / 6%);
}
.hero h1 { margin: 0 0 22px; color: var(--white); font-size: clamp(30px, 4.2vw, 52px); font-weight: 700; line-height: 1.08; }
.hero h1 .accent {
  background: linear-gradient(180deg, var(--yellow), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h2 { width: min(720px, 100%); margin: 0 auto; color: var(--muted); font-size: clamp(17px, 1.8vw, 21px); font-weight: 400; line-height: 1.55; }

.videos { padding-block: 40px 96px; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  background: var(--dark);
  border: 1px solid rgb(255 193 0 / 18%);
  cursor: pointer;
  box-shadow: 0 14px 30px rgb(0 0 0 / 45%);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.video-card:hover {
  border-color: rgb(255 193 0 / 55%);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgb(0 0 0 / 55%), 0 0 0 1px rgb(255 193 0 / 25%);
}
.video-card img { width: 100%; height: 100%; object-fit: cover; }
.video-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(0 0 0 / 55%), transparent 45%);
  pointer-events: none;
}
.video-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card .play {
  position: absolute;
  top: 50%; left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffd84d, var(--gold));
  box-shadow: 0 8px 22px rgb(255 193 0 / 35%);
  display: grid;
  place-items: center;
  transition: transform .2s ease, filter .2s ease;
}
.video-card:hover .play { transform: translate(-50%, -50%) scale(1.08); filter: brightness(1.05); }
.video-card .play::before {
  content: '';
  width: 0; height: 0;
  margin-left: 4px;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--gold-contrast);
}

.footer { padding-block: 28px; color: var(--muted); font-size: 14px; text-align: center; border-top: 1px solid rgb(255 193 0 / 14%); }

@media (max-width: 900px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 560px) {
  :root { --side: 20px; }
  .video-grid { grid-template-columns: 1fr; }
  .hero { padding-block: 48px 30px; }
  .logo { width: 128px; }
  .btn-small { padding: 10px 18px; font-size: 14px; }
}
