:root {
  --background: #050711;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f8fafc;
  --muted: #94a3b8;
  --subtle: #64748b;
  --violet: #8b5cf6;
  --purple: #a855f7;
  --pink: #f0abfc;
  --indigo: #818cf8;
  --cyan: #22d3ee;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
}

button,
input {
  font: inherit;
}

.coming-soon {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background:
    radial-gradient(circle at top left, rgba(88, 28, 135, 0.18), transparent 36%),
    radial-gradient(circle at bottom right, rgba(49, 46, 129, 0.22), transparent 40%),
    var(--background);
}

.background-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.grid {
  position: absolute;
  inset: 0;
  opacity: 0.8;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
}

.glow-left {
  top: -240px;
  left: -220px;
  width: 680px;
  height: 680px;
  background: rgba(109, 40, 217, 0.22);
}

.glow-right {
  right: -220px;
  bottom: -260px;
  width: 720px;
  height: 720px;
  background: rgba(67, 56, 202, 0.25);
}

.glow-center {
  top: 30%;
  left: 50%;
  width: 420px;
  height: 420px;
  transform: translateX(-50%);
  background: rgba(217, 70, 239, 0.05);
}

.content {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  text-align: center;
}

.top-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, #d946ef, #8b5cf6 52%, #4f46e5);
  color: white;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 18px 48px rgba(139, 92, 246, 0.35);
}

.brand-copy {
  text-align: left;
}

.brand-copy h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 25px;
  line-height: 1;
}

.brand-copy p {
  margin: 8px 0 0;
  color: rgba(196, 181, 253, 0.75);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(196, 181, 253, 0.2);
  border-radius: 999px;
  padding: 12px 20px;
  background: rgba(139, 92, 246, 0.08);
  color: #ede9fe;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

.sparkle {
  color: #c4b5fd;
  font-size: 18px;
}

.hero {
  margin-top: 58px;
}

.hero h1 {
  max-width: 980px;
  margin: 0 auto;
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.045em;
  overflow: visible;
}

.hero h1 span {
  display: block;
  margin-top: 2px;
  padding-bottom: 12px;
  line-height: 1.18;
  color: transparent;
  background: linear-gradient(
    90deg,
    var(--pink),
    #c4b5fd,
    var(--indigo)
  );
  background-clip: text;
  -webkit-background-clip: text;
  overflow: visible;
}

.description {
  max-width: 850px;
  margin: 36px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.8;
}

.notice-card {
  max-width: 820px;
  margin: 56px auto 0;
  padding: 34px 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px);
}

.notice-card p {
  margin: 0;
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.7;
}


footer {
  margin-top: 56px;
  color: var(--subtle);
  font-size: 13px;
}



@media (max-width: 700px) {
  .coming-soon {
    padding: 38px 18px;
  }

  .top-row {
    flex-direction: column;
  }

  .hero {
    margin-top: 44px;
  }

   .hero h1 {
    font-size: clamp(43px, 13vw, 62px);
    line-height: 1.15;
  }

  .hero h1 span {
    padding-bottom: 10px;
  }

  .description {
    margin-top: 28px;
  }

  .notice-card {
    margin-top: 42px;
    padding: 28px 20px;
  }

  footer {
    margin-top: 44px;
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .brand-copy h2 {
    font-size: 21px;
  }

  .hero h1 {
    font-size: 42px;
  }
}   