/* =========================================================
   Press Page
========================================================= */

.press-kicker {
  margin: 0;
  width: fit-content;
  color: var(--white);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =========================================================
   Hero
========================================================= */

.press-hero {
  position: relative;
  min-height: 100vh;
  background: #0e100f;
  color: #fff;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.press-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.press-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: grayscale(1);
  opacity: 0.48;
}

.press-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 72% 45%, rgba(91, 42, 244, 0.42), rgba(91, 42, 244, 0) 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.62));
}

.press-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  padding-top: calc(var(--nav-height) + 52px);
  padding-bottom: 80px;
}

.press-hero__title {
  margin: 0;
  max-width: 10ch;
  font-family: "Haas Grot Disp Trial";
  font-weight: 400;
  font-size: 7em;
  line-height: 0.86;
  letter-spacing: -0.065em;
}

.press-hero__text {
  margin: 0;
  max-width: 58ch;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.press-hero__stats {
  width: min(820px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 54px;
}

.press-stat {
  min-height: 130px;
  border-radius: 22px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.press-stat strong {
  font-family: "Haas Grot Disp Trial";
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.press-stat span {
  max-width: 18ch;
  font-size: 13px;
  line-height: 1.18;
  color: rgba(255, 255, 255, 0.72);
}

.press-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* =========================================================
   Shared
========================================================= */

.press-section {
  padding: clamp(86px, 11vh, 140px) 0;
}

.press-section--featured,
.press-section--coverage {
  background: #fff;
  color: #111;
}

.press-layout {
  display: grid;
  gap: clamp(38px, 5vw, 72px);
}

.press-section__header {
  display: grid;
  gap: 14px;
  max-width: 780px;
}

.press-section__title {
  margin: 0;
  max-width: 15ch;
  font-family: "Haas Grot Disp Trial";
  font-weight: 400;
  font-size: 5rem;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.press-section__text {
  margin: 0;
  max-width: 60ch;
  font-size: 17px;
  line-height: 1.45;
  color: rgba(17, 17, 17, 0.72);
}

/* =========================================================
   Featured Cards
========================================================= */

.press-featured-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
}

.press-feature-card {
  position: relative;
  min-height: 390px;
  border-radius: 26px;
  overflow: hidden;
  background: #111;
  color: #fff;
  isolation: isolate;
}

.press-feature-card--large {
  grid-row: span 2;
  min-height: 800px;
}

.press-feature-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.press-feature-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 460ms ease;
}

.press-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.58) 58%,
      rgba(0, 0, 0, 0.88) 100%
    );
}

.press-feature-card__content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 24px;
  display: grid;
  gap: 12px;
}

.press-feature-card__content p {
  margin: 0;
  color: var(--white);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.press-feature-card__content h3 {
  margin: 0;
  max-width: 18ch;
  font-family: "Haas Grot Disp Trial";
  font-weight: 400;
  font-size: clamp(26px, 2.45vw, 40px);
  line-height: 0.96;
  letter-spacing: -0.052em;
}

.press-feature-card--large .press-feature-card__content h3 {
  max-width: 16ch;
  font-size: clamp(34px, 3.4vw, 54px);
}

.press-feature-card__content span {
  width: fit-content;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  line-height: 1;
}

.press-feature-card:hover .press-feature-card__image img {
  transform: scale(1.05);
}

/* =========================================================
   Press Reel
========================================================= */

.press-reel {
  background: #0e100f;
  color: #fff;
  padding: clamp(86px, 12vh, 150px) 0;
}

.press-reel__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(40px, 6vw, 92px);
  align-items: center;
}

.press-reel__copy {
  display: grid;
  gap: 18px;
}

.press-reel__copy h2 {
  margin: 0;
  max-width: 13ch;
  font-family: "Haas Grot Disp Trial";
  font-weight: 400;
  font-size: clamp(48px, 5.2vw, 84px);
  line-height: 0.88;
  letter-spacing: -0.065em;
}

.press-reel__copy p:last-child {
  margin: 0;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.5;
}

.press-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  padding: 0;
  background: #111;
  cursor: pointer;
}

.press-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.86;
}

.press-video__play {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--purple);
  color: #fff;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  line-height: 1;
}

/* =========================================================
   Coverage + About
========================================================= */

.press-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(44px, 7vw, 110px);
  align-items: start;
}

.press-coverage {
  display: grid;
  gap: 42px;
}

