:root {
  --purple-900: #2b0a4a;
  --purple-800: #43116e;
  --purple-700: #5b1a8b;
  --purple-600: #7a22b5;
  --magenta: #e91e8c;
  --pink: #ff4db8;
  --white: #ffffff;
  --ink: #2a1638;
  --muted: #6b5878;
  --card: #f8f3fb;
  --shadow: 0 18px 50px rgba(91, 26, 139, 0.12);
  --radius: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow: hidden;
}

.page {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 100vh;
  min-height: 100dvh;
}

.panel {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
}

.panel--hero {
  background: linear-gradient(160deg, var(--purple-900) 0%, var(--purple-800) 42%, #6d1a86 78%, #8a1a78 100%);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: clamp(2.5rem, 6vw, 6rem);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 30% 40%, black 20%, transparent 75%);
  opacity: 0.5;
  animation: gridDrift 18s linear infinite;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  animation: float 8s ease-in-out infinite;
}

.orb-1 {
  width: 280px;
  height: 280px;
  right: -70px;
  top: -40px;
  background: radial-gradient(circle, rgba(255, 77, 184, 0.45), transparent 68%);
}

.orb-2 {
  width: 220px;
  height: 220px;
  left: 8%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(122, 34, 181, 0.55), transparent 70%);
  animation-delay: -2.4s;
}

.orb-3 {
  width: 140px;
  height: 140px;
  left: 48%;
  top: 18%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
  animation-delay: -4s;
  animation-duration: 11s;
}

.hero-logo {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.4rem;
}

.hero-title {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-size: clamp(4.2rem, 10vw, 8.4rem);
  margin-bottom: 1.6rem;
}

.hero-title .word {
  display: block;
  background: linear-gradient(100deg, #ffffff 10%, #ffd6f0 45%, #ff4db8 100%);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 6s ease-in-out infinite;
  opacity: 0;
  transform: translateY(28px);
}

.page.is-ready .hero-title .word {
  animation: riseIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards, shine 6s ease-in-out 1s infinite;
}

.hero-copy {
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84);
}

.launch-line {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2rem;
  padding: 0.7rem 1rem 0.7rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 0 rgba(255, 77, 184, 0.7);
  animation: pulse 1.8s ease-out infinite;
}

.panel--info {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
}

.info-inner {
  width: min(100%, 430px);
}

.logo-wrap {
  margin-bottom: 2rem;
}

.logo {
  width: min(100%, 360px);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(91, 26, 139, 0.12));
  animation: logoFloat 5.5s ease-in-out infinite;
}

.info-copy {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 2rem;
}

.contacts {
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: var(--card);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  border: 1px solid rgba(91, 26, 139, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(233, 30, 140, 0.28);
  box-shadow: 0 22px 40px rgba(91, 26, 139, 0.16);
  outline: none;
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple-700), var(--magenta));
  flex-shrink: 0;
}

.icon svg {
  width: 22px;
  height: 22px;
}

.contact-card small {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.contact-card strong {
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--purple-800);
}

.animate-in {
  opacity: 0;
  transform: translateY(22px);
}

.page.is-ready .animate-in {
  animation: riseIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--delay, 0) * 1ms);
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shine {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -22px, 0) scale(1.08);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 77, 184, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 77, 184, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 77, 184, 0);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 56px 56px, 56px 56px;
  }
}

@media (max-width: 980px) {
  body {
    overflow: auto;
  }

  .page {
    grid-template-columns: 1fr;
  }

  .panel {
    min-height: auto;
  }

  .panel--hero {
    min-height: 62vh;
    padding: 1.6rem 1.6rem 3.5rem;
  }

  .hero-logo {
    display: block;
    width: min(100%, 260px);
    margin: 0 0 1.6rem;
    padding: 0.65rem 0.85rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(24, 6, 42, 0.18);
  }

  .hero-logo img {
    width: 100%;
    height: auto;
    display: block;
  }

  .hero-title {
    font-size: clamp(3.4rem, 16vw, 5.6rem);
  }

  .panel--info {
    padding: 3rem 1.6rem 4rem;
  }

  .logo-wrap {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .animate-in,
  .hero-title .word {
    opacity: 1;
    transform: none;
  }
}
