:root {
  --ink: #17152e;
  --ink-soft: #343152;
  --blue: #4d5bff;
  --blue-deep: #3545f0;
  --sky: #cdebff;
  --lilac: #dcceff;
  --peach: #ffd9cb;
  --butter: #fff09b;
  --mint: #bff1d5;
  --white: #fff;
  --line: rgba(23, 21, 46, 0.12);
  --shadow-soft: 0 28px 80px rgba(58, 61, 123, 0.18);
  --shadow-screen: 0 30px 70px rgba(35, 40, 90, 0.22);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: 1440px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

.shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button svg,
.text-link svg,
.module-card__link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover svg,
.text-link:hover svg,
.module-card__link:hover svg {
  transform: translateX(4px);
}

.button--small {
  min-height: 46px;
  padding-inline: 20px;
  border-radius: 11px;
  gap: 14px;
}

.button--ink {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(23, 21, 46, 0.18);
}

.button--ink:hover,
.button--ink:focus-visible {
  box-shadow: 0 16px 38px rgba(23, 21, 46, 0.28);
}

.button--blue {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 34px rgba(77, 91, 255, 0.28);
}

.button--outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.04);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--blue-deep);
  font-size: 15px;
  font-weight: 700;
}

.section-index {
  margin: 0 0 20px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-index::before {
  display: inline-block;
  width: 28px;
  height: 2px;
  margin-right: 10px;
  background: currentColor;
  content: "";
  vertical-align: middle;
}

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

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

/* Navigation */
.home-nav {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  transition: background-color 200ms ease, box-shadow 200ms ease, backdrop-filter 200ms ease;
}

.home-nav.is-scrolled {
  position: fixed;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1px 0 rgba(23, 21, 46, 0.08);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.home-nav__inner {
  display: grid;
  min-height: 92px;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 32px;
}

.home-nav__logo img {
  width: 170px;
  height: auto;
  aspect-ratio: 415 / 106;
  object-fit: contain;
}

.home-nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 50px);
}

.home-nav__links a,
.home-nav__pricing {
  position: relative;
  font-size: 14px;
  font-weight: 600;
}

.home-nav__links a::after,
.home-nav__pricing::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.home-nav__links a:hover::after,
.home-nav__links a:focus-visible::after,
.home-nav__pricing:hover::after,
.home-nav__pricing:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.home-nav__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.home-nav__toggle,
.home-nav__mobile {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  padding: 142px 0 60px;
  background:
    radial-gradient(circle at 7% 80%, rgba(191, 241, 213, 0.94), transparent 23%),
    radial-gradient(circle at 78% 8%, rgba(255, 217, 203, 0.96), transparent 31%),
    radial-gradient(circle at 52% 41%, rgba(220, 206, 255, 0.78), transparent 38%),
    linear-gradient(125deg, #ccecff 0%, #eff0ff 50%, #ffe2da 100%);
}

.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  content: "";
  mix-blend-mode: multiply;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(430px, 0.8fr) minmax(600px, 1.2fr);
  align-items: center;
  gap: 28px;
}

