:root {
  --bg-0: #05040a;
  --bg-1: #0b0815;
  --surface: rgba(18, 14, 30, 0.72);
  --surface-border: rgba(255, 255, 255, 0.1);
  --text: #f9f7ff;
  --muted: #b9b0d0;
  --accent: #e91e8c;
  --accent-soft: #ff5bb4;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100svh;
  position: relative;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(1000px 700px at 12% -10%, rgba(233, 30, 140, 0.22), transparent 65%),
    radial-gradient(850px 600px at 100% 100%, rgba(143, 70, 255, 0.2), transparent 60%),
    linear-gradient(145deg, var(--bg-0), var(--bg-1) 55%, #130a23 100%);
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: -8%;
  background: url("assets/og-image.png") center / cover no-repeat;
  opacity: 0.15;
  filter: blur(28px) saturate(130%);
  z-index: -3;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 70px
    );
  z-index: -2;
  pointer-events: none;
}

.aurora {
  position: fixed;
  width: 26rem;
  height: 26rem;
  border-radius: 999px;
  filter: blur(36px);
  opacity: 0.34;
  pointer-events: none;
  z-index: -1;
  animation: drift 14s ease-in-out infinite;
}

.aurora-one {
  top: -9rem;
  left: -6rem;
  background: radial-gradient(circle at 30% 30%, #ff58b2, rgba(233, 30, 140, 0.08) 70%);
}

.aurora-two {
  bottom: -11rem;
  right: -6rem;
  background: radial-gradient(circle at 70% 40%, #9e49ff, rgba(158, 73, 255, 0.08) 70%);
  animation-delay: 2.5s;
}

.layout {
  width: min(1120px, calc(100% - 3rem));
  min-height: calc(100svh - 70px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(1.6rem, 4vw, 3.2rem);
  padding: clamp(1.6rem, 3vw, 3rem) 0;
}

.hero {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 26px;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.logo {
  display: block;
  width: clamp(200px, 45vw, 360px);
  max-width: 100%;
  height: auto;
  margin-bottom: 1.2rem;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-soft);
}

.headline {
  margin: 0.45rem 0 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2.25rem, 9vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.copy {
  margin: 1rem 0 0;
  max-width: 48ch;
  color: var(--muted);
  font-size: clamp(1rem, 2.6vw, 1.16rem);
  line-height: 1.6;
}

.cta-row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.84rem 1.3rem;
  background: linear-gradient(135deg, #ff5bb4, #e91e8c 50%, #b0157f 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.96rem;
  box-shadow: 0 10px 28px rgba(233, 30, 140, 0.38);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(233, 30, 140, 0.44);
}

.link {
  color: #ece5ff;
  text-decoration: none;
  border-bottom: 1px solid rgba(236, 229, 255, 0.35);
  padding-bottom: 2px;
  font-weight: 600;
}

.link:hover {
  border-color: rgba(236, 229, 255, 0.8);
}

.pill-row {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.pill-row li {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.48rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.03);
}

.mood {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.card {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
  animation: float 7s ease-in-out infinite;
}

.card-a {
  transform: rotate(-5deg) translateY(10px);
}

.card-b {
  transform: rotate(2deg) translateY(-14px);
  animation-delay: 0.5s;
}

.card-c {
  transform: rotate(5deg) translateY(6px);
  animation-delay: 1.1s;
}

.card-d {
  transform: rotate(-3deg) translateY(-8px);
  animation-delay: 0.8s;
}

.card-e {
  transform: rotate(3deg) translateY(11px);
  animation-delay: 1.4s;
}

.card-f {
  transform: rotate(-2deg) translateY(-11px);
  animation-delay: 1.9s;
}

.footer {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  animation: reveal 760ms cubic-bezier(0.24, 0.65, 0.28, 1) forwards;
}

.delay-1 {
  animation-delay: 80ms;
}

.delay-2 {
  animation-delay: 170ms;
}

.delay-3 {
  animation-delay: 260ms;
}

.delay-4 {
  animation-delay: 350ms;
}

.delay-5 {
  animation-delay: 440ms;
}

.delay-6 {
  animation-delay: 530ms;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.015);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(22px, 14px);
  }
}

@media (max-width: 900px) {
  .layout {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 1.4rem;
  }

  .hero {
    order: 1;
  }

  .mood {
    order: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 0.8rem;
  }

  .card-f {
    display: none;
  }
}

@media (max-width: 520px) {
  .layout,
  .footer {
    width: min(1120px, calc(100% - 1.5rem));
  }

  .hero {
    border-radius: 22px;
    padding: 1.2rem;
  }

  .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .button,
  .link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition: none !important;
  }
}
