:root {
  --eastbay-bg: #050505;
  --eastbay-panel: #0c0d10;
  --eastbay-text: #f5f7fb;
  --eastbay-muted: rgba(245, 247, 251, .72);
  --eastbay-line: rgba(245, 247, 251, .22);
  --eastbay-green: #18f28f;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--eastbay-bg);
  color: var(--eastbay-text);
}

body {
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

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

img,
video {
  display: block;
}

.eastbay-page {
  min-height: 100vh;
  background: var(--eastbay-bg);
  overflow-x: hidden;
}

.eastbay-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 34px;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.eastbay-lockup {
  display: block;
  width: 94px;
}

.eastbay-lockup img {
  width: 100%;
  height: auto;
}

.eastbay-nav {
  display: flex;
  gap: 30px;
}

.eastbay-nav a {
  color: var(--eastbay-text);
  font-family: "PingFang SC", "Source Han Sans K", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1;
  opacity: .94;
}

.eastbay-nav a.is-active {
  opacity: 1;
}

.eastbay-main {
  padding-bottom: 80px;
}

.eastbay-hero {
  padding: 92px 0 28px;
}

.eastbay-player {
  width: min(96vw, 1720px);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: #000;
}

.eastbay-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.eastbay-controls {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(40vw, 520px);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
  mix-blend-mode: difference;
}

.eastbay-player.is-controls-visible .eastbay-controls {
  opacity: 1;
  pointer-events: auto;
}

.eastbay-progress {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
}

.eastbay-progress__bar {
  width: 0;
  height: 100%;
  background: #fff;
}

.eastbay-meta {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  line-height: 1;
}

.eastbay-actions {
  display: flex;
  gap: 14px;
}

.eastbay-btn {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.eastbay-story,
.eastbay-section {
  width: min(96vw, 1720px);
  margin: 0 auto;
}

.eastbay-story {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(500px, 1fr);
  gap: clamp(36px, 4vw, 62px);
  padding: 26px 0 clamp(46px, 4.6vw, 78px);
}

.eastbay-logo {
  width: min(300px, 82%);
  height: auto;
  margin: 0 0 24px;
}

.eastbay-table {
  width: 100%;
}

.eastbay-row {
  min-height: clamp(56px, 4.6vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border-bottom: 1px solid var(--eastbay-line);
}

.eastbay-row:last-child {
  border-bottom: 0;
}

.eastbay-row span:first-child,
.eastbay-row span:last-child {
  font-size: clamp(14px, .95vw, 18px);
  font-weight: 500;
}

.eastbay-row span:last-child {
  text-align: right;
}

.eastbay-copy {
  padding-top: clamp(156px, 10.5vw, 238px);
}

.eastbay-copy p {
  margin: 0 0 26px;
}

.eastbay-copy p:last-child {
  margin-bottom: 0;
}

.eastbay-head {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(16px, 1.15vw, 21px);
  line-height: 1.45;
  font-weight: 700;
}

.eastbay-body {
  display: block;
  font-size: clamp(13px, .9vw, 16px);
  line-height: 1.9;
  color: #fff;
}

.eastbay-section {
  padding-top: clamp(34px, 3.5vw, 68px);
}

.eastbay-asset {
  margin: 0;
  background: #111;
  overflow: hidden;
}

.eastbay-asset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eastbay-asset--full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  aspect-ratio: 16 / 9;
  margin-bottom: 12px;
}

.eastbay-assets {
  column-count: 2;
  column-gap: 12px;
  display: block;
}

.eastbay-assets .eastbay-asset {
  break-inside: avoid;
  margin: 0 0 12px;
  aspect-ratio: auto;
}

.eastbay-assets .eastbay-asset img {
  height: auto;
  object-fit: contain;
}

.eastbay-asset--feature {
  width: 100%;
  margin-top: 12px;
}

.eastbay-asset--feature img {
  height: auto;
  object-fit: contain;
}

.eastbay-asset--portrait {
  aspect-ratio: 2 / 3;
}

.eastbay-asset--tall {
  aspect-ratio: 3 / 4;
}

.eastbay-asset--landscape {
  aspect-ratio: 3 / 2;
}

.eastbay-asset--wide {
  aspect-ratio: 16 / 9;
}

@media (max-width: 1024px) {
  .eastbay-header {
    padding: 16px 20px;
  }

  .eastbay-nav {
    gap: 16px;
  }

  .eastbay-nav a {
    font-size: 13px;
  }

  .eastbay-story {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .eastbay-copy {
    padding-top: 24px;
  }

  .eastbay-controls {
    width: min(66vw, 320px);
  }
}

@media (max-width: 760px) {
  .eastbay-hero {
    padding: 84px 0 18px;
  }

  .eastbay-player {
    width: 100vw;
  }

  .eastbay-story,
  .eastbay-section {
    width: min(94vw, 620px);
  }

  .eastbay-row {
    min-height: 58px;
    gap: 16px;
  }

  .eastbay-row span:last-child {
    max-width: 64%;
    font-size: 13px;
  }

  .eastbay-logo {
    width: min(230px, 74%);
    margin-bottom: 18px;
  }

  .eastbay-copy {
    padding-top: 12px;
  }

  .eastbay-copy p {
    margin: 0 0 18px;
  }

  .eastbay-head {
    font-size: 16px;
  }

  .eastbay-body {
    font-size: 13px;
    line-height: 1.85;
  }

  .eastbay-assets {
    column-count: 1;
  }
}
