:root {
  --violet: #6320ee;
  --ink: #0e131f;
  --accent: var(--blue);
  --mint: #f7faf1;
  --blue: #6f83ad;
  --paper: #fffdf7;
  --line: rgba(14, 19, 31, 0.14);
  --shadow: 0 24px 70px rgba(14, 19, 31, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--mint);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
}

.hero {
  position: relative;
  display: grid;
  min-height: 78vh;
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(14, 19, 31, 0.96), rgba(14, 19, 31, 0.84) 42%, rgba(14, 19, 31, 0.52)),
    radial-gradient(circle at 76% 24%, rgba(99, 32, 238, 0.32), transparent 26%),
    radial-gradient(circle at 70% 74%, rgba(111, 131, 173, 0.28), transparent 30%),
    var(--ink);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0 49%, rgba(247, 250, 241, 0.045) 49% 51%, transparent 51% 100%),
    radial-gradient(circle at 20% 20%, rgba(99, 32, 238, 0.18), transparent 34%),
    radial-gradient(circle at 70% 56%, rgba(111, 131, 173, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(14, 19, 31, 0.08), rgba(14, 19, 31, 0.82));
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.hero::before {
  width: min(44vw, 520px);
  aspect-ratio: 5 / 7;
  right: clamp(24px, 7vw, 120px);
  top: clamp(96px, 18vh, 180px);
  border: 1px solid rgba(247, 250, 241, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(99, 32, 238, 0.44), rgba(111, 131, 173, 0.18)),
    linear-gradient(180deg, rgba(247, 250, 241, 0.08), rgba(247, 250, 241, 0.02));
  box-shadow:
    -34px 26px 0 -10px rgba(111, 131, 173, 0.18),
    -68px 52px 0 -22px rgba(247, 250, 241, 0.1),
    var(--shadow);
  transform: rotate(9deg);
}

.hero::after {
  width: min(22vw, 240px);
  aspect-ratio: 1;
  right: clamp(18px, 12vw, 180px);
  bottom: clamp(36px, 10vh, 110px);
  border: 1px solid rgba(247, 250, 241, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 28% 30%, rgba(247, 250, 241, 0.58) 0 7px, transparent 8px),
    radial-gradient(circle at 50% 50%, rgba(247, 250, 241, 0.58) 0 7px, transparent 8px),
    radial-gradient(circle at 72% 70%, rgba(247, 250, 241, 0.58) 0 7px, transparent 8px),
    linear-gradient(135deg, rgba(111, 131, 173, 0.5), rgba(99, 32, 238, 0.28));
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.26);
  transform: rotate(-12deg);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
}

.brand__mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.48);
  background: rgba(255, 250, 240, 0.12);
  color: var(--accent);
  font-size: 0.9rem;
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.topbar__link {
  color: rgba(255, 250, 240, 0.88);
  font-size: 0.95rem;
  text-decoration: none;
}

.topbar__link:hover {
  color: var(--accent);
}

.hero__content {
  align-self: center;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 96px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.lede {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 250, 240, 0.9);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 250, 240, 0.34);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button--primary {
  border-color: var(--violet);
  background: var(--violet);
  color: var(--mint);
}

.button--secondary {
  background: rgba(247, 250, 241, 0.08);
  color: var(--paper);
  backdrop-filter: blur(12px);
}

.button:hover {
  transform: translateY(-1px);
}

.launch {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 68px 0 80px;
}

.launch__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 28px;
  align-items: start;
}

.launch h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.launch__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.launch-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(23, 33, 28, 0.05);
}

.launch-card__kicker {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.launch-card h3 {
  margin: 28px 0 10px;
  color: var(--violet);
  font-size: 1.35rem;
  line-height: 1.15;
}

.launch-card p {
  margin: 0;
  color: rgba(23, 33, 28, 0.74);
}

@media (max-width: 760px) {
  .hero {
    min-height: 86vh;
  }

  .hero::before {
    width: 260px;
    right: -80px;
    top: 150px;
  }

  .hero::after {
    width: 136px;
    right: 22px;
    bottom: 26px;
  }

  .topbar {
    align-items: flex-start;
    padding-top: 18px;
  }

  .topbar__link {
    max-width: 150px;
    text-align: right;
  }

  .hero__content {
    padding: 48px 0 78px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .launch__intro,
  .launch__grid {
    grid-template-columns: 1fr;
  }

  .launch-card {
    min-height: auto;
  }
}
