@font-face {
  font-family: "Geist Mono Variable";
  src: url(../assets/fonts/GeistMono[wght].ttf) format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: "Arizona";
  src: url(../assets/fonts/ABCArizonaPlusVariable.woff) format("woff");
  src: url(../assets/fonts/ABCArizonaPlusVariable.woff2) format("woff2");
  font-weight: 100 900;
  font-style: normal;
}

body {
  --blackColor: #000000;
  --whiteColor: #ffffff;
  --lightColor: #e8e8e8;
  --lineColorCyan: #50d2d7;
  --lineColorBronze: #965345cc;
  --minScreenWidth: 320;
  --maxScreenWidth: 1728;
  --minFontSize: 16;
  --maxFontSize: 16;
  --margin: 20px;
  --heroTitleWidth: 90%;
  --halfWidth: 100%;
  color: var(--whiteColor);
  background: var(--blackColor);
  font-family: "Arizona";
  font-weight: 400;
  font-variation-settings: "SRFF" 0.2;
}

@media (min-width: 960px) {
  body {
    --margin: 72px;
    --heroTitleWidth: 52%;
    --halfWidth: 50%;
  }
}

@media (min-width: 600px) {
  .hideOnDesktop {
    display: none;
  }
}

@media (max-width: 960px) {
  .hideBelowTablet {
    display: none;
  }
}

@media (max-width: 599px) {
  .hideOnMobile {
    display: none;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: clamp(
    calc(var(--minFontSize) * 1px),
    calc(
      (var(--minFontSize) * 1px) +
        (
          (var(--maxFontSize) - var(--minFontSize)) *
            (100vw - (var(--minScreenWidth) * 1px)) /
            (var(--maxScreenWidth) - var(--minScreenWidth))
        )
    ),
    calc(var(--maxFontSize) * 1px)
  );
}

*::before,
*::after {
  display: block;
}

p {
  font-variation-settings: "wght" 320, "SRFF" 0;
  line-height: 1.4;
  --minFontSize: 16;
  --maxFontSize: 20;
}

svg {
  pointer-events: none;
}

.number {
  font-family: "Geist Mono Variable";
  --minFontSize: 12;
  --maxFontSize: 12;
  font-variation-settings: "wght" 600;
}

.label {
  font-family: "Geist Mono Variable";
  font-style: normal;
  font-weight: 500;
  --minFontSize: 12;
  --maxFontSize: 12;
  line-height: 1.4;
  text-transform: uppercase;
}

.label--hover {
  font-weight: 300;
  padding: 0px 4px;
  background: var(--whiteColor);
  color: var(--blackColor);
  position: fixed;
  left: 0;
  top: 0;
  display: none;
}

.giantTitle {
  font-weight: 400;
  --minFontSize: 62;
  --maxFontSize: 128;
  line-height: 0.8;
  letter-spacing: -0.02em;
}

.giantTitle i {
  font-variation-settings: "SRFF" 0.2, "slnt" -1;
}

.subSectionTitle {
  font-style: normal;
  font-weight: 400;
  --minFontSize: 22;
  --maxFontSize: 32;
  line-height: 32px;
}

.subSectionTitle i {
  font-variation-settings: "SRFF" 0.2, "slnt" -1;
}

.nav {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  justify-content: flex-end;
  align-items: flex-end;
  font-family: "Geist Mono Variable";
  font-style: normal;
  --minFontSize: 16;
  --maxFontSize: 16;
  line-height: 20px;
  text-transform: uppercase;
  padding: 16px var(--margin);
  font-variation-settings: "wght" 300;
  color: var(--whiteColor);
  mix-blend-mode: exclusion;
  z-index: 100;

  @media (min-width: 960px) {
    --minFontSize: 12;
    --maxFontSize: 12;
  }
}

.logo--top {
  position: absolute;
  top: 20px;
  left: calc(var(--margin) - 2px);
  z-index: 100;
}

.logo--top__svg {
  width: clamp(44px, 4.2vw, 72px);
  height: clamp(40px, 4.4vw, 64px);
}

.nav__links {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  transition: opacity 1000ms 300ms;
}

@media (min-width: 600px) {
  .nav__links {
    gap: 40px;
  }
}

.initialized .nav__links {
  opacity: 1;
}

.nav__link {
  color: inherit;
  text-decoration: none;
}

.nav__link--isActive {
  font-variation-settings: "wght" 600;
}

.nav__link--signin {
  background: var(--whiteColor);
  color: var(--blackColor);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
}

@media (max-width: 500px) {
  .nav__link--home {
    display: none;
  }

  .nav__link--our {
    display: none;
  }
}

footer {
  position: relative;
  line-height: 20px;
  text-transform: uppercase;
  padding: var(--margin) var(--margin) 0;
  font-family: "Geist Mono Variable";
  font-variation-settings: "wght" 350;
  font-style: normal;
  --minFontSize: 12;
  --maxFontSize: 12;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--whiteColor);
  display: flex;
  flex-direction: column;
}

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

.footer__row {
  display: flex;
  gap: var(--margin);
  padding-left: 0;
  padding-bottom: 100px;
}

@media (min-width: 960px) {
  .footer__row {
    padding-left: 30vw;
    padding-bottom: 0;
  }
}

.footer__column {
  width: 23%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__logo {
  display: none;
  width: 23vw;
  align-self: flex-start;
  margin-top: -4.5vw;
  margin-right: calc(var(--margin) * -1);
}

@media (min-width: 960px) {
  .footer__logo {
    display: block;
  }
}

.footer__logo svg {
  width: 100%;
  height: auto;
  display: block;
}

.audioPlayer audio {
  width: 100%;
}
