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

/* ─── Tokens (from Figma) ────────────────────────────────────── */
:root {
  --bg:             #000000;
  --border-color:   #eecec2;
  --description:    #a69994;
  --tagline:        #ebcabb;
  --inset:          40px;

  /* Rose-gold gradient — used on COMING SOON text */
  --rose-gradient: linear-gradient(
    0.35deg,
    rgb(229, 161, 141)  0.66%,
    rgb(239, 192, 186) 45.07%,
    rgb(255, 255, 255) 70.94%,
    rgb(235, 163, 151) 99.54%
  );
}

/* ─── Base ───────────────────────────────────────────────────── */
html, body {
  height: 100%;
}

body {
  background-color: var(--bg);
  font-family: 'Manrope', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--description);
}

/* ─── Page wrapper ───────────────────────────────────────────── */
.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 80px;
}

/* ─── Decorative border frame (inset 40px from edges) ───────── */
.border-frame {
  position: fixed;
  inset: var(--inset);
  border: 1px solid var(--border-color);
  pointer-events: none;
  z-index: 0;
}

/* ─── Centered content ───────────────────────────────────────── */
.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 31px;
  width: 100%;
  max-width: 672px;
  text-align: center;
}

/* ─── Logo ───────────────────────────────────────────────────── */
.logo {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  user-select: none;
  /* Blend the PNG onto the black background cleanly */
  mix-blend-mode: normal;
}

/* ─── Description ────────────────────────────────────────────── */
.description {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.22; /* ≈ 29.25px / 24px */
  color: var(--description);
  max-width: 560px;
}

/* ─── Coming Soon label ──────────────────────────────────────── */
.coming-soon {
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  opacity: 0.8;

  /* Gradient text */
  background: var(--rose-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Responsive — Tablet ────────────────────────────────────── */
@media (max-width: 900px) {
  .page {
    padding: 80px 60px;
  }

  .logo {
    max-width: 340px;
  }

  .description {
    font-size: 20px;
  }

  .coming-soon {
    font-size: 22px;
    letter-spacing: 2px;
  }
}

/* ─── Responsive — Mobile ────────────────────────────────────── */
@media (max-width: 600px) {
  :root {
    --inset: 20px;
  }

  .page {
    padding: 80px 36px;
    min-height: 100svh;
  }

  .logo {
    max-width: 260px;
  }

  .content {
    gap: 24px;
  }

  .description {
    font-size: 16px;
    line-height: 1.5;
    max-width: 100%;
  }

  .coming-soon {
    font-size: 18px;
    letter-spacing: 1.8px;
  }
}

/* ─── Responsive — Small mobile ─────────────────────────────── */
@media (max-width: 380px) {
  :root {
    --inset: 14px;
  }

  .page {
    padding: 60px 28px;
  }

  .logo {
    max-width: 220px;
  }

  .description {
    font-size: 14px;
  }

  .coming-soon {
    font-size: 16px;
    letter-spacing: 1.6px;
  }
}
