:root {
  --ink: #241b2f;
  --muted: #5a5264;
  --paper: #fffaf4;
  --white: #ffffff;
  --coral: #ff706f;
  --rose: #f45fa5;
  --sun: #ffd166;
  --mint: #8edac8;
  --sky: #79c7ff;
  --violet: #b99cff;
  --shadow: 0 28px 80px rgba(67, 40, 76, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  display: grid;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 112, 111, 0.32), transparent 24rem),
    radial-gradient(circle at 86% 20%, rgba(121, 199, 255, 0.34), transparent 24rem),
    radial-gradient(circle at 55% 92%, rgba(142, 218, 200, 0.38), transparent 26rem),
    linear-gradient(135deg, #fff5ec 0%, #ffffff 48%, #f7fbff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid rgba(36, 27, 47, 0.74);
  outline-offset: 5px;
}

.coming-soon {
  display: grid;
  place-items: center;
  width: 100%;
  padding: clamp(1.25rem, 4vw, 3rem);
}

.hero-card {
  display: grid;
  width: min(100%, 1080px);
  min-height: min(720px, calc(100vh - 7rem));
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(1.5rem, 5vw, 4.5rem);
  border: 1px solid rgba(36, 27, 47, 0.12);
  border-radius: clamp(1.5rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.content {
  max-width: 680px;
  z-index: 1;
}

.brand {
  margin: 0 0 1.25rem;
  color: #7c2e62;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  font-weight: 850;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 13vw, 6.5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.status {
  margin: 1.25rem 0 1.8rem;
  color: var(--muted);
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 750;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(36, 27, 47, 0.2);
}

.visual {
  position: relative;
  min-height: 260px;
  border-radius: 2rem;
  background:
    radial-gradient(circle at 24% 24%, rgba(255, 209, 102, 0.95), transparent 25%),
    radial-gradient(circle at 74% 28%, rgba(244, 95, 165, 0.72), transparent 28%),
    radial-gradient(circle at 76% 76%, rgba(121, 199, 255, 0.8), transparent 30%),
    linear-gradient(135deg, rgba(255, 112, 111, 0.72), rgba(142, 218, 200, 0.84));
  overflow: hidden;
}

.visual::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
}

.orb,
.line {
  position: absolute;
  display: block;
}

.orb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 48px rgba(255, 255, 255, 0.42);
}

.orb-one {
  top: 18%;
  left: 14%;
  width: 32%;
  aspect-ratio: 1;
}

.orb-two {
  right: 12%;
  bottom: 14%;
  width: 42%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.24);
}

.orb-three {
  right: 26%;
  top: 18%;
  width: 16%;
  aspect-ratio: 1;
  background: rgba(255, 250, 244, 0.5);
}

.line {
  left: 14%;
  right: 14%;
  height: 12px;
  border-radius: 999px;
  background: rgba(36, 27, 47, 0.16);
}

.line-one {
  bottom: 26%;
}

.line-two {
  bottom: 18%;
  right: 34%;
  background: rgba(124, 46, 98, 0.22);
}

footer {
  align-self: end;
  padding: 1.5rem;
  color: var(--muted);
  text-align: center;
}

footer p {
  margin: 0;
  font-weight: 700;
}

@media (min-width: 780px) {
  .hero-card {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  }

  .visual {
    min-height: clamp(360px, 42vw, 500px);
  }
}

@media (max-width: 520px) {
  .coming-soon {
    padding: 1rem;
  }

  .hero-card {
    min-height: auto;
    padding: 1.35rem;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 3.5rem);
  }

  .button {
    width: 100%;
  }

  .visual {
    min-height: 220px;
  }
}
