:root {
  color-scheme: dark;
  --black: #030303;
  --ink: #0b0b0b;
  --panel: #111;
  --white: #f4f4f0;
  --muted: #b8b8b2;
  --line: rgba(244, 244, 240, 0.18);
  --line-strong: rgba(244, 244, 240, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(18px, 4vw, 56px);
  background: linear-gradient(to bottom, rgba(3, 3, 3, 0.9), rgba(3, 3, 3, 0));
}

.brand {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.78rem;
  text-transform: uppercase;
}

nav a {
  color: var(--muted);
}

nav a:hover {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  padding: 112px clamp(18px, 5vw, 72px) 86px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__media {
  position: absolute;
  inset: 0;
  opacity: 0.92;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.96) 0%, rgba(3, 3, 3, 0.68) 42%, rgba(3, 3, 3, 0.18) 100%),
    linear-gradient(0deg, rgba(3, 3, 3, 0.72) 0%, rgba(3, 3, 3, 0) 45%);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.12);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.kicker,
.section__label {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(4.4rem, 16vw, 12rem);
  line-height: 0.82;
  font-weight: 900;
}

h2 {
  max-width: 960px;
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 5.2vw, 5.6rem);
  line-height: 0.95;
  font-weight: 850;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  line-height: 1;
}

p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.55;
}

.hero__text {
  max-width: 620px;
  color: var(--white);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
}

.hero__actions,
.follow__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.button--primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.button--ghost:hover {
  background: rgba(244, 244, 240, 0.08);
}

.scroll-cue {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 26px;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.section {
  padding: clamp(58px, 9vw, 128px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.section--intro {
  display: grid;
  grid-template-columns: minmax(110px, 0.25fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 72px);
}

.intro {
  max-width: 1060px;
}

.intro p {
  max-width: 760px;
}

.statement {
  min-height: 44vh;
  display: grid;
  place-items: center;
  padding: clamp(42px, 8vw, 96px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background:
    repeating-linear-gradient(0deg, rgba(244, 244, 240, 0.04) 0 1px, transparent 1px 9px),
    var(--ink);
}

.statement p {
  max-width: 980px;
  color: var(--white);
  font-size: clamp(2rem, 6vw, 6.8rem);
  line-height: 0.96;
  font-weight: 900;
  text-align: center;
}

.section__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section__header span {
  color: var(--white);
}

video {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  object-fit: cover;
}

.video-frame {
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #000;
}

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

.video-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: #080808;
}

.video-card .video-frame {
  border-bottom: 1px solid var(--line);
}

.video-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 54px;
  padding: 12px;
}

.video-card strong {
  font-size: 0.82rem;
  text-transform: uppercase;
}

.video-card span {
  color: var(--muted);
  font-size: 0.78rem;
}

.follow {
  display: grid;
  grid-template-columns: minmax(110px, 0.25fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 72px);
  background: var(--white);
  color: var(--black);
}

.follow p,
.follow .section__label {
  color: #333;
}

.follow .button--primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.follow .button--ghost {
  border-color: rgba(3, 3, 3, 0.34);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .topbar {
    min-height: 64px;
  }

  nav {
    gap: 12px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero__media::after {
    background:
      linear-gradient(90deg, rgba(3, 3, 3, 0.94), rgba(3, 3, 3, 0.5)),
      linear-gradient(0deg, rgba(3, 3, 3, 0.82), rgba(3, 3, 3, 0.08));
  }

  .section--intro,
  .follow,
  .section__header {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: minmax(0, 420px);
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .topbar {
    align-items: center;
    min-height: 58px;
    padding: 14px 16px;
    background: rgba(3, 3, 3, 0.88);
    backdrop-filter: blur(14px);
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 82vh;
    padding: 86px 16px 42px;
    align-items: end;
  }

  .hero__media img {
    object-position: center top;
  }

  .hero__media::after {
    background:
      linear-gradient(0deg, rgba(3, 3, 3, 0.96) 0%, rgba(3, 3, 3, 0.72) 44%, rgba(3, 3, 3, 0.12) 100%),
      linear-gradient(90deg, rgba(3, 3, 3, 0.45), rgba(3, 3, 3, 0.12));
  }

  h1 {
    margin-bottom: 14px;
    font-size: clamp(3.15rem, 17vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3.35rem);
  }

  p {
    font-size: 1rem;
  }

  .hero__text {
    font-size: 1.05rem;
  }

  .hero__actions,
  .follow__actions {
    margin-top: 22px;
  }

  .hero__actions .button,
  .follow__actions .button {
    width: 100%;
  }

  .hero__actions .button--ghost {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 54px 16px;
  }

  .statement {
    min-height: 32vh;
    padding: 42px 16px;
  }

  .statement p {
    font-size: clamp(2rem, 11vw, 3.7rem);
    text-align: left;
  }

  .section__header {
    gap: 8px;
    margin-bottom: 24px;
  }

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

  .video-card {
    border-left: 0;
    border-right: 0;
    background: transparent;
  }

  .video-card__body {
    min-height: 48px;
    padding: 10px 0 0;
  }

  .video-card strong {
    font-size: 1rem;
  }

  .video-card span {
    font-size: 0.82rem;
  }

  footer {
    flex-direction: column;
  }
}
