:root {
  --black: #000;
  --white: #fff;
  --off-white: #ededed;
  --light-gray: #e9e9e9;
  --mid-gray: #b8b8b8;
  --text-dark: #101010;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  background: var(--black);
  color: var(--white);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

body {
  overflow-x: clip;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 22px 16px 12px;
  background: var(--black);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--off-white);
}

.logo {
  width: 33px;
  height: 23px;
  flex: 0 0 auto;
}

.brand-name {
  font-size: clamp(12px, 0.78vw, 15px);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.desktop-nav {
  position: absolute;
  top: 0;
  right: 18px;
  bottom: 0;
  left: clamp(250px, 19vw, 330px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  pointer-events: none;
}

.desktop-nav a {
  pointer-events: auto;
  justify-self: center;
  text-decoration: none;
  color: var(--off-white);
  font-size: clamp(12px, 0.82vw, 15px);
  letter-spacing: 0;
  line-height: 1;
}

.desktop-nav a:last-child {
  justify-self: end;
}

.mobile-menu-button {
  display: none;
  width: 26px;
  height: 24px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  color: var(--white);
}

.mobile-menu-button span {
  width: 100%;
  height: 2px;
  display: block;
  background: currentColor;
  transform-origin: center;
  transition: transform 220ms ease, opacity 220ms ease;
}

body.menu-open .mobile-menu-button span:first-child {
  transform: translateY(4px) rotate(45deg);
}

body.menu-open .mobile-menu-button span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 74px 0 auto;
  z-index: 55;
  background: rgba(5, 5, 5, 0.98);
  height: calc(100vh - 74px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.mobile-menu nav {
  height: 100%;
  padding: 150px 18px 42px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-menu a {
  font-size: 48px;
  line-height: 1;
  text-decoration: none;
  color: var(--off-white);
}

body.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

main {
  background: var(--black);
}

.hero {
  position: relative;
  min-height: 85vh;
  display: grid;
  place-items: center;
  padding: 102px 12px 0;
  text-align: center;
}

.hero-copy {
  width: min(100%, 900px);
  transform: translateY(-1vh);
}

.hero h1 {
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(38px, 3.95vw, 80px);
  line-height: 0.85;
  letter-spacing: -0.034em;
}

.hero h1 span {
  display: block;
}

.hero-subline {
  margin: 24px 0 0;
  font-size: clamp(12px, 0.76vw, 15px);
  line-height: 1.2;
}

.hero-subline a {
  text-decoration: underline;
}

.feature-video {
  min-height: 92vh;
  display: grid;
  place-items: center;
  padding: 4vh 12px 0;
}

.feature-video video {
  width: min(31vw, 500px);
  min-width: 320px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hq-video {
  position: relative;
  height: 90vh;
  min-height: 720px;
}

.hq-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.hq-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 26px 18px 22px;
  text-align: center;
}

.hq-overlay p {
  margin: 0;
  font-size: clamp(14px, 1vw, 24px);
  color: rgba(255, 255, 255, 0.9);
}

.hq-overlay h2 {
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(52px, 6vw, 142px);
  line-height: 0.86;
  letter-spacing: -0.035em;
}

.growth {
  background: #fff;
  color: #000;
  text-align: center;
  padding: 100px 18px 98px;
}

.growth h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(54px, 5vw, 136px);
  line-height: 0.83;
  letter-spacing: -0.035em;
}

.growth p {
  margin: 72px auto 0;
  max-width: 1020px;
  font-size: clamp(22px, 1.9vw, 52px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.growth p + p {
  margin-top: 62px;
}

.role-chips {
  margin: 66px auto 0;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.role-chips button {
  border: 0;
  border-radius: 22px;
  background: #dfdfdf;
  color: #101010;
  padding: 18px 28px;
  font-size: clamp(16px, 1.45vw, 30px);
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
}

.media-wall {
  background: var(--light-gray);
  padding: 58px 0 40px;
  display: grid;
  gap: 40px;
  overflow: hidden;
}

.media-row {
  overflow: hidden;
}

.media-track {
  width: max-content;
  display: flex;
  gap: 100px;
  padding: 0 24px;
  animation-duration: 54s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.media-track img {
  width: 194px;
  height: 194px;
  border-radius: 8px;
  object-fit: cover;
  flex: 0 0 auto;
}

.marquee-left .media-track {
  animation-name: marqueeLeft;
}

.marquee-right .media-track {
  animation-name: marqueeRight;
}

.site-footer {
  background: var(--light-gray);
  color: var(--text-dark);
  padding: 10px 12px 28px;
}

.subscribe-box {
  background: #dfdfdf;
  border-radius: 6px;
  padding: 36px 24px 44px;
}

.subscribe-box h3 {
  margin: 0;
  font-size: clamp(30px, 2.35vw, 48px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.subscribe-box form {
  margin-top: 48px;
  border-bottom: 2px solid rgba(12, 12, 12, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0 14px;
}

.subscribe-box label {
  flex: 1;
}

.subscribe-box input {
  width: 100%;
  border: 0;
  background: transparent;
  outline: none;
  color: #1a1a1a;
  font-size: clamp(20px, 1.85vw, 36px);
  line-height: 1;
}

.subscribe-box input::placeholder {
  color: #8f8f8f;
}

.subscribe-box button {
  border: 0;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: clamp(16px, 1.45vw, 30px);
  line-height: 1;
  padding: 12px 24px;
  cursor: pointer;
}

.copyright {
  margin: 22px 0 0;
  text-align: center;
  font-size: clamp(12px, 0.95vw, 18px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@keyframes marqueeLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-40%);
  }
}

@keyframes marqueeRight {
  0% {
    transform: translateX(-35%);
  }
  100% {
    transform: translateX(0);
  }
}

@media (max-width: 1024px) {
  .site-header {
    height: 66px;
    padding-top: 16px;
  }

  .brand-name {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .hero {
    min-height: 83vh;
    padding-top: 92px;
    place-items: center;
    text-align: center;
    padding-left: 6%;
    padding-right: 4%;
  }

  .hero-copy {
    width: 88%;
    max-width: 520px;
    transform: translateY(-2vh);
  }

  .hero h1 {
    font-size: clamp(36px, 7.2vw, 50px);
    letter-spacing: -0.045em;
    line-height: 0.88;
  }

  .hero-subline {
    margin-top: 18px;
    font-size: clamp(12px, 3.2vw, 16px);
  }

  .feature-video {
    min-height: 70vh;
    padding: 16px 16px 0;
  }

  .feature-video video {
    width: min(72vw, 390px);
    min-width: 260px;
  }

  .hq-video {
    height: 94vh;
    min-height: 600px;
  }

  .hq-overlay {
    padding: 28px 14px 18px;
  }

  .hq-overlay h2 {
    font-size: clamp(34px, 12vw, 76px);
  }

  .growth {
    padding: 58px 18px 62px;
  }

  .growth h2 {
    font-size: clamp(44px, 10.8vw, 64px);
    line-height: 0.88;
  }

  .growth p {
    margin-top: 42px;
    max-width: 470px;
    font-size: clamp(22px, 6.1vw, 32px);
    line-height: 1.02;
  }

  .growth p + p {
    margin-top: 38px;
  }

  .role-chips {
    margin-top: 42px;
    max-width: 96%;
    gap: 8px;
  }

  .role-chips button {
    padding: 10px 15px;
    font-size: clamp(12px, 2.6vw, 14px);
    border-radius: 99px;
    font-weight: 500;
  }

  .media-wall {
    gap: 20px;
    padding: 24px 0 20px;
  }

  .media-track {
    gap: 20px;
    padding-inline: 12px;
    animation-duration: 38s;
  }

  .media-track img {
    width: 148px;
    height: 148px;
    border-radius: 8px;
  }

  .site-footer {
    padding: 8px 10px 32px;
  }

  .subscribe-box {
    padding: 18px 14px 18px;
  }

  .subscribe-box h3 {
    font-size: clamp(18px, 5.0vw, 24px);
    line-height: 1.08;
  }

  .subscribe-box form {
    margin-top: 18px;
    align-items: flex-end;
    gap: 10px;
    padding-bottom: 8px;
  }

  .subscribe-box input {
    font-size: clamp(14px, 3.8vw, 18px);
  }

  .subscribe-box button {
    font-size: clamp(12px, 3.2vw, 15px);
    padding: 9px 14px;
  }

  .copyright {
    margin-top: 14px;
    font-size: clamp(11px, 3.3vw, 14px);
  }
}

@media (min-width: 1500px) {
  .hero-copy {
    max-width: 920px;
  }

  .desktop-nav {
    left: clamp(280px, 20vw, 360px);
  }

  .hero h1 {
    font-size: 73px;
    line-height: 0.85;
    letter-spacing: -0.033em;
  }

  .hero-subline {
    font-size: 14px;
    margin-top: 22px;
  }
}

@media (min-width: 1280px) and (max-width: 1499px) {
  .brand-name,
  .desktop-nav a {
    font-size: 14px;
  }

  .hero-copy {
    max-width: 860px;
  }

  .hero h1 {
    font-size: 66px;
  }

  .hero-subline {
    font-size: 14px;
    margin-top: 20px;
  }
}