@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --purple-deep: #25155f;
  --purple: #5b22e6;
  --lavender: #a785f7;
  --lavender-soft: #e9d9ff;
  --peach: #ffc8a3;
  --peach-soft: #fff1e6;
  --ink: #17102f;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fdfcff;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: clamp(28px, 4vw, 64px);
  background:
    radial-gradient(circle at 12% 92%, rgba(91, 34, 230, .96) 0, rgba(91, 34, 230, .52) 18%, rgba(167, 133, 247, .18) 38%, transparent 60%),
    radial-gradient(circle at 92% 22%, rgba(255, 200, 163, .82) 0, rgba(255, 200, 163, .46) 24%, transparent 56%),
    linear-gradient(135deg, #ffffff 10%, #fbf8ff 42%, #fff0e6 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .42;
  background-image:
    linear-gradient(rgba(37, 21, 95, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 21, 95, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, #000 32%, #000 100%);
}

.ambient {
  position: absolute;
  z-index: -1;
  width: 42vw;
  height: 42vw;
  max-width: 700px;
  max-height: 700px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .22;
  pointer-events: none;
  animation: drift 12s ease-in-out infinite alternate;
}

.ambient--purple {
  left: -15vw;
  bottom: -18vw;
  background: var(--purple);
}

.ambient--peach {
  right: -12vw;
  top: -16vw;
  background: var(--peach);
  animation-delay: -5s;
}

.hero__content {
  width: min(840px, 100%);
  align-self: center;
  margin: auto;
  text-align: center;
  padding: 70px 0 50px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: inherit;
  text-decoration: none;
  margin-bottom: 38px;
}

.brand__mark {
  width: clamp(52px, 7vw, 74px);
  height: auto;
}

.brand__name {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -.045em;
}

.brand__name span:first-child {
  color: var(--purple-deep);
}

.brand__name span:last-child {
  color: #ee9a71;
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .28em;
  color: rgba(37, 21, 95, .58);
}

h1 {
  margin: 0;
  font-size: clamp(58px, 10vw, 126px);
  line-height: .91;
  letter-spacing: -.072em;
  font-weight: 700;
  color: var(--purple-deep);
}

h1::first-line {
  color: var(--purple-deep);
}

.intro {
  width: min(620px, 92%);
  margin: 34px auto 0;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.65;
  color: rgba(37, 21, 95, .72);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  padding: 10px 15px;
  border: 1px solid rgba(37, 21, 95, .11);
  border-radius: 999px;
  background: rgba(255,255,255,.48);
  backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 500;
  color: rgba(37, 21, 95, .70);
  box-shadow: 0 12px 40px rgba(60, 35, 130, .06);
}

.status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 5px rgba(91, 34, 230, .10);
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(37, 21, 95, .48);
}

.footer__divider {
  opacity: .4;
}

@keyframes drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(4vw,-2vw,0) scale(1.08); }
}

@media (max-width: 640px) {
  .hero {
    padding: 24px;
  }

  .hero__content {
    padding: 38px 0 40px;
  }

  .brand {
    margin-bottom: 30px;
  }

  h1 {
    font-size: clamp(54px, 18vw, 82px);
  }

  .intro {
    font-size: 16px;
  }

  .footer {
    text-align: center;
  }

  .footer__divider {
    display: none;
  }

  .footer span:last-child {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient {
    animation: none;
  }
}
