:root {
  --viirtue-purple: #673490;
  --viirtue-purple-light: #e7daf1;
  --viirtue-purple-dark: #43225e;
  --hero-navy: #2d3b6b;
  --digital-black: #04111c;
  --mid-grey: #777;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  background: linear-gradient(180deg, #fdfbfe 0%, #f4eefb 100%);
  color: var(--digital-black);
}

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.wave-right {
  position: absolute;
  top: -8%;
  right: -12%;
  width: 55%;
  height: 110%;
  object-fit: cover;
  object-position: left center;
  opacity: 0.6;
  pointer-events: none;
  transform: rotate(8deg);
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 0 24px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .content { margin: 0 8vw; }
}

.lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.lockup img { height: 40px; display: block; }
.lockup .divider {
  width: 1px;
  height: 24px;
  background: var(--viirtue-purple-light);
}
.lockup .labs-tag {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--viirtue-purple);
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--viirtue-purple);
  margin: 0 0 16px;
}

h1 {
  color: var(--hero-navy);
  font-size: clamp(3rem, 4vw + 1.5rem, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 16px;
}

p.subhead {
  font-size: 17px;
  line-height: 1.6;
  max-width: 50ch;
  margin: 0 0 32px;
}

.cta {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--viirtue-purple);
  border-radius: 999px;
  color: var(--viirtue-purple-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background-color 0.15s ease;
}
.cta:hover { background-color: var(--viirtue-purple-light); }

footer {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  font-size: 12px;
  color: var(--mid-grey);
}

@media (max-width: 640px) {
  .wave-right { opacity: 0.35; width: 90%; right: -30%; }
  h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
}
