:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #10151a;
  color: #fff8ed;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #10151a;
  overflow-x: hidden;
}

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

.topbar {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 clamp(20px, 5vw, 72px);
  background: rgba(16, 21, 26, 0.74);
  border-bottom: 1px solid rgba(255, 248, 237, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand {
  gap: 12px;
  font-size: 18px;
  font-weight: 800;
}

.brand-mark {
  width: 38px;
  height: 38px;
  justify-content: center;
  border: 1px solid rgba(255, 248, 237, 0.18);
  background: #e7a64d;
  color: #10151a;
  text-transform: uppercase;
}

nav {
  gap: clamp(14px, 3vw, 34px);
  color: #d9e0e5;
  font-size: 15px;
}

main {
  overflow: hidden;
}

.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: 116px clamp(20px, 5vw, 72px) 64px;
  background:
    linear-gradient(90deg, rgba(16, 21, 26, 0.95) 0%, rgba(16, 21, 26, 0.84) 37%, rgba(16, 21, 26, 0.25) 74%),
    url("/assets/catvideo-hero.png") center right / cover no-repeat;
}

.hero-copy {
  width: 100%;
  min-width: 0;
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #e7a64d;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 100%;
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.14;
}

.lead {
  max-width: 560px;
  margin-bottom: 32px;
  color: #d4dde3;
  font-size: 22px;
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  background: #e7a64d;
  color: #10151a;
}

.button.secondary {
  border: 1px solid rgba(255, 248, 237, 0.18);
  background: rgba(255, 248, 237, 0.08);
}

.section {
  padding: 82px clamp(20px, 5vw, 72px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

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

.video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 248, 237, 0.1);
  border-radius: 8px;
  background: #18212a;
}

.thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #25313b;
}

.thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 26% 28%, rgba(255, 248, 237, 0.2), transparent 20%),
    linear-gradient(135deg, var(--c1), var(--c2));
}

.thumb::after {
  content: "";
  position: absolute;
  right: 11%;
  bottom: 13%;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 48% 52% 45% 55%;
  background: rgba(16, 21, 26, 0.42);
  box-shadow: -46px -18px 0 -18px rgba(255, 248, 237, 0.38);
}

.video-thumb::before,
.video-thumb::after {
  content: none;
}

.video-thumb video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ginger {
  --c1: #d98f3e;
  --c2: #4d6f68;
}

.midnight {
  --c1: #283548;
  --c2: #7957a6;
}

.blanket {
  --c1: #6d7e64;
  --c2: #d1a86a;
}

.play {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 248, 237, 0.92);
}

.play::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 18px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid #10151a;
}

.duration {
  position: absolute;
  z-index: 1;
  right: 14px;
  bottom: 18px;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 6px;
  background: rgba(16, 21, 26, 0.76);
  color: #fff8ed;
  font-size: 13px;
  font-weight: 800;
}

.video-meta {
  padding: 20px;
}

.video-meta p,
.delivery p {
  color: #b8c5ce;
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(300px, 1.2fr);
  gap: 36px;
  border-top: 1px solid rgba(255, 248, 237, 0.08);
  border-bottom: 1px solid rgba(255, 248, 237, 0.08);
  background: #131b22;
}

.collection-list {
  display: grid;
  gap: 10px;
}

.collection-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 66px;
  padding: 0 18px;
  border: 1px solid rgba(255, 248, 237, 0.1);
  border-radius: 8px;
  background: rgba(255, 248, 237, 0.045);
}

.collection-list strong {
  color: #e7a64d;
  white-space: nowrap;
}

.delivery {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 420px);
  gap: 36px;
  align-items: start;
}

.delivery p {
  max-width: 720px;
  margin-top: 18px;
  font-size: 18px;
}

.delivery .credits {
  color: #8293a0;
  font-size: 14px;
}

dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 248, 237, 0.1);
  border-radius: 8px;
  background: #18212a;
}

dt {
  color: #8293a0;
}

dd {
  margin: 0;
  font-weight: 800;
}

@media (max-width: 860px) {
  .topbar {
    position: absolute;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 760px;
    align-items: end;
    padding-top: 96px;
    background:
      linear-gradient(0deg, rgba(16, 21, 26, 0.98) 0%, rgba(16, 21, 26, 0.82) 46%, rgba(16, 21, 26, 0.2) 100%),
      url("/assets/catvideo-hero.png") center top / auto 58% no-repeat,
      #10151a;
  }

  h1 {
    font-size: clamp(22px, 5.4vw, 28px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .lead {
    max-width: 32ch;
    font-size: 18px;
    overflow-wrap: break-word;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 330px;
  }

  .button {
    width: 100%;
  }

  .section-heading {
    display: grid;
    justify-content: start;
  }

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

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 720px;
    background:
      linear-gradient(0deg, rgba(16, 21, 26, 0.98) 0%, rgba(16, 21, 26, 0.84) 50%, rgba(16, 21, 26, 0.18) 100%),
      url("/assets/catvideo-hero.png") center top / auto 48% no-repeat,
      #10151a;
  }

  h1 {
    font-size: clamp(18px, 5vw, 20px);
  }

  .lead {
    font-size: 17px;
  }
}