.hero__copy {
  position: relative;
  z-index: 6;
  padding: 34px 0 80px;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(68px, 5.2vw, 90px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.87;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero h1 span:first-child {
  white-space: nowrap;
}

.hero h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero__lede {
  max-width: 620px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.hero__trust {
  display: flex;
  max-width: 520px;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  color: rgba(23, 21, 46, 0.72);
}

.hero__trust p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.hero__trust strong {
  color: var(--ink);
  font-weight: 600;
}

.hero__trust-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(23, 21, 46, 0.09);
  border-radius: 50%;
  color: #2daf82;
  background: rgba(255, 255, 255, 0.6);
}

.hero__trust-mark svg {
  width: 24px;
  fill: rgba(46, 184, 134, 0.12);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-product {
  position: relative;
  z-index: 4;
  width: 860px;
  height: 690px;
  margin-left: -40px;
  transform: translate3d(calc(var(--mouse-x, 0) * 8px), calc(var(--mouse-y, 0) * 6px), 0);
  transition: transform 300ms ease-out;
}

.hero-product__orbit {
  position: absolute;
  z-index: 1;
  inset: 20px -30px -10px -100px;
  width: 940px;
  max-width: none;
  filter: drop-shadow(0 14px 15px rgba(77, 91, 255, 0.18));
  overflow: visible;
}

.hero-product__orbit path {
  stroke: url("#hero-orbit-gradient");
  stroke: var(--blue);
  stroke-dasharray: 16 12;
  stroke-linecap: round;
  stroke-width: 7px;
  opacity: 0.55;
  animation: orbit-dash 18s linear infinite;
}

@keyframes orbit-dash {
  to { stroke-dashoffset: -220; }
}

.product-browser {
  position: absolute;
  z-index: 3;
  top: 82px;
  left: 60px;
  width: 690px;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.9);
  border-radius: 31px;
  background: var(--white);
  box-shadow: var(--shadow-screen);
  transform: rotate(1.6deg);
}

.product-browser__bar,
.screen-frame__bar {
  display: flex;
  height: 36px;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(23, 21, 46, 0.07);
  background: rgba(255, 255, 255, 0.96);
}

.product-browser__bar span,
.screen-frame__bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(23, 21, 46, 0.14);
}

.product-browser__bar small {
  margin-inline: auto 10px;
  color: rgba(23, 21, 46, 0.42);
  font-size: 10px;
}

.product-browser img {
  width: 100%;
  aspect-ratio: 1.38;
  object-fit: cover;
}

.product-phone {
  position: absolute;
  z-index: 6;
  right: 10px;
  bottom: 42px;
  width: 244px;
  filter: drop-shadow(0 32px 35px rgba(39, 43, 92, 0.25));
  transform: rotate(7deg);
  transform-origin: center bottom;
}

.product-phone img {
  width: 100%;
}

.hero-credential {
  position: absolute;
  z-index: 7;
  right: 228px;
  bottom: 38px;
  display: grid;
  width: 304px;
  min-height: 116px;
  grid-template-columns: 50px 1fr 55px;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(23, 21, 46, 0.09);
  border-radius: 22px 8px 22px 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 52px rgba(49, 48, 92, 0.18);
  transform: rotate(-3deg);
}

.hero-credential strong,
.hero-credential span {
  display: block;
}

.hero-credential strong {
  font-size: 14px;
}

.hero-credential span {
  margin-top: 3px;
  color: rgba(23, 21, 46, 0.56);
  font-size: 10px;
}

.credential-seal {
  display: grid;
  width: 48px;
  height: 54px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, #85e8c2, #42cda3);
  clip-path: polygon(50% 0, 90% 16%, 84% 68%, 50% 100%, 16% 68%, 10% 16%);
}

.credential-seal svg {
  width: 29px;
  fill: rgba(255, 255, 255, 0.18);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-credential__qr,
.credential-qr {
  width: 48px;
  height: 48px;
  fill: var(--ink);
}

.core-dot {
  position: absolute;
  z-index: 7;
  bottom: 10px;
  left: 214px;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 8px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 0 0 10px rgba(77, 91, 255, 0.12), 0 20px 34px rgba(77, 91, 255, 0.28);
}

.core-dot span {
  font-size: 29px;
  font-weight: 800;
}

.module-tag {
  position: absolute;
  z-index: 8;
  padding: 9px 14px;
  border: 1px solid rgba(23, 21, 46, 0.1);
  border-radius: 13px 5px 13px 13px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 22px rgba(54, 56, 111, 0.12);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.module-tag--erp { top: 318px; left: 4px; transform: rotate(-8deg); }
.module-tag--sis { bottom: 142px; left: 78px; transform: rotate(4deg); }
.module-tag--lms { right: 337px; bottom: 4px; transform: rotate(3deg); }
.module-tag--exams { right: 30px; top: 320px; transform: rotate(-6deg); }
.module-tag--credentials { right: 20px; top: 106px; transform: rotate(6deg); }

.hero__cloud,
.configuration-scene__cloud {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  filter: blur(6px);
}

.hero__cloud::before,
.hero__cloud::after {
  position: absolute;
  border-radius: 50%;
  background: inherit;
  content: "";
}

.hero__cloud--one {
  top: 160px;
  left: -70px;
  width: 310px;
  height: 130px;
}

.hero__cloud--one::before { top: -48px; left: 60px; width: 150px; height: 150px; }
.hero__cloud--one::after { top: -18px; right: -70px; width: 170px; height: 170px; }

.hero__cloud--two {
  right: 18%;
  bottom: 42px;
  width: 420px;
  height: 110px;
  opacity: 0.72;
}

.hero__cloud--two::before { top: -70px; left: 45px; width: 210px; height: 190px; }
.hero__cloud--two::after { top: -35px; right: 20px; width: 210px; height: 180px; }

.sculpt {
  position: absolute;
  z-index: 1;
  width: 112px;
  height: 58px;
  border: 18px solid;
  border-radius: 50%;
  filter: drop-shadow(0 18px 18px rgba(63, 62, 123, 0.12));
}

.sculpt--hero-one {
  top: 96px;
  right: 28%;
  border-color: #ffe790;
  transform: rotate(-24deg);
}

.sculpt--hero-two {
  bottom: 58px;
  left: -18px;
  border-color: #a8ead4;
  transform: rotate(-34deg);
}

.module-marquee {
  position: absolute;
  z-index: 9;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-block: 1px solid rgba(23, 21, 46, 0.16);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
}

.module-marquee__track {
  display: flex;
  width: max-content;
  min-height: 58px;
  align-items: center;
  gap: 28px;
  padding-inline: 28px;
  animation: marquee 24s linear infinite;
}

.module-marquee span {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.module-marquee i {
  width: 30px;
  height: 2px;
  background: var(--blue);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Module story */
.module-story {
  position: relative;
  padding: 150px 0 190px;
  background:
    radial-gradient(circle at 20% 8%, rgba(205, 235, 255, 0.55), transparent 22%),
    radial-gradient(circle at 84% 10%, rgba(255, 217, 203, 0.42), transparent 22%),
    var(--white);
}

.module-story__intro {
  display: grid;
  grid-template-columns: 1fr 2.1fr 1fr;
  align-items: end;
  gap: 42px;
  margin-bottom: 88px;
}

.module-story__intro .section-index {
  align-self: start;
}

.module-story__intro h2,
.configuration-scene h2,
.outcomes h2,
.credential-trust h2,
.closing h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 6vw, 96px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.9;
  text-transform: uppercase;
}

.module-story__intro p:last-child {
  margin: 0;
  color: rgba(23, 21, 46, 0.64);
  font-size: 17px;
}

.module-jumps {
  position: sticky;
  z-index: 40;
  top: 95px;
  display: flex;
  width: fit-content;
  margin: 0 auto 26px;
  padding: 7px;
  border: 1px solid rgba(23, 21, 46, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 38px rgba(52, 55, 111, 0.1);
  backdrop-filter: blur(20px);
}

.module-jumps a {
  padding: 9px 15px;
  border-radius: 10px;
  color: rgba(23, 21, 46, 0.5);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.module-jumps a.is-active {
  color: var(--white);
  background: var(--ink);
}

.module-stack {
  position: relative;
}

.module-card {
  position: sticky;
  top: 160px;
  display: grid;
  min-height: 680px;
  grid-template-columns: 0.37fr 0.63fr;
  overflow: hidden;
  margin-bottom: 18vh;
  border: 1px solid rgba(23, 21, 46, 0.12);
  border-radius: 44px 14px 44px 44px;
  box-shadow: 0 34px 90px rgba(47, 48, 92, 0.16);
  isolation: isolate;
}

.module-card:last-child {
  margin-bottom: 0;
}

.module-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(23, 21, 46, 0.06) 0.7px, transparent 0.7px);
  background-size: 14px 14px;
  content: "";
  opacity: 0.35;
}

.module-card--erp { z-index: 1; background: linear-gradient(135deg, #fff9cd, var(--butter)); }
.module-card--sis { z-index: 2; background: linear-gradient(135deg, #eafff3, var(--mint)); }
.module-card--lms { z-index: 3; background: linear-gradient(135deg, #f4efff, var(--lilac)); }
.module-card--exams { z-index: 4; background: linear-gradient(135deg, #edf8ff, var(--sky)); }
.module-card--credentials { z-index: 5; background: linear-gradient(135deg, #fff2ee, var(--peach)); }

.module-card__copy {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5.8vw, 88px);
}

.module-card__number {
  position: absolute;
  z-index: -1;
  top: 34px;
  left: 38px;
  color: rgba(23, 21, 46, 0.08);
  font-family: var(--display);
  font-size: 150px;
  font-weight: 800;
  line-height: 1;
}

.module-card__name {
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.module-card h3 {
  max-width: 430px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(50px, 4.7vw, 74px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.92;
  text-transform: uppercase;
}

.module-card__copy > p {
  max-width: 390px;
  margin: 25px 0 0;
  color: rgba(23, 21, 46, 0.66);
  font-size: 17px;
}

.module-card__link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 34px;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 700;
}

.module-card__visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.screen-frame {
  overflow: hidden;
  border: 9px solid rgba(255, 255, 255, 0.86);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-screen);
}

.screen-frame img {
  width: 100%;
}

.screen-frame__bar small {
  margin-left: auto;
  color: rgba(23, 21, 46, 0.46);
  font-size: 10px;
}

.screen-frame--erp {
  position: absolute;
  top: 87px;
  right: -54px;
  width: 830px;
  transform: rotate(-1.5deg);
}

.float-note {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  padding: 19px 22px;
  border: 1px solid rgba(23, 21, 46, 0.1);
  border-radius: 18px 6px 18px 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(48, 47, 88, 0.14);
}

.float-note--erp {
  right: 46px;
  bottom: 48px;
}

.float-note span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.float-note strong {
  margin-top: 4px;
  font-size: 14px;
}

.sis-visual::before {
  position: absolute;
  width: 470px;
  height: 470px;
  border: 58px solid rgba(77, 91, 255, 0.12);
  border-radius: 50%;
  content: "";
  inset: 80px auto auto 32%;
}

.sis-phone {
  position: absolute;
  filter: drop-shadow(0 30px 35px rgba(39, 54, 86, 0.22));
}

.sis-phone--primary {
  z-index: 2;
  bottom: -130px;
  left: 25%;
  width: 320px;
  transform: rotate(-3deg);
}

.sis-phone--secondary {
  right: 4%;
  bottom: -36px;
  width: 260px;
  transform: rotate(8deg);
}

.student-thread,
.exam-route,
.learning-rhythm {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(23, 21, 46, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(46, 55, 93, 0.12);
  backdrop-filter: blur(8px);
}

.student-thread {
  top: 62px;
  right: 44px;
}

.student-thread span,
.exam-route span,
.learning-rhythm span {
  font-size: 10px;
  font-weight: 700;
}

.student-thread i,
.exam-route i {
  width: 22px;
  height: 1px;
  background: var(--blue);
}

.screen-frame--lms {
  position: absolute;
  top: 78px;
  right: -70px;
  width: 860px;
  transform: rotate(1.8deg);
}

.learning-rhythm {
  right: 40px;
  bottom: 42px;
  gap: 6px;
}

.learning-rhythm span {
  padding: 8px 11px;
  border-radius: 8px;
  background: rgba(220, 206, 255, 0.75);
}

.learning-rhythm span:nth-child(2) { background: rgba(191, 241, 213, 0.8); }
.learning-rhythm span:nth-child(3) { background: rgba(255, 240, 155, 0.84); }

.screen-frame--exam-one,
.screen-frame--exam-two {
  position: absolute;
  width: 700px;
}

.screen-frame--exam-one {
  z-index: 2;
  top: 60px;
  right: -52px;
  transform: rotate(-1.5deg);
}

.screen-frame--exam-two {
  z-index: 1;
  right: 90px;
  bottom: -160px;
  transform: rotate(4deg);
  opacity: 0.75;
}

.exam-route {
  z-index: 4;
  right: 58px;
  bottom: 42px;
}

.credentials-visual {
  display: grid;
  place-items: center;
}

.digital-credential {
  position: relative;
  z-index: 3;
  width: min(650px, 84%);
  min-height: 400px;
  padding: 42px;
  border: 1px solid rgba(23, 21, 46, 0.1);
  border-radius: 36px 10px 36px 36px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-screen);
  transition: transform 240ms ease;
}

.digital-credential:hover {
  transform: translateY(-5px) rotate(-0.5deg);
}

.digital-credential__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.credential-seal--large {
  width: 66px;
  height: 74px;
}

.digital-credential__state {
  padding: 8px 11px;
  border-radius: 8px;
  color: #168963;
  background: rgba(191, 241, 213, 0.72);
  font-size: 11px;
  font-weight: 700;
}

.digital-credential > small {
  display: block;
  margin-top: 42px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.digital-credential h4 {
  margin: 8px 0 3px;
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
  text-transform: uppercase;
}

.digital-credential > p {
  margin: 0;
  color: rgba(23, 21, 46, 0.52);
}

.digital-credential__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(23, 21, 46, 0.09);
}

.digital-credential__bottom span {
  color: rgba(23, 21, 46, 0.54);
  font-size: 11px;
}

.credential-detail-button {
  position: static;
  display: inline-flex;
  margin-top: 22px;
  padding: 0;
  color: var(--blue-deep);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.credential-detail {
  position: static;
  width: 100%;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(23, 21, 46, 0.1);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(41, 41, 85, 0.17);
}

.credential-detail span,
.credential-detail strong,
.credential-detail small {
  display: block;
}

.credential-detail span {
  color: rgba(23, 21, 46, 0.5);
  font-size: 10px;
  text-transform: uppercase;
}

.credential-detail strong {
  margin-top: 4px;
  color: #188c66;
  font-size: 13px;
}

.credential-detail small {
  margin-top: 5px;
  color: rgba(23, 21, 46, 0.55);
  font-size: 9px;
}

.credential-loop {
  position: absolute;
  z-index: 1;
  right: -70px;
  bottom: -60px;
  width: 380px;
  height: 220px;
  border: 38px solid rgba(77, 91, 255, 0.35);
  border-radius: 50%;
  transform: rotate(-18deg);
}

/* Physical products and Have Fun */
.product-world {
  position: relative;
  overflow: hidden;
  padding: 145px 0 160px;
  background:
    radial-gradient(circle at 92% 4%, rgba(220, 206, 255, 0.45), transparent 23%),
    radial-gradient(circle at 2% 51%, rgba(191, 241, 213, 0.42), transparent 25%),
    #faf9ff;
}

.product-world::before {
  position: absolute;
  top: 56px;
  right: -120px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(77, 91, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.product-world__intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.75fr 1.75fr 0.95fr;
  align-items: end;
  gap: 44px;
  margin-bottom: 80px;
}

.product-world__intro .section-index {
  align-self: start;
}

.product-world__intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 6vw, 94px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.88;
  text-transform: uppercase;
}

.product-world__intro > p:last-child {
  margin: 0;
  color: rgba(23, 21, 46, 0.64);
  font-size: 16px;
  line-height: 1.65;
}

.product-world__stories {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
}

.product-world__story {
  display: grid;
  min-height: 590px;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  border: 1px solid rgba(23, 21, 46, 0.12);
  border-radius: 44px 14px 44px 44px;
  background: var(--white);
  box-shadow: 0 26px 68px rgba(47, 48, 92, 0.1);
}

.product-world__story--have-fun {
  grid-template-columns: 0.9fr 1.1fr;
  border-radius: 14px 44px 44px 44px;
}

.product-world__media {
  position: relative;
  min-width: 0;
  min-height: 470px;
  overflow: hidden;
  background: var(--lilac);
}

.product-world__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-world__story--identity .product-world__media img {
  object-fit: contain;
}

.product-world__media-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 10px 13px;
  border: 1px solid rgba(23, 21, 46, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(41, 41, 85, 0.12);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.product-world__copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 5vw, 76px);
}

.product-world__number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(23, 21, 46, 0.13);
  border-radius: 50%;
  color: var(--blue);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
}

.product-world__copy h3,
.product-world__device-rail h3 {
  max-width: 520px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(46px, 4.5vw, 70px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-transform: uppercase;
}

.product-world__copy > p,
.product-world__device-rail p {
  max-width: 550px;
  margin: 24px 0 0;
  color: rgba(23, 21, 46, 0.65);
  font-size: 16px;
  line-height: 1.65;
}

.product-world__copy ul {
  display: grid;
  gap: 9px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.product-world__copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
}

.product-world__copy li::before {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #168963;
  background: var(--mint);
  content: "✓";
  font-size: 10px;
}

.product-world__copy .text-link,
.product-world__device-rail .text-link {
  margin-top: 32px;
}

.product-world__route {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.product-world__route span {
  padding: 8px 10px;
  border-radius: 9px;
  background: var(--lilac);
  font-size: 10px;
  font-weight: 700;
}

.product-world__route span:nth-of-type(2) { background: var(--mint); }
.product-world__route span:nth-of-type(3) { background: var(--butter); }
.product-world__route span:nth-of-type(4) { background: var(--sky); }

.product-world__route i {
  width: 20px;
  height: 1px;
  background: rgba(23, 21, 46, 0.24);
}

.product-world__device-rail {
  position: relative;
  display: grid;
  min-height: 400px;
  grid-template-columns: 0.92fr 0.78fr;
  align-items: center;
  overflow: hidden;
  padding: 55px 58px;
  border: 1px solid rgba(23, 21, 46, 0.12);
  border-radius: 34px 12px 34px 34px;
  background: linear-gradient(110deg, var(--sky), #f2efff 58%, var(--peach));
}

.product-world__device-rail > div:first-child {
  position: relative;
  z-index: 2;
}

.product-world__device-rail img {
  position: absolute;
  right: -20px;
  bottom: -78px;
  width: 58%;
  height: 118%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-world__device-rail h3 {
  max-width: 610px;
}

.product-world__device-tags {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 24px;
  display: flex;
  gap: 7px;
}

.product-world__device-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(23, 21, 46, 0.1);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.84);
  font-size: 10px;
  font-weight: 700;
}

/* Configuration */
.configuration-scene {
  position: relative;
  min-height: 1050px;
  overflow: hidden;
  padding: 150px 0 95px;
  background:
    radial-gradient(circle at 7% 40%, rgba(255, 240, 155, 0.9), transparent 35%),
    radial-gradient(circle at 87% 24%, rgba(205, 235, 255, 0.95), transparent 40%),
    linear-gradient(120deg, #fff6c9, #fdfcf8 47%, #d9f1ff);
}

.configuration-scene__grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 0.43fr 0.57fr;
  align-items: center;
  gap: 25px;
}

.configuration-scene__copy {
  padding-right: 24px;
}

.configuration-scene h2 {
  max-width: 640px;
}

.configuration-scene h2 em {
  display: block;
  color: var(--blue);
  font-style: normal;
}

.configuration-scene__copy > p:not(.section-index) {
  max-width: 540px;
  margin: 30px 0;
  color: rgba(23, 21, 46, 0.68);
  font-size: 19px;
}

.workflow-stage {
  position: relative;
  min-height: 660px;
}

.workflow-stage__lines {
  position: absolute;
  inset: 38px 0 0;
  width: 100%;
  height: 610px;
}

.workflow-stage__lines path {
  stroke: rgba(77, 91, 255, 0.6);
  stroke-dasharray: 10 8;
  stroke-linecap: round;
  stroke-width: 5;
  animation: orbit-dash 16s linear infinite;
}

.workflow-node {
  position: absolute;
  z-index: 3;
  display: flex;
  width: 188px;
  min-height: 126px;
  align-items: flex-start;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(23, 21, 46, 0.11);
  border-radius: 24px 8px 24px 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 19px 45px rgba(54, 56, 107, 0.14);
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.workflow-node:hover,
.workflow-node:focus-visible,
.workflow-node.is-active {
  transform: translateY(-5px);
  box-shadow: 0 26px 55px rgba(54, 56, 107, 0.2);
}

.workflow-node.is-active {
  background: #f3efff;
  outline: 3px solid rgba(77, 91, 255, 0.12);
}

.workflow-node span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 9px;
  color: var(--blue);
  background: rgba(77, 91, 255, 0.1);
  font-size: 10px;
  font-weight: 800;
}

.workflow-node strong {
  margin-top: 12px;
  font-size: 16px;
}

.workflow-node small {
  margin-top: 2px;
  color: rgba(23, 21, 46, 0.48);
  font-size: 10px;
}

.workflow-node--fees { top: 56px; left: 50px; }
.workflow-node--approval { top: 185px; left: 304px; }
.workflow-node--payment { bottom: 122px; left: 190px; }
.workflow-node--ledger { top: 78px; right: 28px; }

.workflow-detail {
  position: absolute;
  z-index: 4;
  right: 12px;
  bottom: 65px;
  width: 270px;
  padding: 23px;
  border: 1px solid rgba(23, 21, 46, 0.1);
  border-radius: 24px 8px 24px 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 54px rgba(52, 57, 104, 0.16);
}

.workflow-detail > span {
  color: #1a966e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workflow-detail strong {
  display: block;
  margin-top: 8px;
  font-size: 17px;
}

.workflow-detail p {
  margin: 5px 0 0;
  color: rgba(23, 21, 46, 0.56);
  font-size: 11px;
}

.workflow-phone {
  position: absolute;
  z-index: 2;
  filter: drop-shadow(0 25px 28px rgba(45, 56, 95, 0.2));
  pointer-events: none;
}

.workflow-phone--fees {
  bottom: -86px;
  left: -86px;
  width: 190px;
  transform: rotate(-8deg);
}

.workflow-phone--calendar {
  right: -124px;
  bottom: 80px;
  width: 174px;
  transform: rotate(6deg);
}

.configuration-note {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 20px;
  margin-top: 85px;
  padding: 18px 26px;
  border: 1px solid rgba(23, 21, 46, 0.1);
  border-radius: 25px 8px 25px 25px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 44px rgba(57, 57, 102, 0.1);
  backdrop-filter: blur(12px);
}

.configuration-note__icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px 4px 14px 14px;
  color: var(--white);
  background: linear-gradient(145deg, var(--lilac), var(--blue));
  font-weight: 800;
}

.configuration-note p {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
}

/* Named customer evidence */
.customer-proof {
  padding: 58px 0;
  background: #17152e;
}

.customer-proof__inner {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) repeat(2, minmax(250px, 0.62fr));
  align-items: stretch;
  gap: 18px;
}

.customer-proof__copy {
  padding: 22px 36px 22px 0;
}

.customer-proof__copy .section-index {
  color: #a8f0d1;
}

.customer-proof__copy h2 {
  max-width: 550px;
  margin: 17px 0 25px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(38px, 3.7vw, 58px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.98;
  text-transform: uppercase;
}

.customer-proof__copy .text-link {
  color: #fff;
}

.customer-mark {
  display: grid;
  min-height: 190px;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 22px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px 8px 24px 24px;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.customer-mark:hover,
.customer-mark:focus-visible {
  border-color: rgba(168, 240, 209, 0.48);
  background: rgba(255, 255, 255, 0.085);
  transform: translateY(-3px);
}

.customer-mark img {
  width: 100px;
  height: 100px;
  padding: 8px;
  border-radius: 16px 5px 16px 16px;
  background: #fff;
  object-fit: contain;
}

.customer-mark span,
.customer-mark strong,
.customer-mark small {
  display: block;
}

.customer-mark strong {
  font-size: 15px;
}

.customer-mark small {
  margin-top: 9px;
  color: #a8f0d1;
  font-size: 11px;
  line-height: 1.45;
}

/* Outcomes */
.outcomes {
  padding: 150px 0;
  background: var(--white);
}

.outcomes__heading {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 88px;
}

.outcomes h2 {
  max-width: 850px;
}

.outcome-row {
  display: grid;
  min-height: 230px;
  grid-template-columns: 0.6fr 1.45fr 0.55fr;
  align-items: center;
  gap: 38px;
  border-top: 2px solid rgba(77, 91, 255, 0.22);
}

.outcome-row:last-child {
  border-bottom: 2px solid rgba(77, 91, 255, 0.22);
}

.outcome-row__metric strong,
.outcome-row__metric span {
  display: block;
}

.outcome-row__metric strong {
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(76px, 7vw, 112px);
  line-height: 0.8;
}

.outcome-row__metric span {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 600;
}

.outcome-row blockquote {
  position: relative;
  margin: 0;
  padding-left: 46px;
  font-size: clamp(21px, 2.1vw, 31px);
  line-height: 1.35;
}

.outcome-row blockquote::before {
  position: absolute;
  top: -15px;
  left: 0;
  color: rgba(77, 91, 255, 0.28);
  content: "“";
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 1;
}

.outcome-row__person {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 2px 14px;
}

.outcome-row__person img {
  width: 60px;
  height: 60px;
  grid-row: span 2;
  border-radius: 16px 5px 16px 16px;
  object-fit: cover;
}

.outcome-row__person span {
  align-self: end;
  font-size: 13px;
  font-weight: 700;
}

.outcome-row__person small {
  align-self: start;
  color: rgba(23, 21, 46, 0.52);
  font-size: 11px;
}

/* Trust */
.credential-trust {
  position: relative;
  overflow: hidden;
  padding: 150px 0 100px;
  background:
    radial-gradient(circle at 10% 70%, rgba(191, 241, 213, 0.72), transparent 26%),
    radial-gradient(circle at 84% 22%, rgba(220, 206, 255, 0.85), transparent 34%),
    linear-gradient(125deg, #fff0eb, #f7edff);
}

.credential-trust__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 80px;
}

.credential-trust__copy > p:not(.section-index) {
  max-width: 590px;
  margin: 30px 0;
  color: rgba(23, 21, 46, 0.66);
  font-size: 19px;
}

.trust-visual {
  position: relative;
  display: grid;
  min-height: 460px;
  grid-template-columns: 170px 70px 1fr;
  align-items: center;
}

.trust-core {
  display: grid;
  width: 170px;
  height: 170px;
  place-items: center;
  border: 1px solid rgba(23, 21, 46, 0.1);
  border-radius: 42px 12px 42px 42px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 50px rgba(53, 54, 102, 0.14);
}

.trust-core img {
  width: 120px;
}

.trust-connector {
  position: relative;
  height: 3px;
  background: rgba(77, 91, 255, 0.4);
}

.trust-connector::before,
.trust-connector::after {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
  content: "";
  transform: translateY(-50%);
}

.trust-connector::before { left: -5px; }
.trust-connector::after { right: -5px; }

.trust-credential {
  display: grid;
  min-height: 250px;
  grid-template-columns: 72px 1fr 72px;
  align-items: center;
  gap: 22px;
  padding: 38px;
  border: 1px solid rgba(23, 21, 46, 0.1);
  border-radius: 34px 10px 34px 34px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-screen);
}

.trust-credential small,
.trust-credential strong,
.trust-credential span {
  display: block;
}

.trust-credential small {
  color: #168963;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.trust-credential strong {
  margin-top: 8px;
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.trust-credential span {
  margin-top: 8px;
  color: rgba(23, 21, 46, 0.5);
  font-size: 12px;
}

.assurance-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) repeat(3, minmax(150px, 0.65fr));
  gap: 12px;
  margin-top: 70px;
  padding: 16px;
  border: 1px solid rgba(23, 21, 46, 0.12);
  border-radius: 26px 9px 26px 26px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 50px rgba(57, 57, 102, 0.1);
  backdrop-filter: blur(16px);
}

.assurance-strip__intro,
.assurance-strip > a {
  display: flex;
  min-height: 102px;
  justify-content: center;
  flex-direction: column;
  padding: 18px 20px;
}

.assurance-strip__intro strong {
  font-size: 14px;
}

.assurance-strip__intro span {
  margin-top: 7px;
  color: rgba(23, 21, 46, 0.58);
  font-size: 11px;
  line-height: 1.45;
}

.assurance-strip > a {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  justify-content: initial;
  column-gap: 14px;
  border: 1px solid rgba(77, 91, 255, 0.13);
  border-radius: 16px 5px 16px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  transition: border-color 180ms ease, transform 180ms ease;
}

.assurance-strip__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(23, 21, 46, 0.15);
  border-radius: 50%;
  color: #315c67;
  background: #f8fbfa;
}

.assurance-strip__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
}

.assurance-strip > a > span:last-child { display: grid; min-width: 0; }

.assurance-strip > a:hover,
.assurance-strip > a:focus-visible {
  border-color: rgba(77, 91, 255, 0.42);
  transform: translateY(-2px);
}

.assurance-strip b {
  color: var(--blue);
  font-family: var(--display);
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.assurance-strip small {
  margin-top: 8px;
  color: rgba(23, 21, 46, 0.58);
  font-size: 9px;
}

.assurance-strip > p {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0 18px 4px;
  color: rgba(23, 21, 46, 0.5);
  font-size: 10px;
  line-height: 1.5;
}

.proof-facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
  border-block: 1px solid rgba(23, 21, 46, 0.12);
}

.proof-facts div {
  display: flex;
  min-height: 128px;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.proof-facts div + div {
  border-left: 1px solid rgba(23, 21, 46, 0.12);
}

.proof-facts strong {
  color: var(--blue);
  font-family: var(--display);
  font-size: 60px;
  line-height: 1;
}

.proof-facts span {
  max-width: 110px;
  font-size: 14px;
  line-height: 1.3;
}

.sculpt--trust-one {
  right: 8%;
  top: 45px;
  border-color: #ffe190;
  transform: rotate(24deg);
}

.sculpt--trust-two {
  bottom: 78px;
  left: -35px;
  border-color: #9ee6cd;
  transform: rotate(-27deg);
}

/* Editorial field notes */
.insights-preview {
  padding: 68px 0 72px;
  background: #f8f9ff;
}

.insights-preview__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 30px;
}

.insights-preview__heading h2 {
  max-width: 840px;
  margin: 20px 0 0;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-transform: none;
}

.insights-preview__heading > .text-link {
  flex: 0 0 auto;
  margin-bottom: 7px;
}

.insights-preview__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid rgba(23, 21, 46, 0.13);
}

.insight-teaser {
  position: relative;
  display: grid;
  min-height: 150px;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 10px;
  padding: 22px 26px;
  border-right: 1px solid rgba(23, 21, 46, 0.13);
  color: var(--ink);
  transition: background 180ms ease, padding 180ms ease;
}

.insight-teaser::before {
  position: absolute;
  top: 22px;
  right: 22px;
  left: auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teaser-accent, var(--blue));
  content: "";
}

.insight-teaser:hover,
.insight-teaser:focus-visible {
  padding-inline: 30px 22px;
  background: #fff;
}

.insight-teaser:last-child { border-right: 0; }

.insight-teaser--sis { --teaser-accent: #4d5bff; }
.insight-teaser--lms { --teaser-accent: #8b63e8; }
.insight-teaser--attendance { --teaser-accent: #18a878; }

.insight-teaser > span {
  color: var(--teaser-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.insight-teaser h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.insight-teaser p {
  display: none;
}

.insight-teaser i {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.insight-teaser i svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

/* Closing and footer */
.closing {
  position: relative;
  overflow: hidden;
  padding-top: 130px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 3%, rgba(77, 91, 255, 0.36), transparent 34%),
    linear-gradient(145deg, #17152e, #0b1644);
}

.closing__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  align-items: end;
  gap: 80px;
  padding-bottom: 120px;
}

.closing h2 {
  max-width: 780px;
  color: var(--white);
}

.closing__copy p {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 18px;
}

.closing__actions {
  display: grid;
  gap: 14px;
}

.closing__orb {
  position: absolute;
  border: 34px solid;
  border-radius: 50%;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.25));
}

.closing__orb--one {
  top: -80px;
  right: 3%;
  width: 230px;
  height: 230px;
  border-color: rgba(122, 134, 255, 0.7);
}

.closing__orb--two {
  top: 330px;
  right: 23%;
  width: 70px;
  height: 70px;
  border-width: 17px;
  border-color: rgba(191, 241, 213, 0.72);
}

.home-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.home-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.6fr);
  gap: 60px;
  padding: 72px 0;
}

.home-footer__brand img {
  width: 190px;
  filter: brightness(0) invert(1);
}

.home-footer__brand p {
  max-width: 300px;
  margin: 22px 0 5px;
  color: rgba(255, 255, 255, 0.72);
}

.home-footer__brand span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.home-footer h3 {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-footer__grid > div:not(.home-footer__brand) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.home-footer__grid a {
  margin-block: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.home-footer__grid a:hover,
.home-footer__grid a:focus-visible {
  color: var(--white);
}

.home-footer__bottom {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.home-footer__bottom a {
  color: rgba(255, 255, 255, 0.72);
}

/* Responsive */
@media (max-width: 1280px) {
  .hero {
    min-height: 900px;
  }

  .hero__grid {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .hero-product {
    width: 730px;
    height: 630px;
    transform: translate3d(calc(var(--mouse-x, 0) * 8px), calc(var(--mouse-y, 0) * 6px), 0) scale(0.9);
    transform-origin: left center;
  }

  .product-browser {
    width: 650px;
  }

  .module-card {
    min-height: 630px;
  }

  .workflow-phone--calendar {
    right: -50px;
  }
}

@media (max-width: 1080px) {
  .shell {
    width: min(calc(100% - 40px), var(--shell));
  }

  .home-nav__inner {
    grid-template-columns: 180px 1fr auto;
  }

  .home-nav__links {
    gap: 20px;
  }

  .home-nav__actions {
    gap: 15px;
  }

  .hero {
    min-height: 1140px;
    padding-top: 128px;
  }

  .hero__grid {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__copy {
    max-width: 800px;
    min-width: 0;
    padding-bottom: 0;
  }

  .hero-product {
    width: 850px;
    min-width: 0;
    margin: -20px auto 40px;
    transform: scale(0.92);
    transform-origin: center top;
  }

  .module-story__intro {
    grid-template-columns: 1fr 2fr;
  }

  .module-story__intro p:last-child {
    grid-column: 2;
  }

  .module-card {
    grid-template-columns: 0.42fr 0.58fr;
  }

  .module-card__copy {
    padding: 52px;
  }

  .screen-frame--erp,
  .screen-frame--lms {
    width: 730px;
  }

  .configuration-scene__grid,
  .credential-trust__grid {
    grid-template-columns: 1fr;
  }

  .product-world__intro {
    grid-template-columns: 0.7fr 1.6fr;
  }

  .product-world__intro > p:last-child {
    grid-column: 2;
  }

  .product-world__story,
  .product-world__story--have-fun {
    grid-template-columns: 1fr 1fr;
  }

  .configuration-scene__copy,
  .credential-trust__copy {
    max-width: 820px;
  }

  .workflow-stage {
    width: min(100%, 820px);
    margin-inline: auto;
  }

  .trust-visual {
    width: min(100%, 850px);
    margin-inline: auto;
  }

  .customer-proof__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-proof__copy {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .assurance-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .assurance-strip__intro {
    grid-column: 1 / -1;
  }

  .insight-teaser {
    grid-template-columns: 1fr;
  }

  .insight-teaser i {
    grid-column: 1;
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .home-nav__links,
  .home-nav__actions {
    display: none;
  }

  .home-nav__inner {
    min-height: 76px;
    grid-template-columns: 1fr auto;
  }

  .home-nav__logo img {
    width: 148px;
  }

  .home-nav__toggle {
    display: grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(23, 21, 46, 0.1);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.66);
  }

  .home-nav__toggle span:not(.sr-only) {
    width: 21px;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .home-nav__toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .home-nav__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .home-nav__mobile {
    position: fixed;
    inset: 76px 0 auto;
    display: flex;
    max-height: 0;
    overflow: hidden;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding-inline: 20px;
    background: rgba(247, 244, 255, 0.98);
    opacity: 0;
    transition: max-height 260ms ease, opacity 180ms ease, padding 260ms ease;
  }

  .home-nav__mobile.is-open {
    max-height: calc(100vh - 76px);
    padding-block: 22px 34px;
    opacity: 1;
  }

  .home-nav__mobile > a:not(.button) {
    padding: 16px 4px;
    border-bottom: 1px solid rgba(23, 21, 46, 0.08);
    font-family: var(--display);
    font-size: 29px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .home-nav__mobile .button {
    margin-top: 20px;
  }

  .hero {
    min-height: 1050px;
    padding-top: 112px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(58px, 12.5vw, 86px);
  }

  .hero-product {
    width: 720px;
    height: 570px;
    margin-left: 50%;
    transform: translateX(-50%) scale(0.78);
    transform-origin: center top;
  }

  .module-story {
    padding-block: 110px 130px;
  }

  .module-story__intro,
  .outcomes__heading {
    grid-template-columns: 1fr;
  }

  .product-world {
    padding-block: 110px 125px;
  }

  .product-world__intro {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 55px;
  }

  .product-world__intro > p:last-child {
    grid-column: auto;
    max-width: 620px;
  }

  .product-world__story,
  .product-world__story--have-fun {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .product-world__story--have-fun .product-world__copy {
    order: 2;
  }

  .product-world__media {
    min-height: 450px;
  }

  .product-world__copy {
    padding: 48px;
  }

  .product-world__device-rail {
    min-height: 650px;
    grid-template-columns: 1fr;
    align-items: start;
    padding: 50px;
  }

  .product-world__device-rail img {
    right: 0;
    bottom: -60px;
    width: 100%;
    height: 70%;
  }

  .module-story__intro p:last-child {
    grid-column: auto;
  }

  .module-jumps {
    top: 78px;
    width: calc(100% - 30px);
    overflow-x: auto;
    justify-content: flex-start;
  }

  .module-jumps a {
    flex: 0 0 auto;
  }

  .module-card {
    top: 145px;
    min-height: 740px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    border-radius: 32px 10px 32px 32px;
  }

  .module-card__copy {
    padding: 38px 38px 18px;
  }

  .module-card__number {
    top: 12px;
    right: 25px;
    left: auto;
    font-size: 110px;
  }

  .module-card h3 {
    font-size: 56px;
  }

  .module-card__copy > p {
    margin-top: 14px;
    font-size: 15px;
  }

  .module-card__link {
    margin-top: 18px;
  }

  .screen-frame--erp,
  .screen-frame--lms {
    top: 28px;
    right: -35px;
    width: 690px;
  }

  .sis-phone--primary {
    bottom: -130px;
    left: 15%;
    width: 270px;
  }

  .sis-phone--secondary {
    right: 8%;
    width: 220px;
  }

  .student-thread {
    top: 20px;
  }

  .digital-credential {
    width: calc(100% - 50px);
    min-height: 360px;
    padding: 28px;
  }

  .credential-detail-button {
    margin-top: 18px;
  }

  .credential-detail {
    margin-top: 12px;
  }

  .configuration-scene {
    padding-top: 110px;
  }

  .workflow-phone--calendar {
    display: none;
  }

  .outcome-row {
    grid-template-columns: 0.55fr 1.45fr;
  }

  .outcome-row__person {
    grid-column: 2;
    margin-bottom: 26px;
  }

  .proof-facts strong {
    font-size: 48px;
  }

  .assurance-strip {
    grid-template-columns: 1fr;
  }

  .assurance-strip__intro,
  .assurance-strip > p {
    grid-column: 1;
  }

  .insights-preview__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .insights-preview__list {
    grid-template-columns: 1fr;
  }

  .insight-teaser {
    min-height: 118px;
    grid-template-columns: 1fr;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 21, 46, 0.13);
  }

  .insight-teaser p,
  .insight-teaser i {
    grid-column: 1;
  }

  .closing__grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .closing__actions {
    max-width: 420px;
  }

  .home-footer__grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .home-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .hero {
    min-height: 930px;
    padding-top: 94px;
  }

  .hero h1 {
    font-size: clamp(50px, 15.1vw, 72px);
  }

  .hero h1 span:first-child {
    white-space: normal;
  }

  .hero__lede {
    margin-top: 22px;
    font-size: 16px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero__actions .text-link {
    justify-content: center;
  }

  .hero__trust {
    align-items: flex-start;
    margin-top: 24px;
  }

  .hero-product {
    width: 680px;
    height: 520px;
    margin-top: 0;
    transform: translateX(-50%) scale(0.55);
  }

  .customer-proof {
    padding: 70px 0;
  }

  .customer-proof__inner {
    grid-template-columns: 1fr;
  }

  .customer-proof__copy {
    grid-column: 1;
    padding: 0 0 22px;
  }

  .customer-mark {
    min-height: 150px;
    grid-template-columns: 82px 1fr;
    padding: 20px;
  }

  .customer-mark img {
    width: 82px;
    height: 82px;
  }

  .module-story__intro h2,
  .configuration-scene h2,
  .outcomes h2,
  .credential-trust h2,
  .insights-preview__heading h2,
  .product-world__intro h2,
  .closing h2 {
    font-size: clamp(54px, 15vw, 72px);
  }

  .insights-preview {
    padding: 62px 0;
  }

  .insights-preview__heading {
    gap: 25px;
    margin-bottom: 44px;
  }

  .insight-teaser {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 18px;
  }

  .insight-teaser p,
  .insight-teaser i {
    grid-column: 1;
  }

  .insight-teaser:hover,
  .insight-teaser:focus-visible {
    padding-inline: 23px 13px;
  }

  .insights-preview__heading h2 { font-size: clamp(30px, 9vw, 40px); }

  .product-world {
    padding-block: 90px 100px;
  }

  .product-world__intro {
    margin-bottom: 42px;
  }

  .product-world__media {
    min-height: 300px;
  }

  .product-world__copy {
    padding: 34px 25px 42px;
  }

  .product-world__copy h3,
  .product-world__device-rail h3 {
    font-size: 46px;
  }

  .product-world__device-rail {
    min-height: 630px;
    padding: 38px 25px;
  }

  .product-world__device-rail img {
    bottom: -25px;
    height: 56%;
  }

  .product-world__device-tags {
    right: 15px;
    bottom: 16px;
    left: 15px;
    justify-content: center;
  }

  .module-story__intro {
    gap: 20px;
    margin-bottom: 55px;
  }

  .module-jumps {
    margin-bottom: 14px;
  }

  .module-card {
    top: 132px;
    min-height: 700px;
    margin-bottom: 14vh;
  }

  .module-card__copy {
    padding: 28px 25px 10px;
  }

  .module-card__number {
    font-size: 85px;
  }

  .module-card h3 {
    font-size: 48px;
  }

  .module-card__visual {
    min-height: 390px;
  }

  .screen-frame--erp,
  .screen-frame--lms {
    top: 30px;
    right: -115px;
    width: 620px;
  }

  .float-note {
    display: none;
  }

  .sis-phone--primary {
    left: 5%;
    width: 245px;
  }

  .sis-phone--secondary {
    right: -2%;
    width: 190px;
  }

  .student-thread,
  .learning-rhythm {
    display: none;
  }

  .screen-frame--exam-one,
  .screen-frame--exam-two {
    width: 570px;
  }

  .screen-frame--exam-one {
    right: -165px;
  }

  .screen-frame--exam-two {
    right: -40px;
  }

  .exam-route {
    right: 14px;
  }

  .digital-credential {
    min-height: 350px;
    padding: 22px;
  }

  .digital-credential h4 {
    font-size: 36px;
  }

  .digital-credential__bottom {
    margin-top: 32px;
  }

  .configuration-scene {
    min-height: 1220px;
    padding-bottom: 70px;
  }

  .configuration-scene__copy > p:not(.section-index) {
    font-size: 16px;
  }

  .configuration-scene__copy .button {
    width: 100%;
  }

  .workflow-stage {
    min-height: 690px;
    margin-top: 35px;
  }

  .workflow-stage__lines {
    display: none;
  }

  .workflow-node {
    width: calc(50% - 8px);
    min-height: 116px;
  }

  .workflow-node--fees { top: 20px; left: 0; }
  .workflow-node--approval { top: 20px; right: 0; left: auto; }
  .workflow-node--payment { top: 153px; bottom: auto; left: 0; }
  .workflow-node--ledger { top: 153px; right: 0; }

  .workflow-detail {
    right: 0;
    bottom: 68px;
    left: 0;
    width: 100%;
  }

  .workflow-phone--fees {
    bottom: 38px;
    left: 50%;
    width: 150px;
    transform: translateX(-50%) rotate(-7deg);
  }

  .configuration-note {
    margin-top: 35px;
    padding: 16px;
  }

  .configuration-note p {
    font-size: 14px;
  }

  .outcomes {
    padding-block: 110px;
  }

  .outcomes__heading {
    margin-bottom: 55px;
  }

  .outcome-row {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0;
  }

  .outcome-row blockquote {
    padding-left: 35px;
    font-size: 21px;
  }

  .outcome-row__person {
    grid-column: auto;
    margin: 0;
  }

  .credential-trust {
    padding-top: 110px;
  }

  .credential-trust__grid {
    gap: 30px;
  }

  .credential-trust__copy > p:not(.section-index) {
    font-size: 16px;
  }

  .trust-visual {
    min-height: 510px;
    grid-template-columns: 1fr;
    place-items: center;
  }

  .trust-core {
    position: absolute;
    top: 0;
    left: 50%;
    width: 120px;
    height: 120px;
    transform: translateX(-50%);
  }

  .trust-core img {
    width: 90px;
  }

  .trust-connector {
    position: absolute;
    top: 120px;
    width: 3px;
    height: 60px;
  }

  .trust-credential {
    align-self: end;
    width: 100%;
    min-height: 250px;
    grid-template-columns: 58px 1fr 48px;
    gap: 13px;
    padding: 24px;
  }

  .trust-credential strong {
    font-size: 28px;
  }

  .proof-facts {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .proof-facts div {
    min-height: 96px;
  }

  .proof-facts div + div {
    border-top: 1px solid rgba(23, 21, 46, 0.12);
    border-left: 0;
  }

  .closing {
    padding-top: 100px;
  }

  .closing__grid {
    gap: 45px;
    padding-bottom: 80px;
  }

  .home-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px 20px;
  }

  .home-footer__brand {
    grid-column: 1 / -1;
  }

  .home-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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