.press-link-list {
  display: grid;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.press-link-list a {
  min-height: 68px;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.press-link-list span {
  font-family: "Haas Grot Disp Trial";
  font-weight: 400;
  font-size: clamp(24px, 2.45vw, 36px);
  line-height: 0.98;
  letter-spacing: -0.048em;
}

.press-link-list em {
  font-style: normal;
  color: var(--purple);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.press-link-list a:hover span {
  color: var(--purple);
}

.press-bio {
  position: sticky;
  top: 130px;
  border-radius: 28px;
  background: #f5f5f5;
  padding: clamp(28px, 4vw, 46px);
  display: grid;
  gap: 20px;
}

.press-bio h2 {
  margin: 0;
  max-width: 12ch;
  font-family: "Haas Grot Disp Trial";
  font-weight: 400;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.press-bio p {
  margin: 0;
  color: rgba(17, 17, 17, 0.76);
  font-size: 16px;
  line-height: 1.55;
}

.press-bio__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.press-bio__meta span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #fff;
  padding: 0 12px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 12px;
  line-height: 1;
}

/* =========================================================
   Assets
========================================================= */

.press-section--assets {
  background: #0e100f;
  color: #fff;
}

.press-assets-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(44px, 8vw, 120px);
  align-items: start;
}

.press-appearances,
.press-assets {
  display: grid;
  gap: 20px;
}

.press-appearances h2,
.press-assets h2 {
  margin: 0;
  max-width: 14ch;
  font-family: "Haas Grot Disp Trial";
  font-weight: 400;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.press-appearances p {
  margin: 0;
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.55;
}

.press-appearances ul {
  margin: 20px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.65;
}

.press-assets__folder {
  width: fit-content;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.press-assets__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.press-assets__grid img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  border-radius: 16px;
  filter: grayscale(1);
  opacity: 0.9;
}

.press-assets__contact {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

/* =========================================================
   Modal
========================================================= */

.press-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.press-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.press-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.press-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(920px, 92vw);
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
}

.press-modal__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.press-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.72);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

/* =========================================================
   Header Theme Support
========================================================= */

.site-header.is-dark .nav__links a,
.site-header.is-dark .nav__burger,
.site-header.is-dark .nav__actions .btn {
  color: #111;
}

.site-header.is-light .nav__links a,
.site-header.is-light .nav__burger,
.site-header.is-light .nav__actions .btn {
  color: #fff;
}

.site-header.is-dark .nav__logo img {
  filter: invert(1);
}

.site-header.is-light .nav__logo img {
  filter: none;
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1100px) {
  .press-featured-grid,
  .press-reel__inner,
  .press-split,
  .press-assets-grid {
    grid-template-columns: 1fr;
  }

  .press-feature-card--large {
    min-height: 520px;
  }

  .press-bio {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  .press-hero__stats {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .press-hero__title {
    font-size: clamp(56px, 18vw, 86px);
  }

  .press-featured-grid {
    gap: 14px;
  }

  .press-feature-card,
  .press-feature-card--large {
    min-height: 420px;
    border-radius: 20px;
  }

  .press-assets__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .press-link-list a {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 520px) {
  .press-assets__grid {
    grid-template-columns: 1fr;
  }
}

.press-hero__media img,
.press-hero__overlay,
.press-hero .press-kicker,
.press-hero__title,
.press-hero__text,
.press-stat,
.press-hero__actions {
  will-change: transform, opacity;
}

@media (min-width: 2200px) {
  .press-kicker {
    font-size: 14.5px;
  }

  .press-hero__title {
    font-size: clamp(104px, 6.4vw, 136px);
  }

  .press-hero__text {
    font-size: 21px;
  }

  .press-hero__stats {
    width: min(1010px, 100%);
  }

  .press-stat {
    min-height: 158px;
    padding: 28px;
  }

  .press-stat strong {
    font-size: 3.25rem;
  }

  .press-stat span {
    font-size: 14.5px;
  }

  .press-section__title {
    font-size: 5.5rem;
  }

  .press-section__text {
    font-size: 19.5px;
  }

  .press-feature-card__content h3 {
    font-size: clamp(38px, 2.45vw, 48px);
  }

  .press-feature-card--large .press-feature-card__content h3 {
    font-size: clamp(50px, 3.3vw, 66px);
  }

  .press-reel__copy h2,
  .press-appearances h2,
  .press-assets h2 {
    font-size: clamp(72px, 4.5vw, 96px);
  }

  .press-reel__copy p:last-child,
  .press-bio p,
  .press-appearances p,
  .press-appearances ul {
    font-size: 18.5px;
  }

  .press-link-list span {
    font-size: clamp(34px, 2.35vw, 44px);
  }

  .press-bio h2 {
    font-size: clamp(54px, 3.6vw, 72px);
  }
}