* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.page{
  height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(900px 700px at 50% 40%, rgba(255,255,255,0.06), transparent 60%),
    radial-gradient(900px 700px at 70% 60%, rgba(0,0,0,0.35), transparent 55%),
    #0b0b10;
}

.center{
  display: grid;
  justify-items: center;
  gap: 26px;
  padding: 32px 18px;
}

.logo{
  width: min(520px, 86vw);
  height: auto;
}

/* Big italic “WEBSITE COMING SOON” */
.coming-soon{
  text-align: center;
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: clamp(44px, 6vw, 88px);
  color: #fff;
  transform: skewX(-12deg); /* gives the italic/slant look */
  text-shadow:
    0 2px 0 rgba(0,0,0,0.55),
    0 10px 30px rgba(0,0,0,0.55);
}

/* Optional: a subtle outline effect */
.coming-soon div{
  -webkit-text-stroke: 2px rgba(0,0,0,0.55);
  paint-order: stroke fill;
}
