:root {
  --purple: #8d42ff;
  --purple-deep: #6f2ce1;
  --pink: #ff2d84;
  --orange: #ffad32;
  --green: #7ecc15;
  --blue: #154ca7;
  --ink: #152035;
  --paper: #ffffff;
  --muted: #647087;
  --max: 1200px;
  --radius: 28px;
  font-family: Arial, Aptos, Helvetica, sans-serif;
  color: var(--ink);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-200%);
  padding: 12px 18px;
  border-radius: 999px;
  background: white;
  color: var(--blue);
  font-weight: 700;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 84px;
  padding: 14px max(28px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  transition:
    min-height 250ms ease,
    background-color 250ms ease,
    border-color 250ms ease,
    box-shadow 250ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(21, 76, 167, 0.08);
  box-shadow: 0 12px 30px rgba(35, 21, 72, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  width: 164px;
}
.desktop-nav {
  display: flex;
  gap: 28px;
}

.desktop-nav a,
.mobile-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 3px;
  border-radius: 999px;
  background: var(--pink);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--pink);
  color: white;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(255, 45, 132, 0.25);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  min-height: 100svh;
  padding: 132px max(28px, calc((100vw - var(--max)) / 2)) 72px;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -3;
  width: 100%;
  height: 100%;
  background: linear-gradient(140deg, #9b4cff, var(--purple) 64%, #7e32ef);
}

.hero-orb {
  position: absolute;
  z-index: -2;
  top: -12%;
  left: -20%;
  width: 72%;
  height: 125%;
  border-radius: 50%;
  background: white;
  box-shadow: 20px 0 70px rgba(95, 28, 193, 0.08);
}

.hero-copy {
  padding: 40px 42px 40px 0;
}
.hero-logo {
  width: min(330px, 72%);
  margin-bottom: 36px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 4vw, 5.4rem);
  font-weight: 400;
  color: var(--purple);
}

.hero-lead {
  max-width: 520px;
  margin-bottom: 34px;
  color: #465168;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.55;
}

.hero-lead em {
  color: var(--orange);
  font-style: normal;
  font-weight: 700;
}
.hero-lead br + * {
  color: var(--green);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}
.button-pink {
  background: var(--pink);
  color: white;
  box-shadow: 0 12px 30px rgba(255, 45, 132, 0.28);
}

.text-link {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}
.text-link span {
  display: inline-block;
  margin-left: 6px;
  transition: transform 180ms ease;
}
.text-link:hover span {
  transform: translateY(4px);
}

.device-stage {
  position: relative;
  min-height: 590px;
  align-self: center;
}

.laptop-device {
  position: absolute;
  width: min(710px, 94%);
  top: 50%;
  left: 50%;
  transform: translate(-49%, -52%);
  filter: drop-shadow(0 28px 25px rgba(38, 6, 94, 0.28));
}

.device-frame {
  position: relative;
  z-index: 1;
  width: 100%;
}
.laptop-screen {
  position: absolute;
  z-index: 2;
  left: 11.73%;
  top: 6.65%;
  width: 76.55%;
  height: 82.3%;
  object-fit: cover;
  object-position: top center;
}

.phone-device {
  position: absolute;
  z-index: 4;
  width: min(145px, 21%);
  right: 1%;
  top: 48%;
  transform: translateY(-22%) rotate(1deg);
  filter: drop-shadow(0 20px 16px rgba(38, 6, 94, 0.3));
}

.phone-screen {
  position: absolute;
  z-index: 2;
  left: 5.65%;
  top: 2.37%;
  width: 87.9%;
  height: 95.25%;
  border-radius: 12%;
  object-fit: cover;
  object-position: top center;
}

.spark {
  position: absolute;
  z-index: 900;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow:
    28px -12px 0 var(--pink),
    42px 14px 0 var(--green);
  animation: float 3.8s ease-in-out infinite;
}

.spark-two {
  bottom: 12%;
  left: 9%;
  transform: scale(0.65);
  animation-delay: -1.5s;
}

