:root {
  --bg: #fbf9ff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --ink: #4d5678;
  --muted: #85869b;
  --lavender: #a78bfa;
  --lavender-soft: #ece8ff;
  --cyan-soft: #dff8fb;
  --pink: #f0abfc;
  --line: rgba(167, 139, 250, 0.18);
  --shadow: 0 24px 80px rgba(92, 101, 160, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes rise-fade {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@keyframes soft-scale {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

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

@keyframes line-grow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(240, 171, 252, 0.18), transparent 26rem),
    radial-gradient(circle at 78% 8%, rgba(125, 211, 252, 0.16), transparent 28rem),
    linear-gradient(180deg, #fff 0%, var(--bg) 42%, #fff 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0;
  padding: 22px 0;
  transform: translateX(-50%);
}

.brand {
  font-family: Poppins, Inter, sans-serif;
  font-weight: 700;
  color: #4b5272;
  letter-spacing: 0;
}

.nav {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  scrollbar-width: none;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a {
  padding: 0;
  border-radius: 0;
  color: #8a7fe4;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav a:hover {
  background: transparent;
  color: #6050c8;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 42px;
  min-height: 100vh;
  width: 100%;
  margin: 0;
  padding: 132px max(40px, calc((100vw - 1180px) / 2)) 84px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 24%, rgba(255, 255, 255, 0.9), transparent 20rem),
    radial-gradient(circle at 68% 62%, rgba(223, 248, 251, 0.72), transparent 28rem),
    radial-gradient(circle at 18% 18%, rgba(240, 171, 252, 0.24), transparent 28rem),
    linear-gradient(115deg, #fff 0%, #f6f1ff 38%, #ece8ff 68%, #faf9ff 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
  animation: rise-fade 720ms ease both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: #9a91ad;
  font-family: Poppins, Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #9a91ad;
}

.hero .eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: rgba(167, 139, 250, 0.36);
  transform-origin: left center;
  animation: line-grow 560ms ease 180ms both;
}

h1,
h2,
h3 {
  margin: 0;
  color: #4b5272;
  font-family: Poppins, Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  color: var(--lavender);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 5.8vw, 88px);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-lede {
  max-width: 560px;
  margin: 28px 0 0;
  color: #545c7d;
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.65;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 56px;
  max-width: 560px;
  margin: 46px 0 0;
  animation: rise-fade 720ms ease 180ms both;
}

.hero-meta div {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-meta span {
  display: block;
  margin-bottom: 7px;
  color: #9a91ad;
  font-family: Poppins, Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-meta strong {
  display: block;
  color: #4f5878;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.feature-grid article,
.metrics div,
.needs-grid article,
.learning-list article {
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.feature-grid span {
  display: block;
  color: #9b94ad;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-art {
  position: relative;
  justify-self: end;
  width: min(620px, 100%);
  margin: 0 auto;
  animation: soft-scale 840ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

.hero-art::before,
.closing::before {
  content: "";
  position: absolute;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.22), rgba(125, 211, 252, 0.2));
  filter: blur(6px);
  z-index: -1;
}

.hero-art::before {
  right: 0;
  bottom: -6%;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.18), rgba(125, 211, 252, 0.18));
}

.wide-shot,
.image-stack img,
.closing img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.wide-shot,
.image-stack img,
.closing img,
.feature-grid article,
.metrics div,
.needs-grid article,
.learning-list article {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    opacity 700ms ease;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wide-shot.reveal,
.image-stack img.reveal,
.closing img.reveal {
  transform: translateY(24px) scale(0.99);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (hover: hover) {
  .feature-grid article:hover,
  .metrics div:hover,
  .needs-grid article:hover,
  .learning-list article:hover {
    transform: translateY(-4px);
    border-color: rgba(167, 139, 250, 0.34);
    box-shadow: 0 30px 90px rgba(92, 101, 160, 0.18);
  }
}

.hero-art img {
  width: 100%;
  filter: drop-shadow(0 28px 72px rgba(92, 101, 160, 0.18));
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.content-grid {
  display: grid;
  gap: 26px;
  margin-bottom: 44px;
}

h2 {
  max-width: 900px;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.16;
}

h3 {
  font-size: 24px;
  line-height: 1.2;
}

.copy-block {
  display: grid;
  gap: 20px;
}

.copy-block p {
  margin: 0;
  color: #555d7d;
  max-width: 920px;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
}

.wide-shot {
  width: 100%;
  background: #fff;
}

.tall {
  max-height: 86vh;
  object-fit: contain;
  background: #fff;
}

.image-stack {
  display: grid;
  gap: 32px;
}

.image-stack img {
  width: 100%;
  background: #fff;
}

.needs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 44px;
}

.needs-grid article {
  padding: 28px;
}

.needs-grid h3 {
  color: #7468d8;
  font-size: clamp(22px, 2.2vw, 30px);
}

.needs-grid ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding-left: 20px;
  color: #59617f;
  font-size: 18px;
  line-height: 1.45;
}

.needs-grid p {
  margin: 20px 0 0;
  color: #59617f;
  font-size: 20px;
  line-height: 1.5;
}

.needs-callout {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.16), rgba(223, 248, 251, 0.56));
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0 44px;
}

.feature-grid article {
  padding: 24px;
}

.feature-grid h3 {
  margin-top: 18px;
  color: #8f7df0;
  font-size: clamp(20px, 2vw, 28px);
}

.feature-grid p {
  margin: 18px 0 0;
  color: #59617f;
  line-height: 1.5;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 70px;
}

.metrics div {
  display: grid;
  gap: 18px;
  min-height: 170px;
  place-items: center;
  padding: 28px;
  text-align: center;
}

.metrics strong {
  color: var(--lavender);
  font-family: Poppins, Inter, sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}

.metrics span {
  color: #4f5878;
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.25;
}

.learning-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.learning-list article {
  padding: 28px;
}

.learning-list h3 {
  color: #7f6ee8;
}

.learning-list p {
  margin: 16px 0 0;
  color: #59617f;
  font-size: 18px;
  line-height: 1.55;
}

.closing {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 110px;
}

.closing::before {
  left: 6%;
  bottom: 8%;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 44px;
  border-top: 1px solid var(--line);
  color: #81859d;
  font-size: 14px;
}

.footer a {
  color: #6f5fd8;
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
  }

  .nav {
    overflow-x: auto;
    max-width: 70vw;
  }

  .hero,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 30px;
    padding-top: 112px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-art {
    justify-self: center;
    width: min(560px, 88vw);
  }

  .feature-grid,
  .metrics,
  .needs-grid,
  .hero-meta,
  .learning-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(100% - 28px, 1180px);
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
  }

  .nav a {
    flex: 0 0 auto;
  }

  .hero,
  .section,
  .closing,
  .footer {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    grid-template-columns: 1fr;
    width: 100%;
    padding-bottom: 48px;
    padding-right: 20px;
    padding-left: 20px;
  }

  h1 {
    font-size: clamp(48px, 14vw, 76px);
    white-space: normal;
  }

  .hero-meta {
    gap: 20px;
  }

  .feature-grid,
  .metrics,
  .needs-grid,
  .hero-meta,
  .learning-list {
    grid-template-columns: 1fr;
  }

  .content-grid {
    gap: 24px;
    margin-bottom: 28px;
  }

  .image-stack {
    gap: 18px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
