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

:root {
  --purple: #241545;
  --purple-soft: #444571;
  --lavender: #e1ddec;
  --green: #82ff71;
  --yellow: #fffca1;
  --cream: #fffde0;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  color: white;
  background: var(--purple);
  font-family: Montserrat, Arial, sans-serif;
}

.page {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 48px 24px 72px;
  background:
    linear-gradient(115deg, rgba(68, 69, 113, .45), transparent 45%),
    repeating-linear-gradient(135deg, transparent 0 70px, rgba(255,255,255,.018) 70px 72px);
}

.page::before {
  content: "FEELZ";
  position: absolute;
  z-index: -2;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  color: rgba(255, 255, 255, .025);
  font-size: clamp(9rem, 28vw, 30rem);
  font-weight: 800;
  letter-spacing: -.08em;
  transform: rotate(-7deg);
}

.card {
  width: min(100%, 760px);
  text-align: center;
  animation: arrive .9s cubic-bezier(.2,.8,.2,1) both;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.logo {
  display: block;
  width: min(74vw, 430px);
  height: auto;
  max-height: 245px;
  object-fit: contain;
  margin: 0 auto 8px;
  mix-blend-mode: screen;
  filter: contrast(450%) brightness(180%);
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 14px;
  margin: 0 auto 26px;
}

.divider::before, .divider::after {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--green);
  transform: rotate(45deg);
}

.divider span { width: 76px; height: 2px; background: var(--yellow); }

h1 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(2.1rem, 7vw, 4.5rem);
  line-height: .98;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.intro {
  margin: 24px 0;
  color: var(--lavender);
  font-size: clamp(.95rem, 2.2vw, 1.12rem);
  line-height: 1.65;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 17px;
  border: 1px solid rgba(130, 255, 113, .35);
  border-radius: 999px;
  color: var(--green);
  background: rgba(130, 255, 113, .07);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
}

footer {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  color: rgba(225, 221, 236, .58);
  text-align: center;
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

@keyframes arrive {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) { .card { animation: none; } }

@media (max-height: 700px) {
  .page { padding-top: 28px; }
  .logo { max-height: 175px; }
  .intro { margin: 16px 0; }
}
