:root {
  --pink: #f48fb1;
  --hot-pink: #ef5f92;
  --blush: #f7c6d9;
  --petal: #fce4ec;
  --lavender: #d8c7f0;
  --plum: #9b7ade;
  --teal: #8fb7b3;
  --cream: #fff8f6;
  --ink: #20242a;
  --muted: #68707a;
  --card: rgba(255, 255, 255, 0.74);
  --line: rgba(244, 143, 177, 0.28);
  --shadow: 0 28px 90px rgba(239, 95, 146, 0.2);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { min-height: 100%; }
body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background:
    radial-gradient(circle at 12% 14%, rgba(244, 143, 177, 0.28), transparent 25rem),
    radial-gradient(circle at 82% 10%, rgba(216, 199, 240, 0.34), transparent 26rem),
    radial-gradient(circle at 80% 85%, rgba(143, 183, 179, 0.16), transparent 24rem),
    linear-gradient(135deg, #fff 0%, var(--cream) 48%, #fff 100%);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    radial-gradient(var(--pink) 1px, transparent 1.5px),
    radial-gradient(var(--lavender) 1px, transparent 1.5px);
  background-position: 0 0, 22px 20px;
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(#000, transparent 78%);
  mask-image: linear-gradient(#000, transparent 78%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

@media (prefers-reduced-motion: no-preference) {
  .hero-card,
  .copy > * {
    animation: rise 0.9s var(--ease) both;
  }
  .copy .brand { animation-delay: 0.05s; }
  .copy .eyebrow { animation-delay: 0.13s; }
  .copy h1 { animation-delay: 0.21s; }
  .copy .lede { animation-delay: 0.29s; }
  .copy .tagline { animation-delay: 0.37s; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.coming-soon {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 34px));
  min-height: calc(100vh - 96px);
  margin: 0 auto;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 24px 0 12px;
}

.hero-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  overflow: hidden;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: clamp(32px, 5vw, 56px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(252, 228, 236, 0.76)),
    radial-gradient(circle at 82% 20%, rgba(216, 199, 240, 0.36), transparent 23rem);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card::before {
  content: "";
  position: absolute;
  right: -9%;
  bottom: -28%;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(247, 198, 217, 0.32);
  pointer-events: none;
}

.copy,
.art { position: relative; z-index: 1; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(28px, 4vw, 52px);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  transition: transform 0.4s var(--ease);
}
.brand:hover { transform: translateY(-2px); }
.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(32, 36, 42, 0.08));
  transition: transform 0.5s var(--ease);
}
.brand:hover img { transform: rotate(-6deg) scale(1.04); }
.brand span span { color: var(--hot-pink); }

.eyebrow {
  position: absolute;
  top: clamp(22px, 4vw, 34px);
  right: clamp(22px, 4vw, 34px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 9px 15px 9px 9px;
  border: 1px solid rgba(239, 95, 146, 0.2);
  border-radius: 999px;
  color: var(--hot-pink);
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--hot-pink);
  box-shadow: 0 0 0 0 rgba(239, 95, 146, 0.5);
  animation: ping 2.4s ease-out infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(239, 95, 146, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(239, 95, 146, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 95, 146, 0); }
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  padding-right: 0.12em;
}
h1 em {
  display: inline-block;
  font-style: italic;
  font-weight: 600;
  color: var(--hot-pink);
  background: linear-gradient(120deg, var(--hot-pink), var(--plum) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 0.16em 0.06em;
}

.lede {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.7;
}

.tagline {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 610px;
  margin-top: 22px;
  padding: 12px 18px;
  border: 1px dashed rgba(239, 95, 146, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.32);
}
.tagline p {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 700;
}
.tagline span { color: var(--hot-pink); font-weight: 800; }

.art {
  min-height: clamp(300px, 38vw, 480px);
  display: grid;
  place-items: center;
}
.art .halo {
  position: absolute;
  width: min(80%, 500px);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.78) 0 38%, rgba(252, 228, 236, 0.62) 39% 62%, transparent 63%),
    conic-gradient(from 110deg, rgba(244, 143, 177, 0.18), rgba(216, 199, 240, 0.28), rgba(143, 183, 179, 0.16), rgba(244, 143, 177, 0.18));
  filter: blur(0.2px);
}
.art img {
  position: relative;
  width: min(72%, 470px);
  filter: drop-shadow(0 30px 26px rgba(32, 36, 42, 0.13));
  transform: rotate(-2deg);
}

.doodle {
  position: absolute;
  color: var(--hot-pink);
  opacity: 0.5;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  filter: drop-shadow(0 8px 16px rgba(239, 95, 146, 0.1));
}
.brain { top: 12%; left: 9%; }
.heart { right: 10%; bottom: 24%; }
.sparkle { left: 16%; bottom: 16%; color: var(--plum); }

footer {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  padding: 2px 0 22px;
  text-align: center;
  color: var(--muted);
}
footer p { margin: 0; font-size: 0.95rem; }
footer .copy-line {
  margin-top: 6px;
  font-size: 0.82rem;
  color: rgba(104, 112, 122, 0.8);
}

@media (max-width: 900px) {
  .coming-soon { align-content: start; gap: 18px; }
  .hero-card { grid-template-columns: 1fr; }
  .brand { margin-bottom: 30px; }
  .art { min-height: 300px; order: -1; }
  .art img { width: min(58%, 300px); }
  .art .halo { width: min(66%, 340px); }
}

@media (max-width: 560px) {
  .coming-soon,
  footer { width: min(100% - 22px, 1180px); }
  .coming-soon { gap: 16px; }
  .hero-card { padding: 22px; border-radius: 30px; }
  .copy { text-align: center; }
  .brand {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 18px;
  }
  .eyebrow,
  .tagline,
  .lede { margin-inline: auto; }
  .eyebrow { position: absolute; top: 18px; right: 18px; margin: 0; }
  h1 { font-size: clamp(2.6rem, 12vw, 4.2rem); }
  .lede { margin-top: 14px; }
  .tagline { margin-top: 18px; }
  .art { min-height: 220px; }
  .art img { width: min(58%, 240px); }
  .art .halo { width: min(64%, 270px); }
  .brand img { width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
