:root {
  --cream: #fffaf6;
  --peach-soft: #fce7dd;

  --pink: #ef7f91;
  --lavender: #b28bd0;

  --green: #7d9a72;
  --brown: #6c5149;
  --text: #66534d;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Nunito", sans-serif;
  color: var(--text);
  background: var(--cream);
}

.page {
  position: relative;

  min-height: 100vh;

  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 28px 24px 42px;

  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(250, 211, 198, 0.6),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 85%,
      rgba(220, 232, 211, 0.5),
      transparent 30%
    ),
    var(--cream);
}


/* LARGE SOFT CIRCLE */

.glow-circle {
  position: absolute;

  width: min(850px, 78vw);
  height: min(850px, 78vw);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255, 250, 246, 0.95) 0%,
      rgba(252, 231, 221, 0.75) 64%,
      rgba(252, 231, 221, 0.18) 100%
    );

  z-index: 0;
}


/* MAIN CONTENT */

.launch {
  position: relative;
  z-index: 2;

  width: min(860px, 100%);

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

.hero-logo {
  display: block;

  width: min(500px, 74vw);

  margin: 0 auto 18px;
}

.message {
  width: min(650px, 100%);
}


/* SMALL TOP LABEL */

.eyebrow {
  margin: 0 0 8px;

  color: var(--green);

  font-size: 0.9rem;
  font-weight: 700;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}


/* COMING SOON */

h1 {
  margin: 0;

  font-family: "Parisienne", cursive;

  color: var(--pink);

  font-size: clamp(4.2rem, 8vw, 6.6rem);
  font-weight: 400;

  line-height: 0.9;
}


/* DIVIDER */

.divider {
  margin: 18px auto 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 12px;
}

.line {
  display: block;

  width: 72px;
  height: 1px;

  background:
    linear-gradient(
      to right,
      var(--lavender),
      var(--pink)
    );

  opacity: 0.7;
}

.sparkle {
  color: var(--lavender);
  font-size: 1.5rem;
}

.dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--lavender);
}


/* COPY */

.intro {
  width: min(540px, 100%);

  margin: 0 auto;

  font-size: 1.08rem;
  line-height: 1.7;
}

.launch-note {
  margin: 18px 0 0;

  color: var(--green);

  font-size: 1rem;
  font-weight: 700;
}


/* WATERCOLOR CORNER FLOWERS */

.corner-flower {
  position: absolute;

  bottom: -30px;

  width: clamp(250px, 24vw, 430px);
  height: auto;

  z-index: 1;

  pointer-events: none;
  user-select: none;
}

.corner-left {
  left: -35px;
}

.corner-right {
  right: -35px;
}


/* TABLET */

@media (max-width: 900px) {

  .glow-circle {
    width: 90vw;
    height: 90vw;
  }

  .hero-logo {
    width: min(450px, 80vw);
  }

  h1 {
    font-size: clamp(4rem, 11vw, 6rem);
  }

  .corner-flower {
    width: clamp(210px, 29vw, 320px);
  }
}


/* MOBILE */

@media (max-width: 650px) {

  .page {
    min-height: 100svh;

    align-items: flex-start;

    padding:
      22px
      16px
      72px;

    background:
      radial-gradient(
        circle at 0% 0%,
        rgba(250, 211, 198, 0.72) 0%,
        rgba(252, 231, 221, 0.45) 42%,
        rgba(255, 250, 246, 0.2) 70%
      ),
      radial-gradient(
        circle at 100% 100%,
        rgba(220, 232, 211, 0.55) 0%,
        rgba(255, 250, 246, 0.25) 65%
      ),
      #fffaf6;
  }

  .launch {
    width: 100%;
  }

  .glow-circle {
    width: 150vw;
    height: 150vw;

    top: 145px;
  }

  .hero-logo {
    width: min(355px, 92vw);

    margin-bottom: 18px;
  }

  .message {
    padding: 0 8px;
  }

  .eyebrow {
    font-size: 0.76rem;
    letter-spacing: 0.11em;
  }

  h1 {
    font-size: clamp(3.7rem, 18vw, 5rem);

    line-height: 0.9;
  }

  .divider {
    margin: 16px auto 18px;
    gap: 9px;
  }

  .line {
    width: 42px;
  }

  .sparkle {
    font-size: 1.2rem;
  }

  .dot {
    width: 6px;
    height: 6px;
  }

  .intro {
    max-width: 330px;

    font-size: 0.98rem;
    line-height: 1.62;
  }

  .launch-note {
    font-size: 0.9rem;
    margin-top: 16px;
  }

  .corner-flower {
    width: 165px;
    bottom: -18px;
  }

  .corner-left {
    left: -50px;
  }

  .corner-right {
    right: -50px;
  }
}
