@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Montserrat:wght@800&display=swap");

:root {
  --violet: #3e2a78;
  --pink: #e94b91;
  --peach: #ff9b7b;
  --blush: #fff3f5;
  --navy: #19172d;
  --white: #ffffff;
  --soft-white: rgba(255, 255, 255, 0.82);
  --line: rgba(255, 255, 255, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--navy);
}

body {
  margin: 0;
  color: var(--white);
  background: var(--navy);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

svg {
  display: block;
  max-width: 100%;
}

.holding-page {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 88% 16%, rgba(233, 75, 145, 0.22), transparent 24%),
    radial-gradient(circle at 30% 92%, rgba(255, 155, 123, 0.15), transparent 28%),
    linear-gradient(115deg, rgba(62, 42, 120, 0.98) 0%, rgba(49, 35, 96, 0.96) 40%, rgba(25, 23, 45, 0.99) 78%),
    var(--navy);
}

.holding-page::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.page-shell {
  width: min(1180px, calc(100% - 3rem));
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 2rem 0 1.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0;
  font-weight: 800;
  line-height: 1.2;
}

.brand-logo {
  width: clamp(7rem, 12vw, 9rem);
  height: auto;
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  padding: clamp(5rem, 10vh, 8rem) 0;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--peach);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 750px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(3.35rem, 6.6vw, 5.75rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.intro {
  position: relative;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(25, 23, 45, 0.52);
  box-shadow: 0 20px 45px rgba(25, 23, 45, 0.28);
  backdrop-filter: blur(12px);
}

.intro::before {
  position: absolute;
  top: -1px;
  left: 2rem;
  width: 5rem;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--pink), var(--peach));
  content: "";
}

.intro p {
  margin: 0;
  color: var(--soft-white);
  font-size: clamp(1rem, 1.4vw, 1.08rem);
}

.intro p + p {
  margin-top: 1.25rem;
}

.intro .intro-lead {
  color: var(--white);
  font-size: clamp(1.1rem, 1.65vw, 1.3rem);
  font-weight: 700;
  line-height: 1.48;
}

.status {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.status p {
  margin: 0;
  color: var(--white);
  font-weight: 900;
}

.status-dot {
  width: 0.72rem;
  height: 0.72rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(233, 75, 145, 0.18);
}

.footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.68);
}

.footer p {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-line {
  width: 3.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--peach));
}

.glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.glow-teal {
  top: -13rem;
  right: -10rem;
  width: 33rem;
  height: 33rem;
  background: radial-gradient(circle, rgba(233, 75, 145, 0.2), transparent 68%);
}

.glow-coral {
  bottom: -19rem;
  left: 28%;
  width: 36rem;
  height: 36rem;
  background: radial-gradient(circle, rgba(255, 155, 123, 0.16), transparent 68%);
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 2rem, 680px);
    padding-top: 1.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    align-content: center;
    padding: 4.5rem 0;
  }

  .hero-copy,
  h1 {
    max-width: 650px;
  }

  .intro {
    max-width: 580px;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: min(100% - 1.25rem, 680px);
    padding: 1.1rem 0 1.25rem;
  }

  .brand-logo {
    width: 6.5rem;
  }

  .hero-grid {
    gap: 2.5rem;
    padding: 4rem 0;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4rem);
    line-height: 1;
  }

  .intro {
    padding: 1.5rem;
  }

  .intro::before {
    left: 1.5rem;
  }

  .footer-line {
    width: 2rem;
  }
}

@media (max-height: 720px) and (min-width: 821px) {
  .hero-grid {
    padding: 3.5rem 0;
  }

  h1 {
    font-size: clamp(3.35rem, 6vw, 4.8rem);
  }
}

@media (prefers-reduced-transparency: reduce) {
  .intro {
    background: rgba(13, 27, 42, 0.92);
    backdrop-filter: none;
  }
}
