@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --black: #000;
  --white: #fff;
  --pink: #f217af;
  --pink-hot: #ff38c2;
  --header-height: 101px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
video {
  display: block;
  max-width: 100%;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  background: rgba(0, 0, 0, 0.985);
  border-bottom: 1px solid #181818;
}

.header-inner {
  display: flex;
  width: min(1510px, calc(100% - 52px));
  height: 100%;
  margin: 0 auto;
  align-items: center;
  gap: 44px;
}

.brand {
  display: block;
  flex: 0 0 auto;
}

.brand img {
  width: 144px;
  height: 60px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a,
.search-link {
  color: #ddd;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.search-link:hover,
.search-link:focus-visible {
  color: var(--pink);
}

.header-actions {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 26px;
}

.join-link,
.drawer-join {
  display: inline-flex;
  min-width: 216px;
  min-height: 46px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.join-link:hover,
.join-link:focus-visible,
.drawer-join:hover,
.drawer-join:focus-visible {
  background: var(--pink-hot);
}

.menu-toggle,
.mobile-menu,
.menu-backdrop {
  display: none;
}

.intro-copy {
  padding: 40px max(24px, calc((100% - 920px) / 2));
  border-top: 1px solid #202020;
  border-bottom: 1px solid #202020;
  background: #0d0d0d;
  text-align: center;
}

.intro-copy h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.intro-copy p {
  max-width: 920px;
  margin: 0 auto;
  color: #cecece;
  font-size: 14px;
  line-height: 1.75;
}

.media-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: #080808;
}

.media-tile {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background: #111;
  isolation: isolate;
}

.media-tile.square {
  aspect-ratio: 1 / 1;
}

.media-tile.portrait {
  aspect-ratio: 1 / 2;
}

.media-tile img,
.media-tile video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-tile img {
  z-index: 1;
}

.media-tile video {
  z-index: 2;
  opacity: 0;
  transition: opacity 140ms linear;
}

.media-tile video.is-ready {
  opacity: 1;
}

.media-tile::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  content: "";
  transition: background-color 150ms ease;
}

.media-tile:hover::after,
.media-tile:focus-visible::after {
  background: rgba(0, 0, 0, 0.28);
}

.media-tile:focus-visible {
  z-index: 4;
  outline: 3px solid var(--pink);
  outline-offset: -3px;
}

.conversion {
  display: flex;
  min-height: 330px;
  padding: 28px 20px 48px;
  align-items: flex-start;
  justify-content: center;
  background: #000;
}

.full-access {
  display: block;
  width: min(382px, 100%);
}

.full-access img {
  width: 100%;
  height: auto;
}

.site-footer {
  display: flex;
  padding: 40px 24px 30px;
  align-items: center;
  flex-direction: column;
  border-top: 1px solid #181818;
  background: #000;
  text-align: center;
}

.footer-brand img {
  width: 327px;
  height: 136px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  margin: 24px 0 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 26px;
}

.footer-links a {
  color: #bdbdbd;
  font-size: 11px;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--pink);
}

.legal-copy {
  max-width: 920px;
  margin: 0;
  color: #757575;
  font-size: 10px;
  line-height: 1.7;
}

.compliance {
  display: flex;
  margin: 25px 0 18px;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.company-info {
  width: min(1120px, 100%);
  height: auto;
  opacity: 0.78;
}

.back-to-top {
  position: fixed;
  z-index: 50;
  right: 18px;
  bottom: 18px;
  display: none;
  width: 44px;
  height: 44px;
  padding: 4px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(242, 23, 175, 0.92);
  cursor: pointer;
}

.back-to-top.visible {
  display: grid;
}

.back-to-top img {
  width: 34px;
  height: 34px;
}

@media (max-width: 1080px) {
  .header-inner {
    width: calc(100% - 30px);
    gap: 25px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .join-link {
    min-width: 180px;
    padding: 0 18px;
  }
}

@media (max-width: 820px) {
  .header-inner {
    display: grid;
    width: 100%;
    padding: 0 12px;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    gap: 9px;
  }

  .menu-toggle {
    display: flex;
    width: 46px;
    height: 46px;
    padding: 12px 10px;
    align-items: stretch;
    justify-content: space-around;
    flex-direction: column;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 116px;
    height: auto;
  }

  .desktop-nav,
  .search-link {
    display: none;
  }

  .header-actions {
    margin: 0;
  }

  .join-link {
    min-width: 142px;
    min-height: 40px;
    padding: 0 13px;
    font-size: 11px;
    white-space: nowrap;
  }

  .menu-backdrop {
    position: fixed;
    z-index: 998;
    inset: var(--header-height) 0 0;
    display: block;
    background: rgba(0, 0, 0, 0.72);
  }

  .mobile-menu {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    bottom: 0;
    left: 0;
    display: flex;
    width: min(240px, 78vw);
    padding: 10px 0 24px;
    flex-direction: column;
    background: #050505;
    box-shadow: 14px 0 36px rgba(0, 0, 0, 0.45);
  }

  .mobile-menu[hidden],
  .menu-backdrop[hidden] {
    display: none;
  }

  .mobile-menu a {
    display: flex;
    min-height: 50px;
    padding: 0 22px;
    align-items: center;
    border-bottom: 1px solid #181818;
    color: #ddd;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
  }

  .mobile-menu .drawer-join {
    min-width: 0;
    min-height: 42px;
    margin: 18px 16px 0;
    padding: 0 14px;
    border: 0;
    color: #fff;
    font-weight: 700;
  }

  .conversion {
    min-height: 300px;
    padding-top: 20px;
  }

  .intro-copy {
    padding: 32px 20px;
  }
}

@media (max-width: 390px) {
  .header-inner {
    padding: 0 8px;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 6px;
  }

  .menu-toggle {
    width: 42px;
    padding-inline: 8px;
  }

  .brand img {
    width: 102px;
  }

  .join-link {
    min-width: 126px;
    padding: 0 9px;
    font-size: 10px;
  }

  .footer-brand img {
    width: min(280px, 88vw);
    height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .media-tile video {
    display: none;
  }
}
