:root {
  color-scheme: light;
  --bg: #f5f7f6;
  --surface: #ffffff;
  --surface-strong: #101417;
  --text: #15191d;
  --muted: #667078;
  --line: #dce3e0;
  --teal: #0f766e;
  --amber: #c16b24;
  --rose: #a43a5f;
  --shadow: 0 18px 50px rgb(18 29 35 / 12%);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

video {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 12px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgb(220 227 224 / 82%);
  background: rgb(245 247 246 / 90%);
  backdrop-filter: blur(16px);
}

.brand,
.top-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 760;
}

.brand-logo {
  display: block;
  width: 92px;
  height: 38px;
  border-radius: 7px;
  background: #000000;
  object-fit: cover;
}

.top-nav {
  gap: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.top-nav a {
  border-radius: 999px;
  padding: 8px 12px;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  background: #e8eeec;
  color: var(--text);
  outline: none;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(360px, 1.25fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(30px, 5vw, 62px) clamp(18px, 4vw, 54px) clamp(26px, 5vw, 54px);
}

.hero-copy {
  max-width: 620px;
}

.eyebrow,
.kicker {
  margin: 0;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 12ch;
  margin: 10px 0 18px;
  font-size: clamp(2.65rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lede {
  max-width: 56ch;
  margin: 0;
  color: #394249;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.lede + .lede {
  margin-top: 12px;
}

.lede a {
  color: var(--teal);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 28px;
  border: 1px solid var(--surface-strong);
  border-radius: 999px;
  background: var(--surface-strong);
  color: #ffffff;
  padding: 9px 16px;
  font-weight: 750;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.primary-link:hover,
.primary-link:focus-visible {
  border-color: var(--teal);
  background: var(--teal);
  transform: translateY(-1px);
  outline: none;
}

.feature-player {
  min-width: 0;
}

.player-shell {
  overflow: hidden;
  border: 1px solid #cbd6d2;
  border-radius: var(--radius);
  background: #0b0f12;
  box-shadow: var(--shadow);
}

.main-video,
.video-panel video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #0b0f12;
  object-fit: cover;
}

.player-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 2px 0;
}

.player-meta h2 {
  margin: 4px 0 0;
  font-size: clamp(1.18rem, 2.2vw, 1.62rem);
  line-height: 1.12;
}

.player-meta p:last-child {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  text-align: right;
}

.video-section {
  padding: clamp(34px, 6vw, 78px) clamp(18px, 4vw, 54px);
}

.video-section {
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 22px;
}

.section-heading h2 {
  margin: 4px 0 0;
  font-size: clamp(1.8rem, 3.8vw, 3.4rem);
  line-height: 1;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.video-panel {
  display: grid;
  gap: 14px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 12px;
  box-shadow: 0 8px 26px rgb(18 29 35 / 7%);
}

.video-panel.is-featured {
  border-top-color: var(--amber);
  border-top-width: 3px;
}

.video-panel video {
  overflow: hidden;
  border-radius: 6px;
}

.video-info {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.video-info h3 {
  margin: 3px 0 0;
  font-size: 1.02rem;
  line-height: 1.12;
}

.video-info span {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #edf2f0;
  color: #364149;
  padding: 4px 8px;
  font-size: 0.78rem;
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
  padding: 22px clamp(18px, 4vw, 54px);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

  h1 {
    max-width: 13ch;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .top-nav {
    width: 100%;
  }

  .hero-section {
    padding-top: 26px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .player-meta,
  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .player-meta p:last-child {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 0.92rem;
  }

  h1 {
    font-size: clamp(2.25rem, 16vw, 3.4rem);
  }
}