.spark-one {
  top: 10%;
  right: 9%;
}

.offer-card .spark-one {
  top: 3%;
  right: 10%;
}

.offer-card .spark-two {
  bottom: 1%;
  left: 10%;
  transform: scale(-1);
}

.solution {
  padding: 200px max(28px, calc((100vw - var(--max)) / 2)) 118px;
}

.features {
  padding: 118px max(28px, calc((100vw - var(--max)) / 2));
  background: #eef2ff;
  position: relative;
}

.offers {
  padding: 118px max(28px, calc((100vw - var(--max)) / 2));
}

.section-heading {
  margin: 0 auto 62px;
  text-align: center;
}
.section-heading h2,
.contact h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.section-heading h2 {
  color: var(--blue);
}

.section-heading.section-heading-dark h2 {
  color: var(--purple);
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.6;
}

.capability-stage {
  position: relative;
  min-height: 680px;
}

.capability {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(440px, 38vw);
  aspect-ratio: 1;
  padding: clamp(48px, 5vw, 72px);
  border: 10px solid white;
  border-radius: 50%;
  color: white;
  filter: drop-shadow(0 25px 35px rgba(51, 35, 82, 0.16));
}

.capability h3 {
  margin-bottom: 22px;
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  width: max-content;
}

.capability h3::before,
.capability h3::after {
  content: "";
  position: absolute;
  top: 1rem;
  width: 2rem;
  height: 2px;
  background-color: white;
}

.capability h3::before {
  left: -3rem;
}

.capability h3::after {
  right: -3rem;
}

.capability ul {
  margin: 0;
  padding-left: 1.25em;
  line-height: 1.55;
  font-size: 1.2rem;
}
.capability-manage {
  z-index: 2;
  left: -2%;
  top: 8%;
  background: var(--orange);
}
.capability-organize {
  z-index: 1;
  left: 31%;
  top: 24%;
  background: var(--pink);
}
.capability-communicate {
  z-index: 2;
  right: 2%;
  top: -2%;
  background: var(--green);
}

.features .section-heading {
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.feature-card {
  display: flex;
  min-height: 184px;
  padding: 32px 24px 28px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: white;
  text-align: center;
  color: #4b66b3;
}

.feature-card img {
  width: 92px;
  height: 72px;
  margin-bottom: 22px;
  object-fit: contain;
}

.feature-card h3 {
  margin: 0 0 4px;
  color: var(--green);
  font-size: clamp(1.2rem, 1.3vw, 1.55rem);
  line-height: 1.1;
}

.feature-card p {
  margin: 0;
  color: var(--orange);
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  line-height: 1.24;
}

.offers {
  position: relative;
  background: #f6f3fb;
}
.offers::before,
.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 82px;
  height: 10px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(
    90deg,
    var(--purple) 25%,
    var(--orange) 25% 50%,
    var(--green) 50% 75%,
    var(--pink) 75%
  );
  transform: translateX(-50%);
}
.section-heading-dark .eyebrow {
  color: var(--purple);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}
