/* ===== Base & Variables ===== */
:root {
  --pad: 8px;
}

/* Neue Haas Unica from Typekit will attach via their CSS; Diatype self-hosted here */
@font-face {
  font-family: "ABCDiatype";
  src: url("./fonts/ABCDiatype-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: "neue-haas-unica", "ABCDiatype", sans-serif;
}

/* ===== Background Video ===== */
.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.site::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  /* backdrop-filter: blur(15px); */
}

/* ===== Top-right Text ===== */
.top-right-text {
  position: fixed;
  top: 8px;
  right: 8px;
  width: 100%;        
  max-width: 605px;   
  padding-left: 16px; 
  height: auto; 
  box-sizing: border-box;
  flex-shrink: 0;
  font-family: "ABCDiatype", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 13px; /* 108.333% */
  letter-spacing: -0.12px;
  -webkit-font-smoothing: antialiased;
  color: #FFF;
  mix-blend-mode: difference;
  text-align: left;
}

/* ===== CTAs ===== */
.fixed-ctas {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 480px) {
.fixed-ctas {
  flex-direction: column;
 }
}

.cta {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 245px;
  height: 20px;
  padding: 4px 83.5px 5px 83.7px;
  background: rgba(40, 40, 41, 0.50);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  text-decoration: none;
  color: #EEE;
  font-family: "neue-haas-unica", sans-serif;
  font-size: 8.94px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  text-align: center;
}

/* ===== Bottom-left Copyright ===== */
.bottom-left {
  position: fixed;
  bottom: 8px;
  left: 8px;
  font-family: "ABCDiatype", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px; /* 120% */
  letter-spacing: -0.1px;
  color: #58595B;
  mix-blend-mode: difference;
}

