:root {
  --bg-top: #dff6fb;
  --bg-mid: #8fcfe1;
  --bg-deep: #1e6d8a;
  --ink-strong: #0d2230;
  --ink-soft: rgba(13, 34, 48, 0.78);
  --panel: rgba(244, 251, 253, 0.7);
  --panel-border: rgba(255, 255, 255, 0.38);
  --accent: #1f4be3;
  --accent-deep: #1434a3;
  --white: #ffffff;
  --shadow: 0 30px 80px rgba(10, 45, 61, 0.22);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink-strong);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.85), transparent 30%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 42%, var(--bg-deep) 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.2), transparent 45%),
    repeating-radial-gradient(
      circle at 50% 120%,
      rgba(255, 255, 255, 0.16) 0 14px,
      rgba(255, 255, 255, 0) 14px 34px
    );
  opacity: 0.42;
  pointer-events: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  isolation: isolate;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

.hero__glow,
.hero__ripple {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero__glow--one {
  top: 10%;
  left: -10%;
  width: 34rem;
  height: 34rem;
  background: rgba(255, 255, 255, 0.28);
  filter: blur(20px);
}

.hero__glow--two {
  right: -8%;
  bottom: 4%;
  width: 28rem;
  height: 28rem;
  background: rgba(43, 134, 181, 0.28);
  filter: blur(28px);
}

.hero__ripple {
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: rotate(-8deg);
}

.hero__ripple--one {
  width: 70vw;
  height: 70vw;
  max-width: 920px;
  max-height: 920px;
  right: -20vw;
  top: -18vw;
}

.hero__ripple--two {
  width: 48vw;
  height: 48vw;
  max-width: 620px;
  max-height: 620px;
  left: -10vw;
  bottom: -18vw;
}

.hero__content {
  width: min(760px, 100%);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--panel-border);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(248, 253, 255, 0.78), rgba(229, 246, 250, 0.66));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(20, 52, 163, 0.76);
}

.logo {
  display: block;
  max-width: min(100%, 364px);
  height: auto;
  margin-bottom: 26px;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.lead,
.supporting {
  max-width: 62ch;
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.7;
  color: var(--ink-soft);
}

.lead {
  margin: 24px 0 0;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 24px;
}

.highlights span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(31, 75, 227, 0.12);
  color: rgba(13, 34, 48, 0.88);
  font-size: 0.95rem;
  font-weight: 700;
}

.supporting {
  margin: 0 0 30px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 16px 32px rgba(20, 52, 163, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(20, 52, 163, 0.28);
  filter: saturate(1.05);
}

@media (max-width: 720px) {
  .hero {
    padding: 18px;
  }

  .hero__content {
    border-radius: 24px;
  }

  h1 {
    max-width: none;
  }
}