.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(21, 32, 53, 0.06);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 25px 65px rgba(41, 26, 73, 0.08);
}
.offer-title {
  padding: 24px;
  border-radius: 19px;
  background: var(--purple);
  color: white;
  text-align: center;
  border: 10px solid white;
  filter: drop-shadow(0 25px 35px rgba(51, 35, 82, 0.16));
}
.offer-title p {
  margin-bottom: 4px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.offer-title h3 {
  margin: 0;
  color: white;
  font-size: clamp(2rem, 3.8vw, 3.45rem);
  font-weight: 500;
}

.offer-price {
  margin: 20px 0;
  padding: 12px 18px;
  border-radius: 19px;
  background: var(--green);
  color: white;
  text-align: center;
  font-size: 1.12rem;
  font-weight: 800;
  border: 10px solid white;
  filter: drop-shadow(0 25px 35px rgba(51, 35, 82, 0.16));
}
.offer-price span {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  opacity: 0.85;
}
.offer-card ul {
  flex: 1;
  margin: 6px 0 24px;
  padding: 22px 22px 22px 44px;
  border-radius: 19px;
  background: var(--orange);
  color: white;
  font-size: 1.2rem;
  line-height: 1.65;
  border: 10px solid white;
  filter: drop-shadow(0 25px 35px rgba(51, 35, 82, 0.16));
}
.offer-promise {
  min-height: 104px;
  margin-bottom: 24px;
  padding: 22px;
  border-radius: 19px;
  background: var(--pink);
  color: white;
  text-align: center;
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.45;
  border: 10px solid white;
  filter: drop-shadow(0 25px 35px rgba(51, 35, 82, 0.16));
}

.button-dark {
  text-align: center;
  align-self: stretch;
  background: var(--blue);
  color: white;
}

.button-dark::before {
  content: "";
  width: 1em;
  margin-right: auto;
}
.button-dark span {
  margin-left: auto;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  min-height: 900px;
  padding: 110px max(28px, calc((100vw - var(--max)) / 2));
  background: var(--purple);
  color: white;
  isolation: isolate;
}

.contact-color {
  position: absolute;
  z-index: -1;
  inset: 0 0 0 58%;
  background: white;
  border-radius: 100% 0 0 100% / 100% 0 0 100%;
}

.contact-copy {
  max-width: 550px;
}
.contact .eyebrow {
  color: #e9dbff;
}
.contact-copy > p:not(.eyebrow) {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
  line-height: 1.6;
}
.mail-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  margin-top: 22px;
  padding: 16px 22px;
  border: 3px solid white;
  border-radius: 14px;
  background: var(--green);
  color: white;
  text-decoration: none;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(40, 14, 89, 0.2);
}

