@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: #0a0a14;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bg-video {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
}

.page {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: 1fr auto;
  height: 100vh;
  width: 100%;
  padding: 80px 48px 32px;
}

.top-bar {
  position: fixed;
  top: 32px;
  left: 48px;
  right: 48px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 3;
  letter-spacing: 0.02em;
}

.email {
  display: block;
  color: #fff;
  text-decoration: none;
  opacity: 0.95;
  transition: opacity 0.2s ease;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 1.1vw, 20px);
  margin: 16px 0 0 0;
  padding: 0;
  text-indent: 0;
  letter-spacing: -0.01em;
}

.email:hover {
  color: #765fa3;
  opacity: 1;
}

.brand {
  text-decoration: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 32px;
  width: auto;
  display: block;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  padding: 0 0 0 18%;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 5.5vw, 88px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.accent {
  color: #f8d6af;
  font-weight: 600;
}

.tagline-group {
  display: block;
  margin-left: 9vw;
  width: max-content;
  max-width: 100%;
}

.hero-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(15px, 2vw, 32px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
}

.friend {
  color: #f8d6af;
}

.hero-tagline sup {
  font-size: 0.45em;
  vertical-align: super;
}

.bottom-bar {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 12px;
  width: 100%;
}

.partnered-label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.18em;
  opacity: 0.85;
}

.partners-strip {
  height: 28px;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .page {
    padding: 72px 20px 20px;
  }

  .top-bar {
    left: 20px;
    right: 20px;
    top: 20px;
  }

  .hero {
    padding-left: 0;
  }

  .hero-title {
    white-space: normal;
    font-size: clamp(28px, 9vw, 56px);
  }

  .hero-tagline {
    font-size: clamp(14px, 4.5vw, 24px);
  }

  .tagline-group {
    margin-left: 0;
  }

  .top-bar {
    justify-content: flex-end;
    font-size: 12px;
  }

  .email {
    margin-top: 12px;
    font-size: 13px;
  }

  .bottom-bar {
    align-items: center;
    font-size: 12px;
  }

  .partners-strip {
    height: 20px;
    max-width: 90vw;
  }

  .partnered-label {
    font-size: 10px;
  }
}
