* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  background: #020302;
  color: white;

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "SF Pro Text",
    "Helvetica Neue",
    Arial,
    sans-serif;
}


/* =========================
   PARTICLE FIELD
   ========================= */

#field {
  position: fixed;
  inset: 0;

  overflow: hidden;

  z-index: 2;

  pointer-events: none;
}

.point {
  position: absolute;

  top: 0;
  left: 0;

  width: 3px;
  height: 3px;

  border-radius: 50%;

  opacity: 0;

  transform-origin: center;

  will-change:
    transform,
    opacity,
    box-shadow;

  pointer-events: none;
}


/* =========================
   FLORAL BACKGROUND
   ========================= */

#floral-bg {
  position: fixed;
  inset: 0;

  z-index: 1;

  background-image:
    url("assets/floral_bg.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  pointer-events: none;

  /* Overall intensity of revealed foliage */
  opacity: 0.72;

  --mouse-x: 50%;
  --mouse-y: 50%;


  /* Softer, larger, feathered reveal */

  -webkit-mask-image:
    radial-gradient(
      circle 330px at var(--mouse-x) var(--mouse-y),

      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.68) 12%,
      rgba(0, 0, 0, 0.55) 28%,
      rgba(0, 0, 0, 0.38) 45%,
      rgba(0, 0, 0, 0.22) 60%,
      rgba(0, 0, 0, 0.10) 75%,
      rgba(0, 0, 0, 0.03) 88%,
      rgba(0, 0, 0, 0) 100%
    );

  mask-image:
    radial-gradient(
      circle 330px at var(--mouse-x) var(--mouse-y),

      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.68) 12%,
      rgba(0, 0, 0, 0.55) 28%,
      rgba(0, 0, 0, 0.38) 45%,
      rgba(0, 0, 0, 0.22) 60%,
      rgba(0, 0, 0, 0.10) 75%,
      rgba(0, 0, 0, 0.03) 88%,
      rgba(0, 0, 0, 0) 100%
    );

  filter:
    brightness(0.72)
    saturate(0.95);
}


/* =========================
   MAIN CONTENT
   ========================= */

.hero {
  position: relative;

  z-index: 10;

  height: 100vh;

  display: flex;
  flex-direction: column;

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

  text-align: center;

  pointer-events: none;

  /* Dormant state */
  opacity: 0.12;

  /* Wake / sleep transition */
  transition: opacity 0.65s ease;
}

.brand {
  margin-bottom: 48px;
}

.wake-logo {
  width: min(550px, 68vw);

  height: auto;

  display: block;
}


/* =========================
   TAGLINE
   ========================= */

h1 {
  margin: 0 0 18px;

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "SF Pro Text",
    "Helvetica Neue",
    Arial,
    sans-serif;

  font-size:
    clamp(18px, 1.65vw, 25px);

  font-weight: 400;

  letter-spacing: 0.08em;

  line-height: 1.2;

  color:
    rgba(255, 255, 255, 0.92);

  -webkit-font-smoothing:
    antialiased;

  text-rendering:
    geometricPrecision;
}


/* =========================
   SUPPORTING COPY
   ========================= */

p {
  margin: 0;

  font-size: 15px;

  font-weight: 300;

  letter-spacing: 0.035em;

  color:
    rgba(255, 255, 255, 0.42);
}


/* =========================
   FOOTER
   ========================= */

footer {
  position: fixed;

  bottom: 28px;
  left: 0;

  width: 100%;

  z-index: 10;

  text-align: center;

  font-size: 10px;

  letter-spacing: 0.35em;

  color:
    rgba(255, 255, 255, 0.25);

  pointer-events: none;
}