.contacts-list {
  display: grid;
  gap: 20px;
  align-self: end;
  padding-bottom: 30px;
}
.person {
  display: grid;
  grid-template-columns: 118px 1fr;
  align-items: center;
  gap: 20px;
  color: var(--ink);
}
.person img {
  width: 118px;
  aspect-ratio: 1;
  border: 7px solid white;
  border-radius: 50%;
  background: var(--purple);
  object-fit: contain;
  box-shadow: 0 14px 32px rgba(28, 21, 50, 0.14);
}
.person h3 {
  margin-bottom: 4px;
  font-size: 1.28rem;
  text-transform: uppercase;
}
.person p {
  margin: 0 0 6px;
  color: var(--purple);
  font-size: 0.96rem;
  font-weight: 800;
}
.person a {
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
}
.person-offset-left {
  --reveal-final-transform: translateX(-1.4rem);
}
.person-offset-right {
  --reveal-final-transform: translateX(2rem);
}
.contact-logo {
  position: absolute;
  right: max(28px, calc((100vw - var(--max)) / 2));
  top: 110px;
  width: min(330px, 28vw);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 28px max(28px, calc((100vw - var(--max)) / 2));
  background: white;
  color: var(--muted);
  font-size: 0.86rem;
}
footer img {
  width: 130px;
}
footer p {
  margin: 0;
  text-align: center;
}
footer a {
  color: var(--blue);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
.footer-links {
  display: flex;
  justify-self: end;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.legal-page {
  padding: 150px max(28px, calc((100vw - var(--max)) / 2)) 96px;
  background: #f6f3fb;
}
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  line-height: 1.65;
}
.legal-content h1 {
  margin-bottom: 42px;
  color: var(--purple);
  font-size: clamp(2.3rem, 5vw, 4.4rem);
}
.legal-content section {
  margin-top: 34px;
}
.legal-content h2 {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}
.legal-content h3 {
  margin: 24px 0 8px;
  color: var(--purple);
  font-size: 1.15rem;
}
.legal-content p {
  margin-bottom: 14px;
}
.legal-content a {
  color: var(--blue);
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transition-property: opacity, transform, clip-path;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.from-left {
  transform: translateX(-70px);
  clip-path: inset(0 0 0 18%);
}
.reveal.from-right {
  transform: translateX(70px);
  clip-path: inset(0 18% 0 0);
}
.reveal.from-top {
  transform: translateY(-60px);
  clip-path: inset(18% 0 0 0);
}
.reveal.from-bottom {
  transform: translateY(60px);
  clip-path: inset(0 0 18% 0);
}
.reveal.fade-in {
  transform: scale(0.98);
}
.reveal.delay-1 {
  transition-delay: 160ms;
}
.reveal.delay-2 {
  transition-delay: 320ms;
}
.reveal.delay-3 {
  transition-delay: 480ms;
}
.reveal.is-visible {
  opacity: 1;
  transform: var(--reveal-final-transform, none);
  clip-path: none;
}

@keyframes float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -14px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 12px;
    background: var(--purple);
  }
  .menu-toggle span {
    display: block;
    height: 2px;
    align-self: center;
    border-radius: 999px;
    background: white;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .mobile-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    display: grid;
    gap: 6px;
    width: min(280px, calc(100vw - 40px));
    padding: 14px;
    border-radius: 18px;
    background: white;
    box-shadow: 0 20px 50px rgba(28, 15, 56, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 180ms ease;
  }
  .mobile-nav a {
    padding: 12px;
    border-radius: 10px;
  }
  .mobile-nav a:hover {
    background: #f5efff;
  }
  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 128px;
    text-align: center;
  }

  .hero-orb {
    top: -12%;
    left: -22%;
    width: 144%;
    height: 74%;
  }
  .hero-copy {
    padding: 20px 0 50px;
  }
  .hero-logo {
    margin-inline: auto;
  }
  .hero-lead {
    margin-inline: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .device-stage {
    min-height: 500px;
  }
  .laptop-device {
    width: min(670px, 88vw);
  }
  .phone-device {
    width: min(125px, 18vw);
    right: 8%;
  }

  .capability-stage {
    display: grid;
    gap: 20px;
    min-height: 0;
  }

  .capability {
    position: static;
    width: 100%;
    aspect-ratio: auto;
    min-height: 320px;
    border-radius: 34px;
    padding: 44px;
  }
  .capability-organize {
    transform: none;
  }

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

  .contact {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-bottom: 90px;
  }

  .contact-color {
    inset: 48% -30% 0 -30%;
    border-radius: 50% 50% 0 0 / 24% 24% 0 0;
  }

  .contact-copy {
    text-align: center;
    margin: 0 auto;
  }

  .contact-logo {
    display: none;
    position: static;
    width: min(360px, 68vw);
    margin: 20px auto 0;
    order: 2;
  }
  .contacts-list {
    width: min(560px, 100%);
    margin: 0 auto;
    padding: 50px 0 0;
  }
  .person {
    color: var(--ink);
  }
  .person-offset-left,
  .person-offset-right {
    --reveal-final-transform: none;
  }
}

@media (max-width: 720px) {
  .brand {
    width: 138px;
  }
  .site-header {
    min-height: 70px;
    padding-inline: 20px;
  }
  .hero {
    padding-inline: 20px;
  }
  .hero-logo {
    width: 240px;
    margin-bottom: 26px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .device-stage {
    min-height: 380px;
  }
  .laptop-device {
    width: 94vw;
  }
  .phone-device {
    width: 20vw;
    right: 1%;
  }
  .solution,
  .features,
  .offers {
    padding: 88px 20px;
  }
  .section-heading {
    margin-bottom: 42px;
  }
  .capability {
    min-height: 0;
    padding: 34px 30px;
  }
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .feature-card {
    min-height: 176px;
  }
  .offer-promise {
    min-height: 0;
  }
  .contact {
    padding: 88px 20px;
  }
  .contact-color {
    inset: 48% -30% 0 -30%;
  }
  .person {
    grid-template-columns: 96px 1fr;
  }
  .person img {
    width: 96px;
  }
  .person h3 {
    font-size: 1.08rem;
  }
  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  footer img {
    margin: 0 auto;
  }
  .footer-links {
    justify-self: center;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: var(--reveal-final-transform, none) !important;
    clip-path: none !important;
  }
}
