/* Extracted from https://affable-potato-527331.framer.app/ (Waitlst Framer template) */

:root {
  --color-bg: #000;
  --color-text: #fff;
  --color-muted: #9c9da0;
  --color-card-mid: #475062;
  --color-border: rgba(255, 255, 255, 0.2);
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  background: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  width: 100%;
}

/* Hero — 100vh centered column */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  padding-bottom: 48px;
}

.hero__shader {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__shader canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(39% 42% at 50% 50%, transparent 10%, #000 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 20px;
}

/* Label pill */
.label {
  position: relative;
  border-radius: 40px;
  background: radial-gradient(67% 88% at 0% 0%, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  box-shadow:
    0 4px 20px rgba(255, 255, 255, 0.2),
    inset 0 0 4px rgba(255, 255, 255, 0.4);
}

.label__fill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 39px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.9);
}

.label__text {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 0;
  color: var(--color-text);
  white-space: nowrap;
}

/* Headline — gradient text */
.headline {
  width: 100%;
  text-align: center;
}

.headline__line {
  white-space: pre-wrap;
  word-break: break-word;
}

.headline__gradient {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 80px;
  font-weight: 600;
  letter-spacing: -8px;
  line-height: 130%;
  text-align: center;
  background-image: linear-gradient(163deg, rgb(255, 255, 255) 45%, rgba(255, 255, 255, 0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.headline--mobile {
  display: none;
}

.headline--mobile .headline__gradient {
  line-height: 110%;
}

/* Glass card */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 600px;
  padding: 60px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  background: radial-gradient(39% 75% at 50% 0%, #475062 0%, #000 100%);
  box-shadow:
    inset 0 0 40px rgba(255, 255, 255, 0.05),
    0 10px 20px rgba(0, 0, 0, 0.4);
  overflow: visible;
}

.card[data-border]::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
  box-sizing: border-box;
}

.card__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.card__title {
  width: 100%;
  text-align: center;
}

.card__title-gradient {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -2px;
  background-image: linear-gradient(470deg, rgb(255, 255, 255) 57%, rgba(255, 255, 255, 0) 122%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.card__description {
  max-width: 380px;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 120%;
  color: var(--color-muted);
  text-align: center;
  white-space: pre-wrap;
  word-break: break-word;
}

.card__email {
  display: flex;
  justify-content: center;
  max-width: 380px;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 120%;
  color: var(--color-muted);
}

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

.card__email a:hover {
  color: var(--color-text);
}

/* Footer */
.footer {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  padding: 20px;
  width: 100%;
  text-align: right;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 100%;
  color: var(--color-text);
}

/* Breakpoints — match Framer */
@media (max-width: 809.98px) {
  .headline--desktop {
    display: none;
  }

  .headline--mobile {
    display: block;
  }

  .headline--mobile .headline__line {
    height: auto;
  }
}

@media (min-width: 810px) {
  .headline--desktop {
    display: block;
  }

  .headline--mobile {
    display: none;
  }
}

@media (max-width: 809.98px) {
  .card {
    padding: 40px 24px;
  }

  .headline__gradient {
    font-size: clamp(48px, 12vw, 80px);
  }
}
